@charset "utf-8";

@media only screen and (min-width: 1026px) {
  .content-container {
    position: relative;
  }

  .scale-wrapper {
    transform: scale(0.9);
    transform-origin: left top;
    width: calc(100% / 0.9);
  }
}

/* Firefox専用CSS */
@-moz-document url-prefix() {
  @media only screen and (min-width: 1026px) {
  .content-container {
    position: static !important; /* 従来のpositionを打ち消す */
    height: auto !important;
  }

  .scale-wrapper {
    transform: none !important; /* transformを解除 */
    width: auto !important;
  }
  }
}

@-moz-document url-prefix() {
  @media only screen and (min-width: 1026px) {
    #faq-page .content-container {
      /* 元の値をリセット/上書き */
      position: static;
      min-height: auto;
      overflow: hidden; /* visibleを無効化 */
    }

    #faq-page .scale-wrapper {
      /* transformやwidthなどを元に戻す */
      transform: none;
      transform-origin: initial;
      width: auto;
      height: auto;
  }
  
    #faq-page .footer-wrapper {
      margin-top:70px !important;
  }   
  #faq-page .faq-container .faq-item:last-child {
     margin-bottom: 50px !important; /* 最後のFAQアイテムの下の余白を削除 */
  }
    
  #pet-welcome-page .content-container {
      /* 元の値をリセット/上書き */
      position: static;
      min-height: auto;
      overflow: hidden; /* visibleを無効化 */
  }

  #pet-welcome-page .scale-wrapper {
      /* transformやwidthなどを元に戻す */
      transform: none;
      transform-origin: initial;
      width: auto;
      height: auto;
  }

  #pet-welcome-page .faq-container .faq-item:last-child {
      margin-bottom: 50px !important; /* 最後のFAQアイテムの下の余白を削除 */
  }

  #pet-welcome-page .faq-container {
      max-width: 1000px;
      margin: 0 auto;
      padding-top:20px;
      padding-bottom: 0px;
      margin-bottom:0;
   }

   #pet-welcome-page .faq-answer {
      height: auto;
   }

   #pet-welcome-page .faq-item.active .faq-answer {
      max-height: none; /* max-height: 1000pxから変更 */
   }

   #pet-welcome-page .footer-wrapper {
     margin-top:0px !important;
   }
    
}   
}

@media (max-width: 1026px) {
  .content-container {
    height: auto !important;
  }
  
  .scale-wrapper {
    transform: none;
    width: 100%;
  }
}

body {
   font-family: 'Noto Sans JP', sans-sans-serif;
   color: #222;
   letter-spacing: 0.1em;
   line-height: 1.75;
   background-color: #fff;
}

@media (max-width: 1026px) {

body {
  padding-top: 60px;
}
}

@media (max-width: 1026px) {
  html, body {
    overflow-x: hidden;
  }
}

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

/* アクセシビリティ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* すべてのリンクの下線を消す */
a {
    text-decoration: none;
}


/* PC表示用クラス（768px以上で表示） */
.pc-only {
    display: block;
}

/* スマホ表示用クラス（768px未満で表示） */
.sp-only {
    display: none;
}

/* スマホサイズ（768px未満）での表示切り替え */
@media screen and (max-width: 767px) {
    .pc-only {
        display: none;
    }
    
    .sp-only {
        display: block;
    }
}

/* ヘッダー全体のスタイル */
.solana-header {
  position: relative;
  width: 100%;
  background: linear-gradient(90deg, #f4aa42, #f6ad44);
  padding: 20px 20px 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  overflow: visible;
}

/* ロゴ画像のスタイル */
.solana-header__logo img {
  height: 50px;
  margin-top:20px;
}

/* ヘッダー右側のコンテンツ（メニューと予約ボタン）のコンテナ */
.solana-header__right {
  display: flex;
  align-items: center;
}

/* グローバルメニューのスタイル */
.top-global-menu {
  margin-top:10px;
  margin-right: 130px;
}

/* グローバルメニューのリストスタイル */
.top-global-menu ul {
  list-style: none;
  padding: 0;
  margin: 0px 20px 0px 0px;
  display: flex; 
}

/* グローバルメニューの各項目のスタイル */
.top-global-menu li {
  margin: 20px 15px !important;
}

/* グローバルメニューのリンクスタイル */
.top-global-menu a {
  color: white;
  text-decoration: none;
  font-size: 18px; 
  line-height: 1.3;
  text-align: center; 
  display: block; 
}

/* グローバルメニューの英語表記のスタイル */
.top-global-menu a span {
  font-size: 13px; 
  display: block; 
  margin-top: 1px; 
}

/* 予約ボタンのスタイル */
.solana-header__book-btn {
  position: absolute;
  top: calc(100% - 130px);
  right: 0;
  background-color: white;
  color: #f6ad44;
  padding: 25px 10px 6px 10px;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  font-size: 20px;
  z-index: 1000;
  box-shadow: 0px -1px 5px 6px rgba(0, 0, 0, 0.13) !important;
  white-space: nowrap;
}

/* 予約ボタン内のアイコンのスタイル */
.solana-header__book-btn i {
  font-size: 55px;
  margin-bottom: 6px;
}

/* ホバー時のスタイルを通常時と同じに設定 */
.solana-header__book-btn:hover {
  background-color: white;
  color: #f6ad44;
}

/* スマホヘッダー */
.sp-top-header2 {
    color: white;
    padding: 30px 10px 30px 10px;
    position: relative;
    background: linear-gradient(90deg, #f4aa42, #f6ad44);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1300;
}

.sp-logo-container {
    position: absolute;
    left: 35px; /* 左端に配置し、少し余白を追加 */
    top: 50%;
    transform: translateY(-50%); /* ロゴを縦方向に中央揃え */
    z-index: 1100;
}

.sp-logo-container img {
    width: 120px; /* ロゴを小さくする。幅は100pxに設定、必要に応じて変更可能 */
    height: auto; /* アスペクト比を保持 */
}

.sp-top-hamburger {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1300;
}

.sp-top-hamburger span {
    display: block;
    width: 30px;
    height: 3px;  /* 4pxから3pxに変更してより細くします */
    background-color: white;
    margin: 6px 0;
    transition: 0.3s;
    position: relative;  /* 位置調整のために追加 */
    z-index: 1300;
}

.sp-top-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);  /* 調整 */
}

.sp-top-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.sp-top-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);  /* 調整 */
}

.sp-top-global-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1200;
}

.sp-top-global-menu.active {
    opacity: 1;
    visibility: visible;
}

.sp-top-global-menu ul {
    list-style: none;
    padding: 20px;
    margin: 0;
    text-align: center;
    transform: scale(0.8);
    transition: 0.3s;
}

.sp-top-global-menu.active ul {
    transform: scale(1);
}

.sp-top-global-menu li {
    margin: 20px 0;
}

.sp-top-global-menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    line-height: 1.5;
    display: block;
}

@media (min-width: 1026px) {
  .sp-top-header2 {
    display: none;
  }
  .sp-top-global-menu {
    display: none;
  }
}

@media (max-width: 1026px) {

.solana-header {
  display:none;
}
}

.reserve-button {
  background-color: #f6ad44; /* オレンジ色の背景 */
  color: white; /* 文字色を白に */
  padding: 15px 40px; /* ボタンの余白 */
  border-radius: 5px; /* 角を丸くする */
  display: inline-block; /* ブロック要素のように振る舞わせる */
}

.tp-main-container {
  display: flex;
  min-height: 870px;
}

.tp-left-column {
  flex-grow: 1; /* 残りの空間を全て占める */
  background-size: cover;
  background-position: center center;
  position: relative;
}


body#top-page .tp-right-column .tp-sns-icons {
  display: flex !important;            /* Flexbox を強制 */
  flex-direction: column !important;   /* ★★★ 縦並びを強制 */
  align-items: center !important;      /* 水平中央揃えを強制 */
  justify-content: flex-start !important; /* 上寄せを強制 */
  gap: 10px !important;              /* 隙間を強制 */
  width: 100% !important;            /* 幅100%を強制 */
  padding: 0 !important;             /* 内側余白をリセット */
  margin: 0 !important;              /* 外側余白をリセット */
  box-sizing: border-box !important; /* ボックスサイズの計算方法を指定 */
}

/* 各アイコン (aタグ) のスタイル */
body#top-page .tp-right-column .tp-sns-icons a {
  display: block !important;        /* ブロック要素を強制 */
  width: auto !important;         /* 幅自動を強制 */
  margin: 0 0 3px 0 !important;  /* 下にマージンを追加して隙間を作る（gapが効かない場合） */
  padding: 0 !important;            /* 内側余白をリセット */
  line-height: 1 !important;       /* 行高を調整 */
  text-align: center !important;   /* 中央揃え */
}
/* 最後のリンクの下マージンは不要 */
body#top-page .tp-right-column .tp-sns-icons a:last-child {
    margin-bottom: 0 !important;
}

/* アイコン画像自体のスタイル */
body#top-page .tp-right-column .tp-sns-icons img {
  width: 50px !important;
  height: 50px !important;
  display: block !important;        /* display: block を推奨 */
  margin: 0 auto !important;        /* 中央寄せ (display: block と併用) */
  padding: 0 !important;
  vertical-align: middle !important; /* 垂直位置調整 */
}

/* --- 親要素(.tp-right-column)のスタイル再確認 --- */
/* (必要に応じて前の回答のものを適用) */
@media only screen and (min-width: 1025px) {
  body#top-page .tp-right-column {
    width: 80px;
    background-color: #F9F4EE;
    display: flex;              /* 親要素もFlexbox */
    flex-direction: column;     /* 親要素の内部配置は縦 */
    justify-content: flex-start;/* 上寄せ */
    align-items: center;        /* 子要素(.tp-sns-icons)を水平中央に */
    padding-top: 80px !important; /* 上の余白 (調整してください) */
    padding-bottom: 50px !important;/* 下の余白 */
    box-sizing: border-box;     /* paddingを含めた幅計算に */
  }
}




/* PC表示のキャッチコピー */
.tp-left-column {
    position: relative;
}

.tp-catchphrase {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 2;
}

.tp-catchphrase .logo {
    width: 140px;
    height: auto;
    margin-bottom: 30px;
}

.tp-catchphrase p {
    color: white;
    font-size: 36px;
    margin: 0;
    line-height: 1.5;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.tp-english-catchphrase {
    font-size: 20px !important;
    margin-top: 15px !important;
}


/* レスポンシブ調整 */
@media (max-width: 767px) {
    .tp-sp-catchphrase p {
        font-size: 20px;
    }
    
    .tp-sp-english-catchphrase {
        font-size: 14px !important;
    }
}



/* スマホ表示のスタイル調整 */
.tp-sp-main-container {
    width: 100%;
    /* 909 ÷ 830 = 1.0952 → 109.52% */
    padding-bottom: 109.52%;
    position: relative;
    overflow: hidden;
}

/* スマホ用のスライドショー調整 */
.tp-sp-main-container .slideshow-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tp-sp-main-container .slideshow-image {
    background-size: 100% 100%;  /* cover から変更 */
}


/* スライドショー用のスタイルを追加・修正 */
.slideshow-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slideshow-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-size: cover;  /* coverに変更 */
    background-position: center;
    background-repeat: no-repeat;
    animation: fadeInOut 36s linear infinite;
}


.tp-sp-main-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}


/* スマホ表示のキャッチコピー */
.tp-sp-main-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.tp-sp-catchphrase {
    text-align: center;
}

.tp-sp-catchphrase .logo {
    width: 80px;
    height: auto;
    margin-bottom: 20px;
}

.tp-sp-catchphrase p {
    color: white;
    font-size: 33px;
    font-weight:bold;
    margin: 0;
    line-height: 1.5;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.tp-sp-english-catchphrase {
    font-size: 15px !important;
    margin-top: 10px !important;
}


/* レスポンシブ調整 */
@media (max-width: 767px) {
    .tp-sp-catchphrase p {
        font-size: 20px;
    }
    
    .tp-sp-english-catchphrase {
        font-size: 14px !important;
    }
}

/* スマホ用の高さ制限を維持 */
@media screen and (min-aspect-ratio: 830/909) {
    .tp-sp-main-container {
        height: 100vh;
        padding-bottom: 0;
    }
    
    .tp-sp-main-container .slideshow-wrapper,
    .tp-sp-main-container .slideshow-image {
        height: 100vh;
        background-size: cover;  /* 画面が横長の場合はcoverに戻す */
    }
}

@media screen and (max-width: 768px) {
    .tp-sp-main-container {
        min-height: 300px;
    }
}

.tp-sp-highlight {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.9); /* 透明度を上げた */
  padding: 4px 10px 4px 10px;
  font-size: 50px;
  font-weight: normal;
  line-height: 1.5;
  color: #E27C1A;
  margin-bottom: 10px;
}

.tp-sp-highlight .small {
  font-size: 0.8em; /* な・と・のを小さく */
}

.tp-sp-catchphrase {
  /* 必要に応じてパディングや最大幅を設定 */
  padding: 0px;
  max-width: 100%;
}

.tp-sp-english-catchphrase {
  color: white;
  font-size: 30px;
  margin-top: 10px;
}




@media (min-width: 1026px) {
.tp-sp-main-container{
    display:none;
}
}

@media (max-width: 1026px) {

.tp-main-container {
  display:none;
}
}

/* タブレット用のメディアクエリ */
@media (max-width: 1026px) and (min-width: 768px) {


  .tp-sp-highlight {
    font-size: 50px;
  }

  .tp-sp-english-catchphrase {
    font-size: 30px;
  }
}

/* スマホ用のメディアクエリ */
@media (max-width: 767px) {


  .tp-sp-highlight {
    font-size: 30px;
  }

  .tp-sp-english-catchphrase {
    font-size: 18px;
  }
}


  .bg-grey {
    background: #F9F5EE;
  }





/************************************
** お問い合わせフォームの入力
************************************/


/* フッターお問い合わせ・ご予約・空き室確認 */

.contact-container {
    display: flex;
    justify-content: center;
    background-color: #F9F5EE; /* PC表示時の背景色 */
    padding:0px 0px 50px 0px;
}

.contact-section {
    margin: 0 20px;
    text-align: center;
    padding: 20px 50px 50px 50px;
    background-color: #FFF;
    width: 400px;
    z-index:100 !important;
}

.contact-section .heading-title {
    font-size: 4.5rem !important;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
    margin-top: 0px;
}

.contact-section .heading-subtitle {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    margin-top: 0;
}

.contact-section .contact-description {
    font-size: 18px;
    line-height: 1.6;
    margin: 30px 0;
}

.contact-section .heading-title .fa-calendar-alt {
    font-size: 50px;
    margin-right: -12px;
    margin-top: -6px;
    vertical-align: middle;
}

.contact-section .heading-title-mg2 {
    margin-top: 20px;
    margin-bottom: 0px;
}

@media (max-width: 1026px) {
    .contact-container {
        flex-direction: column;
        background-color: transparent; /* 背景色を透明に */
        padding: 20px 0px 0px 0px;
        margin:0;
        padding-bottom:50px;
    }

    .contact-section {
        margin: 0 auto;
        padding: 10px 0px 20px 0px;
        width: 100%;
    }
    
    .contact-section .heading-title-mg2 {
        padding-top: 0px;
        margin-bottom: 20px;
        margin-top: 20px;
    }
    
    .contact-section .heading-title .fa-calendar-alt {
        font-size: 50px;
        margin-right: 0px;
        margin-top: -8px;
    }
}

@media (max-width: 480px) {
    
    .contact-container {
        flex-direction: column;
        background-color: transparent; /* 背景色を透明に */
        padding: 0;
        margin:0;
        padding-bottom:25px;
    }
    
    .contact-section {
        padding: 10px 0px 20px 0px;
    }

    .contact-section .heading-title-mg2 {
        margin-top: 15px;
        margin-bottom: 0px;
    }

    .contact-section .heading-title {
        font-size: 2.4rem !important;
    }

    .contact-section .heading-subtitle {
        font-size: 1.6rem;
        font-weight:normal;
        margin-top:4px;
        margin-bottom: 0px;
    }

    .contact-section .heading-title .fa-calendar-alt {
        font-size: 2.0rem;
        margin-right: 0px;
    }
    
    .contact-section .contact-description {
        font-size: 14px;
        padding: 0px 20px;
        margin: 18px 0px 20px 0px;
    }
}





/* TOPページ　NEWS  見出しmargin */

.heading-title-mg3 {
    padding-top:40px;
    padding-bottom:60px;
}

@media (max-width: 1026px) {
.heading-title-mg3 {
    padding-top:0px;
    padding-bottom:0px;
}
}

@media (max-width: 480px) {
.heading-title-mg3 {
    padding-top:0px !important;
    padding-bottom:0px !important;
    margin:0;
}
}

.news-container0 {
    padding-top:30px;
    padding-bottom:60px;
    background-color:#F9F5EE; 
}

@media (max-width: 1026px) {
.news-container0 {
    padding-top:0px !important;
    padding-bottom:30px;
    background-color:#F9F5EE; 
}
}

@media (max-width: 480px) {
.news-container0 {
    padding-top:0px !important;
    margin-top:0px !important;
    padding-bottom:40px;
}
}


/* TOPページ　NEWS */
.news-container {
  display: flex;
  justify-content: space-between; /* space-betweenから変更 */
  padding-left: 0px;
  margin-bottom: 0px;
  width:1000px;
  margin:0 auto;
}

.heading-title-mg {
  flex: 1;
  padding:0;
}

.vertical-line {
  width: 1px;
  background-color: #ccc;
  margin: 50px 30px;
}

.notice {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
  margin: 15px 0;
}

/* お知らせリスト部分の修正 */
.news-container0 .notice-list {
  flex: 1; /* 残りの空間を全て使用 */
  max-width: 650px; /* 最大幅を指定 */
  margin-top:40px;
}

.news-container0 .notice:last-child {
  border-bottom: none;
  /* もしくは */
  /* border-bottom: 0; */
}

.date-label-container {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.news-container .heading-title {
  font-size: 4.5rem !important;
  font-weight: 500 !important;
  color: #f6ad44 !important;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0px;
  z-index:100 !important;
}

.news-container .heading-subtitle {
  font-size: 1.3rem !important;
  font-weight: bold;
  color: #f6ad44 !important;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 0px;
  margin-bottom: 15px;
  z-index:100 !important;
}

/* 日付のスタイル */
.date {
  font-size: 18px;
  margin-right: 10px;
  color: #333;
}

/* ラベルのスタイル */
.label {
  display: inline-block;
  font-size: 16px;
  padding: 3px 10px;
  border-radius: 5px;
  color: white;
  margin-right: 0px;
}

.label1 {
  background-color: #eaa7d1;
}

.label2 {
  background-color: #b0e7c0;
}

.label3 {
  background-color: #a3c5f9;
}

.label, .title {
  text-decoration: none;
  color: white;
}

.label:hover {
  text-decoration: none;
  color: white;
}

.title:hover {
  text-decoration: none;
  color: #000;
}

/* タイトルのスタイル */
.title {
  font-size: 18px;
  flex-grow: 1;
  color: #000;
  margin-top: 2px;
}

/* PC表示用のスタイル */
@media (min-width: 1026px) {
  #top-page .news-container0 .news-container {
    width: 1000px;
    margin: 0 auto;
    /* 他のスタイルがあれば維持 */
  }

  #top-page .news-container0 .notice-list {
    flex: 1;
    max-width: 650px; /* 既存のスタイルを維持または調整 */
    /* margin-top: 40px; */ /* 既存のスタイルがあれば維持 */
    margin-bottom: 30px; /* お知らせ一覧ボタンとの間に余白を追加 */
  }

  #top-page .notice {
    display: flex;
    flex-direction: column; /* ★重要: 子要素を縦並びにする */
    align-items: flex-start; /* ★重要: 子要素を左揃えにする */
    /* justify-content: flex-start; は縦並びでは意味合いが変わるため削除またはコメントアウト */
    /* flex-wrap: nowrap; は縦並びでは通常不要 */
    width: 100%;
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
    margin: 15px 0;
    box-sizing: border-box;
  }

  /* 最後の .notice 要素の下罫線を消す */
  #top-page .notice-list .notice:last-child {
    border-bottom: none;
    padding-bottom: 0; /* 罫線がない場合はパディングも調整することが多い */
    margin-bottom: 0; /* 罫線がない場合はマージンも調整することが多い */
  }

  #top-page .date-label-container {
    display: flex;
    align-items: center;
    margin-bottom: 8px; /* ★追加: タイトルとの間に少し余白 */
    flex-shrink: 0;
  }

  #top-page .date {
    margin-right: 30px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  #top-page .label {
    white-space: nowrap;
    /* min-width: 80px; */
  }

  #top-page .title {
    padding-top: 0; /* 上の要素との間隔は date-label-container の margin-bottom で調整 */
    margin-left: 0 !important;
    /* flex-grow: 1; は縦並びの場合、幅に対しては効果がないので削除してもよいが、
       残しておいても害は少ない。テキストがコンテナ幅に収まるようにする意図があれば残す */
    width: 100%; /* ★追加: タイトルが親要素の幅いっぱいになるように */
    text-align: left;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    /* white-space: nowrap; */ /* 必要に応じて。複数行許容ならコメントアウト */
  }
}

/* タブレット・スマホ表示用のレスポンシブ設定 */
@media (max-width: 1026px) {
  .news-container {
    flex-direction: column;
    padding: 0px !important;
    margin: 0px !important;
    width:100%;
  }

  .vertical-line {
    display: none;
  }

  .news-container .heading-title-mg, .notice-list {
    width: 100%;
    margin-right: 0px;
  }

  .news-container .heading-title {
    margin-top: 0px;
    margin-bottom: 0px;
    z-index:100;
  }

  .news-container .heading-subtitle {
    margin-top: 5px;
    margin-bottom: 0px !important;
    padding-bottom:0px !important;
    z-index:100;
  }
 
  .notice-list {
    padding: 0px 50px 0px 50px;
    margin: 0px !important;
  }

  .notice {
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
    margin: 15px 0;
  }

  .date-label-container {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
  }

  .date {
    font-size: 18px;
    margin-right: 10px;
    padding-bottom: 0;
  }

  .label {
    font-size: 15px;
    margin-bottom: 0;
  }

  .title {
    width: 100%;
    font-size: 20px;
    margin-top: 8px;
  }

  .date-label {
    margin-bottom: 0px !important;
  }

  .notice:last-child {
    border-bottom: none;
    margin-bottom:10px;
  }
}

@media (max-width: 480px) {
  .news-container {
    flex-direction: column;
    padding: 0px;
    margin: 0px;
  }    
    
  .news-container .heading-title {
    font-size: 2.4rem !important;
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .news-container .heading-subtitle {
    font-size: 1.2rem;
    font-weight: normal;
    margin-top: 5px;
    margin-bottom: 0px;
  }

  .news-container0 .notice-list {
    padding: 0px 40px 15px 40px;
    margin: -10px !important;
  }

  .notice-list {
    padding: 0px 15px 15px 15px;
    margin: -10px !important;
  }

  .date-label-container {
    flex-wrap: wrap;
  }

  /* スマホ表示時の日付スタイル */
  .date {
    font-size: 12px;
    margin-right: 7px;
    margin-bottom: 5px;
  }

  /* スマホ表示時のラベルスタイル */
  .label {
    font-size: 11px;
    padding: 2px 8px;
    margin-bottom: 5px;
  }

  /* スマホ表示時のタイトルスタイル */
  .title {
    font-size: 14px;
    margin-top: 0px;
    line-height: 1.4;
  }

  .notice {
    padding-bottom: 10px;
    margin: 12px 0;
  }
}

/* タブレットサイズ用のメディアクエリ */
@media (min-width: 768px) and (max-width: 1026px) {
  .notice {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
  }

  .notice:last-child {
    border-bottom: none;
  }
}






/* TOPページ　NEWS  見出しmargin ここまで */

.heading-title {
  font-size: 4.5rem !important;
  font-weight: 500;
  color: #f6ad44;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0px;
  z-index:100 !important;
}

.heading-subtitle {
  font-size: 1.3rem;
  font-weight: bold;
  color: #f6ad44;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 0px;
  margin-bottom: 15px;
  z-index:100 !important;
}

/* タブレット・スマホ表示用のレスポンシブ設定 */
@media (max-width: 1026px) {
  .heading-title {
    margin-top: 30px;
    margin-bottom: 0px;
  }
  .heading-subtitle {
    margin-top: 5px;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .heading-title {
    font-size: 2.4rem !important;
    margin-top: 15px;
    margin-bottom: 0px;
  }
  .heading-subtitle {
    font-size: 1.2rem !important;
    font-weight:normal;
    margin-top: 5px;
    margin-bottom: 10px;
  }
}

@media (max-width: 1026px) {
  .features-list-container0 .heading-title-mg .heading-title {
    color: #fff !important;
  }

  .features-list-container0 .heading-title-mg .heading-subtitle {
    color: #fff !important;
  }

}

@media (max-width: 767px) {
  .features-list-container0 .heading-title {
    font-size: 2.4rem !important;
    margin-top: 15px;
    margin-bottom: 0px;
    color:#fff;
  }
  .features-list-container0 .heading-subtitle {
    font-size: 1.2rem !important;
    font-weight:normal;
    margin-top: 5px;
    margin-bottom: 10px;
    color:#fff;
  }
}






/* ご予約の流れ */
.reservation-process-heading {
    width: 100%;
    background-color: #F9F5EE;
    margin: 0 auto;
    padding-top: 60px;
    padding-bottom: 60px;
}

:root {
    --arrow-width: 65px;
    --arrow-height: 65px;
    --arrow-margin-top: calc(15% - 30px);
    --step-gap: 75px;
    --image-title-gap: 20px;
    --title-text-gap: 15px;
}

.reservation-process {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    max-width: 1550px; /* 1200pxから1600pxに変更 */
    margin: 0 auto;
    padding: 0px 20px;
    background-color: #F9F5EE;
}

.reservation-process .step {
    flex: 0 1 calc(25% - var(--step-gap));
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
}

.reservation-process .image-container {
    position: relative;
    width: 100%;
    padding-bottom: 56%;
    margin-bottom: var(--image-title-gap);
}

.reservation-process .image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.reservation-process .step h3 {
    font-size: 15px;
    font-weight: bold;
    margin: 15px 0 13px;
    text-align: center;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.reservation-process .step h3::after {
    content: none; /* 下線を削除 */
}

.reservation-process .step p {
    font-size: 14px;
    line-height: 30px;
}

.reservation-process .arrow {
    flex: 0 0 var(--arrow-width);
    align-self: flex-start;
    height: var(--arrow-height);
    background-image: url('../images/f-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: var(--arrow-margin-top);
}

/* タブレット表示用のスタイル */
@media (max-width: 1026px) {
    .reservation-process-heading {
        width: 100%;
        background-color: #F9F5EE;
        margin: 0 auto;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    :root {
        --arrow-width: 80px;
        --arrow-height: 80px;
        --arrow-margin-top: -10px;
        --arrow-margin-bottom: 30px;
        --step-gap: 0px;
        --image-title-gap: 20px;
        --title-text-gap: 10px;
    }

    .reservation-process {
        flex-direction: column;
        padding: 0px 30px 50px 30px;
    }

    .reservation-process .step {
        flex: 0 1 100%;
        margin-bottom: 30px;
        flex-direction: column;
    }

    .reservation-process .image-container {
        width: 100%;
        padding-bottom: 56%;
        margin-bottom: 20px;
    }

    .reservation-process .step-content {
        text-align: center;
    }

    .reservation-process .step h3 {
        text-align: center !important;
        margin: 15px 0;
        font-size: 23px;
        font-weight: bold; 
        text-align: center;
        width: 100%;
    }

    .reservation-process .step h3::after {
        content: none; /* 下線を削除 */
    }

    .reservation-process .step p {
        text-align: left !important;
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: var(--title-text-gap);
    }

    .reservation-process .step-content {
    padding: 0 20px !important; 
    }

    .reservation-process .arrow {
        width: var(--arrow-width);
        height: var(--arrow-height);
        margin: var(--arrow-margin-top) auto var(--arrow-margin-bottom);
        transform: rotate(90deg);
    }
}

/* スマートフォン表示用のスタイル */
@media (max-width: 480px) {
    .reservation-process-heading {
        width: 100%;
        background-color: #F9F5EE;
        margin: 0 auto;
        padding-top: 10px;
        padding-bottom: 20px;
    }

    .reservation-process {
        margin: 0px auto;
        padding: 5px 15px 30px 15px;
    }

    .reservation-process .step {
        margin-bottom: 10px; /* 20pxから10pxに変更 */
        flex-direction: column;
    }

    .reservation-process .image-container {
        width: 100%;
        padding-bottom: 56%;
        margin-bottom: 15px;
    }

    .reservation-process .step-content {
        width: 100%;
        padding: 0 10px;
    }

    .reservation-process .step h3 {
        margin-top: 0px;
        margin-bottom: 10px;
        font-size: 17px;
        font-weight: bold;
        text-align: center;
        width: 100%;
    }

    .reservation-process .step p {
        text-align: left; /* centerからleftに変更 */
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 0px; /* 余白を追加 */
    }

    .reservation-process .arrow {
        margin: 0px auto 0px; /* 上下の余白を調整 */
        transform: rotate(90deg);
    }
}



/* ボタンスタイル（元のまま） */
.photo-section-button {
    margin: 50px 0px 0px 0px;
}

@media (max-width: 1024px) {
    .photo-section-button {
        margin: 50px 0px 0px 0px;
    }
}

@media (max-width: 480px) {
    .photo-section-button {
        margin: 20px 0px 0px 0px;
    }
}



/* TOPページ　FACILITY  見出しmargin */

.heading-title-mg {
    padding-top:60px;
    padding-bottom:60px;
    z-index:100 !important;
}

@media (max-width: 1026px) {
.heading-title-mg {
    padding-top:30px;
    padding-bottom:0px;
}
}

@media (max-width: 480px) {
.heading-title-mg {
  margin:0;
    padding-top:0px;
    padding-bottom:15px;
}
}


/* TOPページ FEATURES 見出しmargin */

.heading-title-mg2 {
margin-top:0px;
margin-bottom:60px;  
}

@media (max-width: 1026px) {
.heading-title-mg2 {
padding-top:0px; 
margin-bottom:30px; 
margin-top:20px;
}
}

@media (max-width: 480px) {
.heading-title-mg2 {
    padding-top:0px; 
    margin-top:0px;
    margin-bottom:15px;
}
}



/* TOP施設一覧 */

.features-list-container0 {
    width: 100%;
    max-width: 100%;
    padding-top: 0px;
    padding-bottom: 0px;
    overflow-x: hidden;
    justify-content: center;
    box-sizing: border-box;
}

@media (max-width: 1026px) {
.features-list-container0 {
  width: 100%;
  max-width: 100%;
  padding-top:0px;
  padding-bottom:0px;
  overflow-x: hidden;
  justify-content: center;
  box-sizing: border-box;
  background: linear-gradient(90deg, #f6ad44, #f6ad44);
}
}

@media (max-width: 480px) {
.features-list-container0 {
  width: 100%;
  max-width: 100%;
  padding-top:10px;
  padding-left:12px;
  padding-bottom:20px;
  margin:0;
  overflow-x: hidden;
  justify-content: center;
  box-sizing: border-box;
  background: linear-gradient(90deg, #f6ad44, #f6ad44);
}
}



/* コンテナのスタイル設定 */
.features-list-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /* 左揃えに変更 */
    width: 100%;
    max-width: 1200px;
    gap: 35px; /* ギャップを増やして間隔を調整 */
    margin: 0 auto;
    z-index:100 !important;
}

@media (max-width: 1026px) {
.features-list-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    max-width: 1024px;
    gap: 10px;
    margin: 0 auto;
    z-index:100 !important;
}
}

@media (max-width: 480px) {
.features-list-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    max-width: 480px;
    gap: 10px;
    margin: 0 auto;
    z-index:100 !important;
    margin-bottom:0 !important;
    padding-bottom:0 !important;
}
}

/* カードリンクのスタイル設定 */
.features-list-container .card-link {
    text-decoration: none; /* リンクの下線を削除 */
    color: #EA7600; /* リンクの色を継承 */
    width: 31%; /* カードリンクの幅をコンテナの31%に設定 */
    display: block; /* カードリンクをブロック要素に設定 */
    margin-bottom: 20px; /* 下マージンを追加して、行間の距離を広げる */
    z-index:100 !important;
    height: 100%; /* リンクも高さ100%に */
}

/* カードのスタイル設定 */
.features-list-container .card {
    position: relative; /* 相対位置を使用 */
    text-align: center; /* テキストを中央揃え */
    padding: 15px 0px 0px 0px; /* カード内の余白 */
    box-sizing: border-box; /* ボックスモデルの設定 */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 -2px 8px rgba(0, 0, 0, 0.05),
                -2px 0 8px rgba(0, 0, 0, 0.05), 2px 0 8px rgba(0, 0, 0, 0.05); /* 均等なシャドウを追加し、少し濃く */
    border: none; /* ボーダーを削除 */
    background-color: #fff;
    z-index:100 !important;
    height: 100%; /* カードの高さを100%に */
    display: flex; /* Flexboxを使用 */
    flex-direction: column; /* 縦方向に配置 */
}

.features-list-container .content {
    display: flex;
    flex-direction: column;
    height: 100%; /* コンテンツも高さ100%に */
}

/* ラベルのスタイル設定 */
.features-list-container .label {
    position: absolute; /* 絶対位置を使用 */
    top: -15px; /* 上からの位置 */
    right: -15px; /* 右からの位置 */
    background-color: #fff; /* 背景色を白に設定 */
    color: #000; /* 文字色を黒に設定 */
    border-radius: 50%; /* 円形にするためのボーダー半径 */
    /* Flexboxで中央配置 */
    display: inline-flex;
    justify-content: center;
    align-items: center;
    /* 幅と高さを同じに保つ */
    aspect-ratio: 1;  /* アスペクト比を1:1に固定 */
    white-space: nowrap;
    padding: 17px; /* 円形サイズを少し小さくするための余白 */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 -2px 8px rgba(0, 0, 0, 0.05),
                -2px 0 8px rgba(0, 0, 0, 0.05), 2px 0 8px rgba(0, 0, 0, 0.05); /* 均等なシャドウを追加し、少し濃く */
    font-size: 17px; /* 文字サイズを少し大きく設定 */
}

/* 3文字の場合のスタイル */
.features-list-container .label.label-three-chars {
    font-size: 15px; /* 3文字用に小さいサイズに */
    padding: 12px; /* パディングを少し増やして円形を維持 */
}


/* カード内のコンテンツスタイル設定 */
.features-list-container .content .title {
    margin: 0px; /* 上下のマージン設定を詰める */
    color: #f6ad44; /* 文字色をオレンジに設定 */
    font-size: 20px; /* フォントサイズを小さく設定 */
    font-weight: bold; /* 文字を太字に設定 */
    text-align:center !important;
}

.features-list-container .content .subtitle {
    margin: 2px 0; /* 上下のマージン設定を詰める */
    font-size: 23px; /* フォントサイズを大きく設定 */
    color: #f6ad44; /* 文字色をオレンジに設定 */
    font-weight: bold; /* 文字を太字に設定 */
    line-height:23px;
}

.features-list-container .circle {
    width: 90%;
    aspect-ratio: 16 / 11;
    overflow: hidden; /* 内容がはみ出ないようにする */
    display: flex; /* フレックスボックスレイアウトを使用 */
    align-items: center; /* 垂直方向に中央揃え */
    justify-content: center; /* 水平方向に中央揃え */
    margin: 20px auto 0px auto; /* 上下のマージンと中央揃え */
}

.features-list-container .circle img {
    width: 100%; /* 幅を親要素に合わせる */
    height: 100%; /* 高さを親要素に合わせる */
    object-fit: cover; /* 画像が自動でズームアップされ、エリアを埋めます */
    object-position: center; /* 画像を中央に配置 */
}


/* メディアクエリ - タブレットとスマホでの2列表示 */
@media (max-width: 1026px) {
    .features-list-container {
        width: 100%;
        padding:30px;
    }
    .features-list-container .card-link {
        width: 48%; /* カードリンクの幅を48%に設定して2列に */
        margin-bottom: 30px;
    }

}


@media (max-width: 767px) {

   .features-list-container {
    display: flex; /* フレックスボックスレイアウトを使用 */
    flex-wrap: wrap; /* 要素を複数行に折り返し */
    width: 91%; /* または auto */
    max-width:100%;
    padding: 0px; /* 左右にパディングを追加 */
    gap: 10px; /* カード間の距離を狭める */
    margin:0;
    }

    .features-list-container .card {
        width:100% !important;

        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 -2px 8px rgba(0, 0, 0, 0.05),
                -2px 0 8px rgba(0, 0, 0, 0.05), 2px 0 8px rgba(0, 0, 0, 0.05);
        margin:0px 0px 0px 3px !important;
        padding:5px 0px 5px 0px;
    }

   /* ラベルのスタイル設定 */
   .features-list-container .label {
    position: absolute; /* 絶対位置を使用 */
    top: -10px; /* 上からの位置 */
    right: -17px; /* 右からの位置 */
    background-color: #fff; /* 背景色を白に設定 */
    color: #000; /* 文字色を黒に設定 */
    border-radius: 50%; /* 円形にするためのボーダー半径 */
    padding: 7px; /* 円形サイズを少し小さくするための余白 */
    font-size:14px !important;
    z-index:10 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 -2px 8px rgba(0, 0, 0, 0.05),
                -2px 0 8px rgba(0, 0, 0, 0.05), 2px 0 8px rgba(0, 0, 0, 0.05); 均等なシャドウを追加し、少し濃く */
    }

    /* レスポンシブ時の3文字用スタイル */
    .features-list-container .label.label-three-chars {
        font-size: 10px !important;
        padding: 8px;
    }

    /* カード内のコンテンツスタイル設定 */
   .features-list-container .content .title {
    margin: 7px 0px 0px 0px; /* 上下のマージン設定を詰める */
    color:#f6ad44; /* 文字色をオレンジに設定 */
    font-size: 17px; /* フォントサイズを小さく設定 */
    font-weight: bold; /* 文字を太字に設定 */
    }

   .features-list-container .content .subtitle {
    margin-bottom: 10px; /* 上下のマージン設定を詰める */
    font-size: 19px; /* フォントサイズを大きく設定 */
    color: #f6ad44; /* 文字色をオレンジに設定 */
    font-weight: bold; /* 文字を太字に設定 */
    line-height:20px;
    }

   .features-list-container0 {
    margin:0px;
    }
}


@media (max-width: 480px) {

   .features-list-container {
    display: flex; /* フレックスボックスレイアウトを使用 */
    flex-wrap: wrap; /* 要素を複数行に折り返し */
    width: 94%; /* または auto */
    max-width:100%;
    padding: 0px; /* 左右にパディングを追加 */
    gap: 14px; /* カード間の距離を狭める */
    margin:0;
    margin-left:5px;
    }

    .features-list-container .card {
    width:96% !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 -2px 8px rgba(0, 0, 0, 0.05),
                -2px 0 8px rgba(0, 0, 0, 0.05), 2px 0 8px rgba(0, 0, 0, 0.05);
    margin:0px 0px 0px 3px !important;
    padding:5px 0px 5px 0px;
    }

    .features-list-container .card-link {
		width: calc(50% - 7px);
        margin-bottom: 20px;
    }

    .features-list-container .circle {
        width: 90%;
        aspect-ratio: 16 / 9;
        overflow: hidden; /* 内容がはみ出ないようにする */
        display: flex; /* フレックスボックスレイアウトを使用 */
        align-items: center; /* 垂直方向に中央揃え */
        justify-content: center; /* 水平方向に中央揃え */
        margin: 5px auto 0px auto !important; /* 上下のマージンと中央揃え */
    }
    
   /* ラベルのスタイル設定 */
   .features-list-container .label {
    position: absolute; /* 絶対位置を使用 */
    top: -10px; /* 上からの位置 */
    right: -10px; /* 右からの位置 */
    background-color: #fff; /* 背景色を白に設定 */
    color: #000; /* 文字色を黒に設定 */
    border-radius: 50%; /* 円形にするためのボーダー半径 */
    padding: 7px; /* 円形サイズを少し小さくするための余白 */
    font-size:11px !important;
    z-index:10 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 -2px 8px rgba(0, 0, 0, 0.05),
                -2px 0 8px rgba(0, 0, 0, 0.05), 2px 0 8px rgba(0, 0, 0, 0.05); 均等なシャドウを追加し、少し濃く */
    }

    /* スマホサイズ時の3文字用スタイル */
    .features-list-container .label.label-three-chars {
        font-size: 9px !important;
        padding: 5px;
    }


    /* カード内のコンテンツスタイル設定 */
   .features-list-container .content .title {
    margin: 7px 0px 0px 0px; /* 上下のマージン設定を詰める */
    padding-top:5px;
    color: #f6ad44; /* 文字色をオレンジに設定 */
    font-size: 14px; /* フォントサイズを小さく設定 */
    font-weight: bold; /* 文字を太字に設定 */
    }

   .features-list-container .content .subtitle {
    margin-bottom: 0px; /* 上下のマージン設定を詰める */
    padding-bottom:5px;
    font-size: 16px; /* フォントサイズを大きく設定 */
    color: #f6ad44; /* 文字色をオレンジに設定 */
    font-weight: bold; /* 文字を太字に設定 */
    line-height:20px;
    }

   .features-list-container0 {
    margin:0px;
    }
}


/* キャッチコピーのスタイル設定 */
.features-list-container .facility-catchcopy {
    padding: 15px 17px 0px 17px;
    line-height: 1.5;
    color: #333;
    min-height: 4.5em; /* 最小の高さを3行分に設定 */
    margin-bottom: 10px; /* 下部に余白を追加 */
  word-break: break-all; /* 長い単語の折り返し */
    word-wrap: break-word; /* 長い単語の折り返し */

}

/* タブレット用スタイル */
@media (max-width: 1026px) {
    .features-list-container .facility-catchcopy {
        padding: 8px 12px;
        min-height: 4.5em;
    }
}

/* スマートフォン用スタイル */
@media (max-width: 767px) {
    .features-list-container .facility-catchcopy {
        padding: 6px 10px;
        min-height: 4.5em;
    }
}

/* 小さいスマートフォン用スタイル */
@media (max-width: 480px) {
    .features-list-container .facility-catchcopy {
        padding: 7px 8px 7px 8px !important;
        min-height: 3.6em !important;
    margin-bottom:0px !important;
    line-height:1.3 !important;
    }
}




.features-bg-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden; /* 追加 */
}

.features-bg-container {
  position: absolute;
  top: 0;
  left: 50%; /* 変更 */
 transform: translateX(-50%); /* 追加 */
  width: 100vw;
  height: 100%;
  background-color: white;
  z-index: 0;
}

.features-bg-container::after {
  content: "";
  position: absolute;
  top: 0;
  right: -35vw; /* 変更: より広い範囲をカバー */
  width: 70%; /* 変更: 幅を広げる */
  height: 100%;
  background-color: #F9F5EE;
}

@media screen and (max-width: 1026px) {
  .features-bg-container {
    background-color: #F9F5EE;
  }
  .features-bg-container::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-color: #F9F5EE;
  }
  
}



.features-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 0px 80px 0px;
    z-index:1000 !important;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 40px 0;
}

.col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 20px;
}

.col-md-6 img {
  width: 100%;
  height: auto;
}

/* 追加: 文字列を含む列のスタイル */
.col-md-6:not(.order-1) {
  display: flex;
  flex-direction: column;
  justify-content: center; /* 中央揃え */
}

.features-image-container {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.features-image-container img {
  width: 100%;
  height: auto;
}

/* 詳細テキストのスタイル */
.features-detail-text {
  margin-top: 15px; /* 詳細テキストとブロックの距離を調整 */
  margin-left:10px;
  font-size: 18px; /* 詳細テキストのフォントサイズを設定 */
  line-height: 1.8; /* 詳細テキストの行間を調整 */
}

@media (max-width: 1026px) {
    
  .features-container {
  margin: 0 auto;
  padding: 20px 20px 60px 20px;
}
    
  .row {
    flex-direction: column;
    margin: 0px 0;
  }

  .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
  }

  .order-1 {
    order: 1;
  }

  .order-2 {
    order: 2;
  }

  .features-image-container img {
    width: 100%;
    height: auto;
    margin-top:15px;
  }

  .features-detail-text {
    font-size: 18px;
    line-height: 1.8;
    padding:0px 30px 30px 30px;
    margin-left:15px;
  }
}

@media (max-width: 480px) {
  
  .features-container {
  margin: 0 auto;
  padding: 15px 25px 20px 25px;
} 

  .features-detail-text {
    font-size: 14px;
    line-height: 1.5;
    padding: 0px 0px 25px 0px;
    margin-left:5px !important;
    margin-right:1px !important;
  }
}

@media (max-width: 480px) {
  
 .features-pg .features-container {
   margin: 0 auto;
   padding: 15px 25px 20px 25px !important;
}

 .features-pg .features-detail-text {
    width:100%;
    font-size: 14px;
    line-height: 1.5;
    padding: 0px 0px 25px 0px;
    margin-left:5px !important;
    margin-right:1px !important;
  }
}

.features-detail-text p {
   margin-bottom: 10px; /* 段落下の余白を設定 */
}

/* 最後の段落の下の余白は不要な場合 */
.features-detail-text p:last-child {
   margin-bottom: 0;
}

/* レスポンシブ対応 */
@media (max-width: 480px) {
   .features-detail-text p {
       margin-bottom: 8px; /* スマホ表示時は余白を少し狭く */
   }
}

.features-pg .features-detail-text p {
   margin-bottom: 10px; /* 段落下の余白を設定 */
}

/* 最後の段落の下の余白は不要な場合 */
.features-pg .features-detail-text p:last-child {
   margin-bottom: 0;
}

/* レスポンシブ対応 */
@media (max-width: 480px) {
.features-pg .features-detail-text p {
       margin-bottom: 8px; /* スマホ表示時は余白を少し狭く */
   }
}

/* square-list-containerのスタイル */
.square-list-container {
  display: flex;
  align-items: center;
  padding: 10px;

}

/* 正方形リストアイテムを包むラッパー */
.square-list-wrapper {
    display: inline-flex;
    align-items: center;
    height: 100%;

}

.text-container {
    display: inline-block;
}


/* タブレット用のメディアクエリ */
@media screen and (max-width: 1026px) and (min-width: 768px) {

  .square-list-wrapper {
    margin-left: 10px !important;
  }

.text-container {
    width:100%;
}
}

/* スマートフォン用のメディアクエリ */
@media screen and (max-width: 767px) {

    .square-list-container {
        padding: 15px 0px 0px 0px;
        margin-left: 0px;
    }
}

/* タブレット用のメディアクエリ */
@media screen and (max-width: 1026px) and (min-width: 768px) {

    .square-list-container {
        padding: 20px 35px 0px 35px;
    }
}

/* ベーススタイル（デスクトップ用） */
.square-list-item {
    width: 70px;
    height: 70px;
    background-color: #EFB9DC;
    color: white;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 0px;
    margin: 0 22px 0 0; /* 右マージンのみ維持 */
}

/* 吹き出しの三角形部分 */
.square-list-item::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 11px solid #EFB9DC;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

/* リストアイテムを包むラッパー */
.square-list-item-wrapper {
    display: inline-flex;
    align-items: center;
    height: 100%;
}

/* タブレット用スタイル */
@media screen and (max-width: 768px) {
    .square-list-item {
        width: 60px;
        height: 60px;
        font-size: 32px;
        margin-right: 18px;
    }
    
    .square-list-item::after {
        right: -8px;
        border-left-width: 9px;
        border-top-width: 8px;
        border-bottom-width: 8px;
    }
}

/* スマートフォン用スタイル */
@media screen and (max-width: 480px) {
    .square-list-item {
        width: 45px;
        height: 45px;
        font-size: 22px;
        margin-right: 15px;
    }
    
    .square-list-item::after {
        right: -6px;
        border-left-width: 7px;
        border-top-width: 6px;
        border-bottom-width: 6px;
    }
}


/* テキストのスタイル */
.features-container .list-box-text {
    font-size: 30px; /* フォントサイズを設定 */
}

/* タブレット用のメディアクエリ */
@media screen and (max-width: 1026px) and (min-width: 768px) {

    .features-container .list-box-text {
        font-size: 30px !important; 
        text-align: center; /* タブレット用にフォントサイズを少し小さく */
    }
}

/* スマートフォン用のメディアクエリ */
@media screen and (max-width: 767px) {

    .features-container .list-box-text {
        font-size: 25px !important;
        font-weight: bold;
        text-align: center; /* スマートフォン用にフォントサイズをさらに小さく */
    }
}

/* スマートフォン用のメディアクエリ */
@media screen and (max-width: 480px) {

    .features-container .list-box-text {
        font-size: 17px !important;
        font-weight: bold;
        text-align: center; /* スマートフォン用にフォントサイズをさらに小さく */
    }
}



.marker {
    /* マーカーの設定 */
    display: inline;
    line-height: 1.4;
    padding-left: 5px;
    padding-right: 5px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}


/* カラーパターン0（オレンジ） */
.color-pattern-0 .square-list-item {
    background-color: #FADCAC;
    color: white;
}
.color-pattern-0 .square-list-item::after {
    border-left-color: #FADCAC;
}
.color-pattern-0 .marker {
    background: linear-gradient(
        transparent 70%, 
        rgba(250, 220, 172, 0.6) 0  /* 元のFADCACを40%薄く */
    );
}

/* カラーパターン1（ピンク） */
.color-pattern-1 .square-list-item {
    background-color: #EFB9DC;
    color: white;
}
.color-pattern-1 .square-list-item::after {
    border-left-color: #EFB9DC;
}
.color-pattern-1 .marker {
    background: linear-gradient(transparent 70%, #EFB9DC 0); /* 透明部分を70%に減らし、マーカーを太く */
}

/* カラーパターン2（紫） */
.color-pattern-2 .square-list-item {
    background-color: #C3B1DB;
    color: white;
}
.color-pattern-2 .square-list-item::after {
    border-left-color: #C3B1DB;
}
.color-pattern-2 .marker {
    background: linear-gradient(transparent 70%, #C3B1DB 0); /* 透明部分を70%に減らし、マーカーを太く */
}

/* カラーパターン3（緑） */
.color-pattern-3 .square-list-item {
    background-color: #ACDECE;
    color: white;
}
.color-pattern-3 .square-list-item::after {
    border-left-color: #ACDECE;
}
.color-pattern-3 .marker {
    background: linear-gradient(transparent 70%, #ACDECE 0); /* 透明部分を70%に減らし、マーカーを太く */
}

/* カラーパターン4（青） */
.color-pattern-4 .square-list-item {
    background-color: #A3D6E4;
    color: white;
}
.color-pattern-4 .square-list-item::after {
    border-left-color: #A3D6E4;
}
.color-pattern-4 .marker {
    background: linear-gradient(transparent 70%, #A3D6E4 0); /* 透明部分を70%に減らし、マーカーを太く */
}

/* カラーパターン5（赤） */
.color-pattern-5 .square-list-item {
    background-color: #E8B6B6;
    color: white;
}
.color-pattern-5 .square-list-item::after {
    border-left-color: #E8B6B6;
}
.color-pattern-5 .marker {
    background: linear-gradient(transparent 70%, #E8B6B6 0); /* 透明部分を70%に減らし、マーカーを太く */
}

/* カラーパターン6（ベージュ） */
.color-pattern-6 .square-list-item {
    background-color: #E8CBB5;
    color: white;
}
.color-pattern-6 .square-list-item::after {
    border-left-color: #E8CBB5;
}
.color-pattern-6 .marker {
    background: linear-gradient(transparent 70%, #E8CBB5 0); /* 透明部分を70%に減らし、マーカーを太く */
}



/* FAQ 質問 */

.faq-container0 .heading-title {
  font-size: 4.5rem !important;
  font-weight: 500;
  color: #f6ad44;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 7px;
  z-index:100 !important;
}

.faq-container0 .heading-subtitle {
  font-size: 1.3rem;
  font-weight: bold;
  color: #f6ad44;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 0px;
  margin-bottom: 15px;
  z-index:100 !important;
}

/* タブレット・スマホ表示用のレスポンシブ設定 */
@media (max-width: 1026px) {
  .faq-container0 .heading-title {
    margin-top: 30px;
    margin-bottom: 0px;
  }
  .faq-container0 .heading-subtitle {
    margin-top: 5px;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .faq-container0 .heading-title {
    font-size: 2.4rem !important;
    margin-top: 15px;
    margin-bottom: 0px;
  }
  .faq-container0 .heading-subtitle {
    font-size: 1.2rem !important;
    font-weight:normal;
    margin-top: 5px;
    margin-bottom: 10px;
  }
}



.faq-container0 {
  width: 100%;
  padding-top: 30px;
  padding-bottom: 70px; /* FAQセクション全体の下の余白 */
}

/* FAQ項目のコンテナ */
.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 20px;
}

@media (max-width: 1026px) {
  .faq-container {
    padding: 0px 50px 0px 50px !important;
  }
}

@media (max-width: 768px) {
  .faq-container0 {
    padding-top: 0px;
    padding-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .faq-container0 {
    padding: 10px 0px 40px 0px;
  }
  .faq-container {
    padding: 5px 25px 15px 25px !important;
  }
}

/* Q アイコンのグラデーション設定 */
:root {
    --orange-gradient: linear-gradient(90deg, #F0B53D, #EFA459);
}

.faq-item {
 margin-bottom: 15px;
 border: 1px solid #EB8D2F; /* オレンジの枠線を追加 */
 border-radius: 0px; /* 必要に応じて角を丸くできます */
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: #fff;
  padding: 15px 10px 15px 15px;
  border-radius: 0px;
}

.faq-icon {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end; /* 上寄せに変更 */
  padding-bottom: 2px; /* 下部の余白を調整 */
  padding-left:2px;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange-gradient);
  color: #FFF;
  font-size: 27px;
  font-weight: bold;
  margin-right: 15px;
  position: relative;
  top: 0px;
}

/* Q アイコン内のテキスト位置調整 */
.faq-icon span {
  position: relative;
  top: -7px !important;
}

/* 質問文のスタイリング */
.faq-question h3 {
  flex-grow: 1;
  text-align: left;
  font-size: 22px;
  color: #EB8D2F;
  margin: 0;
}

.faq-arrow {
  font-size: 30px;
  transition: transform 0.3s;
  position: relative;
  top: 0px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #EB8D2F;
}

.faq-arrow i {
  transition: transform 0.3s;
}

/* FAQ 回答 */
.faq-answer {
  padding: 0 50px;
  font-size: 18px;
  color: #555;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
  padding: 25px 50px;
  max-height: 1000px;
  opacity: 1;
  transition: max-height 0.5s ease-in, opacity 0.5s ease-in, padding 0.5s ease-in;
}

.faq-item.active .faq-arrow i {
  transform: rotate(180deg);
}

/* レスポンシブ対応 */
@media (max-width: 1026px) {
  .faq-question {
    padding: 10px;
  }
  .faq-icon {
    width: 30px;
    height: 30px;
    font-size: 18px;
    top: 0px;
    left: 5px;
  }
  .faq-icon span {
    top: -2px;
  }
  .faq-question h3 {
    font-size: 20px;
  }
  .faq-arrow {
    font-size: 16px;
    top: -0.5px;
    margin-left: 6px;
    right: 5px;
  }
  .faq-answer {
    padding: 0 15px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 15px 25px 15px;
  }
}

@media (max-width: 480px) {
  .faq-question {
    padding: 10px;
  }
  .faq-icon {
    width: 26px;
    height: 26px;
    font-size: 16px;
    margin-right: 10px;
    padding-bottom:1px;
  }
  .faq-icon span {
    top: -1px;
  }
  .faq-question h3 {
    font-size: 13px;
  }
  .faq-arrow {
    font-size: 14px;
    top: -0.5px;
    margin-left: 6px;
    right: 1px;
  }
  .faq-answer {
    padding: 0 15px;
  }
  .faq-answer p {
    font-size: 14px !important;
  } 
  .faq-item.active .faq-answer {
    padding: 15px 15px 15px 15px;
  }
}





.text3 {
    font-size: 1.8em; /* フォントサイズを設定 */
}

.marker-0 {
    background: linear-gradient(transparent 70%, #FADCAC 0);
    display: inline-block; /* 要素内でマーカーを表示 */
    line-height: 1.4; /* 行の高さを調整 */
    padding-left: 0px;
}

/* スマートフォン用のメディアクエリ */
@media screen and (max-width: 767px) {
    .text3 {
        font-size: 19px !important;
        font-weight:bold;
        text-align:center;/*
    スマートフォン用にフォントサイズをさらに小さく */
    }
    
    .marker-0 {
        line-height: 1.5; /* 行の高さをさらに狭く */
        padding-left: 5px; /* 左パディングをさらに小さく */
    }
}

/* タブレット用のメディアクエリ */
@media screen and (max-width: 1026px) and (min-width: 768px) {
    .text3 {
        font-size: 30px !important; 
        text-align:center; /*タブレット用にフォントサイズを少し小さく */
    }
    
    .marker-0 {
        line-height: 1.3; /* 行の高さを少し狭く */
        padding-left: 8px; /* 左パディングを少し小さく */
    }
}




/* フローティングボタン */
#ast-scroll-top  { display:none !important;}


.f-cateegory {
    position: absolute; /* 絶対位置を使用 */
    top: -30px; /* 上からの位置 */
    right: -30px; /* 右からの位置 */
    background-color: #fff; /* 背景色を白に設定 */
    color: #000; /* 文字色を黒に設定 */
    border-radius: 50%; /* 円形にするためのボーダー半径 */
    padding: 12px; /* 円形サイズを少し小さくするための余白 */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* 均等なシャドウを追加し、少し濃く */
    font-size: 16px; /* 文字サイズを少し大きく設定 */
}

@media (max-width: 1026px) {
.f-cateegory {
    position: absolute; /* 絶対位置を使用 */
    top: -18px; /* 上からの位置 */
    right: -18px; /* 右からの位置 */
    background-color: #fff; /* 背景色を白に設定 */
    color: #000; /* 文字色を黒に設定 */
    border-radius: 50%; /* 円形にするためのボーダー半径 */
    padding: 12px; /* 円形サイズを少し小さくするための余白 */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* 均等なシャドウを追加し、少し濃く */
    font-size: 15px; /* 文字サイズを少し大きく設定 */
}
}



/* オレンジ背景 */

.orange-bg {
background: linear-gradient(90deg, #f6ad44, #f6ad44);
}


/* 白・オレンジ背景（下３分の２） */

    .section-orange {
      position: relative;
      padding: 0px 0px 70px 0px;
      margin:0;
      z-index:0;
    }

    .section-orange::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 33.33%;
      background-color: white;
      z-index: -1;
    }

    .section-orange::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 66.67%;
      background-color: ;
      background: linear-gradient(90deg, #f6ad44, #f6ad44);
      z-index: -1;
    }

/* タブレット用のメディアクエリ */

@media screen and (max-width: 1026px) {

    .section-orange {
      position: relative;
      margin: 0px;
      padding: 0px;
    }

    .section-orange::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 33.33%;
      background-color: white;
    }

    .section-orange::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 66.67%;
      background-color: ;
      background: #FFF;
      margin: 0px;
      padding: 0px;
    }
}

@media screen and (max-width: 1026px) {

    .features-list-container0 .section-orange {
      position: relative;
      margin: 0px;
      padding: 0px;
      background: linear-gradient(90deg, #f6ad44, #f6ad44);
    }

    .features-list-container0 .section-orange::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 33.33%;
      background: linear-gradient(90deg, #f6ad44, #f6ad44);
    }

    .features-list-container0 .section-orange::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 66.67%;
      background: linear-gradient(90deg, #f6ad44, #f6ad44);
      margin: 0px;
      padding: 0px;
    }
}



/* グレー・オレンジ背景（下３分の２） */

    .section-orange2 {
      position: relative;
      margin: 0;
      margin-bottom: -1px; /* 追加：境界線を消すために重ねる */
    }

    .section-orange2::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 33.33%;
      background-color: #F9F5EE;
    }

    .section-orange2::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 66.67%;
      background-color: ;
      background: linear-gradient(90deg, #f6ad44, #f6ad44);
      margin-bottom: 0;
    }

/* タブレット用のメディアクエリ */

@media screen and (max-width: 1026px) {

    .section-orange2 {
      position: relative;
      margin: 0;
    }

    .section-orange2::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 33.33%;
      background: #fff;
    }

    .section-orange2::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 66.67%;
      background: #fff;
    }
 }


/* 白・グレー背景（右３分の１） */

.section-split {
    position: relative;
    width: 100vw;
    margin: 0;
    background-color:white; /* デフォルトの背景色を白に設定 */
    z-index: 0; /* 最背面に設定 */
}

.section-split::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%; /* 右3分の1 */
    height: 100%;
    background-color: #F9F5EE; /* 右側の背景色をグレーに設定 */
    z-index: 1; /* section-splitの上に配置 */
}

@media screen and (max-width: 1026px) {

.section-split {
    position: relative;
    width: 100%;
    margin: 0;
    background-color:white; /* デフォルトの背景色を白に設定 */
    z-index:0;
}

.section-split::after {
    display: none;
}
}

/* 白・グレー背景（左３分の２） */

.section-split-gray {
    position: relative;
    width: 100vw;
    margin: 0;
    background-color: #F9F5EE; /* デフォルトの背景色を#F9F5EEに設定 */
}

.section-split-gray::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%; /* 右3分の1 */
    height: 100%;
    background-color:white ; /* 右側の背景色を白に設定 */
    z-index: 0; /* 背景を最背面に */
}

@media screen and (max-width: 1026px) {

.section-split-gray {
    position: relative;
    width: 100vw;
    margin: 0;
    background-color: #F9F5EE; /* デフォルトの背景色を#F9F5EEに設定 */
}

.section-split-gray::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%; /* 右3分の1 */
    height: 100%;
    background-color:#F9F5EE ; /* 右側の背景色を白に設定 */
    z-index: 0; /* 背景を最背面に */
}
}

/* コンテンツを背景より前面に配置 */
.section-split-gray > * {
    position: relative;
    z-index: 1;
}



/* 白・オレンジ背景（右３分の１） */

.section-split-left {
    position: relative;
    width: 100vw;
    margin: 0;
    background-color: white; /* デフォルトの背景色を白に設定 */
}

.section-split-left::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 33.33%; /* 左3分の1 */
    height: 100%;
    background-color: ; /* 左側の背景色をオレンジ色に設定 */
    background: linear-gradient(90deg, #F0B53D, #EFA459);
}

/* 白・オレンジ背景（左３分の１） */

.section-split-top {
    position: relative;
    width: 100vw;
    margin: 0;
    background-color: white; /* デフォルトの背景色を白に設定 */
}

.section-split-top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* 幅を100%に変更 */
    height: 33.33%; /* 高さを上3分の1に変更 */
    background: linear-gradient(180deg, #F0B53D, #EFA459); /* グラデーションの方向を変更 */
}

/* タブレット用のメディアクエリ */

@media screen and (max-width: 1026px) and (min-width: 768px) {
.section-split-top {
    position: relative;
    width: 100vw;
    margin: 0;
    background-color: #F9F5EE; /* 右側の背景色をグレーに設定 */
}
}

/* スマホ用のメディアクエリ */

@media screen and (max-width: 767px) {
.section-split-top {
    position: relative;
    width: 100vw;
    margin: 0;
    background-color: #F9F5EE; /* 右側の背景色をグレーに設定 */
}
}


/* オレンジボタン */

.custom-button {
    display: inline-flex; /* フレックスボックスでインライン要素として表示 */
    align-items: center; /* 垂直方向のセンタリング */
    justify-content: space-between; /* 子要素間のスペースを均等に */
    padding: 8px 20px; /* 内側の余白（上下左右） */
    width: 370px; /* ボタンの固定幅 */
    background: linear-gradient(90deg, #f6ad44, #f6ad44); /* グラデーション背景 */
    color: white; /* 文字色 */
    border: none; /* ボーダーなし */
    border-radius: 35px; /* 角丸にする */
    font-size: 25px; /* 文字サイズ */
    font-weight: bold; /* 文字の太さ */
    text-align: center; /* 文字を中央揃え */
    text-decoration: none; /* 下線を除去 */
    transition: background 0.3s, box-shadow 0.3s; /* 背景色とシャドウのトランジション */
    cursor: pointer; /* カーソルをポインタに */
        }

.custom-button:hover {
    background: linear-gradient(90deg, #f6ad44, #f6ad44); /* ホバー時の背景グラデーション */
    color: white; /* ホバー時の文字色（変わらないように） */
        }

.button-text {
    flex: 1; /* 残りのスペースを占める */
    padding-left:25px;
    letter-spacing: 0.1em; /* 文字間のスペース */
        }

.button-arrow {
    margin-left: 10px;
    font-size: 25px; /* Font Awesome用にサイズ調整 */
}



@media (max-width: 1026px) {
  .faq-container0 .custom-button {
    margin-top: 20px;
  }

  .news-container0 .custom-button {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .faq-container0 .custom-button {
    margin-top: 0px;
  }

  .news-container0 .custom-button {
    margin-top: 0px;
    margin-bottom: 0px;
  }
}


/* スマホ用のメディアクエリ */

@media (max-width: 480px) {
.custom-button {
     padding: 7px 10px;
     font-size: 15px;
     width: 200px;
            }

.button-text {
     flex: 1; /* 残りのスペースを占める */
     margin:0 auto;
     letter-spacing: 0.15em; /* 文字間のスペース */
        }

.button-arrow {
     margin-left: 5px; /* 矢印と文字の間の余白 */
     font-size: 15px;
        }
        }

/* オレンジボタン（フォーム） */

.custom-button2 {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  width: 400px;
  background: linear-gradient(90deg, #f6ad44, #f6ad44);
  color: white;
  border: none;
  border-radius: 35px;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s, box-shadow 0.3s;
  cursor: pointer;
  
}

.custom-button2:hover {
  background: linear-gradient(90deg, #f6ad44, #f6ad44);
  color: white;
}

.button-text2 {
  flex: 1;
  padding-left: 25px;
  letter-spacing: 0.1em;
}

.button-arrow2 {
  margin-left: 10px;
  font-size: 30px;
}

@media (max-width: 480px) {
  .custom-button2 {
     padding: 7px 10px;
     font-size: 15px;
     width: 220px;
  }
  
  .button-text2 {
    flex: 1;
    padding-left: 15px;
    letter-spacing: 0.15em;
  }
  
  .button-arrow2 {
    margin-left: 5px;
    font-size: 15px;
  }
}


/* フッター */

.footer-wrapper {
    background: linear-gradient(90deg, #f6ad44, #f6ad44);
    color: white;
    width: 100%;
    padding-bottom:30px;
    padding:0;
    top: -1px;
    position: relative; /* 追加 */
}

@media (max-width: 480px) {

.footer-wrapper {
    background: linear-gradient(90deg, #f6ad44, #f6ad44);
    color: white;
    width: 100%;
    padding-bottom:30px;
}
}


.bottom-menu {
    padding: 0px 0;
    text-align: center;
    font-size: 20px;
}

.menu-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 0px;
}

.menu-list a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    transition: color 0.3s;
}

.menu-list a:hover {
    color: #FFF;
}

.footer-logo-container {
    text-align: center;
    margin: 30px 0;
}

.footer-logo-container img {
    max-width: 130px;
    width: 100%;
}

.bottom-sns-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 0px 50px 0px;
}

.circle-image {
    border-radius: 50%;
    object-fit: cover;
    margin: 0 10px;
    width: 60px;
    height: 60px;
}

@media (max-width: 480px) {

.bottom-sns-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 0px 30px 0px;
}

  .circle-image {
    border-radius: 50%;
    object-fit: cover;
    margin: 0 10px;
    width: 30px;
    height: 30px;
 }
}

.copyright {
    background-color: #f6ad44;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 18px;
    margin-bottom:0;
}

@media (max-width: 480px) {
.copyright {
    background-color: #f6ad44;
    color: white;
    text-align: center;
    padding: 10px 0px 80px 0px;
    font-size: 15px;
}
}

.menu-list.sp {
    display: none;
}

@media (max-width: 1026px) {

   .footer-logo-container {
       text-align: center;
       margin: 20px 0px 20px 0px;
    }

    .footer-logo-container img {
       max-width: 90px;
       width: 100%;
    }

    .menu-list.pc {
       display: none;
    }

    .menu-list.sp {
       display: flex;
    }

    .bottom-menu {
       display: flex;
       flex-direction: column;
       align-items: center;
       padding-top:50px;
    }

    .bottom-sns-icon {
       padding-bottom: 80px;
    }
    
    .menu-list {
       flex-direction: row;
       justify-content: center;
       width: 100%;
    }

    .menu-list.single-item {
       justify-content: center;
    }

    .menu-list a {
       font-size: 18px;
    }
}

@media (max-width: 480px) {

    .bottom-menu {
       padding-top:30px;
    }  

    .bottom-sns-icon {
       padding-bottom:0px;
    }
}

.pc-fixed-button {
   position: fixed;
   top: 53%;
   right: 0;
   background-color: #168CC2;
   color: white;
   text-decoration: none;
   text-align: center;
   padding: 25px 17px;
   font-weight: bold;
   writing-mode: vertical-rl;
   text-orientation: upright;
   font-size: 22px;
   z-index: 1002;
}

html[lang="en"] .pc-fixed-button {
  display: none;
}


.pc-scroll-top-button {
   position: fixed;
   bottom: 30px; /* 下側の余白を増加 */
   right: 30px; /* 右側の余白を増加 */
   width: 60px;
   height: 60px;
   background-color: #168CC2;
   color: white;
   border: none;
   font-size: 28px;
   cursor: pointer;
   display: flex;
   justify-content: center;
   align-items: center;
   z-index: 1001;
 }

@media (max-width: 1026px) {
  .pc-fixed-button, .pc-scroll-top-button {
    display: none;
    }
  }

  .fixed-bottom-button {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 0;
    display: none;
    z-index: 1000;
    text-align: center;
  }

   .fixed-bottom-button a {
    display: inline-block;
    background-color: #168CC2;
    color: white;
    text-decoration: none;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    width: 75%;
    max-width: 600px;
  }

   .fixed-bottom-button i {
     margin-right: 5px;
  }

   .scroll-top-button {
    position: fixed;
    bottom: 0px;
    right: 0px;
    width: 50px; /* サイズを小さく */
    height: 50px; /* サイズを小さく */
    background-color: #168CC2;
    color: white;
    border: none;
    font-size: 24px; /* アイコンサイズも調整 */
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1001;
  }

  @media (max-width: 1026px) {
   .fixed-bottom-button {
    display: block;
  }
    .scroll-top-button {
    display: flex;
    }
  }

  @media (min-width: 1026px) {
    .fixed-bottom-button {
     display: none;
  }
    .scroll-top-button {
     display: none;
    }
  }

    .best-rate-container {
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     width: 100%;
     margin: 0px 0;
    }

  @media (max-width: 768px) {
     .best-rate-container {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 100%;
      margin: 0px;
    }
  }

     .best-rate-image {
      max-width: 100%;
      height: auto;
     }

  @media (max-width: 768px) {
      .best-rate-image {
       width: 90%;
     }
   }

  @media (min-width: 769px) {
      .best-rate-image-sp {
        display:none;
      }
    }

   @media (max-width: 768px) {
      .best-rate-image-pc {
        display:none;
      }
    }


.contact-section .heading-title-mg2 .heading-subtitle {
    padding-bottom:10px;
  }

@media (max-width: 768px) {
.contact-section .heading-title-mg2 .heading-subtitle {
    padding-bottom:15px;
  }
}

/* CSS部分 */
html {
    scroll-behavior: smooth; /* スムーススクロールを有効化 */
}

.numbered-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: section; /* sectionカウンターをリセット */
}

.numbered-list li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 12px;
    line-height: 1.7;
}

.numbered-list li::before {
    content: counter(section) ".";
    counter-increment: section;
    position: absolute;
    left: 0;
}

.numbered-list strong {
    font-weight: bold;
}

/* レスポンシブ対応 */
@media (max-width: 480px) {
    .numbered-list li {
        line-height: 1.5;
        padding-left: 1.2em;
        margin-bottom: 12px;
    }
}

.asterisk-list {
   list-style: none;
   padding: 0;
   margin: 0;
}

.asterisk-list li {
   position: relative;
   padding-left: 1.5em;
   margin-bottom: 5px;
   line-height: 1.7;
}

.asterisk-list li::before {
   content: "※";
   position: absolute;
   left: 0;
}

/* レスポンシブ対応 */
@media (max-width: 480px) {
   .asterisk-list li {
       line-height: 1.5;
       padding-left: 1.2em;
       margin-bottom: 5px;
   }
}

.middledot-list {
   list-style: none;
   padding: 0;
   margin: 0;
}

.middledot-list li {
   position: relative;
   padding-left: 1.5em;
   margin-bottom: 5px;
   line-height: 1.7;
}

.middledot-list li::before {
   content: "・";
   position: absolute;
   left: 0;
   color: #ff0000;
}

/* レスポンシブ対応 */
@media (max-width: 480px) {
   .middledot-list li {
       line-height: 1.5;
       padding-left: 1.2em;
       margin-bottom: 5px;
   }
}

@media (max-width: 768px) { /* 例：画面幅が768px以下の場合に適用 */
    .button-btn-f51c1a {
        width: 100% !important;
    }
}


html[lang="en"] .features-list-container .label {
    position: absolute;
	min-width:75px;
    max-width:75px;
    top: -15px;
    right: -15px;
    background-color: #fff;
    color: #000;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    white-space: nowrap;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 -2px 8px rgba(0, 0, 0, 0.05),
                -2px 0 8px rgba(0, 0, 0, 0.05), 2px 0 8px rgba(0, 0, 0, 0.05);
    font-size: 12px;
    word-break: break-word !important;
}

@media (max-width: 767px) {
   html[lang="en"] .features-list-container .label {
    position: absolute;
    top: -10px;
    right: -17px;
    background-color: #fff;
    color: #000;
    border-radius: 50%;
    padding: 7px;
    font-size:10px !important;
    z-index:10 !important;
    word-break: break-word !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 -2px 8px rgba(0, 0, 0, 0.05),
                -2px 0 8px rgba(0, 0, 0, 0.05), 2px 0 8px rgba(0, 0, 0, 0.05);
    }
}


@media (max-width: 480px) {
   html[lang="en"] .features-list-container .label {
    position: absolute;
    top: -15px; 
    right: -10px;
	min-width:46px;
    max-width:46px;
    background-color: #fff; 
    color: #000; 
    border-radius: 50%; 
    padding: 5px; 
    font-size:8px !important;
    z-index:10 !important;
    word-break: break-word !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 -2px 8px rgba(0, 0, 0, 0.05),
                -2px 0 8px rgba(0, 0, 0, 0.05), 2px 0 8px rgba(0, 0, 0, 0.05);
    }

   html[lang="en"] .features-list-container .content .title {
    margin: 7px 0px 0px 0px;
    padding-top:5px;
    color: #f6ad44;
    font-size: 11px;
    font-weight: bold;
    }

   html[lang="en"] .features-list-container .content .subtitle {
    margin-bottom: 0px;
    padding-bottom:5px;
    font-size: 13px;
    color: #f6ad44;
    font-weight: bold;
    line-height:20px;
    }	
}

html[lang="ko"] .features-list-container .label {
    position: absolute;
	min-width:75px;
    max-width:75px;
    top: -15px;
    right: -15px;
    background-color: #fff;
    color: #000;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    white-space: nowrap;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 -2px 8px rgba(0, 0, 0, 0.05),
                -2px 0 8px rgba(0, 0, 0, 0.05), 2px 0 8px rgba(0, 0, 0, 0.05);
    font-size: 13px;
    word-break: break-word !important;
}

@media (max-width: 767px) {
   html[lang="ko"] .features-list-container .label {
    position: absolute;
    top: -10px;
    right: -17px;
    background-color: #fff;
    color: #000;
    border-radius: 50%;
    padding: 7px;
    font-size:10px !important;
    z-index:10 !important;
    word-break: break-word !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 -2px 8px rgba(0, 0, 0, 0.05),
                -2px 0 8px rgba(0, 0, 0, 0.05), 2px 0 8px rgba(0, 0, 0, 0.05);
    }
}


@media (max-width: 480px) {
   html[lang="ko"] .features-list-container .label {
    position: absolute;
    top: -15px; 
    right: -10px;
	min-width:46px;
    max-width:46px;
    background-color: #fff; 
    color: #000; 
    border-radius: 50%; 
    padding: 5px; 
    font-size:10px !important;
    z-index:10 !important;
    word-break: break-word !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 -2px 8px rgba(0, 0, 0, 0.05),
                -2px 0 8px rgba(0, 0, 0, 0.05), 2px 0 8px rgba(0, 0, 0, 0.05);
    }
}

html[lang="zh-TW"] .features-list-container .label {
    position: absolute;
	min-width:75px;
    max-width:75px;
    top: -15px;
    right: -15px;
    background-color: #fff;
    color: #000;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    white-space: nowrap;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 -2px 8px rgba(0, 0, 0, 0.05),
                -2px 0 8px rgba(0, 0, 0, 0.05), 2px 0 8px rgba(0, 0, 0, 0.05);
    font-size: 15px;
    word-break: break-word !important;
}

@media (max-width: 767px) {
   html[lang="zh-TW"] .features-list-container .label {
    position: absolute;
    top: -10px;
    right: -17px;
    background-color: #fff;
    color: #000;
    border-radius: 50%;
    padding: 7px;
    font-size:15px !important;
    z-index:10 !important;
    word-break: break-word !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 -2px 8px rgba(0, 0, 0, 0.05),
                -2px 0 8px rgba(0, 0, 0, 0.05), 2px 0 8px rgba(0, 0, 0, 0.05);
    }
}


@media (max-width: 480px) {
   html[lang="zh-TW"] .features-list-container .label {
    position: absolute;
    top: -10px; 
    right: -10px;
	min-width:46px;
    max-width:46px;
    background-color: #fff; 
    color: #000; 
    border-radius: 50%; 
    padding: 5px; 
    font-size:12px !important;
    z-index:10 !important;
    word-break: break-word !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 -2px 8px rgba(0, 0, 0, 0.05),
                -2px 0 8px rgba(0, 0, 0, 0.05), 2px 0 8px rgba(0, 0, 0, 0.05);
    }
}

html[lang="zh-CN"] .features-list-container .label {
    position: absolute;
	min-width:75px;
    max-width:75px;
    top: -15px;
    right: -15px;
    background-color: #fff;
    color: #000;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    white-space: nowrap;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 -2px 8px rgba(0, 0, 0, 0.05),
                -2px 0 8px rgba(0, 0, 0, 0.05), 2px 0 8px rgba(0, 0, 0, 0.05);
    font-size: 15px;
    word-break: break-word !important;
}

@media (max-width: 767px) {
   html[lang="zh-CN"] .features-list-container .label {
    position: absolute;
    top: -10px;
    right: -17px;
    background-color: #fff;
    color: #000;
    border-radius: 50%;
    padding: 7px;
    font-size:15px !important;
    z-index:10 !important;
    word-break: break-word !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 -2px 8px rgba(0, 0, 0, 0.05),
                -2px 0 8px rgba(0, 0, 0, 0.05), 2px 0 8px rgba(0, 0, 0, 0.05);
    }
}

@media (max-width: 480px) {
   html[lang="zh-CN"] .features-list-container .label {
    position: absolute;
    top: -10px; 
    right: -10px;
    min-width:46px;
    max-width:46px;
    background-color: #fff; 
    color: #000; 
    border-radius: 50%; 
    padding: 5px; 
    font-size:12px !important;
    z-index:10 !important;
    word-break: break-word !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 -2px 8px rgba(0, 0, 0, 0.05),
                -2px 0 8px rgba(0, 0, 0, 0.05), 2px 0 8px rgba(0, 0, 0, 0.05);
    }
}


html[lang="en"] .news-container0 .custom-button {
    display: inline-flex; /* フレックスボックスでインライン要素として表示 */
    align-items: center; /* 垂直方向のセンタリング */
    justify-content: space-between; /* 子要素間のスペースを均等に */
    padding: 8px 20px; /* 内側の余白（上下左右） */
    width: 470px; /* ボタンの固定幅 */
    background: linear-gradient(90deg, #f6ad44, #f6ad44); /* グラデーション背景 */
    color: white; /* 文字色 */
    border: none; /* ボーダーなし */
    border-radius: 35px; /* 角丸にする */
    font-size: 25px; /* 文字サイズ */
    font-weight: bold; /* 文字の太さ */
    text-align: center; /* 文字を中央揃え */
    text-decoration: none; /* 下線を除去 */
    transition: background 0.3s, box-shadow 0.3s; /* 背景色とシャドウのトランジション */
    cursor: pointer; /* カーソルをポインタに */
  }

@media (max-width: 480px) {
html[lang="en"] .news-container0 .custom-button {
     padding: 7px 10px;
     font-size: 15px;
     width: 300px;
  }
}


html[lang="en"] .contact-container .custom-button2 {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  width: 500px;
  background: linear-gradient(90deg, #f6ad44, #f6ad44);
  color: white;
  border: none;
  border-radius: 35px;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

@media (max-width: 480px) {
html[lang="en"] .contact-container .custom-button2 {
     padding: 7px 10px;
     font-size: 15px;
     width: 300px;
  }
}

@media (max-width: 1024px) {
html[lang="en"] .tp-sp-catchphrase {
        width:90%;
    }
}


.features-bg-wrapper .list-box-text > br:first-of-type {
    display: none;
}

html[lang="en"] .solana-header__book-btn {
  position: absolute;
  top: calc(100% - 130px);
  right: 0;
  background-color: white;
  color: #f6ad44;
  padding: 25px 10px 6px 10px;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  font-size: 13px;
  margin-top:-5px;
  z-index: 1000;
  box-shadow: 0px -1px 5px 6px rgba(0, 0, 0, 0.13) !important;
  white-space: nowrap;
}

/* MW WP Form 入力画面で追加項目を初期非表示 */
.mw_wp_form_input .payment-error-field {
    display: none;
}

/* 確認画面でもデフォルト非表示（JSで表示を制御） */
.mw_wp_form_confirm .payment-error-field {
    display: none;
}