﻿@charset "utf-8";
/**
 * jtb style.css 1.1.1
 * Released on: 11,2025
 */
@import url("/kokunai/___common/css/footer_kokunai.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Noto+Serif+JP:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0');

@font-face{
	font-family:'kkrs-dp';
	src:url("/kokunai/___common/fonts/kkrs-dp.ttf") format("truetype"),url("/kokunai/___common/fonts/kkrs-dp.woff") format("woff"),url("/kokunai/___common/fonts/kkrs-dp.svg#kkrs-dp") format("svg");
	font-weight:normal;
	font-style:normal;
}
@font-face {
  font-family: 'jtb-dom';
  src: url("/kokunai/_common/fonts/jtb-dom.ttf") format("truetype"), url("/kokunai/_common/fonts/jtb-dom.woff") format("woff"), url("/kokunai/_common/fonts/jtb-dom.svg#jtb-dom") format("svg");
  font-weight: normal;
  font-style: normal;
}


/* clearfix */
.clearfix:after {
    content:".";
    display:block;
    height:0;
    clear:both;
    visibility:hidden;
}
.clearfix {
    display:inline-block;
    min-height:1%;  /* for IE 7*/
}

/* Hides from IE-mac \*/
* html .clearfix{height: 1%;}
.clearfix{display: block;}
/* End hide from IE-mac */

/* 共通リンク色・別ウィンドウ */
a, a:link, a:visited {
	color: #432c02;
	text-decoration: none;
}
.other{
	font-size: 1.6rem;

}
/* ページトップボタン */
#page-top {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  display: none;  /* 初期は非表示 */
  z-index: 9999;
}

/* 丸ボタン化 & 中央配置 */
#page-top a {
  display: flex;
  flex-direction: column;   /* アイコンを上、文字を下に */
  align-items: center;
  justify-content: center;
  width: 80px;   /* 丸を大きめにして文字が収まるように */
  height: 80px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-size: 14px;          /* 文字サイズ */
  transition: opacity 0.3s;
}

/* アイコンは少し上げる */
#page-top a .material-icons {
  font-size: 25px;   /* アイコンを小さめに調整 */
  margin-bottom:5px; /* 文字との間隔 */
  line-height: 0px;
}

/* テキスト */
#page-top a .label {
  line-height: 2;
  font-size: 14px;
}

/* =============================================================================
    reset
============================================================================= */
li{
    margin: 0;
    list-style: none;
    padding: 0;
} 
.sect{
	padding: 30px 0;
}

/* =============================================================================
    common
============================================================================= */
html{
	-webkit-text-size-adjust: 100%;
	scroll-behavior: auto!important;
	font-size: 62.5%;
}
body{
	font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	font-feature-settings: "palt";
	line-height: 1.5;
	letter-spacing: .1em;
	background: #fff;
}
.fn_wh{
    color: #fff!important;
}

main {
    font-family: var(--ui-font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "palt";
  width: 100%;
  margin: 0 auto;
}

/* ==================================================
   Headings reset（見出しの隙間を完全になくす）
================================================== */
h1, h2, h3, h4, h5, h6 {
  margin: 0;      /* 上下の隙間ゼロ */
  padding: 0;     /* 内側の余白ゼロ */
  font-weight: 700;
  line-height: 1.4;
}

/* ==================================================
   Links
================================================== */
main a,
nav a {
  color: #323743;
  text-decoration: none;
}
main a:hover,
nav a:hover {
  color: #009b93;
}

/* ==================================================
   Flex Utilities
================================================== */
#flexbox_at {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  #flexbox_at {
    flex-direction: column-reverse;
  }
}

.flex,
.flex_list {
  display: flex;
  flex-wrap: wrap;
}



/* ==================================================
   Font utilities
================================================== */
.fn_400 { font-size: 400%; }
.fn_300 { font-size: 300%; }
.fn_200 { font-size: 200%; }
.fn_170 { font-size: 170%; }
.fn_150 { font-size: 150%; }
.fn_120 { font-size: 120%; }
.fn_80 { font-size: 80%; }
.fn_70 { font-size: 70%; }

.fw-100 { font-weight: 100 !important; }
.fw-200 { font-weight: 200 !important; }
.fw-300 { font-weight: 300 !important; }
.fw-400 { font-weight: 400 !important; }
.fw-500 { font-weight: 500 !important; }
.fw-600 { font-weight: 600 !important; }
.fw-700 { font-weight: 700 !important; }
.fw-800 { font-weight: 800 !important; }
.fw-900 { font-weight: 900 !important; }


/* デフォルト（PC表示） */
.jtb_pc, .jtb_pc1080, .jtb_pc680, .jtb_pc420 { display: block; }
.jtb_sp, .jtb_sp680, .jtb_sp420 { display: none; }

/* PC切替（幅1000px以下でSP表示） */
@media (max-width:1000px) {
  .jtb_pc { display: none !important; }
  .jtb_sp { display: block !important; }
}
@media (max-width:1080px) {
  .jtb_pc1080 { display: none !important; }
}
@media (max-width:680px) {
  .jtb_pc680 { display: none !important; }
  .jtb_sp680 { display: block !important; }
}
@media (max-width:420px) {
  .jtb_pc420 { display: none !important; }
  .jtb_sp420 { display: block !important; }
}


/*--------------------------------------------------------------
# at_head
--------------------------------------------------------------*/
#at_head{
    width: 1230px;
    margin: 0px auto;
    padding: 10px 10px 0px;
}
header .pagetitle{
    line-height: 120%;
    font-weight: bold;
    font-size: 200%!important;
    width: 100%;
    margin: 10px auto 20px;
    padding: 5px 5px 5px 15px;
    border-left: 10px solid #c60f28;
    text-align: justify;
}
@media screen and (max-width: 1229px) {
#at_head{ width: 95%; margin: 0 auto; padding: 10px; }
header .pagetitle{
    font-size: 180%!important;
    line-height: 120%;
    font-weight: bold;
    font-family: var(--ui-font);
}
}
@media screen and (max-width: 680px) {
header .pagetitle{
    font-size: 160%!important;
    line-height: 120%;
    font-weight: bold;
    font-family: var(--ui-font);
}
}
@media screen and (max-width: 540px) {
header .pagetitle{
    font-size: 140%!important;
    line-height: 120%;
    font-weight: bold;
    font-family: var(--ui-font);
}
}
@media screen and (max-width: 420px) {
header .pagetitle{
    font-size: 120%!important;
    line-height: 120%;
    font-weight: bold;
    font-family: var(--ui-font);
    margin: 10px auto 10px;
}
#at_head{ width: 95%; margin: 0 auto; padding: 0; }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
■パンくず
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

#flexbox_at{
    display: flex;
    flex-direction: column;
    padding: 0px;
    margin-top: 0px;
  font-feature-settings: "palt";
}
@media screen and (max-width:767px){
#flexbox_at{
	display: flex;
	flex-direction: column-reverse;
    padding: 0px;
    margin-top: 0px;
}	
}

.kkrs-breadcrumb-bg{
    width: 100%;
    background-color: #f5f5f5;
    padding: 0px;
    margin-top: 0px;
}
.kkrs-breadcrumb{
  padding: 1rem 0;
  max-width: 1236px;
  margin-left: auto;
  margin-right: auto;
}

.kkrs-breadcrumb__fix{
  display: none;
}

.kkrs-breadcrumb__list{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: #656972;
}

.kkrs-breadcrumb__list > li {
  margin-right: 2rem;
  position: relative;
    list-style: none;
}

.kkrs-breadcrumb__list > li a {
  color: #125687;
  text-decoration: none;
}

.kkrs-breadcrumb__list > li a:hover {
  text-decoration: underline;
}

.kkrs-breadcrumb__list > li a.kkrs-breadcrumb__current-link {
  color: #656972;
  text-decoration: none;
}

.kkrs-breadcrumb__list > li:not(:last-child):before {
  display: inline-block;
  font-family: "Material Icons Round";
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
  content: ">";
  position: absolute;
  top: 50%;
  right: -1.5rem;
  font-size: 1rem;
  color: #989ba1;
  margin-top: -0.5em;
}

.kkrs-breadcrumb__list > li:last-child {
  pointer-events: none;
}

@media only screen and (max-width: 767px) {
	.kkrs-breadcrumb-bg{
	background-color: #fff;
}
  .kkrs-breadcrumb {
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    border-bottom: 1px solid #d7d7d7;
    line-height: 3rem;
    padding: 0;
    background: #fff;
    /*margin: 0 -1rem*/
  }
  .kkrs-breadcrumb__fix {
    display: block;
    -webkit-box-shadow: 6px 0 10px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 6px 0 10px 0 rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    -webkit-transition: -webkit-box-shadow 0.3s;
    transition: -webkit-box-shadow 0.3s;
    transition: box-shadow 0.3s;
    transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
  }
  .kkrs-breadcrumb__fix a {
    padding: 0 0.5rem 0 1rem;
    font-size: 1.2rem;
    color: #125687;
    -webkit-transition: none;
    transition: none;
    text-decoration: none;
  }
  .kkrs-breadcrumb.kkrs-top .kkrs-breadcrumb__fix {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .kkrs-breadcrumb__scroll {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: hidden;
  }
  .kkrs-breadcrumb__list {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    white-space: nowrap;
    height: 3rem;
    overflow-y: hidden;
    overflow-x: scroll;
  }
  .kkrs-breadcrumb__list > li {
    margin: 0;
    padding: 0 0.5rem 0 1.8rem;
  }
  .kkrs-breadcrumb__list > li:nth-child(1) {
    display: none;
  }
  .kkrs-breadcrumb__list > li:not(:last-child):before {
    content: "";
    margin: 0;
    top: -0.5rem;
    right: -0.9rem;
  }
  .kkrs-breadcrumb__list > li:last-child {
    padding: 0 1rem 0 1.8rem;
  }
  .kkrs-breadcrumb__list > li:last-child:after,
  .kkrs-breadcrumb__list > li:last-child:before {
    display: none;
  }
  .kkrs-breadcrumb__fix a,
  .kkrs-breadcrumb__list > li {
    display: block;
    background-color: #fff;
    text-align: center;
    text-decoration: none;
    position: relative;
  }
  .kkrs-breadcrumb__fix a:after,
  .kkrs-breadcrumb__fix a:before,
  .kkrs-breadcrumb__list > li:after,
  .kkrs-breadcrumb__list > li:before {
    content: "";
    border-style: solid;
    border-width: 2rem 0 2rem 1rem;
    position: absolute;
    top: -0.5rem;
  }
  .kkrs-breadcrumb__fix a:before,
  .kkrs-breadcrumb__list > li:before {
    right: -0.9rem;
    border-color: transparent transparent transparent #fff;
    z-index: 2;
  }
  .kkrs-breadcrumb__fix a:after,
  .kkrs-breadcrumb__list > li:after {
    right: -1rem;
    border-color: transparent transparent transparent #d7d7d7;
    z-index: 1;
  }
}



/* ==============================
   slider_bx / slider_list フル幅対応
   ============================== */
.slider_bx {
  width: 100%;
  height: 600px;       /* 横幅1000px以上は固定600px */
  overflow: hidden;
  position: relative;
}

.slider_list {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  height: 100%;
}

.slider_list .slick-slide {
  display: inline-block;
  box-sizing: border-box;
  padding: 0 1px;     /* 左右の余白 */
  height: 100%;
}

.slider_list img {
  display: block;
  width: 100%;
  max-width: 1000px;  /* 最大幅1000px */
  height: 100%;
  object-fit: cover;   /* 画像を中央クロップ */
  margin: 0 auto;
}

/* ------------------------
   タイトル画像 (title.png)
   スライド画像の左上に固定、高さは JS で可変
------------------------ */
.slider_title {
  position: absolute;
  top: 0!important;
  left: 0;
  z-index: 20;
  pointer-events: none;
  display: block; /* 常に表示 */
  height: auto;
  width: auto;
}

/* ------------------------
   レスポンシブ対応
   スライド画像高さは枠で制御、imgはobject-fitで調整
------------------------ */
@media screen and (max-width: 1000px) {
  .slider_title_sp {
    position: absolute;
    top: 0;   /* 左上に固定 */
    left: 0;
    z-index: 20;
    height: 100%;
  }
  .slider_title_sp img {
    height: auto;
    max-height: 100%;
    width: auto;
    max-width: 100%;
  }
}

@media screen and (max-width: 780px) {
  .slider_bx {
    height: 500px;
  }
  .slider_list img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Safari/スマホで安定 */
  }
}

@media screen and (max-width: 680px) {
  .slider_bx {
    height: 400px;
  }
  .slider_list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media screen and (max-width: 420px) {
  .slider_bx {
    height: 300px;
  }
  .slider_list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}


/* ------------------------
   チケット
------------------------ */
#ticket_bx{
    width: 100%;
    background-color: #CCDDD9;
    --mask:
      radial-gradient(38.1px at 50% calc(100% - 53.75px),#000 99%,#0000 101%) calc(50% - 50px) 0/100px 100%,
      radial-gradient(38.1px at 50% calc(100% + 28.75px),#0000 99%,#000 101%) 50% calc(100% - 25px)/100px 100% repeat-x;
    -webkit-mask: var(--mask);
    mask: var(--mask);
    padding-top: 60px;
    padding-bottom: 60px; /* 波形分の余白を確保 */
    text-align: center;
    position: relative;
}
#ticket_bx .ticket_title_bx{
    width: 100%;
  position: relative; /* 擬似要素の基準に */
    margin: 0px auto;
    padding: 20px 0px 40px;
    max-width: 1280px;    
}

#ticket_bx .ticket_title_bx::before,
#ticket_bx .ticket_title_bx::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px; /* 画像サイズに合わせる */
  background-repeat: no-repeat;
  background-size: contain;
}

#ticket_bx .ticket_title_bx::before {
  left: 0;
  background-image: url("../images/ticket/ticket_illust_l.png");
}

#ticket_bx .ticket_title_bx::after {
  right: 0;
  background-image: url("../images/ticket/ticket_illust_r.png");
}

#ticket_bx .ticket_title {
    width: 580px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5px;
}
#ticket_bx .ticket_title_sub {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 5px;
}
#ticket_bx .ticket_title_cap {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
}
#ticket_bx ul{
    margin: 0px auto;
    list-style: none;
    padding: 0px;
    max-width: 1280px;
    width: 100%;
}
#ticket_bx .ticket_list_bx{
    padding-bottom: 80px;
}
#ticket_bx .ticket_list{
    margin: 15px;
}
#ticket_bx li{
    width: calc(92% / 4);  /* 全体幅の4分の1 */
    max-width: 500px;
    margin-left: 1%;
    margin-right: 1%;
    background-color: #FFFFFF;    
}
#ticket_bx li img{
    width: 100%; 
}
#ticket_bx .ticket_shop_title_1{
    text-align: center;
    font-size: 20px;
    line-height: 26px;
    padding-top: 20px;
    padding-bottom: 30px;
}
#ticket_bx .ticket_shop_title_2{
    text-align: center;
    font-size: 20px;
    line-height: 24px;
    padding-top: 10px;
    padding-bottom: 20px;
}
#ticket_bx .ticket_shop_txt{
    text-align: justify;
    font-size: 14px;
    line-height: 20px;
    padding-bottom: 20px;
    
}
#ticket_bx .ticket_shop_info{
    background-color: #F0EDFA; 
    padding: 15px;   
}
#ticket_bx .ticket_shop_infotitle {
    color: #00369E;
    text-align: justify;
    font-size: 16px;
    line-height: 20px;
}

#ticket_bx .ticket_shop_infotitle span{
    font-size: 80%;
    line-height: 20px;
}


@media screen and (max-width: 1000px) {
  
#ticket_bx .ticket_title_bx::before {
    left: 0;
    background-image: none;
}

#ticket_bx .ticket_title_bx::after {
  right: 0;
    background-image: none;
}  
  #ticket_bx{
    width: 100%;
    background-color: #CCDDD9;
    padding-top: 30px;
    padding-bottom: 30px; /* 波形分の余白を確保 */
}
#ticket_bx ul{
    margin: 0px auto;
    list-style: none;
    padding: 0px;
    max-width: 1280px;
    width: 95%;
} 
#ticket_bx li{
    width: calc(96% / 2);  /* 全体幅の4分の1 */
    max-width: 500px;
    margin-left: 1%;
    margin-right: 1%;
    background-color: #FFFFFF;
    margin-bottom:20px;
}
}
@media screen and (max-width: 680px) {
  #ticket_bx{
    width: 100%;
    background-color: #CCDDD9;
    padding-top: 15px;
    padding-bottom: 20px; /* 波形分の余白を確保 */
}
#ticket_bx .ticket_title_bx{
    width: 90%;
  position: relative; /* 擬似要素の基準に */
    margin: 0px auto;
    padding: 20px 0px 20px;
}
      
#ticket_bx .ticket_title_sub {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
    font-size: 16px;
    line-height: 20px;
}  
#ticket_bx .ticket_title_cap {
    text-align: justify;
    font-size: 12px;
    line-height: 16px;
}
#ticket_bx .ticket_title{
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5px;
    width: 80%;
}
#ticket_bx .ticket_title img{
    width: 100%;
}
#ticket_bx .ticket_shop_title_1{
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    padding-top: 10px;
    padding-bottom: 20px;
}
#ticket_bx .ticket_shop_title_2{
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    padding-top: 0px;
    padding-bottom: 10px;
}
#ticket_bx .ticket_shop_txt{
    text-align: justify;
    font-size: 12px;
    line-height: 16px;
    padding-bottom: 10px;
    
}
#ticket_bx .ticket_shop_infotitle {
    color: #00369E;
    text-align: justify;
    font-size: 14px;
    line-height: 18px;
}
#ticket_bx .ticket_shop_info{
    background-color: #F0EDFA; 
    padding: 10px;   
}
    
}
@media screen and (max-width: 420px) {

#ticket_bx .ticket_shop_title_1{
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    padding-top: 10px;
    padding-bottom: 20px;
}
#ticket_bx .ticket_shop_title_2{
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    padding-top: 0px;
    padding-bottom: 10px;
}
#ticket_bx .ticket_shop_txt{
    text-align: justify;
    font-size: 11px;
    line-height: 14px;
    padding-bottom: 10px;
    
}

#ticket_bx .ticket_shop_infotitle {
    color: #00369E;
    text-align: justify;
    font-size: 12px;
    line-height: 14px;
}
    
}
/* ------------------------
   map_bx
------------------------ */
#map_bx {
    background-color: #F1E8D9;
    background-image: repeating-linear-gradient(
      45deg,
      #E8DAC1 0,
      #E8DAC1 2px,
      transparent 2px,
      transparent 10px
    );
    margin-top: -35px; /* 波形マスクの高さに応じて微調整 */
    padding-bottom: 80px;
    z-index: -10;
}

.map_title{
    display: flex;
    align-items: center;
    justify-content: center; /* タイトルを中央配置 */
    font-size: 24px;
    position: relative;
    text-align: center;
    gap: 20px; /* タイトルと線の間隔 */
    padding-top: 100px;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    max-width: 880px;
}
#maparea{
    position: relative;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;
    padding-top: 25px;
}
#maparea .movie_yb{
    position: absolute;
    max-width: 200px;
    right: 0px;
    top: -90px;
    z-index: 10;
}


.popup-iframe {
  display: inline-block;
  color: #fff;
  padding: 15px 30px;
  font-size: 1.2rem;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s;
}
.mfp-bg { background: rgba(0,0,0,0.9); }
.mfp-iframe-holder .mfp-content {
  width: 90%;
  max-width: 580px; /* 横幅は画面幅の90%まで */
  height: 90vh;    /* ★ 高さをブラウザの高さの90%に */
}
.mfp-iframe-scaler {
  padding-top: 175%; /* ← 16 ÷ 9 × 100 = 約177.78% */
}
.mfp-iframe-scaler iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
    z-index: 1000;
}

.map_title::before,
.map_title::after {
  content: "";
  flex: 1;
  border-bottom: 4px solid #333;
}
@media screen and (max-width: 1000px) {
    
#maparea{
    position: relative;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    padding-top: 0px;
}
#maparea .movie_yb_sp{
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}
}

#maparea .movie_yb_sp img,
#maparea .movie_yb img,
.map_title img{
    width: 100%;
}
#maparea .movie_yb_sp img:hover,
#maparea .movie_yb img:hover{
    opacity: 0.8;
}
/* ------------------------
   map_list_bx（親コンテナ）
------------------------ */
.map_list_bx {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0px auto;
    padding:40px 0px 40px;
    max-width: 1280px;
    width: 100%;
}

.list_a{
    flex: 0 0 54%;
    margin: 0px 1% 0px 0px;
}
.list_b{
    flex: 0 0 44%;
    padding:20px;
    margin: 0px 0px 0px 1%;
    background-color: #FFFFFF;
}

/* ------------------------
   list_a 内部
------------------------ */
.list_a h4,
.list_b h4 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
}

.list_a_box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    background-color: #fff;
    margin-top: 0px;
    padding: 20px;
}
.list_a_box span{
    color: #8F7BDE;
}
.list_a_left{
    flex: 0 0 49%;
    margin: 0px 1% 0px 0px;
}
.list_a_right{
    flex: 0 0 49%;
    margin: 0px 0px 0px 1%;
}

.list_a_cap{
    text-align: right;
    font-size: 12px;
    line-height: 16px;
    padding-top: 10px;
    margin-bottom: 2em;
    margin-right: 4px;
}

.list_a_title{
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.list_a .list_a_title{
    background-color: #D3CBF2;
}
.list_b .list_a_title{
    background-color: #FABFCB;
}

/* ------------------------
   カフェ・ショップリンク有効化
------------------------ */
.list_a ol.round-numbers {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.list_a ol.round-numbers li {
  position: relative;
  padding-left: 2em;
  margin-bottom: 0.5em;
  font-size: 16px;
  line-height: 22px;
}

.list_a ol.round-numbers li a {
  margin: 0 !important;
  z-index: 10;
  pointer-events: auto;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

.list_a ol.round-numbers li a:hover {
  text-decoration: underline;
  color: #8F7BDE;
}

.list_a ol.round-numbers li .round-num {
  color: #000;
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5em;
  text-align: center;
  font-weight: bold;
}

/* ------------------------
   list_b map
------------------------ */
.list_b_map{
    width: 100%;
    margin-top: 0px;
}
.list_b_map img{
    width: 100%;
}
.list_b_map .list_b{  
    width: 100%;
}

/* ------------------------
   Responsive
------------------------ */
@media screen and (max-width: 1280px) {
  .map_list_bx{
      margin: 0px auto;
      width: 90%;
  } 
}

@media screen and (max-width: 1000px) {
  /* list_a と list_b → 縦積み */
  .map_list_bx {
      flex-direction: column;
  }
  .list_a,
  .list_b {
      flex: 0 0 100%;
      width: 100%;
      margin: 0px auto 30px;
  }

  /* list_a 内左右も縦積み */
  .list_a_box {
      flex-direction: column;
  }
  .list_a_left,
  .list_a_right {
      flex: 0 0 100%;
      margin: 0 0 20px;
  }
  .list_a_right { margin-bottom: 0; }
}

@media screen and (max-width: 780px) {
  .list_a,
  .list_b {
      width: 95%;
      margin: 0px auto 30px;
  }
  .list_a img,
  .list_b img{
      width: 100%;
  }
}

@media screen and (max-width: 680px) {
  .map_title{
      max-width: 420px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 5px;
      width: 80%;
  }
  .list_a_left,
  .list_a_right {
      width: 100%;
      margin: 0px auto 20px;
      text-align: justify;
  }
  .list_a_right { margin-bottom: 0; }
}
.list_a ol.round-numbers li a {
  position: relative; /* ← これを追加 */
  z-index: 20;        /* ← リンクを最前面に */
}



/* ------------------------
   spot_bx
------------------------ */
#spot_bx{
    width: 100%;
    background-color: #fff;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 40px;
    padding-bottom: 40px;
    border-radius: 20px;
}
.spot_title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 880px;
    gap: 0px; /* 文字と線の間隔 */
    padding-top: 15px;
    padding-bottom: 15px;
}

.spot_title img {
    display: inline-block; /* これが大事 */
    vertical-align: middle;
}

/* 線 */
.spot_title::before,
.spot_title::after {
    content: "";
    flex: 1;
    border-bottom: 4px solid #333;
    height: 0; /* 重要 */
}
.spot_list_bx{
    
}
.spot_list_bx ul{
    margin: 0px auto;
    list-style: none;
    padding: 20px;
    width: 100%;
    max-width: 940px;
}
.spot_list_bx li {
    width: 100%;
    padding: 20px;
    margin-top: 60px;
    margin-bottom: 140px;
    position: relative; /* 擬似要素用に必要 */
}
.spot_list_bx li:last-child {
    margin-bottom: 20px!important;
}

.spot_list_bx2 ul{
    margin: 0px auto;
    list-style: none;
    padding: 20px;
    width: 100%;
    max-width: 940px;
}
.spot_list_bx2 li:nth-child(odd) {
    width: 49%;
    padding: 20px;
    margin-top: 60px;
    margin-bottom: 100px;
    position: relative; /* 擬似要素用に必要 */
    margin-right: 1%;
}
.spot_list_bx2 li:nth-child(even) {
    width: 49%;
    padding: 20px;
    margin-top: 60px;
    margin-bottom: 100px;
    position: relative; /* 擬似要素用に必要 */
    margin-left: 1%;
}


.spot_a{
    width: 100%;
    background-color: #D3CBF2;
    border-radius: 10px;
}
.spot_a::before {
    content: "";
    position: absolute;
    top: -60px; /* 初期は-60px */
    left: 50%;
    transform: translateX(-50%);
    width: 200px; /* 初期幅 */
    height: 200px; /* 初期高さ */
    background-image: url(../images/spot/spot_a.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.spot_b{
    width: 100%;
    background-color: #CCE8D7;
    border-radius: 10px;
}
.spot_b::before {
    content: "";
    position: absolute;
    top: -60px; /* 初期は-60px */
    left: 50%;
    transform: translateX(-50%);
    width: 200px; /* 初期幅 */
    height: 200px; /* 初期高さ */
    background-image: url(../images/spot/spot_b.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.spot_list_r_bx{
    margin-top:15px;
}
.nam{
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    font-weight: bold;
    margin-top: -15px;
    margin-bottom: 20px;
}
.spot_list_title{
    font-size: 30px;
    line-height: 36px;
    text-align: center;
    font-weight: bold;
    padding-bottom: 30px;
}
.spot_list_title span{
    font-size: 20px;
    line-height: 22px;
    text-align: center;
    font-weight: bold;
    padding-bottom: 0px;
}
.spot_list_bx .spot_list_left{
    width: 55%;
    margin: 0px 1% 0px 0px;
    background-color: #FFFFFF;
    padding: 10px;
    border-radius: 10px;
}
.spot_list_bx .spot_list_right{
    width: 43%;
    margin: 0px 0px 0px 1%;}

.spot_list_bx2 .spot_list_left{
    width: 100%;
    background-color: #FFFFFF;
    padding: 10px;
    border-radius: 10px;
}
.spot_list_bx2 .spot_list_right{
    width: 100%;
}

.spot_list_ticket{
    width: 100%;
    margin-bottom:10px;
}
.spot_list_ticket img{
    width: 100%; 
}
.spot_list_right_txt{
    width: 54%;
    margin: 0px 1% 0px 0px;
    text-align: justify;
    font-size: 16px;
    line-height: 24px;
    font-feature-settings: "palt"!important;
}
.spot_list_right_txt span{
    font-size: 12px;
    letter-spacing: -0.5px;
  word-break: break-all; 
}
@media screen and (max-width: 768px) {

.spot_list_right_txt span{
    font-size: 12px;
    letter-spacing:0px;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: break-all; 
  line-break: strict; /* 禁則処理を厳格に適用 */
}    
}

.spot_list_all .spot_list_right_txt{
    text-align: justify;
    width: 100%; 
}
.spot_list_txt{
    width: 100%;
    margin: 0px;
    text-align: justify;
    font-size: 16px;
    line-height: 24px;
}

.spot_list_right_point{
    width: 44%;
    margin: 0px 0px 0px 1%;}
.spot_list_right_point img{
    width: 100%;}



@media screen and (max-width: 1000px) {
#spot_bx{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
/* 線 */
.spot_title::before,
.spot_title::after {
    content: "";
    flex: 1;
    border-bottom: 0px solid #333;
    height: 0; /* 重要 */
}
}

/* 小さい画面向け */
@media screen and (max-width: 768px) {
.spot_a{
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #D3CBF2;
}
    .spot_a::before {
        top: -40px;      /* 少し下にずらす */
        width: 120px;    /* 幅を縮小 */
        height: 120px;   /* 高さも縮小 */
    }
.spot_b{
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #CCE8D7;
}
    .spot_b::before {
        top: -40px;      /* 少し下にずらす */
        width: 120px;    /* 幅を縮小 */
        height: 120px;   /* 高さも縮小 */
    }
}

@media screen and (max-width: 680px) {
    
.spot_list_bx li {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    margin-bottom: 60px;
    position: relative; /* 擬似要素用に必要 */
}
.spot_title {
    width: 95%;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-left: auto;
    margin-right: auto;
}
.spot_title img{
    width: 100%;
}
.spot_list_bx ul{
    width: 90%;
}
.spot_list_bx2 ul{
    margin: 0px auto;
    width: 90%;
}
.spot_list_bx2 li:nth-child(odd) {
    width: 100%;
    padding: 15px;
    margin: 20px auto 60px;
    position: relative;
}
.spot_list_bx2 li:nth-child(even) {
    width: 100%;
    padding: 15px;
    margin: 20px auto 60px;
    position: relative;
}
}
/* スマホ向け */
@media screen and (max-width: 680px) {
    
.spot_list_bx .spot_list_left{
    width: 100%;
    margin: 0px auto;
    background-color: #FFFFFF;
    padding: 10px;
    border-radius: 0px;
}
.spot_list_bx .spot_list_right{
    width: 100%;
    margin: 0px auto;
    }
.spot_list_title{
    font-size: 24px!important;
    line-height: 26px;
    text-align: center;
    font-weight: bold;
    padding-bottom: 30px;
}
.spot_list_title span{
    font-size: 18px;
    line-height: 22px;
}
    
}
@media screen and (max-width: 480px) {
    #spot_bx{
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}
    .spot_a::before {
        top: -40px;
        width: 120px;
        height: 120px;
    }
    .spot_b::before {
        top: -40px;
        width: 120px;
        height: 120px;
    }
.spot_list_bx ul{
    width: 95%;
}
.spot_list_right_txt{
    font-size: 14px;
    line-height: 22px;
}
.spot_list_txt{
    font-size: 14px;
    line-height: 22px;
}
.spot_list_title{
    font-size: 20px!important;
    line-height: 24px;
    text-align: center;
    font-weight: bold;
    padding-bottom: 30px;
}
.spot_list_title span{
    font-size: 16px;
    line-height: 22px;
}
}

/* ------------------------
   温泉
------------------------ */
#onsen_bx{
    width: 100%;
    padding-top: 0px;
    padding-bottom: 0px; /* 波形分の余白を確保 */
    text-align: center;
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
#onsen_bx .onsen_title_bx{
    position: relative; /* 擬似要素の基準に */
    margin: 0px auto;
    padding: 20px 0px 10px;
}

#onsen_bx .onsen_title_bx::before,
#onsen_bx .onsen_title_bx::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px; /* 画像サイズに合わせる */
  background-repeat: no-repeat;
  background-size: contain;
}

#onsen_bx .onsen_title_bx::before {
  left: 0;
  background-image: url("../images/onsen/onsen_illust_l.png");
}

#onsen_bx .onsen_title_bx::after {
  right: 0;
  background-image: url("../images/onsen/onsen_illust_r.png");
}

#onsen_bx .onsen_title {
    width: 580px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
}
#onsen_bx .onsen_title_sub {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 25px;
}
#onsen_bx .onsen_slide_box{
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    background-color: #F48299;
    padding: 20px 20px 0px;
}
#onsen_bx .onsen_slide_bx{
    margin: 0px 0px 20px;
    background-color: #fff;
    padding: 20px 20px 20px!important;
}
#onsen_bx .onsen_slide_l{
     width: 49%;
    margin: 0px 1% 0px 0px;
}
#onsen_bx .onsen_slide_l img{
     width: 100%;
}
#onsen_bx .onsen_slide_r{
     width: 49%;
    margin: 0px 0px 0px 1%;
    
}
#onsen_bx .onsen_slide_title{
    background-color: #F48299;
    text-align: center;
    line-height: 40px;
    font-size: 30px;
    font-weight: 900;
    color: #FEFEFE;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 20px;
}
#onsen_bx .onsen_slide_txt{
    text-align: justify;
    font-size: 16px;
    line-height: 30px;
}
#onsen_bx .onsen_slide_title span{
    line-height: 30px;
    font-size: 20px;
    font-weight: 700;
}
@media screen and (max-width: 1000px) {
    #onsen_bx{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
#onsen_bx .onsen_slide_l{
     width: 100%;
    margin-left: auto;
    margin-right: auto;
}
#onsen_bx .onsen_slide_l img{
     width: 100%;
}
#onsen_bx .onsen_slide_r{
     width: 100%;
    margin-left: auto;
    margin-right: auto;
    
}
#onsen_bx .onsen_title_bx::before {
  left: 0;
  background-image: none;
}

#onsen_bx .onsen_title_bx::after {
  right: 0;
  background-image: none;
}
}
@media screen and (max-width: 680px) {
#onsen_bx{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
#onsen_bx .onsen_title {
    width: 255px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
}
#onsen_bx .onsen_title_sub {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 25px;
}

#onsen_bx .onsen_slide_title{
    line-height: 30px;
    font-size: 25px;
    padding-top: 0px;
}
#onsen_bx .onsen_slide_title span{
    line-height: 20px;
    font-size: 15px;
}
#onsen_bx .onsen_slide_box{
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    background-color: #F48299;
    padding: 10px 10px 0px;
}
}
@media screen and (max-width: 420px) {
    .onsen_slide_txt{
    font-size: 12px!important;
    line-height: 18px!important;
}
   .spot_list_right_txt{
    font-size: 12px;
    line-height: 18px;
}
}

/* ===============================
   ボタン（アニメーションなし）
================================ */

#flexbox_at .button_bx {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

/* ボタン本体 */
#flexbox_at a.button-flat {
    width: 100%;
    padding: 12px 0 16px;
    color: #fff; /* 初期文字色 */
    border-radius: 5px;
    background: #39B54A; /* 初期背景色 */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font: 700 18px/24px 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
    text-align: center;
    position: relative;
}

/* ボタン内テキスト */
#flexbox_at a.button-flat span {
    position: relative;
    z-index: 1;
}

/* ホバー時の背景・文字色 */
#flexbox_at a.button-flat:hover {
    background: #009900; /* ホバー背景色 */
    color: #fff;          /* 文字色固定 */
}

/* 右矢印 */
#flexbox_at a.button-flat::after {
    content: '›';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff; /* 初期矢印色 */
    font-size: 20px;
    z-index: 1;
}

/* ホバー時の矢印色 */
#flexbox_at a.button-flat:hover::after {
    color: #fff;
}

/* ===============================
   ボタン（アニメーションなし・2行テキスト対応）
================================ */

#flexbox_at .button_other_bx {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    margin-bottom: 50px;
    max-width: 1000px;
}
/* ボタン本体 */
#flexbox_at a.button-other {
    width: 100%;
    padding: 20px 0;
    color: #fff; /* 初期文字色 */
    border-radius: 5px;
    background: linear-gradient(180deg, rgba(255, 0, 0, 1) 0%, rgba(163, 0, 0, 1) 100%);
    display: flex;              /* flexで中央寄せ */
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
    position: relative;
}

/* テキストを縦方向に並べる */
#flexbox_at a.button-other .button-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.4;
}

/* 1行目 */
#flexbox_at a.button-other .line1 {
    font-size: 16px;
    font-weight: 700;
    display: block;
}

/* 2行目 */
#flexbox_at a.button-other .line2 {
    font-size: 22px;
    font-weight: 900;
    display: block;
}

/* ホバー時の背景・文字色 */
#flexbox_at a.button-other:hover {
    background: #FF0000; /* ホバー背景色 */
    color: #fff;          /* 文字色固定 */
}

/* 右矢印 */
#flexbox_at a.button-other::after {
    content: '›';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 20px;
    z-index: 1;
}

/* ホバー時の矢印色 */
#flexbox_at a.button-other:hover::after {
    color: #fff;
}

@media screen and (max-width: 1000px) {
  
#flexbox_at .button_other_bx {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}  
}
@media screen and (max-width: 680px) {
    
#flexbox_at a.button-other .line1 {
    font-size: 14px;
    font-weight: 700;
    display: block;
}

/* 2行目 */
#flexbox_at a.button-other .line2 {
    font-size: 18px;
    font-weight: 900;
    display: block;
}
}

/* ------------------------
   スポットスライダー全体 / 高さ調整
------------------------ */
.spot_list_bx .spot_list_slider,
.spot_list_bx2 .spot_list_slider {
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.spot_list_slider .slick-slide img {
  width: 100%;
  height: auto;       /* 画像比率を維持 */
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 680px) {
    .spot_list_bx2 li:nth-child(odd),
    .spot_list_bx2 li:nth-child(even) {
        margin: 10px auto 60px;
        padding: 10px;
    }
}.spot_list_bx2 .spot_list_slider {
    height: auto !important;      /* 親の無駄な固定高さを解除 */
    overflow: visible;            /* 子の高さに合わせる */
}

.spot_list_bx2 .slick-list {
    height: auto !important;      /* slickが無駄に高さを計算するのを防ぐ */
}

.spot_list_bx2 .slick-track {
    display: flex;                /* 高さを自然に揃える */
    align-items: flex-start;      /* 高さをスライドに合わせる */
}

.spot_list_bx2 .spot_list_slider {
  min-height: 0; /* 初期状態で広がらないように */
}


/* ===============================
   maparea
================================ */
.table_container {
    overflow-x: hidden; /* PCは横スクロール禁止 */
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;
    border: 1px solid #000000;
    margin-top: 40px;
}

/* 画像を縦横比維持 */
.table_container img {
  display: block;
  width: 100%;
  height: auto;
}

/* =====================
   スマホのみ横スクロール
===================== */
@media screen and (max-width: 767px) {

  .table_container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    position: relative;
    margin-top: 10px;
  }
  .table_container img {
    display: inline-block;
    width: auto;
    max-width: none;
    height: 450px;
  }
.slider_listimg img {
  width: 100%;
  height: 100%;
  object-fit: contain!important;  /* Safari でも拡大せず全体表示 */
  background-color: #000; /* 余白を黒にしたい場合 */
}
}
/* =====================
   new
===================== */
    .slider_new{
    margin: 0 auto;
    width:100%;
    }
    .slider_new img{
        width:100%;
  object-fit: contain!important;  /* Safari でも拡大せず全体表示 */
    }
    .slider_new .slick-slide{
        height:auto!important;
    }
    .slider_new .slick-arrow{
        z-index:2!important;
    }
    .slider_new .slick-next{
        right:0!important;
    }


/* ドットナビ */
.slick-dots { bottom: 10px; }

    .slider_new .slick-prev{
        left:0!important;
    }
    .slick-slide{
        margin-right: 1px!important;
        margin-left: 1px!important;
    }


/* =====================
   info_txt_bx
===================== */
.info_txt_bx{
    width: 90%;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}
.button_other_all{
    width: 100%;
    margin-bottom: 25px;
}
.button_other_l{
    width: 48%;
    margin-left: 1%;
    margin-right: 1%;
}
.button_other_r{
    width: 48%;
    margin-left: 1%;
    margin-right: 1%;
}



/* ボタン本体 */
#flexbox_at a.button-plan {
    width: 100%;
    padding: 20px 0;
    border-radius: 5px;
    color: #fff;
    display: flex;              /* flexで中央寄せ */
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
    position: relative;
}
.button_other_l .btn-other{
    background: #75C099;
    border: 2px solid #75C099;
}
.button_other_r .btn-kinosaki{
    background: #FF7683;
    border: 2px solid #FF7683;
}

/* テキストを縦方向に並べる */
#flexbox_at a.button-plan .button-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.4;
}

#flexbox_at a.button-plan{
    font-size: 22px;
    font-weight: 900;
    display: block;
}

#flexbox_at .button_other_all a:hover {
    opacity: 0.8;
}
/* ホバー時の背景・文字色 */
#flexbox_at .button_other_l a.btn-other:hover {
    background-color: #fff; /* ホバー背景色 */
    color: #75C099; /* 初期文字色 */
    border: 2px solid #75C099;
}

#flexbox_at .button_other_r a.btn-kinosaki:hover {
    background-color: #fff; /* ホバー背景色 */
    color: #FF7683; /* 初期文字色 */
    border: 2px solid #FF7683;
}
/* 右矢印 */
#flexbox_at .button_other_all a.btn-other::after {
    content: '›';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 20px;
    z-index: 1;
}
/* 右矢印 */
#flexbox_at .button_other_r a.btn-kinosaki::after {
    content: '›';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 20px;
    z-index: 1;
}

/* ホバー時の矢印色 */
#flexbox_at .button_other_l a.btn-other:hover::after {
    color: #64B99B;
}
/* ホバー時の矢印色 */
#flexbox_at .button_other_r a.btn-kinosaki:hover::after {
    color: #FF7683;
}


 /* ボタンをまとめるラッパー */
   
  /* ボタンをまとめるラッパー */
  .floating-buttons {
    position: fixed;
    bottom: 100px;       /* 下から80px */
    right: 10px;
    display: none;      /* 初期は非表示 */
    display: flex;
    flex-direction: column; /* ← 縦に並べる */
    gap: 15px;          /* ボタン間の余白 */
    z-index: 1000;
    width: 25%;
  }

  .floating-buttons a {
    text-decoration: none;
    padding: 20px 16px;
    border-radius: 6px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: opacity 0.3s ease, transform 0.2s ease;
    min-width: 220px; /* ボタン幅を揃える */
  }
/* 右矢印 */
  .floating-buttons a.btn-kinosaki::after {
    content: '›';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 20px;
    z-index: 1;
}


  .floating-buttons a:hover {
    opacity: 0.8;
    transform: translateY(-2px);
  }

  /* 個別カラー */
  .btn-other {
    background-color: #75C099;
  }

  .btn-kinosaki {
    background-color: #FF7683;
  }
.button-img{
    width: 100%;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
}
.button-img img{
    width: 100%;
}
.button-img img:hover{
    opacity: 0.8;
}
@media screen and (max-width: 1480px) {
.floating-buttons {
    width: 50%;
    max-width: 500px;
  }
}
@media screen and (max-width: 880px) {
.button_other_l{
    width: 98%;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 25px;
}
.button_other_r{
    width: 98%;
    margin-left: 1%;
    margin-right: 1%;
}
    .floating-buttons {
    position: fixed;
    bottom: 100px;       /* 下から80px */
    right: 10px;
    display: none;      /* 初期は非表示 */
    display: flex;
    flex-direction: column; /* ← 縦に並べる */
    gap: 5px;          /* ボタン間の余白 */
    z-index: 1000;
    width: 60%;
  }

}

@media screen and (max-width: 480px) {
    #flexbox_at a.button-plan{
    font-size: 20px;
    }
}
    
@media screen and (max-width: 420px) {
    #flexbox_at a.button-plan{
    font-size: 18px;
    }
}
    
@media screen and (max-width: 380px) {
    #flexbox_at a.button-plan{
    font-size: 16px;
    }
}    
@media screen and (max-width: 350px) {
    #flexbox_at a.button-plan{
    font-size: 14px;
    }
}
   
    
    
    