/*
Theme Name: Cabin Test Theme
Description: WordPress theme for Cabin Test
Version: 1.0
Author: Lighthouse
*/

/* =========================
   Reset / Base
========================= */

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

html {
  font-size: 100%;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
}

body.subpage {
  padding-top: 68px;
}

@media screen and (min-width: 960px) {
  body.subpage {
    padding-top: 120px;
  }
  
  body.subpage .site-header {
    transform: translateY(0) !important;
  }
}

body.is-modal-open {
  overflow: hidden;
}


/* =========================
   Element Reset
========================= */

h1, h2, h3, h4, h5, h6,
p, ul, ol, li,
figure {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

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

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

.pc {
  display: none;
}

.sp {
  display: block;
}

@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }

  .sp {
    display: none;
  }
}

/* =========================
   Common
========================= */

.container {
  width: min(100% - 32px, 1200px);
  margin: 0 auto;
}

/* =========================
   Variables
========================= */

:root {
  --main-color: #d9b24c; /* CTAボタン */
  --text-color: #333;
  --sub-text-color: #666;
  --bg-light: #f7f7f7;
  --border-color: #e5e5e5;
}

/* ========================================
   Breakpoints
======================================== */

/* tablet */
@media screen and (min-width: 768px) {

}

/* small desktop */
@media screen and (min-width: 960px) {

}

/* desktop */
@media screen and (min-width: 1200px) {

}

/* =========================
   ヘッダー
========================= */

/* ===== 固定ヘッダー ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #ddd;
  z-index: 9999;
  transform: translateY(0);
}

.header-inner {
  height: 100%;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111;
  flex-shrink: 0;
}

.header-logo {
  width: 130px;
  height: auto;
  display: block;
}

.header-brand-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}

.header-nav {
  display: none;
}

.header-nav ul {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #111;
  line-height: 1.15;
}

.header-nav .en {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.header-nav .jp {
  margin-top: 6px;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.header-contact {
  display: none;
}

.header-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #6c6765;
  border-radius: 50%;
}

.header-contact img {
  width: 30px;
  height: 30px;
  display: block;
}

.header-toggle {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.header-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto;
  background: #111;
  transition: 0.3s ease;
}

.header-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.header-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.sp-nav {
  position: fixed;
  top: 72px;
  right: 0;
  width: 100%;
  height: calc(100vh - 72px);
  background: rgba(255, 255, 255, 0.98);
  padding: 32px 24px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 9998;
}

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

.sp-nav ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sp-nav a {
  color: #111;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

/* ハンバーガー */


/* 開いた時のアニメ */
.header-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.header-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* SPメニュー */
.sp-nav {
  position: fixed;
  top: 72px;
  right: 0;
  width: 100%;
  height: calc(100vh - 72px);
  background: rgba(255, 255, 255, 0.98);
  padding: 32px 24px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 9998;
}

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

.sp-nav ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sp-nav a {
  color: #111;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

/* PC */
@media screen and (min-width: 960px) {
  .site-header {
    height: 84px;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
  }

  .header-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 28px;
    height: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
  }

  .header-nav {
    display: block;
    justify-self: center;
    align-self: center;
  }

  .header-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.15;
  }

  .header-nav .en {
    font-size: 16px;
    font-weight: 700;
  }

  .header-nav .jp {
    margin-top: 4px;
    font-size: 10px;
    font-weight: 700;
  }
  
   .site-header.is-show {
    transform: translateY(0);
  }
  

  .site-header.is-show {
    transform: translateY(0) !important;
  }

  .header-toggle {
    display: none !important;
  }

  .header-nav {
    display: block !important;
  }

  .sp-nav {
    display: none !important;
  }
  
  .header-contact {
    display: block;
  }
  
  .header-logo {
    width: 160px;
  }
  
}



/* =========================
   FOOTER
========================= */
.footer {
  background: #000;
  color: #fff;
  padding: 48px 20px 56px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-brand {
  display: block;
  flex-shrink: 0;
}

.footer-brand-logo {
  width: 54px;
  height: auto;
  display: block;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav li {
  position: relative;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.6;
}

.footer-copy {
  margin-top: 28px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-logo {
  margin-top: 28px;
  text-align: center;
}

.footer-logo img {
  width: 120px;
  height: auto;
  display: inline-block;
}

/* =========================
   PC
========================= */
@media screen and (min-width: 960px) {
  .footer {
    padding: 70px 40px 80px;
  }

  .footer-top {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
  }

  .footer-brand-logo {
    width: 60px;
  }

  .footer-nav {
    display: flex;
    justify-content:  flex-start;
  }

  .footer-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    max-width: 500px;
    margin: 0 ;
    row-gap: 6px;
    column-gap: 0;
  }

  .footer-nav li {
    position: relative;
    padding: 6px 14px;
  }

  .footer-nav li:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    line-height: 1;
  }

  .footer-nav a {
    font-size: 14px;
    line-height: 1.7;
  }

  .footer-copy {
    margin-top: 34px;
    font-size: 12px;
  }

  .footer-logo {
    margin-top: 44px;
  }

  .footer-logo img {
    width: 150px;
  }
}

/* =========================
   ヒーロー
========================= */

.hero {
  position: relative;
  height: 88vh;
  min-height: 520px;
  max-height: 680px;
  overflow: hidden;
}


.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.is-current img,
.hero-slide.is-next img {
  transform: translateZ(0) scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;

  transform: translateZ(0) scale(1.03);
  transition:
    transform 8s ease-out,
    opacity 2.8s ease-in-out,
    filter 2.8s ease-in-out;

  will-change: transform, opacity;
  backface-visibility: hidden;
}

.hero-slide.is-current {
  opacity: 1;
  z-index: 2;
}

.hero-slide.is-current img,
.hero-slide.is-next img {
  transform: scale(1);
}

.hero-slide.is-next {
  opacity: 1;
  z-index: 3;
}

.hero-slide.is-next img {
  transform: scale(1);
}

@keyframes heroZoomOut {
  from {
    transform: scale(1.08);
    }
  to {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.26);
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 4;
  height: 100%;
  padding: 20px 16px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.hero-title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.hero-nav {
  display: none;
}

.hero-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 20px;
}

.hero-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.hero-nav .en {
  font-size: 16px;
  font-weight: 700;
}

.hero-nav .jp {
  margin-top: 4px;
  font-size: 10px;
  white-space: nowrap;
}

.hero-logo {
  transform: translateY(-20px);
}

.hero-logo img {
  width: 260px;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .hero {
    min-height: 780px;
  }

  .hero-content {
    padding: 40px;
  }

  .hero-title {
    font-size: clamp(48px, 6vw, 72px);
  }

  .hero-nav {
    display: block;
    margin-top: 36px;
  }

  .hero-nav ul {
    gap: 32px;
  }

  .hero-nav .en {
    font-size: 18px;
  }

  .hero-nav .jp {
    margin-top: 6px;
    font-size: 11px;
  }
}
/* =========================
   セクション
========================= */
.section {
  padding: 80px 20px;
}

@media screen and (min-width: 768px) {
  .section {
    padding: 120px 40px;
  }

  .first-section {
    padding: 140px 40px 120px;
  }
}

/* =========================
  イントロ
========================= */

.intro {
  position: relative;
  background: url("images/top/intro-bg.jpg") center center / cover no-repeat;
}

.intro-inner {
  min-height: 560px;
  padding: 24px 16px;
  display: flex;
  align-items: center;
}

.intro-box {
  width: 100%;
  max-width: 320px;
  background: rgba(255, 255, 255, 0.82);
  padding: 28px 24px;
  margin:auto;
}

.intro-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.04em;
}

.intro-subtitle {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
}

.intro-text {
  margin-top: 22px;
}

.intro-text p {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
}

.intro-text p:first-child {
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .intro {
    background-position: center center;
  }

  .intro-inner {
    min-height: 760px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
  }

  .intro-box {
    max-width: 440px;
    padding: 56px 48px;
    margin:0 0 0 40px;
  }

  .intro-title {
    font-size: 60px;
  }

  .intro-subtitle {
    margin-top: 10px;
    font-size: 18px;
  }

  .intro-text {
    margin-top: 40px;
  }

  .intro-text p {
    margin-top: 28px;
    font-size: 18px;
    line-height: 1.9;
  }
}

/* =========================
  キャッチ
========================= */

.catchphrase {
  background-color: #2f335b;
}

.catchphrase-inner {
  min-height: 270px;
  padding: 44px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catchphrase-title {
  max-width: 720px;
  font-size: 21px;
  text-align: center;
  color: #fff;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.04em;
  
}

@media screen and (min-width: 768px) {
  .catchphrase-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
  }

  .catchphrase-title {
    max-width: 1200px;
    font-size: 36px;
  }
}


/* =========================
   ABOUT
========================= */

.about {
  position: relative;
  background: url("images/top/about-bg.jpg") center center / cover no-repeat;
}

.about-inner {
  min-height: 740px;
  padding: 24px 16px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.about-box {
  width: 100%;
  max-width: 320px;
  margin:auto;
  background: rgba(255, 255, 255, 0.82);
  padding: 28px 24px;
}

.about-title {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.04em;
}

.about-subtitle {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}

.about-text {
  margin-top: 24px;
}

.about-text p {
  margin-top: 18px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
}

.about-text p:first-child {
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .about-inner {
    min-height: 760px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
  }

  .about-box {
    max-width: 440px;
    padding: 56px 48px;
    margin: 0 40px 0 0 ;
  }

  .about-title {
    font-size: 54px;
  }

  .about-subtitle {
    margin-top: 10px;
    font-size: 18px;
  }

  .about-text {
    margin-top: 36px;
  }

  .about-text p {
    margin-top: 24px;
    font-size: 18px;
    line-height: 2;
  }
}

/* =========================
   FEATURE
========================= */
.feature {
  padding: 72px 20px 40px;
}

.feature-inner {
  width: 100%;
  margin: 0 auto;
}

.feature-heading {
  text-align: center;
}

.feature-heading-en {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.06em;
}

.feature-heading-jp {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.feature-list {
  margin-top: 40px;
  display: grid;
  gap: 24px;
}

.feature-item {
  position: relative;
  padding-bottom: 8px;
}

.feature-number {
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  color: rgba(0, 0, 0, 0.06);
  margin-bottom: 14px;
  text-align: center;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.feature-text {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.95;
}

.feature-note {
  margin-top: 24px;
  font-size: 12px;
  line-height: 1.8;
  color: #777;
}

/* =========================
   PC
========================= */
@media screen and (min-width: 960px) {
  .feature {
    padding: 110px 40px 120px;
  }

  .feature-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .feature-heading-en {
    font-size: 36px;
  }

  .feature-heading-jp {
    margin-top: 10px;
    font-size: 14px;
  }

  .feature-list {
    margin-top: 72px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .feature-item {
    min-height: 420px;
    padding: 0 26px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
  }
  
  .feature-item:first-child {
    padding-left: 0;
  }

  .feature-item:nth-child(1) {
    padding-right: 25px;
  }

  .feature-item:nth-child(2) {
    padding: 0 25px;
  }

  .feature-item:nth-child(3) {
    padding-left: 25px;
  }
  
  .feature-item:last-child {
    border-right: none;
  }

  .feature-number {
    font-size: 86px;
    font-weight: 700;
    margin-bottom: 28px;
    line-height: 1;
  }

  .feature-title {
    font-size: 20px;
    line-height: 1.8;
    margin-top: 10px;
  }

  .feature-text {
    margin-top: 22px;
    font-size: 15px;
    line-height: 2.2;
  }
}


/* =========================
   GALLERY
========================= */
.gallery {
  background: #f3f3f3;
  padding: 72px 20px 80px;
}

.gallery-inner {
  width: 100%;
  margin: 0 auto;
}

.gallery-heading {
  text-align: center;
}

.gallery-heading-en {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.06em;
}

.gallery-heading-jp {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

/* SP */
.gallery-columns {
  margin-top: 44px;
  display: grid;
  gap: 12px;
}

.gallery-col {
  display: grid;
  gap: 12px;
}

.gallery-item {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-btn-wrap {
  margin-top: 40px;
  text-align: center;
}

.gallery-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 50px;
  background: #f0dc14;
  color: #111;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

/* PC */
@media screen and (min-width: 960px) {
  .gallery {
    padding: 110px 40px 120px;
  }

  .gallery-inner {
    max-width: 1200px;
  }

  .gallery-heading-en {
    font-size: 36px;
  }

  .gallery-heading-jp {
    margin-top: 10px;
    font-size: 14px;
  }

  .gallery-columns {
    margin-top: 150px;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    gap: 8px;
    align-items: start;
  }

  .gallery-columns.has-multiple {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-col {
    display: grid;
    gap: 8px;
  }

  .gallery-columns.has-multiple .gallery-col-right {
    transform: translateY(-50px); 
  }

  .gallery-btn-wrap {
    margin-top: 32px;
  }

  .gallery-btn {
    width: 250px;
    height: 50px;
    font-size: 12px;
  }
}


/* =========================
   flow
========================= */

.flow {
  position: relative;
  padding: 80px 20px;
}

.flow-bg {
  position: absolute;
  inset: 0;
  background: url("images/top/flow-bg.jpg") center / cover no-repeat;
  z-index: 0;
}

.flow-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* ← 40% */
}

.flow-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.flow-box {
  background: #fff;
  padding: 36px 20px;
}

.flow-heading {
  text-align: center;
}

.flow-heading-en {
  font-size: 28px;
  font-weight: 500;
}

.flow-heading-jp {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
}

.flow-lead {
  margin-top: 14px;
  font-size: 14px;
}

.flow-list {
  margin-top: 32px;
  display: grid;
  gap: 18px;
}

.flow-item {
  text-align: center;
  position: relative;
}

.flow-number {
  font-size: 56px;
  font-weight: 700;
  color: rgba(0,0,0,0.08);
  margin-bottom: 10px;
}

.flow-title {
  font-size: 16px;
  font-weight: 700;
}

.flow-text {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 960px) {

  .flow {
    padding: 120px 40px;
  }

  .flow-box {
    padding: 60px 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }

  .flow-heading-en {
    font-size: 36px;
  }

  .flow-list {
    margin-top: 50px;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .flow-item {
    padding: 0 20px;
  }

.flow-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(0, 0, 0, 0.08);
}

  .flow-number {
    font-size: 90px;
    margin-bottom: 20px;
  }

  .flow-title {
    font-size: 18px;
  }

  .flow-text {
    font-size: 14px;
    line-height: 2;
  }
}

/* =========================
   spec
========================= */

.spec {
  padding: 72px 20px 40px;
}

.spec-inner {
  width: 100%;
  margin: 0 auto;
}

.spec-heading {
  text-align: center;
}

.spec-heading-en {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.spec-heading-jp {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
}

.spec-lead {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.9;
}

.spec-image {
  margin-top: 32px;
}

.spec-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.spec-list {
  margin-top: 40px;
}

.spec-list p {
  display: grid;
  grid-template-columns: 82px 1fr;
  column-gap: 14px;
  align-items: start;
  font-size: 14px;
  line-height: 1.85;
}

.spec-list span {
  display: block;
  min-width: auto;
  font-weight: 700;
}

@media screen and (min-width: 960px) {

  .spec {
    padding: 110px 40px 120px;
  }

  .spec-inner {
    max-width: 1200px;
  }

  .spec-heading-en {
    font-size: 36px;
  }

  .spec-heading-jp {
    margin-top: 10px;
    font-size: 14px;
  }

  .spec-lead {
    margin-top: 14px;
    font-size: 15px;
  }

  .spec-image {
    margin-top: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .spec-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .spec-list p {
    grid-template-columns: 140px 1fr;
    column-gap: 24px;
    font-size: 15px;
  }

  .spec-list span {
    font-weight: 600;
    min-width: 140px;
  }
}

/* =========================
   FAQ
========================= */

.faq {
  padding: 72px 20px 80px;
}

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

.faq-heading {
  text-align: center;
}

.faq-heading-en {
  font-size: 28px;
  font-weight: 500;
}

.faq-heading-jp {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
}

.faq-list {
  margin-top: 36px;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.faq-question {
  width: 100%;
  padding: 16px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}

.faq-q {
  font-weight: 700;
  font-size: 16px;
}

.faq-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.8;
}

.faq-icon {
  font-size: 18px;
  line-height: 1;
  transform: translateY(0px);
}

.faq-answer {
  display: none;
  padding-bottom: 20px;
  margin-top: 4px;
}

.faq-answer p {
  display: grid;
  grid-template-columns: 24px 1fr;
  column-gap: 10px;
  font-size: 14px;
  line-height: 2;
}

.faq-answer-content {
  display: grid;
  grid-template-columns: 24px 1fr;
  column-gap: 10px;
}

.faq-answer-text {
  font-size: 14px;
  line-height: 2;
  flex: 1;
  min-width: 0;
}

.faq-answer-text > *:first-child {
  margin-top: 0;
}

.faq-answer-text p {
  display: block;
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}

.faq-a {
  font-weight: 700;
}

@media screen and (min-width: 960px) {

  .faq {
    padding: 110px 40px 120px;
  }

  .faq-heading-en {
    font-size: 36px;
  }
  
  .faq-q {
    font-size: 18px;
  }

  .faq-text {
    font-size: 16px;
  }

  .faq-answer p {
    font-size: 15px;
  }

  .faq-answer-text {
    font-size: 15px;
  }
}

/* =========================
   INSTAGRAM
========================= */
.instagram {
  padding: 60px 20px 80px;
}

.instagram-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.instagram-icon {
  margin-bottom: 10px;
}

.instagram-icon img {
  width: 28px;
  height: 28px;
  display: block;
  margin: 0 auto;
}

.instagram-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.instagram-item {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (min-width: 960px) {
  .instagram {
    padding: 60px 40px 110px;
  }

  .instagram-inner {
    max-width: 720px;
  }

  .instagram-icon img {
    width: 30px;
    height: 30px;
  }

  .instagram-grid {
    margin-top: 32px;
    gap: 8px;
  }
}


/* =========================
   CONTACT
========================= */

.contact {
  background: #f3f3f3;
  padding: 72px 20px 64px;
  text-align: center;
}

.contact-inner {
  max-width: 800px;
  margin: 0 auto;
}

.contact-heading-en {
  font-size: 28px;
  font-weight: 500;
}

.contact-heading-jp {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
}

.contact-text {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.9;
}

.contact-btn-wrap {
  margin-top: 36px;
}

.contact-btn {
  display: inline-block;
  width: 220px;
  padding: 14px 0;
  background: #ffe821;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.contact-btn:hover {
  opacity: 0.8;
}

@media screen and (min-width: 960px) {

  .contact {
    padding: 50px 40px;
  }

  .contact-heading-en {
    font-size: 36px;
  }

  .contact-text {
    font-size: 15px;
  }

  .contact-btn {
    font-size: 15px;
  }
}

/* =========================
   FLYER
========================= */
.flyer-section {
  padding: 72px 20px 80px;
}

.flyer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.flyer-link {
  display: inline-block;
  width: 100%;
  max-width: 560px;
}

.flyer-link img {
  width: 100%;
  height: auto;
  display: block;
}


/* =========================
   DIGITAL BOOK
========================= */
.digital-book {
  background: #fff;
  padding: 0 20px 0;
}

.digital-book-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.digital-book-link {
  display: inline-block;
  width: 100%;
  max-width: 760px;
  transition: opacity 0.3s;
}

.digital-book-link:hover {
  opacity: 0.85;
}

.digital-book-link img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (min-width: 960px) {
  .digital-book {
    padding: 80px 40px 100px;
  }

  .digital-book-link {
    max-width: 720px;
  }
}


/* =========================
   GALLERY PAGE
========================= */

.gallery-page-mv {
  padding: 56px 20px 40px;
  background: #fff;
}

.gallery-page-mv-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.gallery-page-title-en {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.gallery-page-title-jp {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
}

.gallery-archive {
  padding: 0 20px 72px;
  background: #fff;
}

.gallery-archive-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.gallery-card {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
  margin-bottom: 4px;
}

.gallery-card-label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  min-width: 72px;
  padding: 8px 12px;
  background: #2f335b;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.gallery-card-image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gallery-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ページャー */
.gallery-pagination {
  margin-top: 56px;
  text-align: center;
}

.gallery-pagination ul {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gallery-pagination a {
  color: #111;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.gallery-pagination .page-numbers {
  color: #111;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.gallery-pagination .is-current {
  font-weight: 700;
}

.gallery-empty {
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  padding: 40px 0;
}

@media screen and (min-width: 960px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 56px 32px;
  }
  
  .gallery-card {
    display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
  margin-bottom: 4px;
}
}

/* =========================
   GALLERY MODAL
========================= */

.gallery-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 10000;
}

.gallery-modal.is-open {
  display: block;
}

.gallery-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.gallery-modal-content {
  position: relative;
  z-index: 1;
  width: calc(100% - 24px);
  margin: 80px auto 0;
  background: #fff;
  padding: 20px 16px 24px;
}

.gallery-modal-close {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 25px;
  height: 25px;
  border: none;
  background: #111;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.gallery-modal-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.gallery-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-modal-body {
  margin-top: 16px;
}

.gallery-modal-category {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #2f335b;
  margin-top: 8px;
}

.gallery-modal-text {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.9;
}

/* =========================
   PC
========================= */
@media screen and (min-width: 960px) {
  .gallery-modal {
    display: none;
    align-items: flex-start;
    padding-top: 120px;
  }

  .gallery-modal.is-open {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .gallery-modal-close {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 36px;
  height: 36px;
  border: none;
  background: #111;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
  
  .gallery-page-mv {
    padding: 100px 40px 60px;
  }

  .gallery-page-title-en {
    font-size: 36px;
  }

  .gallery-page-title-jp {
    margin-top: 10px;
    font-size: 14px;
  }

  .gallery-archive {
    padding: 0 40px 110px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 56px 32px;
  }

  .gallery-card-label {
    min-width: 92px;
    padding: 10px 16px;
    font-size: 12px;
  }

  .gallery-pagination {
    margin-top: 72px;
  }

  .gallery-modal-content {
    margin: 0;
    max-width: 760px;
    padding: 32px 32px 36px;
  }

  .gallery-modal-body {
    margin-top: 18px;
  }

  .gallery-modal-category {
    font-size: 13px;
  }

  .gallery-modal-text {
    margin-top: 12px;
    font-size: 14px;
    line-height: 2;
  }
}

/* =========================
   CONTACT PAGE
========================= */

.contact-page {
  background: #ffffff;
}

.contact-page-mv {
  padding: 96px 40px 56px;
}

.contact-page-mv-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.contact-page-title-en {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.contact-page-title-jp {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
}

.contact-page-lead {
  padding: 0 40px 110px;
}

.contact-page-lead-inner {
  max-width: 980px;
  margin: 0 auto;
}

.contact-tel-block {
  text-align: center;
}

.contact-section-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
}

.contact-tel-number {
  margin-top: 12px;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
}

.contact-tel-number a {
  color: #111;
  text-decoration: none;
}

.contact-tel-time {
  margin-top: 8px;
  font-size: 14px;
}

.contact-form-intro {
  margin-top: 72px;
  text-align: center;
}

.contact-form-note {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.9;
}

/* =========================
   FORM
========================= */

.contact-form {
  margin: 48px auto 0;
  max-width: 700px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 20px;
}

.contact-form-row:first-child {
  margin-top: 0;
}

.contact-form-label label {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}

.required {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  background: #e60012;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}

.contact-form-input input:not([type="radio"]),
.contact-form-input textarea {
  width: 100%;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 14px;
  font-family: inherit;
  box-sizing: border-box;
}

.contact-form-input input:not([type="radio"]){
  height: 48px;
  padding: 0 14px;
}

.contact-form-input textarea {
  min-height: 180px;
  padding: 14px;
  resize: vertical;
}

.contact-form-input-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  padding-top: 8px;
}

.contact-form-input-radio label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  line-height: 1.6;
}

.contact-form-input-radio input[type="radio"] {
  margin: 0;
  transform: scale(0.85);
  transform-origin: center;
}

.contact-form-input-short {
  max-width: 180px;
}

/* =========================
   PRIVACY
========================= */

.contact-privacy {
  margin-top: 56px;
}

.contact-privacy-title {
  font-size: 16px;
  font-weight: 700;
}

.contact-privacy-box {
  margin-top: 12px;
  padding: 24px;
  background: #ececec;
  max-height: 180px;
  overflow-y: auto;
}

.contact-privacy-heading {
  font-size: 14px;
  font-weight: 700;
}

.contact-privacy-title {
  font-size: 14px;
  font-weight: 700;
}

.contact-privacy-box p {
  margin-top: 15px;
  font-size: 13px;
  line-height: 1.9;
}

.contact-privacy-box p:first-child {
  margin-top: 0;
}

/* =========================
   SUBMIT
========================= */

.contact-submit {
  margin-top: 48px;
  text-align: center;
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 52px;
  border: none;
  background: #ffe821;
  color: #111;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.contact-form .wpcf7 {
  width: 100%;
}

.contact-form .wpcf7 form .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 12px 16px;
  font-size: 13px;
  line-height: 1.8;
}

.contact-form .wpcf7-not-valid-tip {
  margin-top: 8px;
  font-size: 12px;
}

.contact-form .wpcf7-spinner {
  margin: 12px 0 0;
}

.contact-confirm-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.contact-confirm-row:first-child {
  margin-top: 0;
}

.contact-confirm-label {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}

.contact-confirm-value {
  font-size: 14px;
  line-height: 1.9;
  word-break: break-word;
}

.contact-confirm-value p {
  margin-top: 0;
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.contact-back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 52px;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.contact-submit-btn.is-confirm {
  width: 240px;
}

.contact-form-confirm .wpcf7 form.sent .wpcf7-response-output {
  display: none;
}

.contact-thanks-box {
  max-width: 700px;
  margin: 0 auto;
  padding: 56px 40px;
  border: 1px solid #ddd;
  background: #fff;
  text-align: center;
}

.contact-thanks-box .contact-tel-block {
  margin-top: 40px;
}

.contact-thanks-box .contact-submit {
  margin-top: 40px;
}

/* =========================
   SP
========================= */
@media screen and (max-width: 959px) {
  .contact-page-mv {
    padding: 56px 20px 40px;
  }

  .contact-page-title-en {
    font-size: 32px;
  }

  .contact-page-title-jp {
    margin-top: 8px;
    font-size: 13px;
  }

  .contact-page-lead {
    padding: 0 20px 64px;
  }

  .contact-page-lead-inner {
    max-width: 100%;
  }

  .contact-section-title {
    font-size: 18px;
    line-height: 1.8;
  }

  .contact-tel-number {
    font-size: 34px;
  }

  .contact-form-intro {
    margin-top: 56px;
  }

  .contact-form-note {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.9;
  }

  .contact-form {
    margin-top: 40px;
    max-width: 100%;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .contact-form-label label {
    font-size: 14px;
  }

.contact-form-input-radio {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: 0 24px;
  padding-top: 4px;
  align-items: center;
}

.contact-form-input-radio label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.4;
  white-space: nowrap;
  cursor: pointer;
}

.contact-form-input-radio input[type="radio"] {
  -webkit-appearance: none !important;
  appearance: none !important;

  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;

  border: 1px solid #666 !important;
  border-radius: 50% !important;
  background: #fff !important;

  position: relative !important;
  flex-shrink: 0 !important;

  display: inline-block !important;
  aspect-ratio: 1 / 1 !important;
}

.contact-form-input-radio input[type="radio"]:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #111;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

  .contact-privacy {
    margin-top: 48px;
  }

  .contact-privacy-box {
    padding: 18px 16px;
    max-height: 160px;
  }

  .contact-submit {
    margin-top: 48px;
  }

  .contact-submit-btn {
    width: 220px;
    height: 50px;
    font-size: 14px;
  }

  .contact-confirm-row {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
    padding-bottom: 18px;
  }

  .contact-thanks-box {
    padding: 40px 20px;
  }

  .contact-confirm-label {
    font-size: 14px;
  }

  .contact-form-actions {
    margin-top: 40px;
    gap: 12px;
  }

  .contact-back-btn,
  .contact-submit-btn.is-confirm {
    width: 220px;
    height: 50px;
    font-size: 14px;
  }

  .contact-form-row:first-child {
  align-items: center;
}
}

/* =========================
   pc
========================= */
@media screen and (min-width: 960px) {
.contact-form-input-radio {
    gap: 0 18px;
    padding-top: 0;
  }

  .contact-form-input-radio label {
    gap: 6px;
    font-size: 14px;
  }

  .contact-form-input-radio input[type="radio"] {
    width: 15px;
    height: 15px;
  }

  .contact-form-input-radio input[type="radio"]:checked::before {
    width: 7px;
    height: 7px;
  }
}

/* =========================
   top/gallery LINE
========================= */

.contact-line {
  margin-top: 35px;
  text-align: center;
}

.contact-line a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
}

.contact-line img {
  width: 35px;
  height: 35px;
  display: block;
}

.contact-line a:hover {
  opacity: 0.9;
}

/* =========================
   PC
========================= */

@media screen and (min-width: 960px) {
  .contact-line a {
    font-size: 14px;
  }
}

/* =========================
   contact LINE
========================= */
.contact-line-page {
  margin-top: 70px;
  text-align: center;
}

.contact-line-page a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #111;
  text-decoration: none;
  font-size: 20px;
  font-weight: 900;
}

.contact-line-page img {
  width: 40px;
  height: 40px;
  display: block;
}

.contact-line-page a:hover {
  opacity: 0.75;
}

.contact-line-page span {
  line-height: 1;
}


.powered-by {
  margin-top: 45px;
  text-align: center;
}

.powered-by a {
  color: #333;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: opacity 0.3s;
}

.powered-by a:hover {
  opacity: 0.7;
}