/* style.css */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

/*Switzer*/
@font-face {
  font-family: 'Switzer';
  src: url('../fonts/Switzer-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-color: #000;
  --accent-color: #ffd40b;
  --bg-color: #fff;
  --text-color: #333;
  --font-main:  'Noto Sans JP','Switzer',sans-serif;
}

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

html{
  font-size: 14px;
}
body {
  font-family: var(--font-main);
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
}

.pc{
  display: block;
}

.sp{
  display: none!important;
}
.section {
  padding: 80px 0;
  text-align: left;
}

.container {
  width: 90%;
  margin: 0 auto;
  max-width: 960px;
}

.container-wide {
  width: 100%;
  margin: 0 auto;
}

.section-title {
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom:20px;
  font-family: Avenir Next Condensed;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02;
}

.switz {
  font-family: 'Switzer', sans-serif;
  font-weight: 500;
  font-size: 40px;
  letter-spacing: -0.14px;

}

a{
  text-decoration: none;
}
.section-title span{
  font-weight: 500;
  font-size: 20px;
   margin-left: 10px;  
   font-family: var(--font-main);
}
.section-description {
  font-weight: 400;
  font-size: 19px;
  margin-top: 20px;
  line-height: 2;      /* 140% */
  letter-spacing: 0em;   /* 0% */
}

.bg-gray{
 background-color: #F5F5F5;
}
.bg-black{
 background-color: #000;
}
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}



/* Header */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8); /* 半透明の白 */
  backdrop-filter: blur(6px);                /* 背景ぼかしで視認性UP */
  -webkit-backdrop-filter: blur(6px);        /* Safari対応 */
  padding: 20px 0;
  z-index: 1000;
}


.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* ← これがポイント */
  width:90%;
  margin:0 auto;
}


.logo {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

/* 共通 */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 3px;
  background: #333;
  border-radius: 2px;
}


.main-nav .nav-list {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav .nav-list li a {
  text-decoration: none;
  font-size: 1rem;
  color: #333;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  height: 40px; 
}
.main-nav .nav-list li a:hover {
  color: #ffd40b;
}

.quest{
  display: none;
/*display: flex;*/
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 5px;
    gap: 10px;
    width: 118px;
    height: 40px;
    background: #6CD378;
    border-radius: 20px;

}
.quest a:hover{
  color:#000;
  opacity: 0.5;
}
.reservation{
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 12px 5px;
gap: 10px;

width: 104px;
height: 40px;

background: #FF7DA9;
border-radius: 20px;
}
.reservation a:hover{
  color: #000;
  opacity: 0.5;
}


/* Hero */
.hero {
  margin-top:-80px;
  /*background: url('hero-bg.jpg') no-repeat center/cover;*/
  color: #fff;
  position: relative;
  overflow: hidden;
}


.hero-title {
  font-size: 48px;
  font-weight: 700;
  position: absolute;
  top:200px;
  right:60px;
}

.hero-img{
  width: 100%;
  height: 50vw;
  object-fit: cover; /* 画像の切り取り調整 */
  display: block;
}

.tlogo{
  position: absolute;
  top:22vw;
  left:100px;
}

.routen{
  height:6vw;
}
.route16{
  height:4vw;
  display: block;
}

.about-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}



/* About */
.about-left,
.about-right {
  flex: 1;
  min-width: 300px;
}



@media (max-width: 768px) {
  .about-inner {
    flex-direction: column;
  }
}

/* map */
.map-area {
  position: relative;
  width: 100%;
  margin: auto;
}

.map-img {
  width: 100%;
  display: block;
}

.map-pin {
  position: absolute;
  width: 60px;
  height: 60px;
  /*border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);*/
  cursor: pointer;
}

.map-pin img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-area {
  margin-top: -160px;
  margin-left:100px;
}

.swiper {
  width: 100%;
  margin: auto ;
}
.swiper-slide {
  background: #fff;
  padding: 0 24px 24px 0;
  box-shadow: 4px 6px 16px rgba(0, 0, 0, 0.3);
  font-family: 'Switzer', sans-serif;
}

.slide-day {
  font-family: Avenir Next Condensed;
  font-size: 15px;
  font-weight: 500;
  text-indent: 14px;
  color: #333;
  display: flex;
  align-items: center;
  padding:8px 0 ;
  border-left:8px solid #6CD378;
  letter-spacing: 0.14px;
}
.slide-container {
  padding:0 24px;
}
.day-bar {
  display: inline-block;
  width: 3px;
  height: 12px;
  background-color: #00C46A;
  margin-right: 8px;
}

.slide-content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.slide-thumb {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.slide-text {
  flex: 1;
}

.slide-title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
}

.slide-description {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0;
  color: #000;
}

@media (max-width: 768px) {

}

/* hotel*/

.hotel{
  margin: auto;
}

.hotel-card {
  display: flex;
  gap: 24px;
  margin-bottom: 60px;
  align-items: flex-start;
  border-bottom: 1px solid #ddd;
  padding-bottom: 40px;
}

.hotel-img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.hotel-info {
  flex: 1;
}

.hotel-night {
    font-family: Avenir Next Condensed;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.15px;
    line-height: 1.1;
    text-indent: 14px;
    color: #333;
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-left: 8px solid #FF7DA9;
}

.hotel-bar {
  width: 2px;
  height: 12px;
  background-color: #ff5e9c;
  display: inline-block;
  margin-right: 8px;
}

.hotel-title {
  font-size: 30px;
  font-weight: 300;
  line-height:1.6 ;
  letter-spacing: -0.03px;
  color: #111;
}
.hotel-title span{
  font-family: 'Switzer';
  display: block;
  font-size: 23px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.046px;
  margin-bottom: 16px;
  color: #111;
}
.hotel-desc {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 20px;
}

.hotel-button {
  display: inline-block;
  background-color: #ff5e9c;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.3s;
}

.hotel-button:hover {
  background-color: #e94a8e;
}


/*ホテル複数写真 */
    .hotelgallery {
      width: 300px;
      margin: 0 auto;
      text-align: center;
    }
    .mainwrap{
      width: 300px;
      height: 200px;
      object-fit: cover;
      border-radius: 6px;
      flex-shrink: 0;
      margin-bottom: 10px;
      position: relative;
      overflow: hidden;
    }
    .hotelgallery .main-image {
      position: absolute; 
      top: 50%; 
      left: 50%; 
      bottom: unset; 
      right: unset; 
      -webkit-transform: translate(-50%, -50%); 
      -ms-transform: translate(-50%, -50%); 
      transform: translate(-50%, -50%); 
      width: 100%; 
      height: auto; 
      max-width: unset!important; 
      display: block; 
      transition-duration: 0.3s; 
      border-radius: 6px;
    }

    .hotelgallery .thumbnails {
      display: flex;
      justify-content: flex-start;
      gap: 10px; /* 要素の間隔 */
    }

    .hotelgallery .thumbnail {
      width: 22%;
      cursor: pointer;
      opacity: 0.6;
      transition: opacity 0.3s;

    }

    .hotelgallery .thumbnail:hover {
      opacity: 1;
    }
/*** gallaly ***/

.parallax-section {
  height: 120vh;
  padding: 5vh 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5vh;
}

.row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.column {
  width: 30%;
  position: relative;
  overflow: visible;
  height: 600px;
  font-size: 0.7rem;
  text-align: right;
}

.column img {
  width: 100%;
  height: auto;
  display: block;
  transform-origin: center center;
  will-change: transform;
}

.photo-stack{
  position: relative;
}

.experiences__title {
  font-family: 'Switzer';
  font-weight:600;
 font-size: 70px;
 letter-spacing: -0.2px;
    position: fixed;
    top: 40%;
    left: 10vw;
    transform: translateY(-50%);
    z-index: 999;
    color: #000;
    /*mix-blend-mode: difference;*/
    line-height: 1.1;
    pointer-events: none;
    opacity: 0;
   /* transition: opacity 0.4s ease;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);*/
}
.experiences__title span{
    font-size: 19px;
    font-weight: 500;
    font-family: var(--font-main);
    line-height: 1;
    letter-spacing: -0.019px;
    display: block;
    margin-top: 10px;
}
.long-line {
  display: inline-block!important;
  width: 78px;       /* 好きな長さに変更可能 */
  height: 4px;       /* 線の太さ */
  background-color: #000; /* 線の色 */
  vertical-align: middle; /* 上下中央揃え */
  margin: 0 10px;    /* 前後の余白 */
  position: relative; 
  top: -1px;         /* 視覚的な微調整（フォントによるズレ補正） */
}
/*
.experiences__title {
  position: relative; 
  margin-top: 40vh;  
  left: 5vw;
  z-index: 999;
  color: white;
  font-size: 6vw;
  font-weight: 900;
  font-family: sans-serif;
  mix-blend-mode: difference;
  line-height: 1.1;
  text-align: left;
      pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}*/
.experiences__title .bl2{
    display: block;
    margin-left: 40vw;
}

.experiences__title.active {
  opacity: 1;
}

/* bike */

.bike-gallery{
  margin:0 auto;
}
.bike-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.top-row .bike-item {
  flex: 1 1 calc(100% / 3 - 40px); /* 上段は3個 */
}

.bottom-row .bike-item {
  flex: 1 1 calc(100% / 4 - 40px); /* 下段は4個 */
}

.bike-item {
  border: 10px solid #000;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
}

.bike-item img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.bike-item p {
  margin: 0;
  font-size: 1rem;
  text-align: left;
}

.bike-title{
text-align: center!important;
  font-size:1.5rem!important;
  font-weight: bold;
}

.bikegallery {
      margin: 0 auto;
      text-align: center;
    }
   .bikegallery .mainwrap{
      width: 100%;
    height: auto;

    }
    /*
    .bikegallery .main-image {
      position: absolute; 
      top: 50%; 
      left: 50%; 
      bottom: unset; 
      right: unset; 
      -webkit-transform: translate(-50%, -50%); 
      -ms-transform: translate(-50%, -50%); 
      transform: translate(-50%, -50%); 
      width: 100%; 
      height: auto; 
      max-width: unset!important; 
      display: block; 
      transition-duration: 0.3s; 
      border-radius: 6px;
    }*/

    .bikegallery .thumbnails {
      display: flex;
      justify-content: flex-start;
      gap: 10px; /* 要素の間隔 */
    }

    .bikegallery .thumbnail {
      width: 22%;
      cursor: pointer;
      opacity: 0.6;
      transition: opacity 0.3s;

    }

    .bikegallery .thumbnail:hover {
      opacity: 1;
    }
/*** gallaly ***/

/*about*/
.aboutnikko{
  background-image: url(../images/about.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  color:#fff;
}
.aboutnikko-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.aboutnikko-row .column-left-wrapper , .aboutnikko-row .column-right-wrapper{
  width:calc( 50% - 40px );
  padding-top:8rem;
  padding-bottom:8rem;
}
.gap-small {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-flow: column;
    display: flex;
    font-size: 1.2rem;
}

.heading-3{
  font-size: 30px;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: -0.9px;
}
.char {
  color: rgb(255, 255, 255);
  opacity: 0; /* 最初は非表示 */
}

/*newdaynewlight*/
.ndnl-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}

.ndnl-row .column-left-wrapper {
  flex: 1 1 50%;
  position: relative;
  
}

.image-area {
  position: relative;
}


.image-area img {
  width: 100%;
  height: auto;
  display: block;
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width:30%;
}

.overlay .logo {
  width:100%;
  display: block;
}

.overlay .title {
  font-size: 32px;
  font-weight: bold;
  border-top: 1px solid white;
  padding-top: 10px;
  margin: 0;
}

.ndnl-row .column-right-wrapper{
  flex: 1 1 50%;
  padding-left: 30px;
  padding-top: 20px;
  box-sizing: border-box;
}

.ndnl-row .column-right-wrapper h2 {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.014px;
  margin-bottom: 20px;

  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}

.ndnl-row .column-right-wrapper p {
  line-height: 1.8;
  font-size: 15px;
  font-weight: 400;
}

/*Pricing*/

.tour-info {
  margin: 0 auto;
  /*box-shadow: 0 0 10px rgba(0,0,0,0.05);*/
}

.tour-info h2 span {
  font-size: 14px;
  color: #666;
  margin-left: 10px;
}

table.price {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}

table.price th, table.price td {
  text-align: left;
  padding: 12px 8px;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: top;
}

table.price th {
  width: 30%;
  color: #000;
  font-weight: bold;
  white-space: nowrap;
}

.other-notes {
  background: #444;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
}

.other-notes h3 {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 10px;
  text-align: center;
}

.other-notes p {
  font-size: 14px;
  line-height: 1.6;
}
/*operation*/
.planning-operation {
  display: flex;
  margin: 0 auto;
  padding: 40px 20px;
  gap: 40px;
}

.left-column {
  flex: 0 0 250px;
  text-align: left;
}

.right-column {
  flex: 1;
  font-size: 14px;
}

.right-column p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.right-column a {
  color: #000;
  text-decoration: underline;
}

.reserve-button {
  display: block;
  background-color: #f78cb4;
  color: #000;
  border: none;
  border-radius: 25px;
  padding: 12px 132px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin:0 auto;
}

.reserve-button:hover {
  background-color: #f0659c;
}
.cta-buttons{
  display: none;
}
/* =========================
   FAQ セクション（整理版）
   ========================= */

/* レイアウト */
.faq-section {
  display: flex;
  gap: 40px;
  margin: 0 auto;
}

.faq-left {
  flex: 0 0 200px;
}

.faq-left p {
  font-size: 14px;
  color: #666;
}

.faq-right {
  flex: 1;
  display: block;
}

/* アイテム */
.faq-item {
  display: block;
  border-top: 1px solid #ccc;
}

/* 質問ボタン */
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  border: none;
  background: none;
  text-align: left;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  position: relative;
}

/* 質問テキスト */
.question-text {
  flex: 1;
  text-align: left;
}

/* ＋／−アイコン */
.icon-line {
  position: relative;
  width: 20px;
  height: 20px;
  margin-left: 10px;
}

.icon-line::before,
.icon-line::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background-color: #151E2F;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

/* 縦線（＝＋の縦棒） */
.icon-line::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* 開いた状態は横線だけ（＝−）にする */
.faq-item.active .icon-line::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

/* 回答エリア（初期は非表示。JSでslideDown/Up） */
.faq-answer {
  display: none;
  padding: 12px 0 16px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.8;

  /* 1行制限や高さ制限の解除（保険） */
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  white-space: normal !important;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: initial !important;
}

.faq-answer * {
  white-space: normal !important;
  text-overflow: clip !important;
  overflow: visible !important;
}

/* .active のときだけ表示（jQueryのslide後にblockを維持したい場合の保険） */
.faq-item.active .faq-answer {
  display: block;
}

/* 予約ボタンのラッパー */
.faq-reserve {
  text-align: center;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .hotel-card {
    flex-direction: column;
  }

  .hotel-img {
    width: 100%;
    height: auto;
  }
}


/* Scroll Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Parallax Section */
.parallax {
  background: url('parallax-bg.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 120px 20px;
  color: #fff;
  text-align: center;
}

.parallax .section-title {
  font-size: 48px;
  color: #fff;
}


/* Service */
.service-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.service-item {
  background: #f7f7f7;
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 250px;
}

/* Contact */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form button {
  background-color: var(--accent-color);
  color: #000;
  font-weight: bold;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #e6c200;
}

/* Footer */
.site-footer {
  background-color: #f0f0f0;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
}

/*cookie*/
/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(33, 33, 33, 0.95); /* ツーリングらしいダークな色味 */
  color: #fff;
  padding: 15px 20px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  z-index: 9999; /* 最前面に表示 */
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.cookie-content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.cookie-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  flex: 1;
  min-width: 280px;
}

.cookie-text a {
  color: #4da6ff;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

button {
  cursor: pointer;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 14px;
  transition: opacity 0.3s;
}

button:hover {
  opacity: 0.8;
}

/* 同意ボタン（目立たせる） */
.btn-accept {
  background-color: #e63946; /* 行動を促すアクセントカラー */
  color: white;
}

/* 拒否ボタン（控えめに） */
.btn-decline {
  background-color: transparent;
  border: 1px solid #fff;
  color: white;
}

/* スマホ対応 */
@media (max-width: 600px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  .btn-accept, .btn-decline {
    width: 48%; /* ボタンを押しやすく */
  }
}

/* ▼▼ 新規追加：モーダルウィンドウ用CSS ▼▼ */

/* 背景の暗幕 */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* 背景を暗く */
  z-index: 10000; /* Cookieバナー(9999)より上に表示 */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

/* 表示時のクラス */
.modal-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

/* 白いボックス本体 */
.modal-box {
  background: #fff;
  color: #333;
  width: 90%;
  max-width: 600px;
  max-height: 80vh; /* 画面の8割の高さまで */
  border-radius: 8px;
  padding: 30px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
}

/* 閉じるボタン（×） */
.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
  line-height: 1;
}

.close-modal:hover {
  color: #000;
}

/* 本文エリア（スクロール対応） */
.modal-body {
  overflow-y: auto; /* 文章が長い場合はスクロール */
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
}

.modal-body h2 {
  font-size: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.modal-body h3 {
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}
/***************/

/* Responsive */
@media (max-width: 768px) {
  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-title {
    font-size: 32px;
  }

  .section-title {
    font-size: 28px;
  }

  .service-list {
    flex-direction: column;
  }

  .parallax {
    background-attachment: scroll;
  }
}
