@charset "UTF-8";
 /* * {
    outline: 2px solid red;
  }  */
/* ↑スーパーヒーロー！！！！
/* ======================================
   Global Styles
====================================== */
/* 基本的な全体スタイル */

html {
    font-size: 62.5%;
}

body {
  font-family: 
      "noto Sans JP",
      Arial, 
      sans-serif;
  font-style: normal;
  color:var(--main-text);
  background-color: var(--bg-main);
  line-height: 1.5;
  font-size: clamp(1.5rem, 1.8vw, 1.6rem);
}
/* @media (max-width:480px) {
  body {
    font-size: 1.6rem; 
  }
}  */

img {
  max-width: 100%;
  height: auto;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

h1 {
  font-family: "Zen Maru Gothic";
  font-size: clamp(2.4rem, 2.5vw, 3.6rem);
  font-weight: bold;
  letter-spacing: 5.76px;
}

h2,h3 {
  font-family: "Zen Maru Gothic";
  font-size: clamp(2.0rem, 2.6vw, 3.6rem);
  font-weight: 700;
  letter-spacing: 0.2em;
}

/* 色の変数 */
:root {
    --cherry-red: #DD2051;  /* メインの赤 */
    --leaf-green: #7CB356;  /* サブの緑 */
    --dark-pink1: #F9EDEF;    /* 濃いピンク背景 */
    --dark-pink2: #FCF8F9;    /* 次に濃いピンク背景 */
    --bg-main: #FEFDFE;    /* 白背景風 */
    --white: #ffffff;   /* ボタン背景の白 */
    --main-text: #2A160A;   /* メインテキストカラー */
    --contact-btn:#F9EDF0; /*ハートコンタクトボタン */
}
.for-sp {
    display: none;
}

.l-container {
    max-width: 1126px;
    margin: 0 auto;
    padding-left: 4.8vw;
    padding-right: 4.8vw;
}
  
  

@media (max-width:768px) {
  .for-sp {
      display: block;
  }

  .for-pc {
    display: none;
  }

  .l-container {
      padding-left: 4.8vw;
      padding-right: 4.8vw;
  }

  h1 {
    font-size: 2.4rem;
    letter-spacing: 3.84px;
  }


}

/* ======================================
トップページ用
  topheader
====================================== */
/* topheader */
.topheader {
    height: 5.55vw;
    padding: 0 2.29vw;
    margin-top: 1.11vw;
}

.topheader-logo  {
  font-size: 0;
  max-width: 315px;
  width: 21.87vw;
  height: auto;
  margin-left: 2%;
}

@media (max-width: 1000px) {
  .topheader-logo {
    margin-left: 0;
  }
}

.topheader-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.header-nav ul{
    display: flex;
    gap: 3.2vw;
    padding-right: 3.2vw;
}

@media (max-width: 1000px) {
  .header-nav ul {
    padding-right: 0;
  } 
}

.header-nav li a {
    position: relative;
    display: inline-block;
    padding: 8px 0;
    text-decoration: none;
    font-family: "Zen Maru Gothic";
    font-weight: bold;
}

/* アンダーライン（中央から出現する線） */
.header-nav li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--logo, #7CB356); /* さくらんぼカラー（ロゴ色） */
    transition: width 0.4s ease;
}

/* ホバーしたら線がにゅ〜っと広がる */
.header-nav li a:hover::after {
    width: 100%;
}

.wrap-page__body {
  margin-top: 8px;
}

.page-heading {
  text-align: center;
}
.subpageheader .header-nav ul{
  gap: 60px;
}



.page-title--en {
  margin-top: 8px;
  font-family: "Wix Madefor Text";
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 2.56px;
  color: var(--cherry-red);
}

.page-cover img {
  margin-top: 32px;
}
@media (max-width:768px) {
  .page-cover img {
    margin-top: 20px;
  }
}

/* パンくず */
.breadcrumb {
  font-size: 13px;
  color: #888;
  margin-bottom: 16px;
  padding: 0 16px;
  margin-top: 22px;
}

.breadcrumb ol {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.breadcrumb li::after {
  content: ">";
  margin-left: 8px;
  color: var(--leaf-green);
}

.breadcrumb li:last-child::after {
  content: "";
  margin: 0;
}

.breadcrumb a {
  color: #444;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .topheader {
    margin-bottom: 0;
  }
  /* ロゴ */
  .topheader-logo {
    margin-left: 0;
    width: 250px;
  }

  

  /* ハンバーガーボタン */
  .menubtn-sp {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.86vw;
    margin-right: 3.466vw;
  }

  .menu-open.for-sp {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 4px;
    gap: 4px;
    border: none;
    background: none;
    background-color: var(--cherry-red); /* ボタン文字色 */
    width: 54px;
    height: 54px;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    position: fixed;
    z-index: 100;
    top: 8px;
    right: 16px;
  }

  /* ハンバーガー線 */
  .menu-open.for-sp span:nth-child(1),
  .menu-open.for-sp span:nth-child(2) {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--white);
  }

  /* MENU文字 */
  .menu-open.for-sp span:nth-child(3) {
    font-size: 1rem;
    color: var(--white);
  }

  .page-title--en {
    font-size: 1.4rem;
    letter-spacing: 2.24px;
  }

  .breadcrumb {
    display: none;
  }

  .sp-nav {
  position: fixed;
  top: 0;
  right: 0 ;
  width: 310px;
  height: 600px;
  background-color: #fff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition:  0.3s ease-in-out;
  z-index: 1000;
  transform: translateX(100%);
  }

.sp-nav.active {
  transform: translateX(0);
  }

  .menu-close {
    position: absolute;
    top: 8px;
    right: 16px;
    width: 54px;
    height: 54px;
    background-color: var(--cherry-red); /* ピンク（さくらんぼレッド） */
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
  }

  .menu-close img {
    width: 24px;
    height: 24px;
  }

  .sp-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 310px;
  height: 650px;
  background-color: #fff;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease-in-out;
  z-index: 9999;
  border-radius: 0 0 0 40px; /* ←右下の丸み */
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.08);
  transform: translateX(100%);
  }

  /* 表示時 */
  .sp-nav.active {
    right: 0;
  }

  /* ナビリスト */
  .sp-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    margin-top: 48px;
  }

  /* リストアイテム */
  .sp-nav li {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-family: "Zen Maru Gothic";
    gap: 1rem;
    margin-bottom: 30px;
    font-weight: 700;
    }
  

  /* アイコン（疑似要素） */
  .sp-nav li::before {
    content: "";
    display: inline-block;
    width: 17px;
    height: 17px;
    background-image: url("../../assets/images/logos/logo_sakuranbo.svg"); 
    background-size: contain;
    background-repeat: no-repeat;
  }

  /* CTAボタン（共通） */
  .sp-nav .cta-btn {
    text-align: center;
    font-weight: bold;
    border-radius: 50px;
    padding: 14px;
    margin-top: 1rem;
    font-family: "Zen Maru Gothic";
    width: 80%;
    margin: 0 auto;
  }

  /* 入園案内ボタン（赤） */
  .sp-nav .cta-btn.primary {
    background-color: var(--cherry-red);
    color: #fff;
  }

  /* 育児の悩みボタン（ピンク） */
  .sp-nav .cta-btn.secondary {
    background-color: #fdf2f5;
    color: var(--main-text);
    position: relative;
  }

  /* 育児ボタン内イラスト */
  .sp-nav .cta-btn.secondary::after {
    content: "";
    position: absolute;
    bottom: 11px;
    right: -23px;
    width: 50px;
    height: 50px;
    background-image: url("../../assets/images/decorations/button-image-heaet.png"); /* ←要調整 */
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    animation: yurayura-soft-big 5s infinite cubic-bezier(0.42, 0, 0.58, 1);
    transform-origin: top center;
  }

}




/* ======================================
contuct 園見学セクション全体
====================================== */
.contact {
  background-color: var(--dark-pink1);
  position: relative;
}

.wrap-contact__body {
  position: relative;
  width: 100%;
  margin: -200px auto 0;
}

/* ===== 2カラムレイアウト（写真＋カード） ===== */
.contact__content {
  display: flex;
  align-items: stretch;
  width: 78.3vw;
  max-width: 1128px;
  background-color: var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border-radius: 30px;
  padding: 4% 5% 2.8%;
  margin: 0 auto;
  margin-top: 80px;
}

/* ===== テキストブロック（左側） ===== */
.contact__text {
  flex: 1 1 65%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact__catch {
  font-size: clamp(2.4rem, 2vw, 3.2rem);
  font-weight: bold;
  color: var(--cherry-red);
  letter-spacing: 2.56px;
  position: relative;
}

.contact__catch::before {
  position: absolute;
  content: "";
  background-image: url(../../assets/images/decorations/hata.png);
  width: 111px;
  height: 55px;
  transform: rotate(-3deg);
  top: -47%;
  left: -11%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width:980px) {
  .contact__catch::before {
    top: -19%;
    left: 2%;
  } 
}
@media (max-width:550px) {
  .contact__catch::before {
    display: none;
  } 
}

.contact__description {
  line-height: 1.8;
  padding-bottom: 10px;
}

/* ===== 情報ブロック（右側） ===== */
.contact__info {
  flex: 1 1 35%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}


.contact__tel {
  font-size: clamp(3rem, 3vw, 4.2rem);
  font-weight: bold;
  color: var(--cherry-red);
}

.contact__reservation {
  font-size: clamp(1.6rem, 1.5vw, 2rem);
  font-weight: 500;
}

/* ===== ボタン（共通仕様をベースに） ===== */
.contact__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 265px;
  height: 50px;
  margin: 33px auto 10px;
  padding: 14px 16px 14px 52px;
  border-radius: 50px;
  background-color: var(--cherry-red);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  gap: 18px;
  transition: background-color 0.3s;
  letter-spacing: 1.92px;
}

.contact__btn:hover {
  background-color: #c92449;
}

/* 矢印アイコン */
.contact__btn .arrow {
  width: 29px;
  height: 29px;
  transform: rotate(-90deg);
}

/* ===== スマホ対応 ===== */
@media (max-width: 980px) {
  .contact__content {
    flex-direction: column;
    width: 90%;
  }

  .contact__text,
  .contact__info {
    flex: 1 1 100%;
    border-radius: 20px;
  }

  .contact__info {
    margin: 0 auto;
    width: 100%;
    margin-top: 24px;
  }

  .contact__time {
    margin-top: -10px;
  }
  .contact__catch {
    font-size: clamp(2rem,4.53vw,2.3rem);
    letter-spacing: 0.56px;
    text-align: center;
  }

   .contact__description {
    margin-top: 12px;
  }

  .contact__reservation {
    font-size: 1.4rem;
    font-weight: bold;
  }

  .contact__btn {
    max-width: 248px;
    width: 66.13vw;
    height: 56px;
    margin: 10px auto 10px;
    padding: 14px 6px 14px 21px;
  }

}

@media (max-width: 425px) {
  .contact__content {
    margin-top: 139px;
    padding: 4% 3% 2.8%;
  }
}


/* ======================================
  footer
====================================== */
.footer {
  background-color: var(--dark-pink1);
  padding-bottom: 60px;
}

.footer__inner {
  width: 90%;
  margin: 0 auto;
  max-width: 1126px;
}

.footer__top {
  display: flex;
  align-items: flex-end;
  padding: 6.25vw 1.11vw 0;
  border-bottom: 1px solid #EADFD7; 
  padding-bottom: 20px;
  justify-content: space-between;
  margin-left: 16px;
  margin-right: 16px;
}
@media (max-width:900px) {
  .footer__top {
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    align-items: center;
  }
}

.footer__logo {
  width: 176px;
  height: auto;
}

.footer__info {
  display: flex;
  align-items: flex-end;
  gap: 30px;
}

.footer__name {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 1.6;
}

.footer__tel {
  color: var(--logo, #DD2051);
  font-family: "Wix Madefor Text";
  font-size: 3.2rem;
  font-weight: 700;
}

.footer__address-text {
  margin-top: 0.76vw;
}

.footer__address div {
  margin-top: 0.3vw;
  font-weight: 600;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 40px 20px;
}

.footer__nav-column {
  width: 18%; /* 5列並べるイメージで */
  min-width: 150px; /* スマホ対応で折り返し防止 */
}

.footer__nav-item {
  margin-bottom: 8px;
}

.footer__nav-item--title {
  font-family: "Zen Maru Gothic";
  font-weight: bold;
  display: inline-block;
  margin-bottom: 4px;
  transition: color 0.3s;
}

.footer__nav-item--title:hover {
  color: var(--cherry-red)
}

.footer__bottom {
  margin-top: 40px;
  align-items: center;
  color:#888;
}

.footer__copyright {
  text-align: center;
  font-size: 1rem;
}


.footer__nav-item ul  {
  color: #888;
}

.footer__nav-item ul li {
  margin-top: 0.55vw;
  transition: 0.3s ease;
}

.footer__nav-item ul li:hover {
  color: #7C411F;
}

  
.footer__nav-item ul li::before {
  display: inline-block;
  content: "-";
  margin-right: .5em;
}

@media (max-width: 768px) {
  .footer__inner {
    width: 100%;
  }

  .footer__top {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .footer__info,
  .footer__address {
    display: flex;
    flex-direction: column;
  }


  .footer__name {
    font-size: 1.6rem;
  }

  .footer__address-text {
    font-size: 1.4rem;
    margin-top: 20px;
  }

  .footer__logo {
    width: 185px;
    height: auto;
    margin: 0 auto;
  }

  .footer__contact {
    margin-top: 20px;
    text-align: center;
  }

}


/* ======================================
  固定ボタン
====================================== */
.fixed-banners {
  position: fixed;
  right: 0;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  z-index: 9999;
}
/* スマホ非表示 */
@media (max-width: 768px) {
  .fixed-banners {
    display: none;
  }
}


.fixed-banners__item {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: "Zen Maru Gothic";
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  padding: 12px 8px;
  border-radius: 16px 0 0 16px;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: opacity 0.3s;
  width: 55px;
  height: 180px;
}

/* 子育ての悩みボタン（上） */
.nayami__btn {
  background-color: #F3D6DC;
  position: relative;
  color: var(--main-text);
  transition: background-color 0.3s ease;
}

.nayami__btn:hover{
    background-color: #EEC5CD;
}

@keyframes yurayura-soft-big {
  0%   { transform: translateX(-50%) rotate(0deg); }
  25%  { transform: translateX(-50%) rotate(6deg); }
  50%  { transform: translateX(-50%) rotate(0deg); }
  75%  { transform: translateX(-50%) rotate(-6deg); }
  100% { transform: translateX(-50%) rotate(0deg); }
}


/* 女の子のイラストを疑似要素で追加 */
.nayami__btn::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 26%;
  transform: translateX(-50%);
  width: 65px;
  height: 79px;
  background-image: url(../../assets/images/decorations/button-image-heaet.png); 
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  animation: yurayura-soft-big 5s infinite cubic-bezier(0.42, 0, 0.58, 1);
  transform-origin: top center;
}




/* 入園案内ボタン（下） */
.admission__btn {
  background-color: var(--cherry-red);
  padding: 12px 17px;
  transition: background-color 0.3s ease;
}

.admission__btn:hover {
  background-color: #C41C47;
}

/* ========================
   トップへ戻るボタン（PC表示のみ）
======================== */

/* 固定配置・非表示から開始 */
.fixed__totop {
  position: fixed;
  bottom: 20px;
  right: 70px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  text-align: right;
}

/* 表示状態（JSで付ける） */
.fixed__totop.show {
  opacity: 1;
  pointer-events: auto;
}

/* スマホ非表示 */
@media (max-width: 768px) {
  .fixed__totop {
    display: none;
  }
}

/* ボタンの見た目 */
.fixed__totop a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #EADFD7; /* 丸背景 */
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.4rem;
  box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s;
}

/* さくらんぼ画像のスタイル */
.fixed__totop img {
  width: 40px;
  height: auto;
  transform: rotate(6.597deg);
  transition: transform 0.3s;
}

/* ホバーでさくらんぼが揺れるアニメーション */
.fixed__totop a:hover img {
  animation: shake 0.5s ease infinite;
}
@keyframes shake {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    50% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
    100% { transform: rotate(0deg); }
  }


/* ======================================
access アクセスエリア
====================================== */
/* access */
.access.section__body {
  background-color: #fff0f3;
  padding: 80px 16px;
}

.wrap-access__body {
  max-width: 1126px;
  margin: 0 auto;
}

.access .main-section__heading {
  text-align: center;
  margin-bottom: 64px;
}
@media (max-width:768px) {
  .access .main-section__heading {
     margin-bottom: 24px;  
  }
}

.main-section__title--small {
  font-size: 14px;
  color: var(--cherry-red);
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.section-title__main {
  font-size: 28px;
  font-weight: bold;
  position: relative;
}

.access .section-title__main {
    display: inline-block;
}

.access .section-title__main::before {
  position: absolute;
  content: "";
  background-image: url(../../assets/images/decorations/hata.png);
  width: 163px;
  height: 78px;
  top: -28px;
  left: -209px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  
}

.access .section-title__main::after {
    left: auto;
  position: absolute;
  content: "";
  background-image: url(../../assets/images/decorations/hata.png);
  width: 163px;
  height: 78px;
  top: -28px;
  right: -209px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scaleX(-1);
}

.access__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.access__map {
  width: 36.4%;
}

.access__map img {
  width: 100%;
  height: auto;
}

.access__info {
  width: 58.6%;
  background-color: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.access__info-item {
  display: flex;
}

.access__info-item + .access__info-item {
  display: flex;
  margin-top: 1.5vw;
  padding-top: 1vw;
  border-top: 1px dashed #e3e3e3;
}

.access__info-term {
  font-weight: bold;
  color: var(--cherry-red);
  font-size: 1.6rem;
  margin-bottom: 0.83vw;
  position: relative;
  padding-left: 16px;
  width: 190px;
}

.access__info-term::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 4px;
  height: 16px;
  background-color: var(--cherry-red);
  border-radius: 2px;
}

.access__info-desc a {
  color: var(--cherry-red);
  text-decoration: underline;
  font-weight: bold;
  display: inline-block;
  margin-top: 4px;
}

.access__info-transport {
  list-style: none;
  margin: 0;
  padding: 0;
}

.access__info-transport li {
  margin-bottom: 16px;
  padding-left: 1em;
  position: relative;
}

.access__info-transport li::before {
  content: "●";
  color: var(--cherry-red);
  position: absolute;
  left: 0px;
  top: 0.41vw;
  font-size: 1rem;
}

.access__info-list {
  position: relative;
}

.access__info-list::after {
  position: absolute;
  content: "";
  background-image: url(../../assets/images/decorations/harinezumi.png);
  width: 38%;
  height: 23%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  top: 96%;
  right: -20px;

}
/* ===== スマホ対応 ===== */
@media (max-width: 1024px) {
  .access__content {
    flex-direction: column;
  }

  .access__map {
    width: 40%;
  }

  .access__info-item {
    flex-direction: column;
    gap: 6px;
  }

  .access__info-term {
    margin-top: 5px;
  }

  .access__info-list::after {
    width: 167px;
    height: 72px;
    right: -46px;
  }
} 

@media (max-width: 768px) {
  .access .section-title__main::before {
    width: 86px;
    height: 38px;
    left: -79px;
  }

  .access .section-title__main::after {
    width: 86px;
    height: 38px;
    right: -79px;
  }
  
  .access__content {
    flex-direction: column;
    gap: 32px;
    padding-left: 4.8vw;
    padding-right: 4.8vw;
  }

  .access__map,
  .access__info {
    flex: 1 1 100%;
  }

  .access__map {
    max-width: 460px;
    width: 100%;
  }

  .access__info {
    width: 100%;
    padding: 20px;
  }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
＝＝＝＝＝＝＝下層の共通エリア＝＝＝＝＝＝＝＝
 ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/* ======================================
  下層　subheader  ーーーーーーーーーー未着
====================================== */
.subheader-inner .header-logo {
  width:  140px;
  height: auto;
}

.subheader-inner {
  display: flex;
  justify-content: space-around;
  margin-top: 25px;
}


@media (max-width: 768px) {
  .subheader-inner {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  }

}

/* ======================================
下層　ページ内リンクボタンエリア
====================================== */
/* ボタンエリア全体 */
.section-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 50px;
  margin: 30px 16px 60px;
}

/* ボタン個別 */
.section-nav__btn {
  background-color: var(--dark-pink1);
  font-family: "Zen Maru Gothic";
  font-size: 1.4rem;
  font-weight: bold;
  padding: 12px 15px 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.3s;
  width: 232px;
  height: 48px;
  display: flex;
  justify-content: space-between;
}

.section-nav__btn:hover {
  background-color: #f8d7df;
}

.section-nav__btn .arrow {
  width: 29px;
  height: 29px;
  background-color:var(--cherry-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  transition: transform 0.3s;
}

.section-nav__btn p {
  text-align: center;
  margin: 0 auto;
}

@media (max-width:600px) {
  .section-nav {
    margin-top: 30px;
    grid-template-columns: 40% 40%;
    gap: 20px 20px;
    margin-bottom: 0px;
    
  }

  .section-nav a {
    width: 160px;
    height: 50px;
    margin: 0 auto;
  }

  .section-nav__btn {
    padding: 12px 9px 12px 8px;
  }

}
 



/* ======================================
下層　園のことをもっと知る　　　ーーーーーーーーーー未着
====================================== */
.section-moreinfo {
  padding: 30px 16px 80px;
  background: linear-gradient(to bottom, #F9EDEF 0% 55%, #FEFDFE 55% 100%);
  margin-top: 30px;
  text-align: center;
}
@media (max-width:768px) {
  .section-moreinfo {
    padding: 16px 16px 50px;
  }
}
@media (max-width:600px) {
  .section-moreinfo {
    padding: 16px 16px 20px;
    background: linear-gradient(to bottom, #F9EDEF 0% 38%, #FEFDFE 38% 100%);
  }
}

.section-moreinfo .section-title {
  position: relative;
  width: 300px; 
  font-size: 2.4rem;
  margin: 0 auto;
  display: inline-block;
}

.section-moreinfo .section-title::after {
  position: absolute;
  content: "";
  background-image: url(../../assets/images/decorations/yousei2.png);
  width: 82px;
  height: 138px;
  top: -57px;
  right: -118px;
  transform: rotate(-3deg);
  background-position: center;
  background-size: cover;
  animation: swing 2.5s ease-in-out infinite;
  transform-origin: top center;
}
@media (max-width:768px) {
  .section-moreinfo .section-title::after {
    width: 66px;
    height: 105px;
    top: -35px;
    right: -66px;
  }
}

@keyframes swing {
  0%   { transform: rotate(-9deg); }
  50%  { transform: rotate(9deg); }
  100% { transform: rotate(-9deg); }
}


.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.contents-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 8px;
  align-items: center;
  justify-content: center;
  display: inline-block;
  position: relative;
  text-align: center;
  margin-top: 100px;

}

.contents-title::before {
  position: absolute;
  content: "";
  background-image: url(../../assets/images/decorations/hata.png);
  width: 163px;
  height: 78px;
  top: -28px;
  left: -209px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  
}

.contents-title::after {
  position: absolute;
  content: "";
  background-image: url(../../assets/images/decorations/hata.png);
  width: 163px;
  height: 78px;
  top: -28px;
  right: -209px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scaleX(-1);
}



.section-subtitle {
  font-size: 14px;
  color: var(--cherry-red);
  font-weight: bold;
  letter-spacing: 1px;
}

.section-subtitle--link a {
  text-decoration: none;
  color: var(--cherry-red);
}


/* カードスタイル */
.swiper-wrapper {
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 1126px;
  margin: 0 auto;
  gap: 3%;
}
@media (max-width:768px) {
  .swiper-wrapper {
    width: 100%;
  }
}
@media (max-width:600px) {
  .swiper-wrapper {
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    
  }
}

.swiper-slide {
  width: 30%;
}
@media (max-width:768px) {
  .swiper-slide {
    width: 46%;
  }
}

.moreinfo-card {
  display: block;
  text-align: center;
  transition: transform 0.3s ease;
  /* overflow: hidden; */
  /* position: relative; */
}

.moreinfo-card__imgwrap {
  display: inline-block;
}

.moreinfo-card:hover {
  transform: translateY(-8px);
}

.moreinfo-card__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* ラベル部分：緑背景のタイトル＋矢印 */
/* ラベルを画像の上にかぶせる */
.moreinfo-card__label {
  transform: translateY(-50%);
  background-color: var(--leaf-green);
  width: 158px;
  height: 32px;
  border-radius: 100px;
  padding: 0 8px 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width:768px) {
  .moreinfo-card__label {
    width: 136px;
  }
}

.moreinfo-card__title {
  font-size: 14px;
  font-family: "Zen Maru Gothic";
  letter-spacing: 1.8px;
  font-weight: bold;
  width: 112px;
  color: #fff;
}

.moreinfo-card__icon {
  width: 20px;
  height: auto;
}
/* 共通見出しレスポンシブ */
@media (max-width:768px){
  .section-moreinfo .section-title {
    font-size: 1.6rem;
    width: auto;
    letter-spacing: 2px;
  }

  .contents-title {
    font-size: 2rem;
    letter-spacing: 1.6px;
    margin-top: 80px;
  }

  .contents-title__sub {
    width: 90vw;
  }

  .section-subtitle--link a {
    font-size: 1rem;
  }

}

/* 下層の見出しの旗 */
@media screen and (max-width: 768px) {
  .contents-title::before {
    width: 83px;
    height: 44px;
    top: -28px;
    left: -70px;
  }

  .contents-title::after {
    width: 83px;
    height: 44px;
    top: -28px;
    right: -70px;
  }
}





