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

:root {
  --pink: #e48787;
  --pink-hover: #d87070;
  --text-body: #312323;
  --text-light: #64748b;
  --bg-main: #f0f5fa;
  --bg-white: #ffffff;
  --bg-beige: #e3b36329;
  --shadow-sm: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --radius: 4px;
  --radius-lg: 6px;
  --font-heading: "Zen Maru Gothic", "Hiragino Sans", sans-serif;
  --font-body: "Noto Sans JP", "Hiragino Sans", sans-serif;
  --max-width: 1200px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--bg-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
}

a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}

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

h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.875rem;
  color: var(--pink);
  text-align: center;
  margin-bottom: 1.5em;
}

h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--pink);
  text-align: center;
  margin-bottom: 1em;
}

h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--pink);
  text-align: center;
  margin-bottom: 0.6em;
}

.sp {
  display: none;
}

.service h2,
.price h2,
.support-box h2 {
  color: var(--text-body);
}

.about__text h3,
.cafe-section__heading h3 {
  font-size: 1.5rem;
  margin-top: -1em;
}

.support-box__image img,
.cafe-section__image img,
.cafe-section__image_2 img,
.profile__image img {
  aspect-ratio: auto;
}

.price,
.onigiri,
.support-wrapper,
.price-cta {
  background: var(--bg-beige);
}

.onigiri {
  padding: 2em 0 6em;
}

/* --- Section --- */
.section {
  padding: 6em 0;
}
.section--white {
  background: var(--bg-white);
}

/* --- Fade-up --- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn--outline-pink {
  background: #fff;
  color: var(--pink);
  border: 5px solid var(--pink);
  box-shadow: 0px 0px 10px 0px #FFFFFF;
}
.btn--outline-pink:hover {
  background: var(--pink);
  color: #fff;
}
.btn--outline-pink svg {
  flex-shrink: 0;
}

.btn--filled-pink {
  background: var(--pink);
  color: #fff;
  border: 2px solid var(--pink);
}
.btn--filled-pink:hover {
  background: var(--pink-hover);
  border-color: var(--pink-hover);
}

/* --- Placeholder --- */
.placeholder-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #fff, #dbeafe);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder-img svg {
  width: 64px;
  height: 64px;
  opacity: 0.4;
}
.placeholder-img--rounded {
  width: 220px;
  height: 220px;
  border-radius: 50px;
  aspect-ratio: 1;
  margin: 0 auto;
}

/* =========================================
   HEADER (80px, fixed, rgba bg)
   ========================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgb(255 255 255 / 58%);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}
.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-header__logo img {
  height: 40px;
  width: auto;
}
.site-header__logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--pink);
}
.site-header__nav {
  font-family: var(--font-heading);
  display: flex;
  gap: 4px;
  align-items: center;
}
.site-header__nav a {
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.site-header__nav a:hover {
  background: #fff;
  color: var(--pink);
}
.site-header__tel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}
.site-header__tel a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--pink);
}
.site-header__hours {
  font-size: 0.72rem;
  color: var(--text-light);
}

/* Hamburger */
.site-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 50px;
  height: 50px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  background: #fdf3f3;
  border-radius: 5px;
}
.site-header__hamburger span {
  display: block;
  margin: 0 auto;
  width: 60%;
  height: 3px;
  background: var(--pink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.site-header__hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.site-header__hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  margin-top: 80px;
  width: 100%;
  overflow: hidden;
}
.hero__visual {
  position: relative;
  width: 100%;
}
.hero__img,
.hero__placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.hero__img--sp,
.hero__placeholder.hero__img--sp {
  display: none;
}
.hero__placeholder {
  background: linear-gradient(135deg, #dbeafe 0%, #e8f4ff 50%, #f0f5fa 100%);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

/* =========================================
   ABOUT
   ========================================= */
.about__content,
.cafe-section__content,
.service__cta-buttons,
.price-cta__buttons,
.contact__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3em;
  align-items: center;
}
.about__body {
  font-size: 1rem;
  line-height: 1.9;
}
.about__body p {
  margin-bottom: 1em;
}

.about__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about__video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* =========================================
   SERVICE (3-card, pink bg)
   ========================================= */
.service {
  background: #fdf3f3;
}
.service__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5em;
  margin-bottom: 2em;
}

.item-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.item-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.item-card__image {
  overflow: hidden;
  margin-bottom: 1em;
}
.item-card__desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.9;
}

.service__cta {
  text-align: center;
}
.service__cta-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-body);
  line-height: 2;
  margin-bottom: 32px;
}

/* =========================================
   PRICE (2-card, pink bg)
   ========================================= */
.price {
  padding: 6em 0 2em;
}
.price__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5em;
  margin-bottom: 2em;
}
.price__overseas,
.cafe-section__image_2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5em;
}

.price__overseas {
  margin-top: 2em;
}

.price__overseas-text {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.8;
}

/* =========================================
   SUPPORT (dashed border box)
   ========================================= */
.support-wrapper {
  padding: 0 0 3em;
}
.support-box {
  border: 2px dashed var(--pink);
  padding: 40px 36px;
}
.support-box__divider {
  width: 60px;
  height: 2px;
  background: var(--pink);
  margin: -1em auto 2em;
}
.support-box__content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4em;
}
.support-box__text {
  font-size: 0.95rem;
  line-height: 2;
}
.support-box__text ul {
  list-style: none;
}
.support-box__text li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}
.support-box__text li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.support-box__text p {
  margin-top: 1.2em;
  font-size: 0.9rem;
}
.cancel-block {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
  margin-top: 2em;
}
.cancel-block__text {
  font-size: 0.88rem;
  line-height: 1.9;
  padding: 28px 24px;
  margin-left: 1em;
}
.cancel-block__text h3 {
  color: var(--text-body);
  text-align: left;
}

/* =========================================
   PRICE CTA
   ========================================= */
.price-cta {
  text-align: center;
  padding-top: 0;
}
.price-cta__text {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--text-body);
  margin-bottom: 2em;
}
.price-cta__text p {
  margin-bottom: 0.5em;
}
.price-cta__text strong {
  color: var(--text-body);
}
/* =========================================
   CAFE SECTIONS
   ========================================= */
.wave-divider {
  line-height: 0;
  overflow: hidden;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 80px;
  aspect-ratio: auto;
  border-radius: 0;
}
.cafe-section__body {
  font-size: 1rem;
  line-height: 1.9;
}
.cafe-section__heading {
  font-family: var(--font-heading);
  color: var(--pink);
  align-content: center;
  font-weight: 700;
}

.cafe-section__heading p {
  margin-bottom: 1em;
}

.cafe-section__body a {
  margin-top: 2em;
  width: 100%;
}

/* =========================================
   PROFILE
   ========================================= */
.profile .container {
  display: flex;
  flex-direction: column;
  gap: 4em;
}
.profile__content {
  display: grid;
  gap: 2em;
}
/* 1つ目：プロフィール画像＋名前 */
.profile__content:nth-child(1) {
  grid-template-columns: 1fr 2fr;
}
/* 2つ目：経歴（テキスト左・画像右） */
.profile__content:nth-child(2) {
  grid-template-columns: 1.5fr 1fr;
}
/* 3つ目：メッセージ（画像左・テキスト右） */
.profile__content:nth-child(3) {
  grid-template-columns: 1fr 1.5fr;
}
.profile__text h2,
.profile__text h3 {
  text-align: left;
}
.profile__body {
  font-size: 0.95rem;
  line-height: 1.9;
}
.profile__body p {
  margin-bottom: 1em;
}

/* =========================================
   GALLERY / SWIPER
   ========================================= */
.my-slider .swiper-slide img {
  width: 100%;
  aspect-ratio: 10 / 13;
  object-fit: cover;
  border-radius: none;
}
.my-slider .swiper-pagination-bullet-active {
  background: var(--pink);
}

.my-slider .swiper-button-prev,
.my-slider .swiper-button-next {
  display: none;
}
.my-slider .swiper-button-prev::after,
.my-slider .swiper-button-next::after {
  font-size: 20px;
}
.gallery__placeholder {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* =========================================
   CONTACT
   ========================================= */
.contact {
  background: var(--pink);
}
.contact h2 {
  color: #fff;
}
.contact__body {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2em;
  line-height: 1.9;
  color: #fff;
}
.contact__info {
  text-align: center;
  margin-bottom: 2em;
}
.contact__address {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-body);
  margin-bottom: 8px;
}
.contact__tel-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-body);
  margin-bottom: 8px;
}
.contact__info svg {
  stroke: var(--text-body);
}
.contact__hours {
  font-size: 0.85rem;
  color: var(--text-body);
}

.contact__buttons .btn--filled-pink {
  border: 5px solid #fff;
  box-shadow: 0px 0px 10px 0px #FFFFFF;
}

.contact__buttons .btn--outline-pink svg {
  stroke: var(--pink);
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--text-body);
  color: #fff;
  padding: 24px 0;
}
.site-footer__copy {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
}

/* =========================================
   FLOATING CTA & SCROLL TOP
   ========================================= */
.floating-cta {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--pink);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: background 0.3s, transform 0.3s, opacity 0.3s;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.floating-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.floating-cta:hover {
  background: var(--pink-hover);
  transform: translateY(-2px);
}

.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--pink);
  border: none;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: background 0.3s, opacity 0.3s, transform 0.3s;
  opacity: 0;
  pointer-events: none;
  font-size: 20px;
}
.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.scroll-top:hover {
  background: var(--pink-hover);
  transform: scale(1.1);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .container {
    padding: 0 1.5em;
  }
  .section {
    padding: 3em 0;
  }
  .price {
    padding: 3em 0 1em;
  }
  .section__heading {
    font-size: 1.5625rem;
    margin-bottom: 0.6em;
  }

  .site-header {
    background: none;
    backdrop-filter: none;
    box-shadow: none;
  }

  .site-header__inner {
    height: 64px;
    justify-content: right;
    padding-top: 20px;
  }

  .site-header__nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    flex-direction: column;
    padding: 16px;
    box-shadow: var(--shadow-md);
    border-top: 2px solid var(--pink);
    background: #fdf3f3;
  }
  .site-header__nav.is-open {
    display: flex;
  }
  .site-header__nav a {
    padding: 12px 16px;
    font-size: 0.92rem;
    border-bottom: 1px solid #f1f5f9;
  }
  .site-header__hamburger {
    display: flex;
  }
  .site-header__tel {
    display: none;
  }
  .hero {
    margin-top: 64px;
  }
  .hero__img--pc,
  .hero__placeholder.hero__img--pc {
    display: none;
  }
  .hero__img--sp,
  .hero__placeholder.hero__img--sp {
    display: block;
    aspect-ratio: 9 / 12;
  }
  .about__heading {
    text-align: center;
  }
  .service__cta-text {
    font-size: 0.95rem;
  }
  .btn--outline-pink {
    padding: 14px 32px;
    font-size: 0.9rem;
  }
  .support-box {
    padding: 24px 20px;
  }
  .btn--filled-pink {
    padding: 14px 32px;
    font-size: 0.9rem;
  }
  .site-footer__nav {
    justify-content: center;
  }
  .floating-cta {
    bottom: 16px;
    left: 16px;
    right: 16px;
    justify-content: center;
    border-radius: 50px;
  }
  .scroll-top {
    bottom: 80px;
    right: 16px;
  }
  .btn {
    padding: 12px 24px;
  }
  .contact__tel-link {
    font-size: 1.5rem;
  }
  .about__content,
  .service__grid,
  .price__grid,
  .price__overseas,
  .support-box__content,
  .profile__content:nth-child(1),
  .profile__content:nth-child(2),
  .profile__content:nth-child(3),
  .cafe-section__content,
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 2em;
  }

.service__cta-buttons,
.price-cta__buttons,
.contact__buttons {
  display: grid;
  grid-template-columns: 1fr;
	    gap: 1.6em;
}
  .cancel-block {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .support-box__image,
  .cafe-section__image_2,
  .service__cta-buttons,
  .price-cta__buttons {
    order: -1;
  }

  h2 {
    font-size: 1.6rem;
    margin-bottom: 1em;
  }

  .about__text h3,
  .cafe-section__heading h3 {
    font-size: 1.3rem;
  }
  .cancel-block__text h3 {
    text-align: center;
  }
  .support-wrapper {
    padding: 0;
  }
	.profile__item_image {
		order: 1;
	}
.profile__item_text {
		order: 2;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 2.5em;
  }
  .site-header__nav a {
    font-size: 0.75rem;
    padding: 8px 8px;
  }
}

/* WP admin bar */
.admin-bar .site-header {
  top: 32px;
}

.admin-bar .hero {
  margin-top: 80px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
  .admin-bar .hero {
    margin-top: 0;
  }
}
