/* ====================================
  Base Settings
==================================== */
html {
  cursor: default;
  font-size: 5.33px;
  overflow-x: hidden;
  color: #5A5A5A;
  font-weight: 400;
  font-feature-settings: "palt";
}

@media screen and (max-width: 375px) {
  html {
    font-size: 31.25%;
  }
}

@media screen and (max-width: 750px) {
  html {
    font-size: 1.33vw;
  }
}

body {
  font-feature-settings: "palt";
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}


/* ====================================
  Font Families
==================================== */
.zen-old-mincho {
  font-family: "Zen Old Mincho", serif;
}

.shippori-mincho {
  font-family: "Shippori Mincho", serif;
}

.zen-kaku-gothic-new {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.noto-sans-jp {
  font-family: "Noto Sans JP", serif;
}

.zen-kaku-gothic-antique {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}


/* ====================================
  Common
==================================== */
.sp-wrap {
  width: 400px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0px .4rem 4rem 0px rgba(171, 163, 147, 0.3);
  background-color: rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 750px) {
  .sp-wrap {
    width: 100%;
  }
}

.pc-bg {
  display: none;
}

@media (min-width: 400px) {
  .pc-bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  .pc-bg picture,
  .pc-bg picture img {
    width: 100%;
    height: 100%;
  }
}

.bg_gold {
  background-color: #AC9964;
}

sup {
  font-size: 50%;
  top: -2.5rem;
}


/* ====================================
  Header
==================================== */
.header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 400px;
  height: auto;
  z-index: 999;
  text-align: center;
  background: #fff;
}

.header .logo {
  width: 31.6rem;
  height: 10rem;
}

@media (max-width: 750px) {
  .header {
    max-width: 100%;
  }
}


/* ====================================
  Hamburger Menu
==================================== */
.menu {
  position: absolute;
  top: 0;
  width: 100%;
  height: auto;
  padding-bottom: 2rem;
  list-style: none;
  clear: both;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease, visibility 0s linear .5s;
}

.menu .top_logo {
  padding: 0;
  background-color: #fff;
}

.menu .manu__logo__img {
  width: 33.6rem;
  height: 18rem;
  margin: auto;
}

.menu a {
  font-size: 3.8rem;
  font-weight: 500;
  letter-spacing: -.2rem;
  text-decoration: none;
  text-transform: capitalize;
  color: #bc9e53;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease 0.1s, visibility 0s linear 0s;
}

.menu li {
  padding: 2.5rem 0;
  border-bottom: 1px solid #bc9e53;
  margin: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease 0.1s, visibility 0s linear 0s;
}

.menu .under_line {
  width: 90%;
}

.menu li:first-child,
.menu li:last-child {
  border: none;
}

.menu-btn {
  display: none;
}

.menu-btn:checked~.menu {
  opacity: 1;
  visibility: visible;
  transition: opacity .5s ease, visibility 0s linear 0s;
}

.menu-btn:checked~.menu a,
.menu-btn:checked~.menu li {
  opacity: 1;
  visibility: visible;
  transition: opacity .5s ease, visibility 0s linear 0s;
}

.menu-icon {
  position: relative;
  display: inline-block;
  padding: 3.5rem 3rem;
  cursor: pointer;
  z-index: 100;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.navicon {
  position: relative;
  display: block;
  width: 5rem;
  height: .3rem;
  background: #bc9e53;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before,
.navicon:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #bc9e53;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before {
  top: 1.3rem;
}

.navicon:after {
  bottom: 1.3rem;
}

@media (min-width: 1000px) {
  .navicon {
    display: none !important;
  }
}

.menu-btn:checked~.menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.menu-btn:checked~.menu-icon .navicon:before {
  top: 0;
  transform: rotate(-45deg);
}

.menu-btn:checked~.menu-icon .navicon:after {
  bottom: 0;
  transform: rotate(45deg);
}


/* ====================================
  PC Navigation
==================================== */
.body .main .nav,
.body .main .copy {
  display: none;
}

@media (min-width: 1000px) {
  .body .main .nav {
    position: fixed;
    left: 3.5vw;
    display: block;
    width: 390px;
    margin-top: 3rem;
  }

  .body .main .nav__list .logo {
    width: 340px;
    margin: 0 auto;
  }

  .body .main .nav__list__item {
    margin-left: 2rem;
    border-bottom: .1rem solid #006F8D;
  }

  .body .main .nav__list__item:first-child {
    margin-top: 8px;
  }

  .body .main .nav__list__item:last-child {
    margin-bottom: 2px;
  }

  .body .main .nav__list__item a {
    position: relative;
    display: block;
    padding-top: 4rem;
    padding-bottom: 1.3rem;
    font-size: 3.1rem;
    font-weight: 700;
    line-height: 3.41rem;
    transition: .3s;
  }

  .body .main .nav__list__item a:hover {
    opacity: .5;
  }

  .body .main .nav__list__item a::after {
    content: "";
    position: absolute;
    right: 1rem;
    top: 50%;
    display: inline-block;
    width: 2rem;
    height: 2rem;
    margin-right: 2rem;
    border: .15rem solid currentColor;
    border-left: 0;
    border-bottom: 0;
    vertical-align: middle;
    color: #006F8D;
    line-height: 1;
    box-sizing: border-box;
    transform: translateY(-30%) rotate(135deg);
  }

  .body .main .copy {
    position: fixed;
    bottom: 5vw;
    right: 4.5vw;
    display: block;
  }

  .body .main .copy .logo__img {
    width: 28vw;
    max-width: 540px;
    margin: 0 auto;
  }

  .body .main .copy .cv__btn__img {
    width: 23vw;
    max-width: 450px;
    margin: 5rem 2em 0 13em;
    transition: .3s;
  }

  .body .main .copy .cv__btn__img:hover {
    opacity: .7;
  }

  .body .main .copy .btn {
    width: 42rem;
    margin: 0 auto;
  }

  .body .main .copy .copy_top_btn {
    position: absolute;
    right: -4vw;
    bottom: -4vw;
    display: block;
    width: 6vw;
    max-width: 450px;
    transition: .3s;
  }

  .body .main .copy .copy_top_btn:hover {
    opacity: .7;
  }
}

@media (max-width: 1300px) {
  .body .main .nav {
    width: 25.5vw;
  }

  .body .main .nav__list__item a {
    font-size: 1.15vw;
  }
}


/* ====================================
  CTA
==================================== */
.cta {
  position: fixed;
  top: 87dvh;
  left: 0;
  right: 0;
  margin: auto;
  height: 15rem;
  z-index: 999;
}

@media screen and (min-width: 750px) {
  .cta {
    width: 400px;
  }
}

@media screen and (min-width: 1000px) {
  .cta {
    display: none;
  }
}

.cta_wrap .cta_btn {
  width: 69rem;
  height: 15rem;
  background: linear-gradient(to right, #FF848C, #D64D74);
}

.cta_wrap .cv_btn {
  display: block;
  left: 0;
  right: 0;
  margin: auto;
  width: 65rem;
  z-index: 999;
  transition: .3s;
}

.cta_wrap .cv_btn img {
  width: 100%;
}

.cta_wrap .cv_btn:hover {
  opacity: .7;
}

.cta_wrap .cta_top_btn {
  position: absolute;
  right: 3rem;
  bottom: 13rem;
  width: 14rem;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.cta_wrap .cta_top_btn.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.cta_wrap .cta_top_btn img {
  width: 100%;
}

.cta_wrap .cta_top_btn:hover {
  opacity: .7;
}

.cta.scrolling .cta_top_btn {
  opacity: 0;
  pointer-events: none;
}


/* ====================================
  Animations
==================================== */
root {
  --mh--duration01: 0.3s;
  --mh--duration02: 0.6s;
  --mh--duration03: 0.9s;
  --mh--duration04: 1.2s;
  --mh--easing01: ease;
  --mh--easing02: cubic-bezier(0.1, 0.7, 0.4, 1);
  --mh--easing03: cubic-bezier(0.03, 0.9, 0.15, 1);
  --mh--easing04: cubic-bezier(1, 0, 0.87, 0.86);
  --mh--easing05: cubic-bezier(0.3, 0.1, 0.36, 1.15);
}

.item {
  position: absolute;
  opacity: 0;
  z-index: 10;
}

.showup_blur-long {
  filter: blur(4px) brightness(150%);
  -webkit-filter: blur(4px) brightness(150%);
  transition: .8s;
}

.active {
  opacity: 1;
  filter: blur(0) brightness(100%);
  -webkit-filter: blur(0) brightness(100%);
  transform: translate(0) rotate(0deg) scale(1);
  will-change: transform;
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}



/* ==========================================================================
   1. アニメーションの共通定義（ぼかしフェードイン）
   ========================================================================== */
@keyframes fadeIn {
  0% {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(20px);
    /* 少し下から浮き上がらせる（不要なら削除OK） */
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
    /* 元の位置に戻る */
  }
}

/* ==========================================================================
   2. 初期状態（画面に入る前の非表示・ぼかし状態）
   ========================================================================== */
.fade-in-blur {
  opacity: 0;
  filter: blur(5px);
}

/* ==========================================================================
   3. 発火状態（.animation に .active がついた時の動き）
   ========================================================================== */
/* JSで .active が付与されたら、中にある .fade-in-blur を動かす */
.animation.active .fade-in-blur,
/* 要素自体に .animation と .fade-in-blur が同居している場合にも対応 */
.animation.active.fade-in-blur {
  animation: fadeIn 0.8s ease-out forwards;
  /* forwardsで100%の状態をキープ */
}

/* ==========================================================================
   4. オプション：時間差（ディレイ）用のクラス
   ========================================================================== */
/* 複数並んだ要素をポン・ポン・ポンと順番に出したい時にHTML側で追加します */
.delay-200 {
  animation-delay: 0.2s !important;
}

.delay-400 {
  animation-delay: 0.4s !important;
}

.delay-600 {
  animation-delay: 0.6s !important;
}




/* ====================================
  Sky Background
==================================== */
.sky_bg {
  position: relative;
}

.sky_bg_cloud01_1 {
  position: fixed;
  top: 20vh;
  left: 62.5vw;
  width: 33.7vw;
  z-index: -1;
  transform: scaleX(-1);
}

.sky_bg_cloud01_2 {
  position: fixed;
  top: 23vh;
  left: 33.2vw;
  width: 48.34vw;
  z-index: -1;
}

.sky_bg_cloud01_3 {
  position: fixed;
  top: 38vh;
  left: 89.8vw;
  width: 33.7vw;
  z-index: -1;
  transform: scaleX(-1);
}


.sky_bg_cloud02_1 {
  position: fixed;
  top: 56vh;
  left: 18vw;
  width: 32.3vw;
  z-index: -1;
}

.sky_bg_cloud02_2 {
  position: fixed;
  top: -17vh;
  left: 2vw;
  width: 53.92vw;
  z-index: -1;
}

.sky_bg_cloud02_3 {
  position: fixed;
  top: 15vh;
  left: -20vw;
  width: 53.92vw;
  z-index: -1;
}

.sky_bg_cloud02_4 {
  position: fixed;
  top: 65vh;
  left: 69vw;
  width: 49.3vw;
  z-index: -1;
}

.sky_bg_cloud03_1 {
  position: fixed;
  top: -15vh;
  left: 67vw;
  width: 40.9vw;
  z-index: -1;
  transform: scaleX(-1);
}

.sky_bg_cloud03_2 {
  position: fixed;
  top: 75vh;
  left: -13vw;
  width: 46.2vw;
  z-index: -1;
}

.sky_bg::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg_sky.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

/* --- 既存のCSSのあとに以下を追加 --- */

@media screen and (max-width: 750px) {
  /* 例として、元のvwの値を約1.5倍〜2倍近くに大きく設定しています。
     画面の詰まり具合を見て数値は微調整してください。 */

  .sky_bg_cloud01_1 {
    top: 15vh;
    left: 40vw;
    width: 60vw;
  }

  .sky_bg_cloud01_2 {
    top: 20vh;
    left: 10vw;
    width: 80vw;
  }

  .sky_bg_cloud01_3 {
    top: 35vh;
    left: 70vw;
    width: 65vw;
  }

  .sky_bg_cloud02_1 {
    top: 50vh;
    left: 5vw;
    width: 65vw;
  }

  .sky_bg_cloud02_2 {
    top: -10vh;
    left: 0vw;
    width: 90vw;
  }

  .sky_bg_cloud02_3 {
    top: 10vh;
    left: -15vw;
    width: 90vw;
  }

  .sky_bg_cloud02_4 {
    top: 60vh;
    left: 50vw;
    width: 85vw;
  }

  .sky_bg_cloud03_1 {
    top: -10vh;
    left: 50vw;
    width: 75vw;
  }

  .sky_bg_cloud03_2 {
    top: 70vh;
    left: -10vw;
    width: 80vw;
  }
}

/* ====================================
  MV (Main Visual)
==================================== */

.mv {
  position: relative;
  padding: 10rem 0;
}

.mv_bg_slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  bottom: 10rem;
}

.mv_bg_slider .swiper-slide {
  display: flex;
  align-items: flex-end;
}

.mv_bg_slider .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.mv_front {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
}

.mv_note {
  font-size: 1.6rem;
  text-align: right;
  margin: -8rem 2rem 0 0;
}


/* ====================================
  about
==================================== */
.animation_container {
  position: relative;
  width: 100%;
  margin-top: 20rem;
}

.circle_area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* overflow: hidden を除去 → 円のクリッピングを解除 */
  pointer-events: none;
}

.expanding_circle {
  display: block;
  position: absolute;
  top: 32rem;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.05);
  width: 100rem;
  height: 100rem;
  background-color: #fff;
  border-radius: 50%;
  /* テンポアップ：遅延なし・0.9秒で展開 */
  transition: transform 0.9s ease-out 0s;
}

.expanding_circle.is-active {
  transform: translate(-50%, -50%) scale(1);
}

#about {
  position: relative;
  z-index: 2;
  width: 100%;
  opacity: 0;
  transform: translateY(6rem);
  transition: opacity 0.8s ease-out 0.5s, transform .8s ease-out 0.5s;
}

#about.is-active {
  opacity: 1;
  transform: translateY(0);
}

.about {
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
}

.about_wrapper {
  padding: 0 6rem 15rem;
}

.about_main-ttl_sub {
  color: #000;
  text-align: center;
  font-size: 3rem;
}

.about_main-ttl_parts {
  width: 48rem;
  display: block;
  margin: 0.5rem auto;
}

.about_main-ttl {
  color: #FFF;
  font-size: 6rem;
  font-weight: 500;
  margin: 3rem 0;
  line-height: 1;
}

.about_main-ttl_bottom {
  margin-left: 6rem;
  display: inline-block;
  padding: 1rem 0 2rem .5rem;
}

.about_bg_blue {
  background: linear-gradient(180deg, transparent 2%, #00B6E8 2%, #00B6E8 93%, transparent 90%);
}

.about_img_wrapper {
  position: relative;
}

.about_img {
  width: 60.8rem;
  margin: 0 auto 5rem;
}

.about_img_part {
  position: absolute;
  width: 22.7rem;
  height: 16.7rem;
  bottom: -5rem;
  right: -11rem;
}

.about_sub-ttl {
  color: #00B6E8;
  text-align: center;
  font-family: "Zen Kaku Gothic Antique";
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.3;
}

.about_txt {
  color: #525252;
  font-family: "Zen Kaku Gothic Antique";
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.7;
  padding: 2rem 2rem 0;
}


/* ====================================
  reason
==================================== */
.reason {
  background-color: #fff;
  padding-top: 6rem;
  margin-top: -12rem;
  position: relative;
  z-index: 2;
}

.reason_note {
  font-size: 1.6rem;
  text-align: right;
  margin: -5rem 2rem 5rem 0;
}

/* reason内コンテンツのみフェード出現（白背景はフェードしない） */
#reason .reason_main-ttl,
#reason .reason_sub-ttl,
#reason .reason_wrapper,
#reason .reason_note {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

#reason.is-visible .reason_main-ttl,
#reason.is-visible .reason_sub-ttl,
#reason.is-visible .reason_wrapper,
#reason.is-visible .reason_note {

  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------
  reason_parts_left_top / reason_parts_right_bottom
  フェードアップ出現：reason_wrapperのフェード(0.8s)完了後に
  それぞれ少しずらしてポップアップ
-------------------------------------------------------- */
#reason .reason_parts_left_top,
#reason .reason_parts_right_bottom {
  opacity: 0;
  transform: translateY(2rem);
}

#reason.is-visible .reason_parts_left_top {
  /* wrapperのフェード完了(0.8s)直後から出現 */
  animation: fadeUp_parts 0.7s ease-out 0.8s forwards;
}

#reason.is-visible .reason_parts_right_bottom {
  /* left_topの0.2s後にずらして出現 */
  animation: fadeUp_parts 0.7s ease-out 1.0s forwards;
}

@keyframes fadeUp_parts {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reason_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  max-width: 63rem;
  margin: 0 auto;
  padding: 13rem 0 19rem;
  position: relative;
  z-index: 10;
}

.reason_wrapper_img {
  width: 20rem;
  height: 20rem;
  object-fit: contain;
}

.reason_wrapper_bg {
  position: absolute;
  width: 55rem;
  height: 55rem;
  top: 4rem;
  z-index: -1;
}

.reason_main-ttl {
  color: #88730D;
  text-align: center;
  font-family: "Zen Kaku Gothic Antique";
  font-size: 3.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
  padding-bottom: 2rem;
}

.reason_sub-ttl {
  color: #FFF;
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: 5rem;
  font-weight: 500;
  padding-bottom: 7rem;
}

.reason_sub-ttl_top {
  display: inline-block;
  padding: 0.5rem 1rem;
}

.reason_sub-ttl_bottom {
  margin-top: 1rem;
  display: inline-block;
  padding: 0.5rem 1rem;
}

.reason_parts_left_top {
  position: absolute;
  width: 20.2rem;
  top: -7rem;
  left: -7rem;
}

.reason_parts_right_top {
  position: absolute;
  width: 20.9rem;
  top: -2.5rem;
  right: -8rem;
  transform-origin: bottom center;
  animation: choppy_shake 3s infinite;
}

.reason_parts_left_bottom {
  position: absolute;
  width: 21.4rem;
  bottom: 3rem;
  left: -4rem;
  transform-origin: bottom center;
  animation: choppy_shake 3s 0.5s infinite;
}

.reason_parts_right_bottom {
  position: absolute;
  width: 22.9rem;
  bottom: -1rem;
  right: -6rem;
}

/* ----------------------------------
  reason parts コマ送りシェイクアニメーション
  steps(1, end)：各キーフレーム間を滑らかに補間せず瞬時にジャンプ
  0〜40%  ：左右×2回ぶれ（2シェイク）
  40〜100%：静止（1.8s間ポーズ）→ infinite で繰り返し
---------------------------------- */
@keyframes choppy_shake {
  0% {
    transform: rotate(0deg);
    animation-timing-function: steps(1, end);
  }

  8% {
    transform: rotate(-3deg);
    animation-timing-function: steps(1, end);
  }

  16% {
    transform: rotate(3deg);
    animation-timing-function: steps(1, end);
  }

  24% {
    transform: rotate(-3deg);
    animation-timing-function: steps(1, end);
  }

  32% {
    transform: rotate(3deg);
    animation-timing-function: steps(1, end);
  }

  40% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(0deg);
  }
}


/* ====================================
  report
==================================== */
.report {
  background-image: url(../img/report_bg@2x.webp);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 23rem 0 13rem;
}


.report_main-ttl {
  color: #AC9964;
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: 6rem;
  font-weight: 600;
  line-height: 1.1;
}

.slide_report_wrapper {
  position: relative;
}

.slide_report {
  padding: 5rem 0 7rem;
}

.slide_report_parts_top,
.slide_report_parts_bottom {
  position: absolute;
  width: 18.9rem;
  height: 18.9rem;
}

.slide_report_parts_top {
  top: -6rem;
  left: -5rem;
}

.slide_report_parts_bottom {
  bottom: -2rem;
  right: -4rem;
}

.report .swiper__wrap.active {
  animation: fadeInUp .8s .2s ease-in-out forwards;
}

.slide_report .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 60rem;
}


.slide_report .swiper-slide span {
  display: block;
  margin-bottom: .5em;
}

.slide_report_img {
  width: 100%;
  height: auto;
}

.slide_report .swiper-pagination-bullet {
  background-color: #cbcbcb;
}

.slide_report .swiper-pagination-bullet-active {
  background-image: url(../img/slide_report_heart.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 2.2522rem;
  height: 1.8299rem;
  border-radius: 0;
  opacity: 1;
  background-color: transparent;
}

.report .report-swiper-button-next,
.report .report-swiper-button-prev {
  position: absolute;
  top: 40%;
  width: 6rem;
  height: 6rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 10;
  cursor: pointer;
  transform: translateY(-50%);
}


.report .report-swiper-button-next {
  right: 4rem;
  background-image: url('../img/report_arrowbtn@2x.webp');
  transform: translateY(-50%) rotate(180deg);
}

.report .report-swiper-button-prev {
  left: 4rem;
  background-image: url('../img/report_arrowbtn@2x.webp');
}

.report_cta {
  width: 56.7rem;
  margin: 6rem auto 10rem;
}


/* ====================================
  gallery
==================================== */
.gallery_sub-ttl {
  color: #4A4A4A;
  text-align: center;
  font-size: 3.5rem;
  font-weight: 700;
  padding-top: 3rem;
}

.gallery_main-ttl {
  color: #FFF;
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: 6rem;
  font-weight: 700;
  width: 47rem;
  display: block;
  margin: 1.5rem auto;
  line-height: 1.3;
}

.gallery_txt {
  color: #4A4A4A;
  text-align: center;
  font-family: "Zen Kaku Gothic Antique";
  font-size: 2.5rem;
  font-weight: 500;
  line-height: normal;
  padding: 2rem 0 3rem;
}

.slide_gallery .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50rem;
}

.slide_gallery .swiper-wrapper {
  transition-timing-function: linear !important;
  -webkit-transition-timing-function: linear !important;
}

/* ====================================
  Reserve CTA
==================================== */
.reserve_cta_wrap {
  padding: 5rem 0;
}

.reserve_cta_wrap .cv_btn {
  position: relative;
  display: block;
  width: 64.8rem;
  z-index: initial;
  margin: 0 auto;
}


/* ====================================
  Premium
==================================== */
.premium {
  padding: 3rem 3rem;
  margin: 3rem 2.7rem 2.5rem;
  background: #fff;
  border-radius: 34rem 34rem 0 0;
}

.premium_arch {
  border: 0.15rem solid #c9a96e;
  border-radius: 50% 50% 0 0 / 25% 25% 0 0;
  padding-bottom: 4rem;
  outline-offset: 2.2rem;
}

.premium_arch-header {
  text-align: center;
  padding: 2.5rem 3rem 6rem;
  font-weight: 700;
}

.premium_arch-ttl-img {
  display: block;
  margin: 0 auto;
  width: 100%;
}

.premium_arch-sub {
  font-family: "Zen Old Mincho";
  font-size: 3.2rem;
  color: #5d5d5d;
  margin-top: -8rem;
  margin-bottom: 1.5rem;
}

.premium_arch-ttl {
  color: #5d5d5d;
  font-family: "Zen Old Mincho";
  font-size: 6rem;
  line-height: 1.1;
}

.premium_slider {
  margin-bottom: 2rem;
}

.premium_slider .swiper-wrapper {
  transition-timing-function: linear !important;
  -webkit-transition-timing-function: linear !important;
}

.premium_body {
  text-align: center;
  padding: 0 4rem;
}

.premium_text {
  color: #525252;
  text-align: center;
  font-family: "Zen Kaku Gothic Antique";
  font-size: 2.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 4.5rem;
}

.premium_bottom {
  margin: 0 auto;
}

/* ====================================
  Follow 
==================================== */

.follow_inner {
  border-radius: 3.25rem;
  padding: 1rem 6rem 2rem;
  margin: 5rem 5rem 8rem;
  background: #fff;
}

/* todo border消す */

.follow_top {
  width: 12.5rem;
  margin: 3rem auto 2rem;
}

.follow_top_txt {
  color: #4a4a4a;
  text-align: center;
  font-family: "Zen Kaku Gothic Antique";
  font-size: 3.2837rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.follow_top_ttl {
  color: var(--2, #f37792);
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: 6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 7rem;
}

.follow_steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.follow_step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 3rem 7rem 0;
}

.follow_steps>div:nth-child(3),
.follow_steps>div:nth-child(5) {
  padding-left: 4rem;
  padding-right: 4rem;
}

.follow_steps>div:nth-child(7) {
  padding-left: 5rem;
  padding-right: 5rem;
  padding-top: 0;
}

.follow_step__ico {
  line-height: 1;
  text-align: center;
}

.follow_steps>div:nth-child(1) .follow_step__ico {
  width: 6rem;
}

.follow_steps>div:nth-child(3) .follow_step__ico {
  width: 9.2rem;
}

.follow_steps>div:nth-child(5) .follow_step__ico {
  width: 8.7rem;
}

.follow_steps>div:nth-child(7) .follow_step__ico {
  width: 7.8rem;
}

.follow_step__text {
  color: #4a4a4a;
  font-family: "Zen Kaku Gothic Antique";
  font-size: 3rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: -2rem;
}

.follow_divider {
  border: none;
  border-top: 1px solid #f37792;
  margin: 0.5rem 0;
}

.follow_arrow {
  margin-top: -3rem;
}

.follow_arrow02 {
  margin-top: 0;
}

.follow_arrow03 {
  margin-top: 0;
}

/* ====================================
  easy
==================================== */

.easy_inner {
  background-color: #fff6f8;
}

.easy_ttl {
  color: #f68224;
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: 6rem;
  font-style: normal;
  font-weight: 700;
  padding: 6.5rem 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.easy_ttl_item {
  background-color: #fffccf;
  padding: 0 0.8rem;
}

.easy_ttl_item .punct {
  display: inline-block;
  margin-right: -0.6em;
}

.easy_txt {
  color: #4a4a4a;
  text-align: center;
  font-family: "Zen Kaku Gothic Antique";
  font-size: 3.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 3rem;
}

.easy_img {
  margin: 0 auto;
  width: 36.7rem;
  margin-top: 4rem;
}

.easy_btn {
  width: 53.875rem;
  margin: 2rem auto 0;
  padding-bottom: 6rem;
}

/* ====================================
  FAQ
==================================== */
.faq_ttl {
  text-align: center;
  padding: 5rem 0 3rem;
}

.faq_ttl__sub {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 3.8rem;
  font-weight: 700;
  color: #5a5a5a;
  margin-bottom: 2rem;
}

.faq_ttl__main {
  display: inline-block;
  font-family: "Zen Old Mincho", serif;
  font-size: 6.5rem;
  font-weight: 700;
  color: #fff;
  background-color: #ff94af;
  padding: 0 5.5rem 1rem;
}

.faq_list {
  padding: 0 3rem 5rem;
}

.faq_item {
  border-radius: 3rem;
  margin: 2rem 0;
  background: #fff;
}

.faq_q {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 4rem 7rem 4rem 4rem;
  cursor: pointer;
  list-style: none;
}

.faq_q::-webkit-details-marker {
  display: none;
}

.faq_icon {
  width: 9rem;
  flex-shrink: 0;
}

.faq_q-text {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: #5a5a5a;
  flex: 1;
  font-style: normal;
  line-height: normal;
}

.faq_chevron {
  position: relative;
  flex-shrink: 0;
  width: 2rem;
  height: 1rem;
}

.faq_chevron::before,
.faq_chevron::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1.4rem;
  height: 0.2rem;
  background-color: #5a5a5a;
  border-radius: 0.1rem;
  transition: transform 0.3s ease;
}

.faq_chevron::before {
  left: 0;
  transform-origin: 0% 50%;
  transform: rotate(40deg);
}

.faq_chevron::after {
  right: 0;
  transform-origin: 100% 50%;
  transform: rotate(-40deg);
}

details[open] .faq_chevron::before {
  transform: rotate(-40deg);
}

details[open] .faq_chevron::after {
  transform: rotate(40deg);
}

.faq_hr {
  position: relative;
  border: none;
  height: .1rem;
  background-color: #f37792;
  margin: 0 4rem;
  opacity: 0.4;
}

.faq_hr::before,
.faq_hr::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background-color: #f37792;
}

.faq_hr::before {
  left: -0.6rem;
}

.faq_hr::after {
  right: -0.6rem;
}

.faq_a-inner {
  display: flex;
  align-items: flex-start;
  gap: 2.1rem;
  padding: 4rem 4rem 4rem;
}

.faq_a-inner .faq_icon {
  margin-top: -2rem;
}

.faq_a-text {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: #5a5a5a;
  flex: 1;
  font-style: normal;
  line-height: normal;
}

.faq_a-text .note {
  font-size: 2rem;
}





/* ====================================
  Shop List
==================================== */
.shop_list_wrap {
  padding: 5rem 0 1rem;
  text-align: center;
  background-color: #fff;
}

.shop_list_title {
  position: relative;
  font-weight: 700;
  color: #155e86;
}

.shop_list_title::before,
.shop_list_title::after {
  content: "";
  position: absolute;
  top: 70%;
  display: block;
  width: 15rem;
  height: .1rem;
  background-color: #155e86;
}

.shop_list_title::before {
  left: 3rem;
}

.shop_list_title::after {
  right: 3rem;
}

.shop_list_sub-title {
  font-size: 3rem;
}

.shop_list_main-title {
  margin-top: 1rem;
  font-size: 7rem;
}

.shop_list_txt {
  margin: 5rem auto 3rem;
  font-size: 2.8rem;
  line-height: 1.5;
  color: #000;
}

.shop_list_container {
  margin-bottom: .3rem;
}

.shop_list_content {
  position: relative;
  cursor: pointer;
}

.shop_list_shop_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.shop_list_menu {
  width: 69rem;
  margin: auto;
}

.shop_list_area,
.shop_list_shop-name_container {
  padding: 0;
}

.shop_list_area-content {
  position: relative;
  cursor: pointer;
  margin-top: 2rem;
}

.shop_list_area {
  display: flex;
  align-items: center;
  width: 100%;
  height: 12rem;
  margin: auto;
  padding: 0 3rem;
  background-color: #e2ebf0;
  font-size: 3.5rem;
  color: #000;
}

.shop_list_plus::before {
  position: absolute;
  right: 3rem;
  top: 34%;
  content: '';
  display: block;
  width: 4rem;
  height: 4rem;
  background-image: url(../img/shop_list_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s;
  transform: rotate(180deg);
}

.shop_list_plus.open::before {
  transform: rotate(0deg);
}

.shop_list_shop-name_content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: auto;
}

.shop_list_shop-name {
  font-size: 3.4rem;
  text-align: left;
  margin: 2.5rem 0 2rem;
}

.shop_list_btn_wrap {
  display: flex;
  gap: 0.5rem;
}

.shop_list_btn {
  margin-bottom: 2rem;
  transition: .3s;
}

.shop_list_btn:hover {
  opacity: .6;
}



/* ====================================
  CM Wrap
==================================== */
.cm_wrap {
  padding-top: 8rem;
  background-color: #fff;
}

.cm_wrap .tel_bunner {
  display: block;
  width: 69rem;
  margin: auto;
  transition: .3s;
}

.cm_wrap .tel_bunner:hover {
  opacity: .7;
}


/* ====================================
  Swiper Slider
==================================== */
.location_wrap .swiper__wrap,
.voice_wrap .swiper__wrap {
  position: relative;
  margin-bottom: 5rem;
}

.location_wrap .swiper__wrap {
  margin-top: 3rem;
}

.location_wrap .swiper__wrap img,
.voice_wrap .swiper__wrap img {
  width: 64rem;
  margin: auto;
}

.location_wrap .swiper-button-prev,
.location_wrap .swiper-button-next,
.voice_wrap .swiper-button-prev,
.voice_wrap .swiper-button-next {
  width: 8rem;
  height: 7rem;
  transition: .3s;
}

.location_wrap .swiper-button-prev:after,
.location_wrap .swiper-button-next:after,
.voice_wrap .swiper-button-prev:after,
.voice_wrap .swiper-button-next:after {
  content: "";
  width: 8rem;
  height: 8rem;
  margin: auto;
  background-repeat: no-repeat;
  background-size: contain;
}

.location_wrap .swiper-button-prev:hover,
.location_wrap .swiper-button-next:hover,
.voice_wrap .swiper-button-prev:hover,
.voice_wrap .swiper-button-next:hover {
  opacity: .8;
}


/* ====================================
  Footer
==================================== */
footer {
  position: relative;
  padding: 5rem 0;
  background-color: #fff;
}

footer .footer__menu {
  margin-bottom: 2rem;
  font-size: 2.5rem;
  text-align: center;
}

footer .footer__menu li {
  margin-bottom: 6rem;
}

footer .copyright {
  font-size: 2.8rem;
  text-align: center;
}

@media screen and (max-width: 1100px) {
  footer {
    padding: 12rem 0 20rem;
  }
}