/* ======================================
  Base / Variables
====================================== */
:root{
  font-size: 62.5%; /* 1rem = 10px */

  --bg: #FFFDF8;
  --accent: #81CFC7;
  --text: #3E3A39;

  --container: 1200px;
  --px24: 2.4rem;

  --h1: 3.2rem;
  --base: 1.6rem;

  --header-h: 12rem;     /* PCヘッダー目安 */
  --header-pad: .1rem;   /* ヘッダー上下padding */
}

/* ======================================
  Reset-ish
====================================== */
*,
*::before,
*::after{ box-sizing: border-box; }

body{
  margin: 0;
  font-family: "Zen Maru Gothic", system-ui, -apple-system, "Segoe UI",
    "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: var(--base);
  line-height: 1.75;
}

a{ color: inherit; text-decoration: none; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--px24);
}

/* スキップリンク */
.skip-link{
  position: absolute;
  left: -9999px;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus,
.skip-link:focus-visible{
  left: 1.6rem;
  top: 1.6rem;
  width: auto;
  height: auto;
  padding: 1.2rem 1.6rem;
  background: #fff;
  border-radius: .8rem;
  box-shadow: 0 .4rem 1.2rem rgba(0,0,0,.12);
  z-index: 9999;
}

/* アンカーずれ対策：固定ヘッダー分だけ上に余白を確保 */
section[id]{
  scroll-margin-top: calc(var(--header-h) + (var(--header-pad) * 2) + 1.2rem);
}

/* FVが固定ヘッダーに隠れないように */
.main{
  padding-top: calc(var(--header-h) + (var(--header-pad) * 2) + 1rem);
}

.underline {
  text-decoration: underline;
}

/* ページ読み込み時にふわっと表示（安全版） */
@media (prefers-reduced-motion: no-preference){
  body{
    opacity: 0;
    transform: translateY(6px);
    animation: pageFadeIn .35s ease-out forwards;
  }

  @keyframes pageFadeIn{
    to{ opacity: 1; transform: translateY(0); }
  }
}

html{
  scroll-behavior: smooth;
}

/* ======================================
  Header
====================================== */
.header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(6px);
}

.header__inner{
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
  padding-block: var(--header-pad);
}

/* ロゴ */
.header__logo{
  display: inline-flex;
  align-items: center;
  gap: 1.0rem;
  white-space: nowrap;
}
.header__logo-img{
  height: 3.2rem;
  width: auto;
  display: block;
}

/* ハンバーガー（PCは隠す） */
.header__toggle{
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  color: var(--text);
}
.header__toggle-bars{
  width: 4.4rem;
  height: 3.6rem;
  display: inline-block;
  position: relative;
}
.header__toggle-bars::before,
.header__toggle-bars::after{
  content:"";
  position: absolute;
  left: 0;
  right: 0;
  height: .3rem;
  background: var(--text);
  border-radius: 999rem;
}
.header__toggle-bars::before{ top: .7rem; }
.header__toggle-bars::after{ bottom: .7rem; }
.header__toggle-label{ display: none; }

/* ナビ（PC） */
.header__nav{
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.header__nav-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2.0rem;
}
.header__nav-link{
  font-size: 1.4rem;
  padding: .6rem .2rem;
  position: relative;
  font-weight: 500;
}
.header__nav-link::after{
  content:"";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .2rem;
  height: .2rem;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}
.header__nav-link:hover::after,
.header__nav-link:focus-visible::after{
  transform: scaleX(1);
}

/* LINE */
.header__line{
  display: inline-block;
  flex: 0 0 auto;
}
.header__line-badge{
  position: relative;
  width: 8.8rem;
  height: 8.8rem;
  display: block;
}
.header__line-shape{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.header__line-icon{
  position: absolute;
  top: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3.6rem;
  height: 3.6rem;
  display: block;
}
.header__line-text{
  position: absolute;
  left: 53%;
  bottom: 1.2rem;
  transform: translateX(-50%);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}

/* ======================================
  FV
====================================== */
.fv{ padding: 2rem 0 3.2rem; }
.fv__media{ position: relative; }

.fv__decor{
  position: absolute;
  z-index: 3;
  pointer-events: none;
}
.fv__decor--tr{
  top: -3.2rem;
  right: 8.0rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-end;
}
.fv__decor--bl{
  left: 2.4rem;
  bottom: -8rem;
}
.fv__dog{ display: block; height: auto; }
.fv__dog--sm{ width: 8rem; }
.fv__dog--lg{ width: 15rem; }
.fv__dog--big{ width: 18rem; }

.fv__image{
  width: 100%;
  aspect-ratio: 2 / 1;
  border-radius: 9rem;
  background-position: center 18%;
  overflow: hidden;
  background: var(--bg);
  position: relative;
}

.fv__copy{
  position: absolute;
  right: 4rem;
  bottom: 2rem;
  margin: 0;
  color: #fff;
  font-size: 3.2rem;
  line-height: 1.6;
  text-align: left;
  text-shadow: 0 .2rem .8rem rgba(0,0,0,.35);
  font-weight: 500;
}

.fv__copy .fv__note{
  display: inline-block;
  font-size: 1rem;
  transform: translateY(-1.6em);
}


/* 背景レイヤー共通 */
.fv__bg{
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.00);
  will-change: opacity, transform;
  backface-visibility: hidden;
  background-position: center 18%;
  background-size: cover;
  background-repeat: no-repeat;

  animation: fvSlide 15s infinite;

  transform: translateZ(0) scale(1.00);
}

/* 3枚を時間差で回す（12秒で3枚→1枚あたり4秒） */
.fv__bg:nth-child(1){ animation-delay: 0s; }
.fv__bg:nth-child(2){ animation-delay: -5s; }
.fv__bg:nth-child(3){ animation-delay: -10s; }

@keyframes fvSlide{
  /* フェードイン */
  0%   { opacity: 0; transform: scale(1.00); }
  8%   { opacity: 1; }

  /* 表示中にじわっとズームイン */
  28%  { opacity: 1; transform: scale(1.06); }

  /* フェードアウト（次のスライドのフェードインと重なるように少し長め） */
  46%  { opacity: 0; transform: scale(1.06); }

  /* それ以外は非表示で待機 */
  100% { opacity: 0; transform: scale(1.06); }
}



/* ======================================
  Section common
====================================== */
.section-kicker{
  margin: 0;
  text-align: center;
  font-size: 1.2rem;
  color: var(--accent);
  letter-spacing: .08em;
  line-height: 1;
}
.section-title{
  margin: 0;
  text-align: center;
  font-size: var(--h1);
  color: var(--accent);
  letter-spacing: .06em;
  font-weight: 500;
  line-height: 1.4;
}

/* ======================================
  CONCEPT
====================================== */
.concept{
  padding-block: 8rem;
}
.concept__inner{ text-align: center; }
.concept__body{ margin-top: 4rem; }
.concept__text{
  margin: 0 0 4rem;
  font-size: 1.6rem;
}
.concept__desc {
  font-size: 2rem;
  font-weight: 500;
}
.concept__link{
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: 1.6rem;
  color: var(--text);
  text-decoration: underline;
}
.concept__link:hover,
.concept__link:focus-visible{
  color: var(--accent);
}

/* ======================================
  Photo slot
====================================== */
.photo-slot{ padding: 0; }
.photo-slot__box{
  width: 100%;
  height: 16.0rem;
  background: #D9D9D9;
  border-radius: 1.6rem;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: rgba(62,58,57,0.55);
  border: .1rem solid rgba(0,0,0,0.06);
}

.photo-slot__picture{
  display:block;
}

.photo-slot__img{
  display:block;
  width:100%;
  height:auto;
  border-radius: 1.2rem;
}

/* ======================================
  INFORMATION
====================================== */
.info{ padding-block: 6rem; }

.info__inner{
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 2.0rem;
  align-items: start;
}
.info__head{
  grid-column: 2 / 4;
  text-align: left;
}
.info__head .section-kicker,
.info__head .section-title{ text-align: left; }

.info__body{ grid-column: 4 / 9; }

.info__list{
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1.6rem;
}

.info__loading{
  margin: 0;
  font-size: 1.6rem;
  color: rgba(62,58,57,0.65);
}

.info__item{
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 11rem 1fr;
  gap: 1.6rem;
  align-items: start;
  font-size: 1.6rem;
  line-height: 1.8;
}
.info__date{ font-weight: 500; }
.info__title{ min-width: 0; }

.info__more{
  margin-top: .8rem;
  font-size: 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  justify-self: end;
  grid-column: 6 / 8;
  text-decoration: underline;
}
.info__more:hover,
.info__more:focus-visible{ color: var(--accent); }

/* ======================================
  SERVICE
====================================== */
.service__head{
  margin: 0;
  padding-top: 8rem;
  padding-bottom: 1rem;
  text-align: center;
}

.service__frame{
  background: #F3EDE4;
  border-radius: 2.8rem;
  padding: 0 8rem 8rem;
  display: grid;
  gap: 4rem;
  position: relative;
}

.service__decor{
  position: absolute;
  top: -2.0rem;
  left: 5.4rem;
  width: 10rem;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

.service-card{
  background: #fff;
  border-radius: 2.4rem;
  padding: 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.2rem;
}
.service-card--reverse{ flex-direction: row-reverse; }

.service-card__body{
  flex: 1;
  min-width: 0;
}

.service-card__title{
  margin: 0 0 1.2rem;
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--accent);

  display: flex;
  align-items: center;
  gap: .8rem;
  flex-wrap: wrap;          /* 折り返し許可 */
}

.service-card__title-small {
  font-size: 1.6rem;
  flex: 1 1 100%;           /* 副題を次行へ落とす */
}

.service-card__title{
  line-height: 1.15; /* 見出し全体の行間を詰める */
}

.service-card__title-small{
  line-height: 1.2;  /* 副題の行間も詰める */
  margin-top: -0.2rem; /* さらに詰めたい時の微調整（0〜-0.4remで調整） */
}


.service-card__title-icon{
  width: 4rem;
  height: 4rem;
  display: block;
  flex: 0 0 auto;
}
.service-card__title-icon-private{
  width: 6rem;
  height: 6rem;
}


.service-card__text{
  margin: 0;
  font-size: 1.6rem;
}

.service-card__text-small {
  font-size: 1.4rem;
  text-align: center;
}

.service-card__desc {
  font-weight: 500;
}

.service-card__media{
  width: clamp(22rem, 32vw, 40rem);
  height: auto;
  background: transparent;
  border: none;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.service-card__img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.service-card__btn{
  margin-top: 2.0rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.4rem;
  font-size: 1.6rem;
  font-weight: 500;
  background: var(--accent);
  color: #fff;
  border-radius: 999rem;
  border: .2rem solid var(--accent);
  width: 100%;
}
.service-card__btn:hover,
.service-card__btn:focus-visible{ filter: brightness(0.98); }

.service-card__btn span {
  font-size: 1.2rem;
}

.service__note{
  justify-self: center;
  margin-top: 1.6rem;
  font-size: 1.6rem;
  text-decoration: underline;
  text-underline-offset: .3em;
}
.service__note:hover,
.service__note:focus-visible{ color: var(--accent); }

/* ======================================
  PRICE
====================================== */
.price{
  padding-block: 8rem;
  margin: 12rem auto;
  text-align: center;
  background: var(--accent);
  color: #fff;
  position: relative;
  overflow: visible;
}
.price__decor{
  position: absolute;
  top: -3.0rem;
  right: 14rem;
  width: 18rem;
  height: auto;
  z-index: 2;
  pointer-events: none;
}
.price .section-kicker,
.price .section-title{ color: #fff; }

.price__text{
  margin: 4rem auto 3rem;
  font-size: 1.6rem;
  max-width: 72rem;
}

.price__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.4rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--accent);
  background: #fff;
  border: .2rem solid #fff;
  border-radius: 999rem;
  box-shadow: 0 .6rem 1.6rem rgba(0,0,0,0.12);
  width: 100%;
  max-width: 40rem;
  margin-top: 4rem;
}
.price__btn:hover,
.price__btn:focus-visible{
  transform: translateY(-.1rem);
  box-shadow: 0 .8rem 2.0rem rgba(0,0,0,0.16);
}

/* ======================================
  STAFF
====================================== */
.staff{ padding-block: 8rem; }

.staff__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.staff__content{ flex: 1; min-width: 0; }

.staff__kicker{
  margin: 0;
  font-size: 1.2rem;
  color: var(--accent);
  letter-spacing: .08em;
  line-height: 1;
}
.staff__title{
  margin: 0;
  font-size: 3.2rem;
  color: var(--accent);
  letter-spacing: .06em;
  font-weight: 500;
  line-height: 1.4;
}
.staff__text{
  margin: 3.2rem 0 0;
  font-size: 1.6rem;
  line-height: 1.9;
}

.staff__media{
  width: 46rem;
  height: auto;
  background: transparent;
  border: none;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.staff__img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ======================================
  Instagram
====================================== */
.ig{
  padding-block: 8rem;
  background: #F3EDE4;
}
.ig__inner{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2.0rem;
  align-items: center;
}
.ig__content{
  grid-column: 1 / span 3;
  min-width: 24rem;
}

.ig__heading{
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.ig__heading-icon{
  width: 4.8rem;
  height: 4.8rem;
  display: block;
  flex: 0 0 auto;
}
.ig__heading-text{
  display: grid;
  gap: .2rem;
}
.ig__kicker,
.ig__title{ margin: 0; }

.ig__kicker{
  font-size: 1.2rem;
  color: var(--accent);
  letter-spacing: .08em;
  line-height: 1;
}
.ig__title{
  font-size: 3.2rem;
  color: var(--accent);
  letter-spacing: .06em;
  font-weight: 500;
  line-height: 1.1;
}
.ig__text{
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.9;
}
.ig__btn{
  margin-top: 3.0rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.4rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  background: var(--accent);
  border: .2rem solid var(--accent);
  border-radius: 999rem;
  width: 100%;
}
.ig__btn:hover,
.ig__btn:focus-visible{
  background: rgba(129, 207, 199, 0.08);
}

.ig__posts{
  grid-column: 4 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.0rem;
}

/* 1投稿（角丸の正方形） */
.ig-item{
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 2.0rem;
  overflow: hidden;
  background: #D9D9D9; /* 読み込み中の保険 */
}

/* 画像を枠いっぱいに */
.ig-img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}


/* ======================================
  ACCESS
====================================== */
.access{ padding: 8rem 0 6rem; }

.access__inner{
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.0rem;
  align-items: start;
}

.access__map{
  position: relative;
  border-radius: 2.4rem;
  overflow: hidden;
  background: #D9D9D9;
  border: .1rem solid rgba(0,0,0,0.06);
  min-height: 40rem;
}
.access__map-iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.access__content{
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
}
.access__rows{ display: grid; }

.access__row{ padding-block: .8rem; }
.access__label{
  margin: 0;
  font-weight: 500;
  font-size: 1.4rem;
}
.access__value{
  margin: 0;
  font-size: 1.6rem;
}

/* ======================================
  PARTNER
====================================== */
.partner{
  padding-top: 0;
  padding-bottom: 8rem;
}
.partner__grid{
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2.4rem;
}
.partner__item{
  grid-column: 4 / span 6;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;

  padding: 2.0rem 2.4rem;
  background: #fff;
  border: 1px solid var(--text);
  border-radius: 2.0rem;

  box-shadow: 0 .6rem 1.6rem rgba(0,0,0,0.10);
  transition: transform .15s ease, box-shadow .15s ease;
}
.partner__item:hover,
.partner__item:focus-visible{
  transform: translateY(-.2rem);
  box-shadow: 0 .8rem 2.0rem rgba(0,0,0,0.14);
}
.partner__name,
.partner__arrow{
  font-size: 2rem;
  font-weight: 500;
}

/* ======================================
  RESTAURANT
====================================== */
.restaurant{ padding: 8rem 0 4rem; }

.restaurant__box{
  border: 1px solid var(--accent);
  border-radius: 2.8rem;
  padding: 4.8rem 6.4rem;
  display: grid;
  grid-template-columns: 1fr 46rem;
  gap: 4rem;
  align-items: center;
  background: #fff;
  position: relative;
}

.restaurant__logo{
  position: absolute;
  top: 2.0rem;
  right: 2.0rem;
  width: 10rem;
  height: auto;
  display: block;
  z-index: 2;
}

.restaurant__title{
  margin: 0;
  font-size: 3.2rem;
  line-height: 1.35;
  color: var(--accent);
  font-weight: 500;
}
.restaurant__text{
  margin: 2.4rem 0 0;
  font-size: 1.6rem;
  line-height: 1.9;
}
.restaurant__btn{
  margin-top: 3.0rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.4rem;
  font-size: 1.6rem;
  font-weight: 500;
  background: var(--accent);
  color: #fff;
  border: .2rem solid var(--accent);
  border-radius: 999rem;
  width: 100%;
  max-width: 40rem;
}
.restaurant__btn:hover,
.restaurant__btn:focus-visible{ filter: brightness(0.98); }

.restaurant__media{
  width: 100%;
  height: auto;
  background: transparent;
  border: none;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}
.restaurant__img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ======================================
  LINE CTA
====================================== */
.line-cta{ padding-block: 8rem; }

.line-cta__box{
  max-width: 1200px;
  margin: 0 auto;
  background: #F3EDE4;
  border-radius: 2.8rem;
  text-align: center;
  position: relative;
  overflow: visible;
}

.line-cta__decor{
  position: absolute;
  z-index: 2;
  pointer-events: none;
  height: auto;
}
.line-cta__decor--tr{
  top: -3.4rem;
  left: 13rem;
  width: 14rem;
}
.line-cta__decor--bl{
  right: 13rem;
  bottom: -3rem;
  width: 14rem;
}

.line-cta__title{
  margin: 0;
  padding-top: 6rem;
  font-size: 3.2rem;
  line-height: 1.35;
  color: var(--text);
  font-weight: 500;
}
.line-cta__icon{
  margin: 3.2rem auto 0;
  width: 18rem;
  height: 18rem;
  display: grid;
  place-items: center;
}
.line-cta__hint{
  margin: 2.0rem 0 0;
  padding-bottom: 6rem;
  font-size: 1.6rem;
  color: var(--text);
}
.line-cta__icon-img{ display: block; object-fit: contain; }

/* ======================================
  FOOTER
====================================== */
.footer{
  background: #E1F7F5;
  padding-block: 4rem;
  font-size: 1.4rem;
  color: var(--text);
}
.footer__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem;
  align-items: start;
}
.footer__logo{
  display: inline-flex;
  align-items: center;
  gap: 1.0rem;
  white-space: nowrap;
}
.footer__logo-img{
  height: 3.2rem;
  width: auto;
  display: block;
}
.footer__links{
  margin-top: 1.6rem;
  display: grid;
  gap: .8rem;
}
.footer__link{
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.footer__link:hover,
.footer__link:focus-visible{
  color: var(--accent);
  text-decoration: underline;
}
.footer__text{ margin: 0; line-height: 1.9; }
.footer__copy{
  margin: 3.2rem 0 0;
  padding-top: 2.0rem;
  border-top: .1rem solid rgba(0,0,0,0.10);
  text-align: center;
  font-size: 1.2rem;
  color: rgba(62,58,57,0.75);
}

/* ======================================
  Responsive (SP)
====================================== */
@media (max-width: 767px){
  :root{
    --header-h: 9.6rem;
  }

  /* PC用改行を消すならHTMLで <br class="br-pc"> を使える */
  .br-pc{ display: none; }

  /* ===== header（SPは1行） ===== */
  .header__inner{
    gap: .8rem;
  }
  .header__logo-img{ height: 2.6rem; }

  .header__toggle{
    display: inline-flex;
    align-items: center;
    margin-left: auto;
  }
  .header__toggle-bars{
    width: 3.6rem;
    height: 3.0rem;
  }

  .header__line{ margin-left: .6rem; }
  .header__line-badge{ width: 7.2rem; height: 7.2rem; }
  .header__line-icon{ top: 1.2rem; width: 3.2rem; height: 3.2rem; }
  .header__line-text{ bottom: .9rem; font-size: 1.0rem; }

  /* ===== SPメニュー：右からスライド（※ここだけ） ===== */
  #global-nav.header__nav{
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    z-index: 3000;

    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
  }
  .header.is-open #global-nav.header__nav{
    opacity: 1;
    pointer-events: auto;
  }

  #global-nav .header__overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
  }

  #global-nav .header__drawer{
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: min(86vw, 360px);

    background: rgba(255,253,248,0.98);
    box-shadow: -.8rem 0 2.4rem rgba(0,0,0,.18);

    transform: translateX(100%);
    transition: transform .25s ease;

    padding: 2.4rem 2.0rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .header.is-open #global-nav .header__drawer{
    transform: translateX(0);
  }

  #global-nav .header__close{
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 4.4rem;
    height: 4.4rem;
    border: 0;
    background: transparent;
    cursor: pointer;
    z-index: 2;
  }
  #global-nav .header__close-x{
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
  }
  #global-nav .header__close-x::before,
  #global-nav .header__close-x::after{
    content:"";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2.6rem;
    height: .3rem;
    background: var(--text);
    border-radius: 999rem;
    transform-origin: center;
  }
  #global-nav .header__close-x::before{ transform: translate(-50%, -50%) rotate(45deg); }
  #global-nav .header__close-x::after{  transform: translate(-50%, -50%) rotate(-45deg); }

  #global-nav .header__nav-list{
    margin: 0;
    padding: 6.8rem 0 0;
    list-style: none;

    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    align-items: center;
  }
  #global-nav .header__nav-link{
    font-size: 1.8rem;
    padding: 1.0rem 0;
    font-weight: 500;
  }

  body.no-scroll{ overflow: hidden; }

  /* ===== FV（SP） ===== */
  .fv__image{
    aspect-ratio: 4 / 3;
    border-radius: 2.4rem;
  }

  .fv__decor--tr{
    top: -3rem;
    right: 1.6rem;
    gap: .8rem;
  }
  .fv__decor--bl{
    left: .8rem;
    bottom: 6rem;
  }
  .fv__dog--sm{ width: 3.8rem; }
  .fv__dog--lg{ width: 6rem; }
  .fv__dog--big{ width: 9rem; }

  .fv__copy{
    position: static;
    margin-top: 1.2rem;
    color: var(--text);
    text-shadow: none;
    text-align: center;
    font-size: 1.4rem;

    background: rgba(255,253,248,0.9);
    border-radius: 999rem;
    padding: 1.2rem 1.6rem;
    border: 1px solid rgba(0,0,0,0.05);
  }
  .fv__copy .fv__note{ transform: none; }

  /* ===== CONCEPT（SP） ===== */
  .concept{
    padding: 2rem 0 3rem;
  }
  .concept__text{
    text-align: left;
    margin: 0 0 2rem;
  }

  .concept__desc {
    font-size: 1.8rem;
  } 

  /* ===== INFORMATION（SP） ===== */
  .info__inner{
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
  .info__head,
  .info__body{ grid-column: auto; }
  .info__list{ grid-template-columns: 1fr; }
  .info__item{
    grid-template-columns: 1fr;
    gap: .4rem;
  }
  .info__more{
    grid-column: auto;
    justify-self: start;
  }

  /* ===== SERVICE（SP） ===== */
  .service__head{ padding-top: 2rem; }

  .service__frame{
    padding: 1.2rem 2.0rem;
    gap: 2rem;
  }
  .service__decor{
    width: 6rem;
    left: 3.4rem;
  }

  .service-card{
    flex-direction: column;
    align-items: stretch;
    gap: 1.6rem;
    padding: 2.4rem;
  }

  /* 画像→テキストの順に統一 */
  .service-card__media{ order: 1; }
  .service-card__body{ order: 2; }

  /* “はみ出し対策”：枠内に収める（比率は変えない） */
  .service-card__media{
    width: 100%;
    max-width: 28rem;
    margin: 0 auto;
  }
  .service-card__img{
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .service-card__text-small {
    text-align: left;
  }

  .service__note{
    margin-top: 0;
    transform: translateY(-.8rem);
  }


    .service-card__title{
    font-size: 2rem;
    display: grid !important;
    grid-template-columns: 3.2rem 1fr;
    column-gap: 1rem;
    margin: 0 0 1.2rem;
  }

  .service-card__title-icon{
    width: 3.2rem;
    height: 3.2rem;
    margin: 0;
  }

  /* 「グルーミング」本体（h3のテキストノード）と small が同じ列に入るように */
  .service-card__title-small{
    grid-column: 1 / 3 !important;
    margin: .2rem 0 0 !important;   /* 行間調整 */
    font-size: 1.2rem;
    line-height: 1.2;
  }

  .service-card__title-icon-private {
    width: 4rem;
    height: 4rem;
  }

    .service-card__btn{
    white-space: normal; 
    flex-wrap: wrap;
    line-height: 1.3;
    padding: 1.2rem 1.6rem;
    font-size: 1.4rem;
    text-align: center;
  }

  .service-card__btn span{
    font-size: 1.2rem;
    margin: 0 .2rem;
    white-space: nowrap;
  }

  .service-card__btn{
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  /* ===== PRICE（SP） ===== */
  .price{ margin: 6rem auto; }
  .price__decor{
    top: -2.0rem;
    right: 6rem;
    width: 12rem;
  }

  /* ===== STAFF（SP） ===== */
  .staff{ padding-block: 0 6rem; }
  .staff__inner{
    flex-direction: column;
    align-items: stretch;
    gap: 2.4rem;
  }
  .staff__media{
    width: 100%;
  }
  .staff__text{ margin-top: 2.4rem; }

  /* ===== Instagram（SP）：投稿 → もっと見る ===== */
  .ig{ padding-block: 6rem; }

  .ig__inner{
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    align-items: stretch;
  }

  /* contentの箱を消して並び替え可能に */
  .ig__content{ display: contents; }

  /* 見出し＋説明 → 投稿 → ボタン */
  .ig__heading{ order: 1; }
  .ig__text{ order: 2; }
  .ig__posts{ order: 3; }
  .ig__btn{
    order: 4;
    margin-top: 0;
    width: 100%;
  }

  /* SPでも3つ横並びを維持（少し詰める） */
  .ig__posts{
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }
  .ig-item{
    border-radius: 1.6rem;
  }

  /* ===== ACCESS（SP） ===== */
  .access__inner{
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .access__map{ min-height: 26rem; }

  /* ===== PARTNER（SP） ===== */
  .partner__grid{
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
  .partner__item{
    grid-column: auto;
    padding: 1.6rem 2.0rem;
    border-radius: 1.6rem;
  }

  /* ===== RESTAURANT（SP）：テキスト → 画像 → ボタン ===== */
  .restaurant{ padding-top: 4rem; }

    .restaurant__logo{
    top: 1.6rem;
    right: 1.6rem;
    width: 7.0rem;
  }

  .restaurant__box{
    grid-template-columns: 1fr;
    padding: 5rem 2.4rem;
    gap: 2.4rem;

    display: flex;
    flex-direction: column;
  }

  .restaurant__title{ font-size: 2.4rem; }

  .restaurant__content{ display: contents; }

  .restaurant__title{ order: 1; }
  .restaurant__text{ order: 2; }
  .restaurant__media{ order: 3; }
  .restaurant__btn{
    order: 4;
    margin-top: 0;
    width: 100%;
  }

  /* ===== LINE CTA（SP） ===== */
  .line-cta__box{
    border-radius: 2.4rem;
    padding-inline: 1.6rem;
  }
  .line-cta__decor--tr{
    top: -3.4rem;
    left: -1rem;
    width: 8rem;
  }
  .line-cta__decor--bl{
    right: -2rem;
    bottom: -.8rem;
    width: 8rem;
  }
  .line-cta__title{
    font-size: 2.4rem;
    padding-top: 2rem;
  }
  .line-cta__hint{ padding-bottom: 5rem; }

  /* ===== FOOTER（SP） ===== */
  .footer{ padding-block: 3.2rem; }
  .footer__grid{
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
}


/* ===== Sub page FV ===== */
.sub-fv{
  padding: 2rem 0 3.2rem;
}

.sub-fv__media{
  position: relative;
}

/* PC：3:1 の画像 */
.sub-fv__image{
  width: 100%;
  aspect-ratio: 3 / 1;
  border-radius: 2.4rem; 
  background: url("../img/hero-preschool.jpg") center / cover no-repeat;
}

.sub-fv-facility .sub-fv__image {
  background: url("../img/hero-facility.jpg") center / cover no-repeat;
  background-position: 50% 20%;
}

.sub-fv-preschool .sub-fv__image {
  background: url("../img/hero-preschool.jpg") center / cover no-repeat;
}

.sub-fv-price .sub-fv__image {
  background: url("../img/hero-price.jpg") center / cover no-repeat;
}

@media (max-width: 767px) {
  .sub-fv-price .sub-fv__image {
    background-position: 0 30%;
  }
}

.sub-fv-privacy .sub-fv__image {
  background: url("../img/hero-preschool.jpg") center / cover no-repeat;
}

.sub-fv-terms .sub-fv__image {
  background: url("../img/hero-preschool.jpg") center / cover no-repeat;
}

/* 画像の上下中央に配置 */
.sub-fv__title{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;

  margin: 0;
  font-size: 3.2rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  text-shadow: 0 0.2rem 0.8rem rgba(0,0,0,.25);
}

/* 右下の犬 */
.sub-fv__dog{
  position: absolute;
  right: 2.0rem;
  bottom: -1.6rem;
  width: 12rem;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

/* ===== Schedule ===== */
.schedule{
  padding: 6rem 0 1rem;
}

.schedule__title{
  margin: 0;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.04em;
}

.schedule__list{
  margin-top: 6rem;
  display: grid;
  gap: 4rem;
}

/* 1行 */
.schedule__row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

/* 交互（左右反転） */
.schedule__row--reverse{
  direction: rtl; /* 並び順だけ反転 */
}
.schedule__row--reverse > *{
  direction: ltr; /* 中身の文字方向は戻す */
}

/* 画像（ダミー） */
.schedule__media{
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 2.4rem;
  background: #D9D9D9;
  overflow: hidden;
}

.schedule__img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.schedule__img-arrive {
  object-position: center 90%;
}

/* テキスト */
.schedule__body{
  max-width: 46rem;
}

.schedule__time{
  margin: 0 0 0.8rem;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--text);
}

.schedule__text{
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.9;
  color: var(--text);
}

/* ===== Price link（料金はこちら） ===== */
.price-link{
  padding-block: 3.2rem; /* 上下の余白 */
}

.price-link__text{
  display: block;
  text-align: center;
  font-size: 2rem;        /* PCは2rem目安 */
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.3em;
}

.price-link__text:hover,
.price-link__text:focus-visible{
  color: var(--accent);
}

/* ===== SP最適化 ===== */
@media (max-width: 767px){
  .sub-fv{
    padding: 1.6rem 0 2.4rem;
  }

  .sub-fv__image{
    aspect-ratio: 4 / 3;
    border-radius: 2.4rem;
  }

  .sub-fv__title{
    font-size: 2.4rem;
    padding-inline: 1.6rem;
  }

  .sub-fv__dog{
    right: 1.2rem;
    bottom: -1.2rem;
    width: 8.8rem;
  }

  .schedule{
    padding: 4rem 0 6rem;
  }

  .schedule__list{
    margin-top: 3.2rem;
    gap: 4.8rem;
  }

  .schedule__row{
    grid-template-columns: 1fr; /* 縦並び */
    gap: 1.6rem;
  }

  /* スマホは交互をやめて「画像→テキスト」に統一 */
  .schedule__row--reverse{
    direction: ltr;
  }

  .schedule__body{
    max-width: none;
  }

  .schedule__media{
    border-radius: 2.0rem;
  }

  .price-link{
    padding-block: 2.4rem;
  }

  .price-link__text{
    font-size: 1.8rem; /* スマホは少しだけ小さめ */
  }
}

/* ===== About：交互レイアウト（施設について） ===== */
.about{
  padding-block: 8rem;
}

.about__list{
  display: grid;
  gap: 6.0rem; /* ブロック間の余白 */
}

/* 1ブロック */
.about-item{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.0rem;
  align-items: center;
}

/* 交互（左右入れ替え） */
.about-item--reverse .about-item__media{ order: 2; }
.about-item--reverse .about-item__body{ order: 1; }

/* 画像枠 */
.about-item__media{
  border-radius: 2.4rem;
  overflow: hidden;
  background: #D9D9D9;
  aspect-ratio: 3 / 2;
}

/* 画像 */
.about-item__img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* テキスト */
.about-item__title{
  margin: 0;
  font-size: 2.4rem;
  font-weight: 500;
}

.about-item__text{
  margin: 1.6rem 0 0;
  font-size: 1.6rem;
  line-height: 1.9;
}

/* ===== SP：縦並び（画像→テキスト） ===== */
@media (max-width: 767px){
  .about{
    padding-block: 6rem;
  }

  .about__list{
    gap: 4.0rem;
  }

  .about-item{
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  /* SPは常に 画像→テキスト に統一（逆転解除） */
  .about-item--reverse .about-item__media{ order: 1; }
  .about-item--reverse .about-item__body{ order: 2; }

  .about-item__media{
    border-radius: 2.0rem;
    aspect-ratio: 4 / 3; /* スマホで見やすい比率 */
  }

  .about-item__text{
    margin-top: 1.2rem;
  }
}

/* ===== Privacy Policy ===== */
.privacy {
  padding: 32px 0 72px;
}

.privacy__title {
  font-size: 2rem;
  letter-spacing: .06em;
  margin: 0 0 12px;
  text-align: center;
  font-weight: 500;
}

.privacy__lead {
  margin: 0 0 24px;
  line-height: 1.9;
}

.privacy__section {
  margin-top: 22px;
}

.privacy__heading {
  font-size: 1.8rem;
  margin: 0 0 10px;
}

.privacy__section p {
  margin: 0 0 10px;
  line-height: 1.9;
}

.privacy__section ul {
  margin: 0;
  padding-left: 22px;
  line-height: 1.9;
}

.privacy__section li {
  margin: 4px 0;
}

.privacy-list {
  list-style-type: disc;
}

/* SP最適化 */
@media (max-width: 767px) {
  .privacy {
    padding: 24px 0 56px;
  }
  .privacy__heading {
    font-size: 1.6rem;
  }
}



/* ===== Terms / Legal pages ===== */
.legal{
  padding: 3.2rem 0 6.4rem;
}

/* ヘッダーが fixed/sticky で本文が隠れる対策（共通で使える） */
.main{
  scroll-margin-top: 90px;
}

.legal__title{
  font-size: 2rem;
  line-height: 1.3;
  margin: 0 0 2rem;
  font-weight: 500;
  text-align: center;
}

.legal__body{
  max-width: 900px; 
  margin: 0 auto;
}

.legal__section{
  margin: 2.6rem 0;
}

.legal__heading{
  margin: 0 0 1rem;
  font-weight: 500;
}

.legal__subheading{
  margin: 1.8rem 0 0.8rem;
  font-weight: 500;
}

.legal__text{
  margin: 0.1rem 0;
}

/* ●付きリスト（disc） */
.legal__list{
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 1.2em; /* 丸が見える余白 */
  margin: 0.1rem 0;
}

.legal__list li{
  margin: 0.35em 0;
}

.legal__list li::marker{
  font-size: 0.9em;
}

/* SP最適化 */
@media (max-width: 767px){
  .legal{
    padding: 2.4rem 0 4.8rem;
  }
  .legal__title{
    font-size: 1.7rem;
    margin-bottom: 1.6rem;
  }
  .legal__body{
    max-width: 100%;
  }
}


/* ======================================
  Inquiry
====================================== */

.inquiry{
  padding: 3.2rem 0 6.4rem;
}

@media (max-width: 767px){
  .inquiry{
    padding: 2.4rem 0 5.6rem;
  }
}

.inquiry__title{
  font-size: 2.0rem;
  line-height: 1.3;
  margin: 0 0 1.2rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: .06em;
}

.inquiry__lead{
  margin: 0 auto 1.8rem;
  max-width: 76rem;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.9;
  color: var(--muted, #7A7773);
}

.inquiry__form{
  max-width: 90rem;
  margin: 0 auto;
  background: #fff;
  border: 0.1rem solid var(--line, #E2D9CA);
  border-radius: 1.8rem;
  padding: 1.8rem;
}

.inquiry__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

.inquiry__field{
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.inquiry__field--full{
  grid-column: 1 / -1;
}

.inquiry__label{
  font-weight: 500;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}

.inquiry__req{
  font-size: 1.2rem;
  font-weight: 500;
  padding: .2rem .8rem;
  border-radius: 99.9rem;
  color: var(--text, #3E3A39);
  background: rgba(129, 207, 199, 0.22);
  border: 0.1rem solid rgba(129, 207, 199, 0.35);
}

.inquiry__input,
.inquiry__textarea{
  width: 100%;
  border: 0.1rem solid var(--line, #E2D9CA);
  border-radius: 1.2rem;
  padding: 1.2rem;
  background: linear-gradient(180deg, #fff, #fffdfb);
  color: var(--text, #3E3A39);
  outline: none;
  font-size: 1.6rem;
  line-height: 1.7;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.inquiry__textarea{
  min-height: 14rem;
  resize: vertical;
}

.inquiry__input:focus,
.inquiry__textarea:focus{
  border-color: rgba(129, 207, 199, 0.9);
  box-shadow: 0 0 0 0.4rem rgba(129, 207, 199, 0.25);
}

.inquiry__hint{
  margin: .2rem 0 0;
  font-size: 1.2rem;
  color: var(--muted, #7A7773);
  line-height: 1.6;
}

.inquiry__consent{
  margin-top: 1.4rem;
  padding: 1.2rem 1.4rem;
  border-radius: 1.8rem;
  background: var(--bg-strong, #F3EDE4);
  border: 0.1rem dashed rgba(226, 217, 202, 0.9);
}

.inquiry__consentRow{
  display: flex;
  gap: 1.0rem;
  align-items: flex-start;
}

.inquiry__checkbox{
  margin-top: .4rem;
  width: 1.8rem;
  height: 1.8rem;
  accent-color: var(--accent, #81CFC7);
}

.inquiry__consentText{
  font-size: 1.4rem;
  line-height: 1.9;
  color: var(--text, #3E3A39);
}

.inquiry__error{
  margin-top: 1.0rem;
  padding: 1.0rem 1.2rem;
  border-radius: 1.2rem;
  border: 0.1rem solid rgba(220, 80, 80, 0.35);
  background: rgba(220, 80, 80, 0.06);
  color: var(--text, #3E3A39);
  font-size: 1.3rem;
}

.inquiry__actions{
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
  text-align: center;
}

.inquiry__note{
  margin: 0;
  font-size: 1.2rem;
  color: var(--muted, #7A7773);
  line-height: 1.7;
}

.inquiry__submit{
  border: 0;
  cursor: pointer;
  border-radius: 99.9rem;
  padding: 1.2rem 1.8rem;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: .02em;
  min-width: 18rem;
  color: #fff;
  background: linear-gradient(135deg, #81CFC7, #B5E3DC);
  box-shadow: 0 1.0rem 2.6rem rgba(0,0,0,0.12);
  transition: transform .06s ease, opacity .15s ease, box-shadow .15s ease;
}

.inquiry__submit:active{
  transform: translateY(.1rem);
}

.inquiry__submit:disabled{
  opacity: .5;
  cursor: not-allowed;
  box-shadow: none;
}

@media (max-width: 767px){
  .inquiry__form{
    padding: 1.6rem;
  }
  .inquiry__title{
    font-size: 1.8rem;
  }
}

/* destyle対策： */
.inquiry__checkbox{
  appearance: auto;
  -webkit-appearance: checkbox;
  width: 1.8rem;
  height: 1.8rem;
  opacity: 1;
  position: static;
  margin: .4rem 0 0;
  accent-color: var(--accent, #81CFC7);
}

/* ===== Thank you page ===== */
.thanks{
  padding: 3.2rem 0 6.4rem;
  text-align: center;
}

.thanks__title{
  margin: 0 0 1.2rem;
  font-size: 2.0rem;
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.3;
}

.thanks__text{
  margin: 0 auto 2.4rem;
  max-width: 64rem;
  font-size: 1.6rem;
  line-height: 1.9;
  color: var(--text, #3E3A39);
}

.thanks__actions{
  display: grid;
  gap: 1.2rem;
  justify-items: center;
}

.thanks__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20rem;
  padding: 1.2rem 2.4rem;
  border-radius: 999rem;
  background: var(--accent, #81CFC7);
  color: #fff;
  font-weight: 500;
  font-size: 1.6rem;
  text-decoration: none;
}

.thanks__btn:hover,
.thanks__btn:focus-visible{
  filter: brightness(0.98);
}

.thanks__link{
  font-size: 1.4rem;
  text-decoration: underline;
  text-underline-offset: .3em;
  color: var(--text, #3E3A39);
}

.thanks__link:hover,
.thanks__link:focus-visible{
  color: var(--accent, #81CFC7);
}

@media (max-width: 767px){
  .thanks{
    padding: 2.4rem 0 5.6rem;
  }

  .thanks__title{
    font-size: 1.8rem;
  }

  .thanks__btn{
    width: 100%;
    min-width: 0;
  }
}

/* ======================================
  WP Pagination
====================================== */
.navigation.pagination{
  margin-top: 2.4rem;
}

.navigation.pagination .nav-links{
  display: flex;
  gap: .8rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* 数字・前後リンク共通 */
.navigation.pagination .page-numbers{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 3.6rem;
  height: 3.6rem;
  padding: 0 1.2rem;

  border-radius: 999rem;
  border: .1rem solid rgba(0,0,0,0.10);
  background: #fff;

  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  line-height: 1;
}

/* …（省略記号） */
.navigation.pagination .page-numbers.dots{
  border: none;
  background: transparent;
  padding: 0 .4rem;
  min-width: auto;
}

/* 現在ページ */
.navigation.pagination .page-numbers.current{
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ホバー */
.navigation.pagination a.page-numbers:hover,
.navigation.pagination a.page-numbers:focus-visible{
  border-color: rgba(129,207,199,0.6);
}

/* 前へ・次へを少し広めに */
.navigation.pagination .page-numbers.prev,
.navigation.pagination .page-numbers.next{
  padding: 0 1.4rem;
}

/* SP調整 */
@media (max-width: 767px){
  .navigation.pagination .page-numbers{
    min-width: 3.4rem;
    height: 3.4rem;
    font-size: 1.3rem;
  }
}
