@charset "UTF-8";
/*=====================
  共通スタイル
======================*/
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  overflow-x: hidden;
}

body {
  scroll-behavior: smooth;
}

@media screen and (max-width: 780px) {
  html {
    font-size: 62.5%;
    height: 100%;
  }
}
@media screen and (min-width: 781px) {
  html {
    font-size: calc(var(--bg-w) * 18 / 2000);
  }
}
body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", sans-serif;
  font-weight: 500;
  color: black;
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: justify;
  overflow-x: hidden;
}

h1 {
  margin: 0;
}

.container {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 781px) {
  .container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 5%;
  }
}

.br-sp {
  display: block;
}

@media screen and (min-width: 781px) {
  .br-sp {
    display: none;
  }
}
.br-pc {
  display: block;
}

@media screen and (max-width: 780px) {
  .br-pc {
    display: none;
  }
}
.spacer-sm {
  display: block;
  height: 0.5rem;
}

@media screen and (min-width: 781px) {
  .spacer-sm {
    display: block;
    height: 10px;
  }
}
.spacer {
  display: block;
  height: 1.7rem;
}
@media screen and (min-width: 781px) {
  .spacer {
    height: 1.5rem;
  }
}

@media screen and (min-width: 781px) {
  .spacer_pc {
    display: block;
    height: 1.5rem;
  }
}
body .pc-item {
  display: none !important;
}

body .sp-item {
  display: block !important;
}

@media screen and (min-width: 781px) {
  body .pc-item {
    display: block !important;
  }
  body .sp-item {
    display: none !important;
  }
}
/*=====================
  マージン・パディング
======================*/
.mb-sm {
  margin-bottom: 0.5rem;
}

.mb-md {
  margin-bottom: 1.5rem;
}

.mb-lg {
  margin-bottom: 2.5rem;
}

.mb-xl {
  margin-bottom: 4rem;
}

.pb-sm {
  padding-bottom: 16px;
}

.pb-lg {
  padding-bottom: 80px;
}

/*=====================
  フォント
======================*/
.font-ss {
  font-size: 3.59vw;
  line-height: 1.4;
}
@media screen and (min-width: 781px) {
  .font-ss {
    font-size: calc(var(--bg-w) * 16 / 2000);
  }
}

.font-sm, #sec01 .sec01_txt, #sec02 .sec02_txt, #sec03 .sec03_txt, #sec04 .sec04_txt, #sec06 .sec06_txt01, #sec06 .sec06_txt02, #sec07 .menu__lead {
  font-size: 4vw;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (min-width: 781px) {
  .font-sm, #sec01 .sec01_txt, #sec02 .sec02_txt, #sec03 .sec03_txt, #sec04 .sec04_txt, #sec06 .sec06_txt01, #sec06 .sec06_txt02, #sec07 .menu__lead {
    font-size: calc(var(--bg-w) * 18 / 2000);
  }
}

.font-md {
  font-size: 5.13vw;
}
@media screen and (min-width: 781px) {
  .font-md {
    font-size: calc(var(--bg-w) * 24 / 2000);
  }
}

.font-lg {
  font-size: 6.67vw;
}
@media screen and (min-width: 781px) {
  .font-lg {
    font-size: calc(var(--bg-w) * 26 / 2000);
  }
}

.font-xl {
  font-size: 7.69vw;
}
@media screen and (min-width: 781px) {
  .font-xl {
    font-size: calc(var(--bg-w) * 30 / 2000);
  }
}

.font-zenmaru {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-variant-east-asian: proportional-width;
  font-feature-settings: "pwid";
}

.font-bold {
  font-weight: bold;
}

.yellow {
  color: #eaa800;
}

.blue {
  color: #02a2e1;
}

.bg-blue {
  background-color: #02a2e1;
  color: white;
  padding: 1% 2%;
}
@media screen and (min-width: 781px) {
  .bg-blue {
    padding: 3px 7px;
  }
}

.pink {
  color: #ec6ca5;
}

/*=====================
  other
======================*/
a {
  text-decoration: none;
  cursor: pointer;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hr-dotted {
  border: none;
  border-top: 2px dotted black;
  margin: 0.8rem 0;
}
@media screen and (min-width: 781px) {
  .hr-dotted {
    margin: 5px 0;
  }
}

.hr-dashed {
  border: none;
  border-top: 1px dashed black;
  margin: 0.7rem 0;
}
@media screen and (min-width: 781px) {
  .hr-dashed {
    border-top: 2px dashed black;
    margin: 15px 0;
  }
}

.page-top {
  position: fixed;
  bottom: 24px;
  right: 40px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #3a3a3a;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease, background 0.2s ease;
  z-index: 999;
}
.page-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.page-top:hover {
  background: #555;
}

.yureru-a {
  animation: yureru-j 3s infinite;
}

@keyframes yureru-j {
  0% {
    transform: translate(0px, 2px);
  }
  5% {
    transform: translate(0px, -2px);
  }
  10% {
    transform: translate(0px, 2px);
  }
  15% {
    transform: translate(0px, -2px);
  }
  20% {
    transform: translate(0px, 2px);
  }
  25% {
    transform: translate(0px, -2px);
  }
  30% {
    transform: translate(0px, 0px);
  }
}
.yureru-b {
  animation: yureru-j 2s infinite;
}

@keyframes yureru-j {
  0% {
    transform: translate(0px, 2px);
  }
  5% {
    transform: translate(0px, -2px);
  }
  10% {
    transform: translate(0px, 2px);
  }
  15% {
    transform: translate(0px, -2px);
  }
  20% {
    transform: translate(0px, 2px);
  }
  25% {
    transform: translate(0px, -2px);
  }
  30% {
    transform: translate(0px, 0px);
  }
}
.inview {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}
.inview.fadeIn_up {
  opacity: 1;
  transform: translateY(0);
}

.fuwafuwa {
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  background: url(../img/ico-apple.svg) no-repeat center center/60px auto;
  display: inline-block;
  transition: 1.5s ease-in-out;
}

@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(7deg);
  }
}
.view {
  position: relative;
  overflow: hidden;
}

.view::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  transform: translateX(0%);
  transition: all 0.3s ease-in-out 0.3s;
}

.view img {
  vertical-align: middle;
  transform: translateX(0%);
}

.view.js-on::after {
  transform: translateX(100%);
}

/*=====================
  ヘッダー
======================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background-color: #fff;
  transition: box-shadow 0.3s ease;
}
.header.is-scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header .header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 5%;
}
@media screen and (min-width: 781px) {
  .header .header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 4%;
  }
}
.header .header__logo {
  display: block;
}
.header .header__logo img {
  display: block;
  width: 19rem;
  height: auto;
}
@media screen and (min-width: 781px) {
  .header .header__logo img {
    width: 200px;
  }
}
.header .header__nav {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 90;
  width: 100%;
  padding: 1rem 0 3rem;
  background-color: #fff;
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
@media screen and (min-width: 781px) {
  .header .header__nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 32px;
    width: auto;
    padding: 0;
    background: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}
.header .header__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 781px) {
  .header .header__list {
    display: flex;
    align-items: center;
    gap: 30px;
  }
}
.header .header__link {
  display: block;
  padding: 1.5rem 5%;
  color: #1a1a1a;
  font-size: 1.6rem;
  text-align: center;
  text-decoration: none;
}
@media screen and (min-width: 781px) {
  .header .header__link {
    padding: 0;
    font-size: 16px;
  }
}
.header .header__cta {
  display: block;
  padding: 1.5rem 5%;
  color: #1a1a1a;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border: 1px solid black;
  width: 80%;
  margin: 0 auto;
  border-radius: 6px;
}
@media screen and (min-width: 781px) {
  .header .header__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
    padding: 12px 22px;
    background-image: linear-gradient(0deg, #eb7500, #efb132);
    color: #fff;
    font-size: 16px;
    border-radius: 6px;
    border: none;
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.2);
  }
}
.header .header__cta-icon {
  display: none;
}
@media screen and (min-width: 781px) {
  .header .header__cta-icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    background-color: #fff;
    border-radius: 50%;
  }
}
.header .header__cta-icon svg {
  width: 10px;
  height: 10px;
  margin-left: 1px;
}
.header .header__cta-icon svg polygon {
  fill: #e0912a;
}
.header .header__toggle {
  position: relative;
  width: 3rem;
  height: 2.2rem;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}
.header .header__toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #1a1a1a;
  transition: top 0.3s ease, bottom 0.3s ease, transform 0.3s ease;
}
.header .header__toggle span:nth-child(1) {
  top: 0.4rem;
}
.header .header__toggle span:nth-child(2) {
  bottom: 0.4rem;
}
@media screen and (min-width: 781px) {
  .header .header__toggle {
    display: none;
  }
}
.header.is-open .header__nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header.is-open .header__toggle span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header.is-open .header__toggle span:nth-child(2) {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%) rotate(-45deg);
}

/*=====================
  固定ヘッダーのオフセット
======================*/
main {
  padding-top: var(--header-h, 64px);
}

#fv,
[id^=sec] {
  scroll-margin-top: var(--header-h, 64px);
}

.btn_orange {
  position: absolute;
  left: 50%;
  bottom: 4%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  font-weight: 700;
  width: 90%;
  padding: 1.1rem 1.8rem;
  background-image: linear-gradient(0deg, #eb7500, #efb132);
  color: #fff;
  font-size: 1.7rem;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.2);
  height: 8%;
}
.btn_orange_icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  background-color: #fff;
  border-radius: 50%;
}
.btn_orange_icon svg {
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 2px;
}
.btn_orange_icon svg polygon {
  fill: #eb7500;
}
@media screen and (min-width: 781px) {
  .btn_orange {
    font-size: 16px;
  }
  .btn_orange_icon {
    width: 1.2rem;
    height: 1.2rem;
  }
  .btn_orange_icon svg {
    width: 0.8rem;
    height: 0.8rem;
    margin-left: 0.5px;
  }
}

.rollover {
  transition: opacity 0.3s ease;
}

a.rollover:hover,
.rollover:hover {
  opacity: 0.7;
  cursor: pointer;
}

.button-centered-icon-text {
  display: flex;
  box-sizing: border-box;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  height: 64px;
  padding: 8px 16px 8px 8px;
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(to right, #fd473f, #f59702);
  border-radius: 32px;
  font-weight: bold;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 781px) {
  .button-centered-icon-text {
    font-size: 1.4rem;
    max-width: 480px;
  }
}
.button-centered-icon-text.is-reverse {
  flex-direction: row-reverse;
  padding: 8px 8px 8px 16px;
}
.button-centered-icon-text .icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  aspect-ratio: 1;
  overflow: hidden;
}
.button-centered-icon-text .icon-wrap svg {
  display: block;
  width: 3rem;
  aspect-ratio: 1;
}
.button-centered-icon-text .icon-wrap svg * {
  fill: none;
  stroke: currentcolor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu__btn {
  position: relative;
}
.menu__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #fff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><polygon points="7,4 20,12 7,20" fill="%23eb7500"/></svg>') no-repeat 54% center/70%;
}
@media screen and (min-width: 781px) {
  .menu__btn::after {
    right: 25px;
    width: 20px;
    height: 20px;
    background: #fff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><polygon points="7,4 20,12 7,20" fill="%23eb7500"/></svg>') no-repeat 45% center/60%;
  }
}

#fv {
  position: relative;
  width: 100%;
  aspect-ratio: 779/1882;
  background: url(../images/fv_bg_sp.webp) no-repeat center top/100% auto;
}
@media screen and (min-width: 781px) {
  #fv {
    --bg-w: min(2000px, calc(2000 * 100vw / 1200));
    --bg-h: calc(var(--bg-w) * 707 / 2000);
    background: url(../images/fv_bg_pc.webp) no-repeat center top/var(--bg-w) auto;
    height: var(--bg-h);
  }
}
#fv .fv_ttl {
  position: absolute;
  left: 50%;
  top: 35.5%;
  width: 93%;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media screen and (min-width: 781px) {
  #fv .fv_ttl {
    left: calc((100% - var(--bg-w)) / 2 + var(--x) / 2000 * var(--bg-w));
    top: calc(var(--y) / 707 * var(--bg-h));
    width: calc(var(--w) / 2000 * var(--bg-w));
    --x: 805;
    --y: 342;
    --w: 719;
  }
}
#fv .fv_book {
  position: absolute;
  left: 47%;
  top: 35.5%;
  width: 54%;
}
@media screen and (min-width: 781px) {
  #fv .fv_book {
    left: calc((100% - var(--bg-w)) / 2 + var(--x) / 2000 * var(--bg-w));
    top: calc(var(--y) / 1887 * var(--bg-h));
    width: calc(var(--w) / 2000 * var(--bg-w));
    --x: 1157;
    --y: 145;
    --w: 419;
  }
}
#fv .fv_icon {
  position: absolute;
  left: 2%;
  top: 70.5%;
  width: 98%;
}
@media screen and (min-width: 781px) {
  #fv .fv_icon {
    left: calc((100% - var(--bg-w)) / 2 + var(--x) / 2000 * var(--bg-w));
    top: calc(var(--y) / 1887 * var(--bg-h));
    width: calc(var(--w) / 2000 * var(--bg-w));
    --x: 1159;
    --y: 1374;
    --w: 410;
    z-index: 10;
  }
}
#fv .btn_orange {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 85.5%;
  width: 90%;
}
@media screen and (min-width: 781px) {
  #fv .btn_orange {
    left: calc((100% - var(--bg-w)) / 2 + var(--x) / 2000 * var(--bg-w));
    top: calc(var(--y) / 1887 * var(--bg-h));
    width: calc(var(--w) / 2000 * var(--bg-w));
    --x: 682;
    --y: 1513;
    --w: 320;
  }
}

#sec01 {
  position: relative;
  width: 100%;
  aspect-ratio: 779/1760;
  background: url(../images/sec01_bg_sp.webp) no-repeat center top/100% auto;
}
@media screen and (min-width: 781px) {
  #sec01 {
    --bg-w: min(2000px, calc(2000 * 100vw / 1200));
    --bg-h: calc(var(--bg-w) * 654 / 2000);
    background: url(../images/sec01_bg_pc.webp) no-repeat center top/var(--bg-w) auto;
    height: var(--bg-h);
  }
}
#sec01 .sec01_txt {
  position: absolute;
  left: 50%;
  top: 69.5%;
  width: 80%;
  transform: translate(-50%, -50%);
  text-align: left;
}
@media screen and (min-width: 781px) {
  #sec01 .sec01_txt {
    left: calc((100% - var(--bg-w)) / 2 + var(--x) / 2000 * var(--bg-w));
    top: calc(var(--y) / 1887 * var(--bg-h));
    width: calc(var(--w) / 2000 * var(--bg-w));
    --x: 1198;
    --y: 1159;
    --w: 606;
  }
}

#sec02 {
  position: relative;
  width: 100%;
  aspect-ratio: 779/2021;
  background: url(../images/sec02_bg_sp.webp) no-repeat center top/100% auto;
}
@media screen and (min-width: 781px) {
  #sec02 {
    --bg-w: min(2000px, calc(2000 * 100vw / 1200));
    --bg-h: calc(var(--bg-w) * 938 / 2000);
    background: url(../images/sec02_bg_pc.webp) no-repeat center top/var(--bg-w) auto;
    height: var(--bg-h);
  }
}
#sec02 .sec02_txt {
  position: absolute;
  left: 4%;
  top: 20.5%;
  width: 60%;
}
@media screen and (min-width: 781px) {
  #sec02 .sec02_txt {
    left: calc((100% - var(--bg-w)) / 2 + var(--x) / 2000 * var(--bg-w));
    top: calc(var(--y) / 1887 * var(--bg-h));
    width: calc(var(--w) / 2000 * var(--bg-w));
    --x: 450;
    --y: 366;
    --w: 631;
  }
}

#sec03 {
  position: relative;
  width: 100%;
  aspect-ratio: 779/1809;
  background: url(../images/sec03_bg_sp.webp) no-repeat center top/100% auto;
}
@media screen and (min-width: 781px) {
  #sec03 {
    --bg-w: min(2000px, calc(2000 * 100vw / 1200));
    --bg-h: calc(var(--bg-w) * 1144 / 2000);
    background: url(../images/sec03_bg_pc.webp) no-repeat center top/var(--bg-w) auto;
    height: var(--bg-h);
    margin-top: -1px;
  }
}
#sec03 .sec03_txt {
  position: absolute;
}
@media screen and (min-width: 781px) {
  #sec03 .sec03_txt {
    left: calc((100% - var(--bg-w)) / 2 + var(--x) / 2000 * var(--bg-w));
    top: calc(var(--y) / 1887 * var(--bg-h));
    width: calc(var(--w) / 2000 * var(--bg-w));
    transform: none;
  }
}
@media screen and (max-width: 780px) {
  #sec03 .sec03_txt01 {
    left: 50%;
    top: 29.5%;
    width: 92%;
    transform: translate(-50%, -50%);
  }
  #sec03 .sec03_txt02 {
    left: 10%;
    top: 54%;
    width: 57%;
  }
  #sec03 .sec03_txt03 {
    left: 25%;
    top: 84.5%;
    width: 57%;
  }
}
@media screen and (min-width: 781px) {
  #sec03 .sec03_txt01 {
    --x: 640;
    --y: 408;
    --w: 720;
  }
  #sec03 .sec03_txt02 {
    --x: 558;
    --y: 938;
    --w: 344;
  }
  #sec03 .sec03_txt03 {
    --x: 1104;
    --y: 1488;
    --w: 344;
  }
}

#sec04 {
  position: relative;
  width: 100%;
  aspect-ratio: 779/3039;
  background: url(../images/sec04_bg_sp.webp) no-repeat center top/100% auto;
}
@media screen and (min-width: 781px) {
  #sec04 {
    --bg-w: min(2000px, calc(2000 * 100vw / 1200));
    --bg-h: calc(var(--bg-w) * 1150 / 2000);
    background: url(../images/sec04_bg_pc.webp) no-repeat center top/var(--bg-w) auto;
    height: var(--bg-h);
  }
}
#sec04 .sec04_txt {
  position: absolute;
  left: 50%;
  top: 21%;
  width: 90%;
  transform: translate(-50%, -50%);
  color: white;
}
@media screen and (min-width: 781px) {
  #sec04 .sec04_txt {
    left: calc((100% - var(--bg-w)) / 2 + var(--x) / 2000 * var(--bg-w));
    top: calc(var(--y) / 1887 * var(--bg-h));
    width: calc(var(--w) / 2000 * var(--bg-w));
    transform: none;
    --x: 532;
    --y: 314;
    --w: 960;
  }
}

#sec05 {
  position: relative;
  width: 100%;
  aspect-ratio: 779/1012;
  background: url(../images/sec05_bg_sp.webp) no-repeat center top/100% auto;
}
@media screen and (min-width: 781px) {
  #sec05 {
    --bg-w: min(2000px, calc(2000 * 100vw / 1200));
    --bg-h: calc(var(--bg-w) * 542 / 2000);
    background: url(../images/sec05_bg_pc.webp) no-repeat center top/var(--bg-w) auto;
    height: var(--bg-h);
  }
}
#sec05 .base__img01 {
  position: absolute;
  left: 50%;
  top: 12.5%;
  width: 100%;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media screen and (min-width: 781px) {
  #sec05 .base__img01 {
    left: calc((100% - var(--bg-w)) / 2 + var(--x) / 2000 * var(--bg-w));
    top: calc(var(--y) / 1887 * var(--bg-h));
    width: calc(var(--w) / 2000 * var(--bg-w));
    transform: none;
    --x: 1088;
    --y: 230;
    --w: 620;
  }
}

#sec06 {
  position: relative;
  width: 100%;
  aspect-ratio: 780/1636;
  background: url(../images/sec06_bg_sp.webp) no-repeat center top/100% auto;
}
@media screen and (min-width: 781px) {
  #sec06 {
    --bg-w: min(2000px, calc(2000 * 100vw / 1200));
    --bg-h: calc(var(--bg-w) * 641 / 2000);
    background: url(../images/sec06_bg_pc.webp) no-repeat center top/var(--bg-w) auto;
    height: var(--bg-h);
  }
}
#sec06 .sec06_txt01 {
  position: absolute;
  left: 6%;
  top: 52%;
  width: 77%;
  line-height: 1.6;
}
@media screen and (min-width: 781px) {
  #sec06 .sec06_txt01 {
    left: calc((100% - var(--bg-w)) / 2 + var(--x) / 2000 * var(--bg-w));
    top: calc(var(--y) / 1887 * var(--bg-h));
    width: calc(var(--w) / 2000 * var(--bg-w));
    transform: none;
    --x: 894;
    --y: 770;
    --w: 610;
    line-height: 1.7;
  }
}
#sec06 .sec06_txt02 {
  position: absolute;
  left: 6%;
  top: 89%;
  width: 77%;
}
@media screen and (min-width: 781px) {
  #sec06 .sec06_txt02 {
    left: calc((100% - var(--bg-w)) / 2 + var(--x) / 2000 * var(--bg-w));
    top: calc(var(--y) / 1887 * var(--bg-h));
    width: calc(var(--w) / 2000 * var(--bg-w));
    transform: none;
    --x: 1198;
    --y: 1521;
    --w: 610;
  }
}

#sec07 {
  background-color: #f3f0ea;
  padding: 5rem 0 6rem;
}
@media screen and (min-width: 781px) {
  #sec07 {
    padding: 60px 0 80px;
  }
}
#sec07 .menu__head {
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (min-width: 781px) {
  #sec07 .menu__head {
    margin-bottom: 56px;
  }
}
#sec07 .menu__title {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #2b2b2b;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "Hiragino Mincho ProN", serif;
}
@media screen and (min-width: 781px) {
  #sec07 .menu__title {
    font-size: 32px;
  }
}
#sec07 .menu__lead {
  margin: 1.6rem auto 0;
  line-height: 1.9;
  text-align: justify;
}
@media screen and (min-width: 781px) {
  #sec07 .menu__lead {
    max-width: 760px;
    margin-top: 24px;
    line-height: 2;
    text-align: center;
  }
}
#sec07 .menu__group {
  margin-top: 4.5rem;
}
@media screen and (min-width: 781px) {
  #sec07 .menu__group {
    margin-top: 70px;
  }
}
#sec07 .menu__group-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  padding-left: 1.2rem;
  border-left: 3px solid #b5903a;
  margin-bottom: 2.4rem;
}
@media screen and (min-width: 781px) {
  #sec07 .menu__group-head {
    gap: 0 14px;
    padding-left: 14px;
    border-left-width: 5px;
    margin-bottom: 32px;
  }
}
#sec07 .menu__group-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2b2b2b;
}
@media screen and (min-width: 781px) {
  #sec07 .menu__group-title {
    font-size: 26px;
  }
}
#sec07 .menu__group-sub {
  font-size: 1.2rem;
  color: #555;
}
@media screen and (min-width: 781px) {
  #sec07 .menu__group-sub {
    font-size: 14px;
  }
}
#sec07 .menu__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media screen and (min-width: 781px) {
  #sec07 .menu__cards {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
#sec07 .menu__card--wide + .menu__cards,
#sec07 .menu__cards + .menu__cards,
#sec07 .menu__cards + .menu__card--wide {
  margin-top: 2rem;
}
@media screen and (min-width: 781px) {
  #sec07 .menu__card--wide + .menu__cards,
  #sec07 .menu__cards + .menu__cards,
  #sec07 .menu__cards + .menu__card--wide {
    margin-top: 30px;
  }
}
#sec07 .menu__card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
#sec07 .menu__img {
  display: block;
}
#sec07 .menu__img img {
  display: block;
  width: 100%;
  height: auto;
}
#sec07 .menu__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1.6rem;
  padding: 2.4rem 2rem 2.6rem;
  text-align: center;
}
@media screen and (min-width: 781px) {
  #sec07 .menu__body {
    gap: 10px;
    padding: 32px 28px 34px;
  }
}
#sec07 .menu__name {
  font-size: 2.3rem;
  line-height: 1.3;
  color: #2b2b2b;
}
@media screen and (min-width: 781px) {
  #sec07 .menu__name {
    font-size: 26px;
    line-height: 1.3;
  }
}
#sec07 .menu__price-block {
  line-height: 1.2;
}
#sec07 .menu__price {
  font-size: 3rem;
  color: #2b2b2b;
}
@media screen and (min-width: 781px) {
  #sec07 .menu__price {
    font-size: 34px;
  }
}
#sec07 .menu__unit {
  margin-left: 0.2em;
  font-size: 0.5em;
  font-weight: 700;
}
#sec07 .menu__price--text {
  font-size: 2.8rem;
}
@media screen and (min-width: 781px) {
  #sec07 .menu__price--text {
    font-size: 34px;
  }
}
#sec07 .menu__price--text .menu__unit {
  display: block;
  margin: 0.6rem 0 0;
  font-weight: 500;
  color: #666;
}
#sec07 .menu__price-note {
  margin-top: 0.4rem;
  font-size: 1.1rem;
  color: #555;
}
@media screen and (min-width: 781px) {
  #sec07 .menu__price-note {
    font-size: 12px;
  }
}
#sec07 .menu__desc {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #555;
  text-align: justify;
}
@media screen and (min-width: 781px) {
  #sec07 .menu__desc {
    font-size: 14px;
  }
}
#sec07 .menu__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: auto auto 0;
  padding: 2rem 1.6rem;
  background-image: linear-gradient(0deg, #eb7500, #efb132);
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 781px) {
  #sec07 .menu__btn {
    max-width: 300px;
    padding: 16px;
    font-size: 16px;
  }
}
@media screen and (min-width: 781px) {
  #sec07 .menu__card--wide {
    flex-direction: row;
    align-items: stretch;
  }
  #sec07 .menu__card--wide .menu__img {
    width: 44%;
    flex-shrink: 0;
  }
  #sec07 .menu__card--wide .menu__img img {
    height: 100%;
    object-fit: cover;
  }
  #sec07 .menu__card--wide .menu__body {
    width: 56%;
    justify-content: center;
    padding: 40px 44px;
  }
}
#sec07 .menu__note {
  margin-top: 2rem;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #555;
  text-align: justify;
}
@media screen and (min-width: 781px) {
  #sec07 .menu__note {
    margin-top: 24px;
    font-size: 14px;
  }
}

#sec08 {
  position: relative;
  width: 100%;
}
#sec08 .sec08_txt,
#sec08 .sec08_btn {
  position: absolute;
  width: 90%;
}
#sec08 {
  aspect-ratio: 780/1891;
  background: url(../images/sec08_bg_sp.webp) no-repeat center top/100% auto;
}
#sec08 .sec08_txt01 {
  left: 50%;
  top: 54.5%;
  transform: translate(-50%, -50%);
  font-size: 4vw;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (min-width: 781px) {
  #sec08 .sec08_txt01 {
    font-size: calc(var(--bg-w) * 18 / 2000);
  }
}
#sec08 .sec08_txt02 {
  top: 61.5%;
  font-size: 4vw;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (min-width: 781px) {
  #sec08 .sec08_txt02 {
    font-size: calc(var(--bg-w) * 18 / 2000);
  }
}
#sec08 .sec08_txt02 {
  text-align: center;
}
#sec08 .sec08_txt02 .sec08_desc {
  color: white;
  background: #c2a35c;
  padding: 0.8rem 1.2rem;
  font-weight: bold;
}
#sec08 .sec08_txt02 .sec08_price {
  font-size: 8vw;
  position: relative;
  top: 0.6rem;
}
#sec08 .sec08_txt03 {
  left: 50%;
  top: 78.5%;
  transform: translate(-50%, -50%);
  font-size: 4vw;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (min-width: 781px) {
  #sec08 .sec08_txt03 {
    font-size: calc(var(--bg-w) * 18 / 2000);
  }
}
#sec08 .sec08_btn {
  top: 86.5%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  margin: auto auto 0;
  padding: 3rem 1.6rem;
  background-image: linear-gradient(0deg, #eb7500, #efb132);
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 781px) {
  #sec08 .sec08_btn {
    max-width: 300px;
    padding: 16px;
    font-size: 16px;
  }
}
@media screen and (min-width: 781px) {
  #sec08 {
    --bg-w: min(2000px, calc(2000 * 100vw / 1200));
    --bg-h: calc(var(--bg-w) * 713 / 2000);
    background: url(../images/sec08_bg_pc.webp) no-repeat center top/var(--bg-w) auto;
    height: var(--bg-h);
  }
  #sec08 .sec08_txt,
  #sec08 .sec08_btn {
    left: calc((100% - var(--bg-w)) / 2 + var(--x) / 2000 * var(--bg-w));
    top: calc(var(--y) / 1887 * var(--bg-h));
    width: calc(var(--w) / 2000 * var(--bg-w));
  }
  #sec08 .sec08_txt01 {
    --x: 1233;
    --y: 799;
    --w: 628;
  }
  #sec08 .sec08_txt02 {
    --x: 921;
    --y: 935;
    --w: 628;
    text-align: left;
  }
  #sec08 .sec08_txt02 .sec08_desc {
    padding: 0.5rem 1rem;
  }
  #sec08 .sec08_txt02 .sec08_price {
    font-size: calc(var(--bg-w) * 34 / 2000);
    position: relative;
    top: 0.3rem;
  }
  #sec08 .sec08_txt03 {
    --x: 1233;
    --y: 1400;
    --w: 628;
  }
  #sec08 .sec08_btn {
    --x: 1069;
    --y: 1593;
    --w: 304;
  }
}

#sec09 {
  background-color: #f8fafc;
  padding: 4rem 0 6rem;
}
@media screen and (min-width: 781px) {
  #sec09 {
    padding: 40px 0 80px;
  }
}
#sec09 .faq__head {
  margin-bottom: 4rem;
  text-align: center;
}
@media screen and (min-width: 781px) {
  #sec09 .faq__head {
    margin-bottom: 56px;
  }
}
#sec09 .faq__head img {
  width: 14rem;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 781px) {
  #sec09 .faq__head img {
    width: 180px;
  }
}
#sec09 .faq__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 781px) {
  #sec09 .faq__list {
    max-width: 840px;
    margin: 0 auto;
    gap: 20px;
  }
}
#sec09 .faq__item {
  padding: 2.4rem 2rem;
  background-color: #fff;
  border: 1px solid #e4e4e7;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}
@media screen and (min-width: 781px) {
  #sec09 .faq__item {
    padding: 32px 40px;
  }
}
#sec09 .faq__row {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
}
@media screen and (min-width: 781px) {
  #sec09 .faq__row {
    gap: 20px;
  }
}
#sec09 .faq__row--q,
#sec09 .faq__row--a {
  align-items: center;
}
#sec09 .faq__row--q + .faq__row--a {
  margin-top: 1.6rem;
}
@media screen and (min-width: 781px) {
  #sec09 .faq__row--q + .faq__row--a {
    margin-top: 18px;
  }
}
#sec09 .faq__icon {
  flex-shrink: 0;
  width: 3.6rem;
}
@media screen and (min-width: 781px) {
  #sec09 .faq__icon {
    width: 44px;
  }
}
#sec09 .faq__icon img {
  display: block;
  width: 100%;
  height: auto;
}
#sec09 .faq__question {
  font-size: 5.13vw;
}
@media screen and (min-width: 781px) {
  #sec09 .faq__question {
    font-size: calc(var(--bg-w) * 24 / 2000);
  }
}
#sec09 .faq__question {
  font-weight: 700;
  line-height: 1.5;
  color: #2b2b2b;
}
@media screen and (min-width: 781px) {
  #sec09 .faq__question {
    font-size: 24px;
  }
}
#sec09 .faq__answer {
  font-size: 4vw;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (min-width: 781px) {
  #sec09 .faq__answer {
    font-size: calc(var(--bg-w) * 18 / 2000);
  }
}
#sec09 .faq__answer {
  line-height: 1.7;
  color: #555;
  text-align: justify;
}

#sec10 {
  position: relative;
  width: 100%;
}
#sec10 .sec10_ttl,
#sec10 .sec10_desc,
#sec10 .sec10_btn {
  position: absolute;
  text-align: center;
}
#sec10 {
  aspect-ratio: 780/1598;
  background: url(../images/sec10_bg_sp.webp) no-repeat center top/100% auto;
}
#sec10 .sec10_ttl {
  left: 50%;
  top: 48.5%;
  width: 90%;
  transform: translate(-50%, -50%);
}
#sec10 .sec10_desc {
  font-size: 4vw;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (min-width: 781px) {
  #sec10 .sec10_desc {
    font-size: calc(var(--bg-w) * 18 / 2000);
  }
}
#sec10 .sec10_desc {
  color: white;
  top: 66.5%;
  width: 90%;
}
#sec10 .sec10_btn {
  top: 83.5%;
}
@media screen and (min-width: 781px) {
  #sec10 {
    --bg-w: min(2000px, calc(2000 * 100vw / 1200));
    --bg-h: calc(var(--bg-w) * 811 / 2000);
    background: url(../images/sec10_bg_pc.webp) no-repeat center top/var(--bg-w) auto;
    height: var(--bg-h);
  }
  #sec10 .sec10_ttl,
  #sec10 .sec10_desc,
  #sec10 .sec10_btn {
    left: calc((100% - var(--bg-w)) / 2 + var(--x) / 2000 * var(--bg-w));
    top: calc(var(--y) / 1887 * var(--bg-h));
    width: calc(var(--w) / 2000 * var(--bg-w));
  }
  #sec10 .sec10_ttl {
    --x: 1010;
    --y: 1033;
    --w: 730;
  }
  #sec10 .sec10_desc {
    --x: 658;
    --y: 1299;
    --w: 660;
  }
  #sec10 .sec10_btn {
    --x: 1010;
    --y: 1578;
    --w: 350;
    height: 8%;
  }
}

.footer {
  background-color: #1a1a1a;
  padding: 4rem 5% 4.5rem;
}
@media screen and (min-width: 781px) {
  .footer {
    padding: 30px 5%;
  }
}
.footer .footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
}
@media screen and (min-width: 781px) {
  .footer .footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
  }
}
.footer .footer__logo {
  margin: 0;
}
.footer .footer__logo img {
  display: block;
  width: 20rem;
  height: auto;
}
@media screen and (min-width: 781px) {
  .footer .footer__logo img {
    width: 200px;
  }
}
.footer .footer__copy {
  margin: 0;
  color: white;
  font-size: 1.4rem;
  line-height: 1.9;
  text-align: center;
}
@media screen and (min-width: 781px) {
  .footer .footer__copy {
    font-size: 16px;
    line-height: 1.6;
    text-align: right;
  }
}