@charset "utf-8";
/* CSS Document */
:root {
  --color-green: #C6E871;
  --color-orange: #F0983F;
  --color-brown: #704E2A;
  --color-pink: #E6889A;
  --color-light-pink: #F9EDED;
}

body {
  color: #333;
}

html, body {
  overflow-x: hidden;
}

@media screen and (min-width:640px) {
.allwrap {
  box-shadow:0 0 40px rgba(0,0,0,.08);
  width: min(640px, 100% - 40px);
  margin-inline: auto;

}
}

/* 汎用 */
.pc_only {
  display: none !important;
}

main {
}

.section__inner {
  width: min(640px, 100% - 40px);
  margin-inline: auto;
}

.section__inner h2 div {
  color: var(--color-brown);
  font-size: min(5.5vw, 36px);
  font-weight: bold;
  text-align: center;

  padding: 10px 34px;
  position: relative;

  margin-bottom: 30px;
}

.section__inner h2 div::before,
.section__inner h2 div::after {
  content: "";
  position: absolute;
  
  width: 18px;
  height: 36px;
}

.section__inner h2 div::before {
  top: 0;
  left: 0;
  border-top: 5px solid var(--color-green);
  border-left: 5px solid var(--color-green);
}

.section__inner h2 div::after {
  bottom: 0;
  right: 0;
  border-bottom: 5px solid var(--color-green);
  border-right: 5px solid var(--color-green);
}

.bg-green .section__inner h2 div::before { /* 背景緑 */
  top: 0;
  left: 0;
  border-top: 5px solid var(--color-pink);
  border-left: 5px solid var(--color-pink);
}

.bg-green .section__inner h2 div::after { /* 背景緑 */
  bottom: 0;
  right: 0;
  border-bottom: 5px solid var(--color-pink);
  border-right: 5px solid var(--color-pink);
}

.font_bold { font-weight: bold; }
.font_large { font-size: 160%; }
.font_pink { color: var(--color-pink); }
.font_border {
  text-decoration: underline;
  text-decoration-color: #fde427;
  text-decoration-thickness: 4px;
  text-underline-offset: 2px;
}

/* 背景 */
.wave-top {
  mask-image: url('../img/bg_wave.svg'), linear-gradient(black, black);
  -webkit-mask-image: url('../img/bg_wave.svg'), linear-gradient(black, black);
  
  /* 上の波は高さ70px、下は「全体の高さから69px引いた分」 */
  mask-size: 100% 70px, 100% calc(100% - 69px);
  -webkit-mask-size: 100% 70px, 100% calc(100% - 69px);
  
  mask-position: top left, bottom left;
  -webkit-mask-position: top left, bottom left;
  
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;

  padding-top: 110px;
  margin-top: -70px;
}
.section.wave-top {
  padding-bottom: 160px;
}

.bg-white { background: #fff; }
.bg-pink { background: var(--color-pink); }
.bg-green { background: url("../img/bg_green.png"); }



/* ヘッダー */
.site-header {
  padding-top: 40px;
  position: relative;
  background: #fff;
}

.site-header__inner {
  width: min(640px, 100% - 40px);
  margin-inline: auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 18px;
  height: 50px;
}

.site-header__logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.site-header__logo a {
  pointer-events: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
}
.site-header__logo a img {
  display: inline-block;
}
.site-header__logo a img:last-child {
  margin-bottom: 7px;
}


/* ハンバーガーメニュー */
#sp_menu {
  position: fixed;
  top: 40px;
  right: 20px;

  width: 50px;
  height: 50px;
  background: url("../img/bg_green.png");
  border: none;
  cursor: pointer;
  border-radius: 10px;
  z-index: 1000;
}

/* 3本の白い線 */
#sp_menu span {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 20px;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

#sp_menu span:nth-of-type(1) { top: 50%; transform: translateY(-50%) translateY(-7px); }
#sp_menu span:nth-of-type(2) { top: 50%; transform: translateY(-50%); }
#sp_menu span:nth-of-type(3) { top: 50%; transform: translateY(-50%) translateY(7px); }

#sp_menu.is-open span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
#sp_menu.is-open span:nth-of-type(2) {
  opacity: 0; /* 真ん中の線を消す */
}
#sp_menu.is-open span:nth-of-type(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* ナビ */
.site-header__nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 314px;
  height: 100vh;

  padding: 130px 20px 30px 33px;
  border-left: 1px solid #fff;

  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);

  overflow-y: auto;
  
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 999;
}

.site-header__nav.is-open {
  transform: translateX(0);
}

.site-header__nav ul {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.site-header__nav ul a {
  display: block;

  color: var(--color-brown);
  font-size: 1.8rem;
  font-weight: bold;

  padding: 0 0 0 28px;
  background: url("../img/nav_head_icon.svg") no-repeat;
  background-position: left center;
}

.site-header__nav ul a span {
  display: inline-block;
  position: relative;
  text-decoration: none;

  padding-bottom: 2px;
}
.site-header__nav ul a span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0;
  height: 3px;
  background-color: #704E2A;
  transition: width 0.4s ease;
}

.site-header__nav ul a span:hover::after {
  width: 100%;
}

.site-header__nav__reserve {
  margin-top: 35px;
  display: block;

  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;

  padding: 25px 15px;
  background: var(--color-orange);
  border-radius: 100px;

  transition: 0.3s;
  border: 2px solid var(--color-orange);
}
.site-header__nav__reserve:hover {
  background: #fff;
  color: var(--color-orange);
}

/* ナビの外側 */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.nav-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.pc_rightbtn {
  display: none;
}



/* 下部固定ボタン */
.btn_bottomfix {
  position: fixed;
  bottom: 10px;
  left: 0;
  right: 0;

  width: min(600px, 100% - 40px);
  margin-inline: auto;

  z-index: 3;
}
.btn_bottomfix a {
  display: block;

  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;

  padding: 25px;
  background: var(--color-orange);
  border: 2px solid var(--color-orange);
  border-radius: 100px;

  box-shadow: 0px 10px 100px rgba(0, 0, 0, 0.15);

  position: relative;
  transition: 0.3s;
}

.btn_bottomfix a:hover {
  background: #fff;
  color: var(--color-orange);
}

.btn_bottomfix_subcopy {
  display: inline-block;
  padding: 0 25px;
  position: relative;
}
.btn_bottomfix_subcopy::before {
  content: "";
  display: block;
  width: 2px;
  height: 18px;
  background: #fff;

  position: absolute;
  top: 4px;
  left: 0;
  transform: rotate(-45deg);
}
.btn_bottomfix_subcopy::after {
  content: "";
  display: block;
  width: 2px;
  height: 18px;
  background: #fff;

  position: absolute;
  top: 4px;
  right: 0;
  transform: rotate(45deg);
}

.btn_bottomfix_maincopy span {
  font-size: 3.0rem;
}

.icon_svg_finger {
  display: inline-block;
  width: 21px;
  height: 31px;
  vertical-align: sub;

  background: #fff;

  /* SVGをマスクとして読み込む */
  -webkit-mask-image: url('../img/icon_button_finger.svg');
  mask-image: url('../img/icon_button_finger.svg');
  
  /* マスクの調整 */
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  mask-size: cover;
  -webkit-mask-size: cover;
  
  transition: 0.3s;
}
.btn_bottomfix a:hover .icon_svg_finger {
  background: var(--color-orange);
}


.btn_bottomfix_maincopy img {
  vertical-align: text-bottom;
  margin-left: 5px;
}

.btn_bottomfix_fukidashi {
  width: 98px;
  height: 93px;
  background: url("../img/fukidashi.svg") no-repeat;

  color: var(--color-brown);
  font-size: 1.4rem;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  position: absolute;
  top: -46px;
  left: -10px;
}
.btn_bottomfix_fukidashi div {
  transform: rotate(-10deg) translateX(-2px) translateY(-3px);
}
.btn_bottomfix_fukidashi1 {
  color: var(--color-orange);
  font-size: 1.8rem;
}
.btn_bottomfix_fukidashi2 {
  color: var(--color-orange);
}


/* ページタイトル */
.page-title {
  margin-top: 15px;

  display: flex;
  flex-direction: column;
  gap: 15px;

  color: var(--color-brown);
  text-align: center;

  padding: 35px 0 40px;
  position: relative;
}
.page-title_sub {
  font-size: min(12vw, 75px);
  font-weight: bold;
  line-height: 1;

  position: relative;
  z-index: 2;
}
.page-title_sub span {
  display: inline-block;
  margin-right: 15px;
  color: var(--color-pink);
}

.page-title_main {
  font-size: min(20vw, 135px);
  font-weight: bold;
  text-align: center;
  line-height: 1;
  
  position: relative;
  z-index: 2;
}

/* アニメーション処理 */
.title-container {
  display: flex;
  flex-direction: column;
}

.title-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 5px;
}

/* 1. テキスト本体：最初は透明 */
.page-title_sub,
.page-title_main {
  animation: revealText 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 0.8s;
  opacity: 0;
}

/* 2. 四角いブロック（::afterで作成） */
.title-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-green);
  transform: translateY(100%);
  animation: slideBlock 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 0.4s;
}

/* --- アニメーション定義 --- */

/* ブロックの動き：下から出てきて上に消える */
@keyframes slideBlock {
  0% { transform: translateY(100%); }
  40% { transform: translateY(0%); }
  100% { transform: translateY(-101%); }
}

/* テキストの動き：ブロックが消える瞬間に現れる */
@keyframes revealText {
  0% { opacity: 0; }
  1% { opacity: 0.52; }
  100% { opacity: 1; }
}


/* 拡大アニメーション */
.zoom-in-img {
  transform: scale(1);
  animation: zoomImage 5s ease-out forwards;
}

@keyframes zoomImage {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.15);
  }
}

.page-title_decoration_blue_line_circle {
  position: absolute;
  right: 0;
  top: 0;
  transform: translateX(-2%);
  width: 21%;
}
.page-title_decoration_blue_line_circle img {
  width: 100%;
}

.page-title_decoration_yellow_square {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 22%;
}
.page-title_decoration_yellow_square img {
  width: 100%;
}

.page-title_decoration_pink_dot_square {
  position: absolute;
  right: 25px;
  bottom: 0;
  width: 29%;
}
.page-title_decoration_pink_dot_square img {
  width: 100%;
}




/* メインビジュアル */
.main-visual-wrapper {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 353 / 252;
  margin: 60px auto 0;

  position: relative;
  z-index: 2;
}

.main-visual-figure {
  margin: 0;
  width: 100%;
  height: 100%;

  overflow: hidden;

  aspect-ratio: 353 / 252;
  
  mask-image: url('../img/main_visual.svg'); 
  -webkit-mask-image: url('../img/main_visual.svg'); 
  

  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}
.main-visual-figure img {
  width: 100%;

  aspect-ratio: 353 / 252;
  object-fit: cover;
}

.main-visual-text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  
  overflow: visible;
}

.main-visual-curvetext {
  fill: var(--color-brown);
  font-size: 1.8rem;
  font-weight: bold;
}

.decoration_green_onpu {
  position: absolute;
  right: 20px;
  top: -15px;
  z-index: 2;

  width: max(70px, 15%)
}
.decoration_green_onpu img {
  width: 100%;
}

.decoration_blue_circle {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(30%);
  z-index: 2;

  width: 27%;
}
.decoration_blue_circle img {
  width: 100%;
}

.decoration_pink_line_circle {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(50%);
  z-index: 2;

  width: 36%;
  max-width: 180px;

}
.decoration_pink_line_circle img {
  width: 100%;
}


.decoration_blue_dot_square {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(160%);
  z-index: 2;

  width: 50%;
  max-width: 220px;
}
.decoration_blue_dot_square img {
  width: 100%;
}


.main-visual-bg {
  margin-top: -56%;

  width: 100%;
  aspect-ratio: 392 / 403;

  background: url("../img/bg_green.png");
  
  mask-image: 
  url('../img/bg_mainv_wave_top.svg'),
  url('../img/bg_mainv_wave_bottom.svg'),
  linear-gradient(black, black);

  -webkit-mask-image: 
  url('../img/bg_mainv_wave_top.svg'),
  url('../img/bg_mainv_wave_bottom.svg'),
  linear-gradient(black, black);

  mask-size: 
    100% 70px,
    100% 70px,
    100% calc(100% - 138px);
  -webkit-mask-size: 
    100% 70px,
    100% 70px,
    100% calc(100% - 138px);

  mask-position: 
    top left,
    bottom left,
    center;
  -webkit-mask-position: 
    top left,
    bottom left,
    center;

  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}
@media screen and (min-width:640px) {
  .main-visual-bg {
    max-height: 500px;
    margin-top: -300px;
  }
  

}




#introduction {
  padding-top: 140px;
  margin-top: -100px;
  background: var(--color-light-pink);
  padding-bottom: 120px;
}



.nayami {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;

  position: relative;
  z-index: 2;
}

.nayami img {
  width: 75px;
}

.fukidashi_nayami {
  width: calc(100% - 85px);
  aspect-ratio: 272 / 133;

  background: url("../img/fukidashi_nayami.svg") no-repeat;
  background-size: cover;

  display: flex;
  justify-content: center;
  align-items: center;
}

.fukidashi_nayami p {
  padding: 30px 20px 20px 49px;

  color: var(--color-brown);
  font-size: 1.6rem;
  font-weight: bold;
  transform: translateY(-10px);
}

.work_copy {
  margin-top: 30px;
  position: relative;
}

.work_copy_fukidashi {
  width: 100%;
  aspect-ratio: 353/130;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;

  background: url("../img/bg_pink.png");

  mask-image: url('../img/work_bg_fukidashi.svg.svg'); 
  -webkit-mask-image: url('../img/work_bg_fukidashi.svg'); 
  
  mask-size: cover;
  -webkit-mask-size: cover;
  mask-position: center;
  -webkit-mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;

  position: relative;
  z-index: 2;
}

.work_copy_fukidashi p span {
  font-size: 187%;
}

.decoration_pink_circle {
  position: absolute;
  right: 0;
  top: 0;

  width: 55%;
  z-index: 1;
}

.decoration_pink_circle img {
  width: 118%;
  transform: translateY(-32%) translateX(-3%);
}

.decoration_bg_work_arrow {
  position: absolute;
  right: 0;
  bottom: -15px;
  z-index: 2;
}



.work_3point {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
}

.work_3point div {
  width: 32%;
  min-width: 110px;
}

.work_3point div figure {
  margin: 0;

  background: #fff;
  border-radius: 100px;

  aspect-ratio: 1/1;

  display: flex;
  justify-content: center;
  align-items: center;
}
.work_3point div figure img {
  width: 70%;
}

.work_3point div p {
  margin-top: 10px;

  color: var(--color-brown);
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}

.work_text {
  margin-top: 40px;


  text-align: center;
}

.work_text > div {
  display: inline-block;
  text-align: left;
}

.work_text p {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 3.0rem;
}
.work_text p span {
  font-size: 2.0rem;
}
.work_text p + p {
  margin-top: 35px;
}

.work_photo {
  margin-top: 20px;
  position: relative;
}

.work_photo > figure {
  width: 100%;
  aspect-ratio: 350 / 190;

  mask-image: url('../img/work_mask_photo.svg.svg'); 
  -webkit-mask-image: url('../img/work_mask_photo.svg'); 
  
  mask-size: cover;
  -webkit-mask-size: cover;
  mask-position: center;
  -webkit-mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}
.work_photo figure img {
  width: 100%;
  aspect-ratio: 350 / 190;
  object-fit: cover;
}

.decoration_pink_line_wave {
  position: absolute;
  right: 0;
  bottom: -25%;

  width: 66.7%;
}

.decoration_pink_line_wave img {
  width: 100%;
}

.introduction_decoration_pink_dot_square {
  display: none;
}



.box_3point {
  margin-top: 60px;

  padding: 40px 20px;
  border-radius: 10px;
  background: #fff;

  position: relative;
}
.box_3point > span {
  font-size: 5.0rem;
  font-weight: bold;
  color: var(--color-pink);

  position: absolute;
  left: -13px;
  top: -3.8rem;
}

.box_3point_01 img {
  width: 100%;
  aspect-ratio: 313 / 224;
  object-fit: cover;

  mask-image: url('../img/3point_mask_01.svg.svg'); 
  -webkit-mask-image: url('../img/3point_mask_01.svg'); 
  
  mask-size: cover;
  -webkit-mask-size: cover;
  mask-position: center;
  -webkit-mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}

.box_3point_02 img {
  width: 100%;
  aspect-ratio: 309 / 258;
  object-fit: cover;

  mask-image: url('../img/3point_mask_02.svg.svg'); 
  -webkit-mask-image: url('../img/3point_mask_02.svg'); 
  
  mask-size: cover;
  -webkit-mask-size: cover;
  mask-position: center;
  -webkit-mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}

.box_3point_03 img {
  width: 100%;
  aspect-ratio: 309 / 242;
  object-fit: cover;

  mask-image: url('../img/3point_mask_03.svg.svg'); 
  -webkit-mask-image: url('../img/3point_mask_03.svg'); 
  
  mask-size: cover;
  -webkit-mask-size: cover;
  mask-position: center;
  -webkit-mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}

.copy_3point {
  margin-top: 20px;

  font-size: 3.0rem;
  font-weight: bold;
  line-height: 4.0rem;

}

.text_3point {
  margin-top: 25px;
}

.text_3point h3 {
  font-size: 2.0rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.text_3point p + h3 {
  margin-top: 30px;
}

.text_3point p + ul {
  margin-top: 15px;
}

.text_3point ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.text_3point ul + h3 {
  margin-top: 20px;
}

.text_3point ul li {
  font-size: 1.6rem;
  padding-left: 15px;
  position: relative;
}
.text_3point ul li span {
  font-weight: bold;
}
.text_3point ul li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background: #111;

  position: absolute;
  left: 0;
  top: 1rem
}



.timeline {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}
.timeline-line {
  position: absolute;
  left: 98px;
  top: 0;
  bottom: 0;

  width: 4px;
  height: 97%;

  background: var(--color-light-pink);
  border-radius: 2px;
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 10px;
  position: relative;
}
.timeline-item .time {
  display: flex;
  justify-content: center;
  align-items: center;

  color: var(--color-brown);
  font-size: 1.6rem;
  font-weight: 700;

  padding: 10px;
  background: var(--color-green);
  width: 72px;
  border-radius: 10px;

  transform: translateY(-13px);
  
  flex-shrink: 0;

  position: relative;
}
.timeline-item .time::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: var(--color-green);
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.timeline-item .dot {
  width: 16px;
  height: 16px;

  background: var(--color-green);
  border: 2px solid #fff;
  border-radius: 50%;

  flex-shrink: 0;
  z-index: 1;
}
.timeline-item .content {
  flex: 1;

  font-size: 1.6rem;

  transform: translateY(-5px);
}

.timeline-content_ttl {
  color: var(--color-brown);
  font-weight: bold;
}

.timeline-comment {
  position: relative;
  
  background-color: var(--color-light-pink, #F9EDED);
  border: 1px solid var(--color-pink, #E6889A);
  border-radius: 10px;

  color: #333;
  font-size: 1.6rem;

  padding: 20px 24px;
  margin: 10px 0 25px 128px;
}
.timeline-comment::before {
  content: "";
  position: absolute;
  
  width: 14px;
  height: 14px;
  
  background-color: var(--color-light-pink, #F9EDED);
  
  border-top: 1px solid var(--color-pink, #E6889A);
  border-left: 1px solid var(--color-pink, #E6889A);
  
  transform: rotate(45deg);
  
  top: -8px; 
  left: 30px;
}

.schedule-photos {
  max-width: var(--max-w);
  margin: 24px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.schedule-photos img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
}

.timeline-photo {
  position: relative;
  aspect-ratio: 1 / 0.7;
}

.timeline-photo01 {
  width: 75%;
  aspect-ratio: 250 / 230;

  position: absolute;
  left: 0;
  top: 0;

  mask-image: url('../img/timeline_photo_mask_01.svg'); 
  -webkit-mask-image: url('../img/timeline_photo_mask_01.svg'); 
  
  mask-size: cover;
  -webkit-mask-size: cover;
  mask-position: center;
  -webkit-mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}
.timeline-photo01 img {
  width: 100%;
  aspect-ratio: 250 / 230;
  object-fit: cover;
}

.timeline-photo02 {
  width: 55%;
  aspect-ratio: 185 / 156;

  position: absolute;
  right: 0;
  bottom: 0;

  mask-image: url('../img/timeline_photo_mask_02.svg'); 
  -webkit-mask-image: url('../img/timeline_photo_mask_02.svg'); 
  
  mask-size: cover;
  -webkit-mask-size: cover;
  mask-position: center;
  -webkit-mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}
.timeline-photo02 img {
  width: 100%;
  aspect-ratio: 185 / 156;
  object-fit: cover;
}

.timeline-photo03 {
  display: none;
}



.movie_wrap {
  margin-bottom: 50px;
}

.movie_wrap iframe {
  width: 100%;
  aspect-ratio: 352 / 198;
  border-radius: 10px;
}

.swiper_overwrap {
  /*padding: 0 40px;*/
  position: relative;
}

.swiper-wrapper {
  margin-bottom: 50px;
}

.swiper-button-next, .swiper-button-prev {
  color: #fff !important;
}
.swiper-button-next {
  right: 18px !important;
}
.swiper-button-prev {
  left: 18px !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 30px !important;
}

.swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;

  background: #fff !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background: var(--color-pink) !important;
}

.swiper-slide > iframe {
  width: calc(100% - 150px) !important;
  margin: 0px auto 12px !important;
}

.caption {
  display: none !important;
}


#hearing {
  padding-top: 140px;
  margin-top: -100px;
  background: var(--color-light-pink);
  padding-bottom: 120px;
}


.hearing_box_wrap {
  margin-top: 90px;
}

.hearing_box_innerwrap + .hearing_box_innerwrap {
  margin-top: 90px;
  position: relative;
}

.hearing_box {
  background: #fff;
  border-radius: 10px;
  position: relative;
  margin-top: 50px;
  padding: 60px 20px 40px;

  z-index: 2;
}

.hearing_box + .hearing_box {
  margin-top: 100px;
}

.hearing_box span {
  margin-top: 1em;
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
}

.hearing_box_fukidashi {
  position: relative;
  width: 100%;

  position: absolute;
  left: -10px;
  top: -50px
}
.hearing_box_fukidashi p {
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;

  padding: 15px 17px;
  background: url("../img/bg_pink.png");
  border-radius: 10px;

  position: relative;
  z-index: 2;
}
.hearing_box_fukidashi::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: url("../img/bg_pink.png");

  transform: rotate(45deg);
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -5px;
}

.hearing_box figure {
  text-align: center;
}

.hearing_box > p {
  margin-top: 30px;
}

.hearing_decoration_blue_dot_square2 {
  position: absolute;
  right: -24px;
  top: -151px;
  width: 65%;
}

.hearing_decoration_pink_line_circle {
  position: absolute;
  left: -15px;
  top: -136px;
  width: 21%;
}
.hearing_decoration_pink_line_circle img {
  width: 100%;
}



.faq-item {
  padding: 20px;
  border-radius: 10px;
  background: var(--color-light-pink);
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 16px 0;

  color: var(--color-brown);
  font-size: 1.7rem;
  line-height: 2.6rem;
  font-weight: bold;
  text-align: left;
  
  border: 0;
  background: transparent;

  cursor: pointer;
}

.faq-question .q-mark {
  flex-shrink: 0;

  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-green);

  color: var(--color-brown);
  font-size: 3.0rem;
  font-weight: bold;
  line-height: 1;
  padding-bottom: 10px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* +/- アイコン(回転で切り替える) */
.faq-question .toggle-icon {
  margin-left: auto;
  font-size: 18px;
  color: var(--color-green-dark);
  transition: transform 0.3s ease;
}
.toggle-icon span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-brown);
  transition: 0.3s;
}
.toggle-icon span:last-child {
  transform: rotate(90deg) translateX(-2px);
}
.is-open .toggle-icon span:last-child {
  transform: rotate(0deg) translateX(-1px) translateY(-2px);
}


.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 1.6rem;

  background-color: #fff;
  border-radius: 10px;

  display: flex;
  justify-content: flex-start;
  gap: 10px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.is-open .faq-answer {
  border: 1px solid var(--color-pink);
}

.answer-content {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  padding: 20px 5px 20px 10px;
}
.a-mark {
  flex-shrink: 0;

  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-pink);

  color: var(--color-pink);
  font-size: 3.0rem;
  font-weight: bold;
  line-height: 1;
  padding-bottom: 6px;

  display: flex;
  align-items: center;
  justify-content: center;
}




.flow-step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;

  background: #fff;
  padding: 30px 25px;
  border-radius: 10px;
  position: relative;

  margin-bottom: 25px;
}
.flow-step::after {
  content: "";
  position: absolute;
  
  width: 0;
  height: 0;
  border-left: 23px solid transparent;
  border-right: 23px solid transparent;
  border-top: 17px solid #FFFFFF;
  
  bottom: -17px;
  left: 50%;
  margin-left: -23px;
  z-index: 10;
}
.flow-step:last-child:after {
  display: none;
}

.flow-step .step-left {
  flex-shrink: 0;
  text-align: center;
}
.flow-step .step-label {
  font-family: 'Roboto', sans-serif;

  font-size: 2.0rem;
  font-weight: bold;
  line-height: 1;
  color: var(--color-brown);
}
.flow-step .step-num {
  font-family: 'Roboto', sans-serif;

  font-size: 4.0rem;
  font-weight: bold;
  line-height: 1;
  color: var(--color-brown);
}

.flow-step .step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flow-step .step-text {
  flex: 1;

  color: var(--color-brown);
  font-size: 2.0rem;
  font-weight: bold;
}



#visit {
  background: #f8f8f0;
  padding-bottom: 60px !important;
}

.kengaku_head {
  width: 100%;
  aspect-ratio: 353/130;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  color: #fff;
  font-size: 2.0rem;
  font-weight: bold;

  background: url("../img/bg_pink.png");

  mask-image: url('../img/work_bg_fukidashi.svg.svg'); 
  -webkit-mask-image: url('../img/work_bg_fukidashi.svg'); 
  
  mask-size: cover;
  -webkit-mask-size: cover;
  mask-position: center;
  -webkit-mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;

  position: relative;
  z-index: 2;
}

.kengaku_text {
  margin-top: 20px;

  display: flex;
  flex-direction: column;
  gap: 30px;

  margin-bottom: 50px;
}
.kengaku_text .font_pink {
  font-weight: bold;
}
.kengaku_photo {
  position: relative;
}

.kengaku_photo figure {
  width: 100%;
  aspect-ratio: 351 / 239;
  object-fit: cover;

  mask-image: url('../img/kengaku_mask_photo.svg'); 
  -webkit-mask-image: url('../img/kengaku_mask_photo.svg'); 
  
  mask-size: cover;
  -webkit-mask-size: cover;
  mask-position: center;
  -webkit-mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}

.kengaku_photo figure img {
  width: 100%;
  aspect-ratio: 351 / 239;
  object-fit: cover;
}

.kengaku_decoration_blue_dot_square2 {
  position: absolute;
  right: 0;
  bottom: -40px;

  width: 47%;
}

#kengaku {
  padding-top: 60px;
}

.kengaku_info {
  margin-top: 90px;

  padding: 30px 20px;
  border-radius: 30px;
  background: url("../img/bg_yellow.png");
}

.kengaku_info_ttl {
  position: relative;
  margin-bottom: 30px;
}

.kengaku_info_ttl_fukudashi {
  color: var(--color-brown);
  font-size: 1.4rem;
  font-weight: bold;
}
.kengaku_info_ttl_fukudashi span {
  color: var(--color-orange);
  font-size: 3.0rem;
}

.kengaku_info_ttl_fukudashi {
  width: 157px;
  height: 147px;
  background: url("../img/fukidashi.svg") no-repeat;
  background-size: cover;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  position: absolute;
  top: -80px;
  left: -30px;
}
.kengaku_info_ttl_fukudashi p {
  transform: rotate(-10deg);
  margin-left: -3px;
}

.kengaku_info_ttl_title {
  font-size: 3.0rem;
  font-weight: bold;
  padding-left: 147px;
}

.kengaku_terms + .kengaku_terms {
  margin-top: 70px;
}

.kengaku_terms_midashi {
  font-size: 2.0rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.kengaku_terms_list {
  list-style-type: decimal;
  margin-left: 1.3em;

  font-size: 2.0rem;
}

.kengaku_terms_list li {
  list-style-type: decimal;
  margin-bottom: 10px;
}

.kengaku_terms_carfare .kengaku_terms_midashi {
  margin-bottom: 8px;
}

.kengaku_terms_carfare_ttl {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.kengaku_terms_carfare_box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;

  margin-bottom: 10px;
}

.kengaku_terms_carfare_box_fee {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.kengaku_terms_carfare_box_fee p {
  color: var(--color-pink);
  font-size: 3.8rem;
  font-weight: bold;
}

.kengaku_terms_carfare_box_fee p span {
  font-size: 2.0rem;
}

.kengaku_terms_carfare_box > p {
  margin-top: 30px;
  text-align: center;
}

#kengaku .btn_bottomfix {
  display: none;
}




.haishin {
  margin-top: 50px;
}

.haisin_type_shindan {
  font-size: 2.0rem;
  margin-bottom: 20px;
}

.haisin_type_shindan_ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.haisin_type_shindan_ul li {
  color: var(--color-pink);
  font-size: 2.0rem;
  font-weight: bold;

  padding-left: 0.7em;

  position: relative;
}
.haisin_type_shindan_ul li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background: var(--color-pink);

  position: absolute;
  left: 0;
  top: calc(50% - 2.5px);
}

.haisin_type_shindan p {
  margin-top: 25px;

  font-size: 2.0rem;
  line-height: 3.6rem;
  text-align: center;
}

.haisin_type_shindan .font_border span {
  font-weight: bold;
}

.yoko {
  margin-top: 50px;
  background: #fff;
  padding: 35px 15px;
  border-radius: 30px;
}

.yoko_ttl {
  color: var(--color-pink);
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;

  margin-bottom: 20px;
}

.yoko_list {
  font-size: 1.6rem;

  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
.yoko_list dt {
  width: 100px;
  font-weight: bold;
  padding: 20px 0;
}
.yoko_list dd {
  width: calc(100% - 120px);
  padding: 20px 0;
}

.yoko_list + .yoko_list {
  border-top: 1px dotted #CFB190;
}

.haishin .btn_bottomfix {
  display: none;
}



.site-footer {
  background: #f8f8f0;

  font-size: 1.4rem;
  text-align: center;
  padding-bottom: 190px;
}

#pagetop {
  position: fixed;
  right: 10px;
  bottom: 160px;

  z-index: 2;
  transition: 0.3s;
}

#pagetop button {
  width: 60px;
  height: 60px;
  background: var(--color-green);
  border-radius: 60px;

  display: flex;
  justify-content: center;
  align-items: center;

  border: 0;
  cursor: pointer;

  transition: 0.3s;
}

#pagetop button:hover {
  background: #62dd25;
}

