/* =========================================
   セクション共通
   ========================================= */
.section {
  padding: 180px 0;
}

.section-title {
  font-family: "Noto Serif JP", serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.section-en {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 56px;
  letter-spacing: 0.02em;
  color: rgba(60, 60, 60, 0.25);
  line-height: 1.1;
  margin-bottom: 8px;
}

.section-subtitle {
  display: block;
  color: var(--accent-gold);
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

h4 {
  font-size: 26px;
}

.page-template-page-new-top {
  font-size: 16px;
}

.spot-txt p,
.about-txt p {
  font-size: 18px;
  line-height: 2;
}

@media (max-width: 991px) {
  .section-title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  h2,
  .section-title {
    font-size: 28px;
    letter-spacing: 0.05em;
  }

  .section-subtitle {
    font-size: 13px;
  }

  h4 {
    font-size: 20px;
  }
}

/* =========================================
   ヒーローセクション
   ========================================= */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-navy);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 3;
  animation: fadeIn 3s ease-out;
}

.hero-slide.fade-out {
  z-index: 4;
  animation: fadeOut 3s ease-out forwards;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
}

.hero-slide.active img {
  animation: zoomOutWithFade 12s linear forwards;
}

@keyframes zoomOutWithFade {
  0% {
    transform: scale(1.15);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  background: none;
  padding: 160px 1vw 80px;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: none;
  box-shadow: none;
  gap: 40px;
}

.hero-label {
  display: inline-block;
  font-size: clamp(18px, 2.5vw, 28px);
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  border-bottom: 1px solid var(--accent-gold);
  padding-bottom: 5px;
  margin-bottom: 0;
  font-weight: 500;
}

.hero-title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(44px, 4.5vw, 58px);
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 0;
  font-weight: 600;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-title-br {
  display: none;
}

.hero-values {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 0;
  flex-wrap: wrap;
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  width: clamp(140px, 18vw, 160px);
  height: clamp(140px, 18vw, 160px);
  padding: 0;
  justify-content: center;
  transition: all 0.4s ease;
  container-type: inline-size;
}

.value-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(197, 165, 114, 0.3);
}

.value-label {
  font-size: 10.5cqw;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3cqw;
  font-weight: 500;
  line-height: 1.4;
}

.value-sub {
  font-size: 10cqw;
  color: var(--accent-gold);
  margin-bottom: 1cqw;
  font-weight: 500;
}

.value-number {
  font-family: "Noto Serif JP", serif;
  font-size: 26cqw;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  white-space: nowrap;
}

.value-number span {
  font-size: 0.6em;
}

.value-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 10px;
  letter-spacing: 0.05em;
}

@media (max-width: 991px) {
  .hero-content {
    padding: 100px 20px;
  }

  .hero-values {
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .hero-content {
    padding: 110px 20px 80px;
    gap: 8vw;
  }

  .hero-title {
    font-size: clamp(30px, 8vw, 40px);
    line-height: 1.4;
    margin-bottom: 0;
  }

  .hero-title > br {
    display: none;
  }

  .hero-title-small {
    font-size: clamp(22px, 5.5vw, 34px);
    letter-spacing: 0.1em;
    display: block;
    line-height: 1.5;
    margin-bottom: 5px;
    opacity: 0.9;
  }

  .hero-title-main {
    font-size: clamp(28px, 10vw, 65px);
  }
  .hero {
    min-height: 450px;
    box-sizing: border-box;
    padding: 80px 0 50px;
  }

  .hero-values {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 15px;
    margin: 0 auto;
  }

  .hero-title-br {
    display: inline;
  }
}

/* =========================================
   アバウトセクション
   ========================================= */
.about {
  background: var(--bg-washi);
  position: relative;
}

.section.about {
  padding: 120px 0 180px;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/textures/washi-texture.jpg") center/cover;
  opacity: 0.5;
  z-index: 0;
}

.about .container {
  position: relative;
  z-index: 1;
}

.about-images {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.about-img-1,
.about-img-2 {
  flex: 1;
  position: relative;
}

.about-img-1 img,
.about-img-2 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.8s ease;
}

.about-img-1:hover img,
.about-img-2:hover img {
  transform: scale(1.03);
}

.about .about-txt {
  background: transparent;
  padding: 0;
  padding-left: 60px;
  /* padding-top: 80px; */
  box-shadow: none;
  margin-left: 0;
}

.about-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .about .about-images .animate-on-scroll.delay-img {
    transition-delay: 0s;
  }

  .about .about-images .animate-on-scroll.delay-img-2 {
    transition-delay: 0.1s;
  }

  .about .about-txt .typewriter-animate {
    transition-delay: 0.3s;
  }

  .about .about-txt {
    margin-left: 0;
    padding: 60px 30px;
    margin-top: -50px;
  }
}

@media (max-width: 767px) {
  .about {
    padding: 50px 0;
  }

  .about-img,
  .about-txt {
    max-width: 100%;
  }

  .about-img.animate-on-scroll.delay-img {
    transition-delay: 0s;
  }

  .about-txt .typewriter-animate {
    transition-delay: 0.3s;
  }

  .about .about-txt {
    margin-left: 0;
    padding: 60px 0 0;
  }

  .about-images {
    margin-bottom: 34px;
  }

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

  .about-buttons .btn-arrow {
    width: 200px;
    text-align: center;
    justify-content: center;
  }
}

/* =========================================
   料金の強みセクション
   ========================================= */
.pricing-strengths {
  background: var(--brand-navy);
  padding: 60px 0 80px;
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.strength-item {
  background: #fff;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: block;
  color: var(--text-color);
  height: 100%;
}

.strength-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.strength-icon {
  width: 80px;
  height: 80px;
  background: var(--brand-navy);
  color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
}

.strength-title {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--brand-navy);
}

.strength-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--accent-gold-dark);
  margin: 0;
}

@media (max-width: 991px) {
  .strength-title {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .pricing-strengths {
    padding: 40px 0 60px;
  }

  .strengths-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .strength-item {
    padding: 30px 20px;
    display: flex;
    align-items: center;
    text-align: left;
    gap: 20px;
    height: auto;
  }

  .strength-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin: 0;
    flex-shrink: 0;
  }

  .strength-text {
    flex-grow: 1;
  }

  .strength-title {
    margin-bottom: 5px;
  }

  .strength-desc {
    font-size: 14px;
  }
}

/* =========================================
   選ばれる理由セクション
   ========================================= */
.reasons-accordion .reason-item {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.reasons-accordion .reason-item dt {
  margin: 0;
}

.reasons-accordion .reason-item .reason-toggle {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 50px 25px 25px;
  background: var(--brand-navy);
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  position: relative;
  transition: background 0.3s ease;
}

.reasons-accordion .reason-item .reason-toggle:hover {
  background: #162636;
}

.reasons-accordion .reason-item .reason-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--accent-gold);
  color: #fff;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-style: italic;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 50%;
  flex-shrink: 0;
}

.reasons-accordion .reason-item .reason-title {
  flex: 1;
  line-height: 1.5;
}

.reasons-accordion .reason-item .reason-toggle::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: var(--accent-gold);
  transition: transform 0.3s;
}

.reasons-accordion .reason-item .reason-toggle[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(180deg);
}

.reasons-accordion .reason-item dd {
  margin: 0;
  background: #fff;
  font-size: 18px;
  line-height: 2.2;
  letter-spacing: 0.02em;
  color: var(--text-main);
}

.reasons-accordion .reason-item dd strong {
  color: var(--accent-red);
  font-weight: 700;
}

.reasons-accordion .reason-item .link-bd a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-navy);
  background: transparent;
  text-decoration: none;
  border: 1px solid var(--brand-navy);
  border-radius: 30px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.reasons-accordion .reason-item .link-bd a:hover {
  background: var(--brand-navy);
  color: #fff;
}

@media (max-width: 767px) {
  .reasons-accordion .reason-item .reason-toggle {
    flex-wrap: wrap;
    padding: 20px 45px 20px 20px;
    font-size: 17px;
    gap: 15px;
  }

  .reasons-accordion .reason-item .reason-num {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

/* =========================================
   スポット紹介セクション
   ========================================= */
.spots {
  background: #faf9f7;
  padding-bottom: 150px;
  position: relative;
}

.spots::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/textures/asanoha-pattern.png") repeat;
  background-size: 280px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.spots .container {
  position: relative;
  z-index: 1;
}

.spot-item {
  display: flex;
  margin-bottom: 120px;
  align-items: center;
}

.spot-item:nth-child(even) {
  flex-direction: row-reverse;
}

.spot-item.animate-on-scroll .spot-img,
.spot-item.animate-on-scroll .spot-txt {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out,
    box-shadow 0.4s ease;
}

.spot-item.animate-on-scroll.in-view .spot-img {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.spot-item.animate-on-scroll.in-view .spot-txt {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.spot-img {
  width: 60%;
  height: 500px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
}

.spot-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.spot-item:hover .spot-img img {
  transform: scale(1.03);
}

.spot-txt {
  width: 40%;
  padding: 50px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
  margin-left: -60px;
  z-index: 2;
  position: relative;
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.spot-txt:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.spot-item:nth-child(even) .spot-txt {
  margin-left: 0;
  margin-right: -60px;
}

.spot-txt h4 {
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  color: var(--brand-navy);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.spot-txt p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.spot-num {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .spot-item,
  .spot-item:nth-child(even) {
    flex-direction: column;
    margin-bottom: 80px;
  }

  .spot-img.animate-on-scroll.delay-img {
    transition-delay: 0s;
  }

  .spot-img {
    width: 100%;
    height: 400px;
  }

  .spot-txt,
  .spot-item:nth-child(even) .spot-txt {
    width: 90%;
    margin: -50px auto 0;
  }
}

@media (max-width: 767px) {
  .spots {
    padding: 50px 0;
  }

  .spot-txt {
    padding: 25px 15px;
  }

  .spot-txt .typewriter-animate {
    transition-delay: 0.3s;
  }

  .spot-item,
  .spot-item:nth-child(even) {
    flex-direction: column;
    margin-bottom: 60px;
  }

  .spot-img {
    width: 100%;
    height: 300px;
  }

  .spot-txt,
  .spot-item:nth-child(even) .spot-txt {
    width: 95%;
    margin: -40px auto 0;
  }

  .spot-txt {
    text-align: center;
  }

  .spot-txt .btn-arrow {
    display: inline-flex;
    justify-content: center;
  }
}

/* =========================================
   ご利用ガイドセクション
   ========================================= */
.guide {
  background: var(--bg-gray);
  padding: 80px 0;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.guide-card {
  background: #fff;
  padding: 0;
  text-align: center;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.guide-icon {
  margin-bottom: 0;
  width: 100%;
  overflow: hidden;
}

.guide-icon img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.guide-title {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  color: var(--brand-navy);
  margin: 0;
  padding: 25px 20px 15px;
}

.guide-card .btn-arrow {
  margin: 0 20px 25px;
}

@media (max-width: 767px) {
  .guide {
    padding: 50px 0;
  }

  .guide-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .guide-card {
    width: 100%;
  }

  .guide-icon img {
    height: 160px;
  }
}

/* =========================================
   ブログセクション
   ========================================= */
.section.blog {
  background: #fff;
  padding: 150px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.blog-card {
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 15px;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-date {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.blog-title {
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 991px) {
  .guide-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

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

@media (max-width: 767px) {
  .section.blog {
    padding: 50px 0;
  }

  .blog-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .blog-card {
    padding: 10px;
  }
}
