@charset "UTF-8";
/*このcssはscssにより書き出されています*/
*,
*:before,
*:after {
  -webkit-appearance: none;
}

html {
  height: 100%;
  line-height: 1.8;
}

body {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic;
  overflow-x: hidden;
  background-color: #f8e7c7;
  text-align: center;
}

a,
button {
  cursor: pointer;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  will-change: transform;
  border: none;
  text-decoration: none;
  display: block;
}
a:hover,
button:hover {
  opacity: 0.8;
}

img, svg {
  vertical-align: top;
  max-width: 100%;
  height: auto;
  margin: auto;
}

.u-inner {
  width: 94%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media only screen and (max-width: 1188px) {
  .u-pc {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media only screen and (max-width: 1188px) {
  .u-sp {
    display: block;
  }
}

.u-linkSpot {
  margin-top: -40px;
  padding-top: 40px;
}
@media only screen and (max-width: 750px) {
  .u-linkSpot {
    margin-top: 0;
    padding-top: 0;
  }
}

.u-linkSpot2 {
  margin-top: -130px;
  padding-top: 130px;
}
@media only screen and (max-width: 750px) {
  .u-linkSpot2 {
    margin-top: calc(-60px - 5%);
    padding-top: calc(60px + 5%);
  }
}

.js-effect {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-transform: translate(0, 10px) scale(0.9);
          transform: translate(0, 10px) scale(0.9);
  opacity: 0;
  will-change: transform;
}
.js-effect.is-show {
  -webkit-transform: translate(0, 0) scale(1);
          transform: translate(0, 0) scale(1);
  opacity: 1;
}

.wrapper {
  overflow-x: hidden;
  position: relative;
}
.wrapper::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(../images/bg_pattern.png) repeat-y top center/contain;
  width: min(100%, 1600px);
  height: 100vh;
  z-index: -1;
}

.bg-bw {
  background-color: #6b2700;
}

.bg-yw {
  background-color: #ffde00;
}

header {
  background-color: white;
  position: fixed;
  width: 100%;
  z-index: 100;
}
header .header__inner {
  width: min(96%, 1600px);
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media only screen and (max-width: 750px) {
  header .header__inner {
    height: 50px;
    width: 100%;
  }
}
header .logo {
  position: absolute;
  top: 50%;
  left: 4%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 750px) {
  header .logo {
    width: min(35%, 148px);
    height: -webkit-fill-available;
  }
}
header .logo img {
  vertical-align: middle;
}

.pcWrap {
  position: fixed;
  width: min(96%, 1600px);
  height: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

nav ul {
  text-align: left;
  width: 100%;
}
nav ul li {
  width: 100%;
}
nav ul img {
  width: auto;
}
@media only screen and (max-width: 750px) {
  nav .toggle {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 0;
    right: 0;
    height: 50px;
    width: 50px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer;
    background: transparent;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    z-index: 2;
  }
  nav .toggle i {
    display: block;
    width: 18px;
    height: 2px;
    background: #6b2700;
    position: relative;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  nav .toggle i::before, nav .toggle i::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #6b2700;
    position: absolute;
    top: -7px;
    left: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  nav .toggle i::after {
    top: 7px;
  }
  nav .toggle.open i {
    background: transparent;
  }
  nav .toggle.open i::before {
    top: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  nav .toggle.open i::after {
    top: 0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  nav .inner {
    background: #ffde00;
    position: fixed;
    top: 0;
    right: -100vw;
    width: 70%;
    height: 100%;
    z-index: 1;
    -webkit-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
    padding-top: 100px;
    padding-left: 6%;
  }
  nav .inner ul {
    text-align: left;
    width: 100%;
  }
  nav .inner ul li {
    width: 100%;
    margin-bottom: 10px;
  }
  nav .inner ul img {
    max-height: 36px;
  }
  nav .inner .inner-logo {
    position: absolute;
    top: 13px;
    left: 6%;
    width: 148px;
  }
  nav .open .inner {
    right: 0;
  }
}
@media screen and (min-width: 751px) {
  nav {
    position: absolute;
    right: 0;
    top: 18vh;
  }
  nav ul img {
    height: 4vw;
    max-height: 54px;
  }
  nav .toggle, nav .inner-logo {
    display: none;
  }
}

.floating_bnr {
  position: absolute;
  width: min(24%, 372px);
  left: 0;
  top: 16vh;
  animation: floating-y 1.4s ease-in-out infinite alternate-reverse;
}
@media only screen and (max-width: 750px) {
  .floating_bnr {
    display: none;
  }
}
@-webkit-keyframes floating-y {
  0% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}
@keyframes floating-y {
  0% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

.c-main {
  margin: 50px auto 0;
  position: relative;
  background-color: white;
  padding-top: 2%;
}
@media screen and (min-width: 751px) {
  .c-main {
    max-width: min(45%, 750px);
  }
}
.c-main::before {
  content: "";
  background-size: 101%;
  background-repeat: no-repeat;
  background-position: top center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.webp .c-main::before {
  background-image: url(../images/bg_mainVisual.webp);
}

.no-webp .c-main::before {
  background-image: url(/../images/bg_mainVisual.png);
}

@media screen and (min-width: 751px) {
  .c-main {
    margin: 80px auto 0;
  }
}

.section-mainVisual .mainVisual__img {
  margin-bottom: 5%;
}
.section-mainVisual .mainVisual__read {
  margin-bottom: 7%;
}

.section-mySpoon .spoon-01 {
  margin-bottom: 6%;
}
.section-mySpoon .spoon-02 {
  margin-bottom: 4%;
}
.section-mySpoon .spoon-txt {
  margin-bottom: 8%;
}

.section-bnr {
  margin-bottom: 20%;
}

.section-apply {
  position: relative;
  margin-bottom: 2%;
}
.section-apply .stepTtl {
  position: absolute;
  top: -2.8%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.section-apply .apply__cnt {
  padding: 3.5% 3.5% 4%;
}
.section-apply .step li {
  margin-bottom: 3%;
}
.section-apply .step li:last-child {
  margin-bottom: 10%;
}
.section-apply .apply__txt {
  margin-bottom: 8%;
}
.section-apply .btn a {
  margin-bottom: 3%;
}

.section-faq {
  padding-top: 14%;
  overflow-x: hidden;
}
.section-faq .faq__cnt {
  padding: 2% 3.5% 3.5%;
}
.section-faq .faq__ttl {
  margin-bottom: 3%;
  position: relative;
}
.section-faq .faq__ttl::before {
  content: "";
  position: absolute;
  top: -103%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 108%;
  height: 100%;
  background: url(../images/bg_faq.png) no-repeat bottom center/contain;
}
.section-faq .faq-q {
  position: relative;
  margin-bottom: 2%;
}
.section-faq .faq-q::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4%;
  background: url(../images/ico_arrow.svg) no-repeat center center/contain;
  width: 16px;
  height: 16px;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.section-faq .faq-q img {
  -webkit-filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.5));
          filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.5));
}
.section-faq .faq-q.is-open::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.section-faq .faq-a {
  color: white;
  text-align: left;
  font-family: a-otf-gothic-mb101-pr6n, sans-serif;
  font-weight: 300;
  font-style: normal;
  padding-left: 3%;
  font-size: clamp(10px, 1.3vw, 20px);
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.05em;
  margin-bottom: 4%;
}
@media screen and (min-width: 1600px) {
  .section-faq .faq-a {
    font-size: 20px;
  }
}
@media only screen and (max-width: 750px) {
  .section-faq .faq-a {
    font-size: 3vw;
  }
}

footer {
  padding: 6%;
  background-color: #f9d387;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 751px) {
  footer {
    max-width: min(45%, 750px);
    padding: min(3%, 40px);
  }
}
footer .copy {
  width: min(70%, 430px);
}
footer .copy img {
  vertical-align: middle;
}