@charset "utf-8";

@media print {
  body {
    width: 1400px;
    -webkit-transform: scale(.8);
    transform: scale(.8);
    transform-origin: 0 0;
  }
}

/* iOS Safari */
body {
  -webkit-tap-highlight-color: transparent;
  width: 100%;
}

/*input,*/
textarea {
  -webkit-appearance: none;
}

input[type="submit"], input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]:focus, input[type="button"]:focus {
  outline-offset: -2px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  color: #000;
}

button, input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
}

@media (min-width: 768px) {
  .sp_only {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .pc_only {
    display: none !important;
  }
}

/* color */
:root {
  --color-grey-lightest: #F5F5F5;
  --color-grey-lighter: #CCCCCC;
  --color-grey: #6A6A6A;
  --color-grey-dark: #A5A5A5;
  --color-grey-darker: #868686;
  --color-red: #D02620;
}

.u-scrollbar {
  scrollbar-color: var(--color-grey-dark) transparent;
  scrollbar-width: thin;
}

.u-scrollbar::-webkit-scrollbar {
  height: 5px;
  width: 5px;
}

.u-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.u-scrollbar::-webkit-scrollbar-thumb {
  background-color: var(--color-grey-dark);
  border-radius: 5px;
  border: 5px solid transparent;
}


/*--------------------------------------------------------------

base set

--------------------------------------------------------------*/
html {
  font-size: calc(100vw / 37.5);
}

body {
  background-image: url(../images/bg_dots_parallel_pink.png);
  background-position: center;
  background-repeat: repeat;
  color: black;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-rendering: optimizeSpeed;
  -webkit-text-size-adjust: 100%;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  outline: none;
  text-decoration: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

.u-text-ubuntu {
  font-family: Ubuntu, sans-serif;
}

.container {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1601px) {
  body {
    padding-top: 100px;
  }

  .container {
    width: 1430px;
  }
}

@media (max-width: 1600px) and (min-width: 768px) {
  body {
    padding-top: calc(100vw * 100 / 1600);
  }

  .container {
    width: calc(100vw * 1430 / 1600);
  }
}

@media (min-width: 768px) {
  a {
    transition: 0.5s;
  }

  a:hover {
    text-decoration: none;
    opacity: 0.7;
  }

  a::after {
    transition: 0.5s;
  }

  button:hover {
    opacity: 0.7;
  }
}

@media (max-width: 767px) {
  body {
    padding-top: 60px;
  }

  .container {
    width: calc(100% - 40px);
  }
}


button {
  cursor: pointer;
  padding: 0;
  background: none;
  width: 100%;
}

input::placeholder,
textarea::placeholder {
  font-size: 0.8em;
}





/* ------------------------------------

add 230713

------------------------------------*/


body {
padding-top: 0;
}

@media (max-width: 767px) {
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
}
@media (min-width: 768px) {
html {
  scroll-behavior: smooth;
  scroll-padding-top: 160px;
}
}