@charset "utf-8";
/* 全体 */
:root {
  --bg-graycolor: #efefef;
  --text-color: #333333;
  --main-color: #e33b2b;
  --sub-color: #1754b8;
  --white-color: #ffffff;
  --blue-color: #8ec2fd;
  --main-font: 'Noto Sans JP', sans-serif;
  --title-eng-font: 'gill-sans-nova', sans-serif;
  --title-jp-font: 'ab-tombo-bold', sans-serif;
  --fontsize-main: 16px;
  --fontsize-sub: 13px;	
  --main-lh: 1.5;
  --pd-section: 100px 0;
  --pd-section-sp: 50px 2%;
	/* メイン（本文など）：スマホ時 最小15px（0.938rem） 〜 PC時 最大16px（1rem） */
  /*--fontsize-main: clamp(0.938rem, 0.881rem + 0.24vw, 1rem);
  
  /* サブ（注記など）：スマホ時 最小13px（0.813rem） 〜 PC時 最大14px（0.875rem） */
  /*--fontsize-sub: clamp(0.875rem, 0.819rem + 0.24vw, 0.938rem);*/
} 
	
	
	
	
	

html {
  scroll-behavior: smooth;
}

/*body {
    font-size: 15px;
}*/

#container{
	font-family: var(--main-font);
    width: 100%;
    margin: 0;
	font-size: var(--fontsize-main);
    /*font-size:clamp(0.938rem, 0.824rem + 0.57vw, 1.25rem);*/
	color: #333333;
	line-height: 1.5;
	box-sizing: border-box;
    font-weight: 400;
	  /*overflow: hidden; /* はみ出た部分を強制的に見えなくする */
	box-sizing: border-box;
}

#container a, #container a:link, #container a:hover{
	color: var(--white-color);
}

.w1200{
	width: 1200px;
	margin: 0 auto;
}

.w1000{
	width: 1000px;
	margin: 0 auto;
}

.subtl_font{
	font-family: var(--title-eng-font);
	font-weight: 600;
	font-style: normal;
}

.subtl_j_font{
	font-family: var(--title-jp-font);
	font-weight: 400;
	font-style: normal;	
}


/*--------------------パンくず */
#pankuzu{
	margin: 15px auto 5px auto;
	width: 1000px;
	font-size: .85em;
}

#pankuzu ul{
    padding: 0 0 5px;
    _zoom: 1;
}
#pankuzu li{
    float: left;
    list-style: none;
}
#pankuzu li + li:before{
    margin: 0 8px;
    content: '>';
}
#pankuzu li a, #pankuzu li a:link{
	color:#0066cc;
}
/*-----------------------pagetop*/
.pc{display: block;}
.sp{display: none;}

/* ページトップへ戻るボタン */
.page-top {
  display: none;/* 非表示 */
  position: fixed;/* ページ右下に固定 */
  right: 20px;
  bottom: 10px;
  border-radius: 8px;
  color: var(--white-color);
  cursor: pointer;/* カーソルをポインターに */
  z-index: 100;
}
/* activeクラスが付与されたとき */
.page-top.active {
  display: block;
}
/* ホバーしたとき */
.page-top:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.page-top svg{
    width:60px;
    height: 60px;
    fill: #f7f6f2;
    stroke:#f7f6f2;
}

h1{
	margin: 0 auto 5px auto;
	width: 1000px;
	font-size: 1em;
}

/*title*/
#title{
	background:  url("../img/title_bg.webp") no-repeat center top / cover;
}
.title_box{
    display: flex;
    justify-content:center;
}


.title_bg{
    position: relative;
}



.title_bg p{
    padding: 20px 5%;
    line-height: 2;
}

/*.title_box img{
    width:100%;
}*/

.title_txt{
    width:100%;
    padding: 20px 20%;
    font-size: 20px;
}

.title_box{
	padding-top: 10px;
}


.title_box img{
    width: auto;
}

/*------nav------*/
nav{
	background: #f5ead6;
	padding: 50px 0;
}

nav ul{
	display: flex;
	flex-wrap: wrap;
	column-gap:15px;
	row-gap: 10px; 
    padding: 0; 
}

nav ul li{
	width:calc((100% - 45px) /4);
	min-width: 150px;
	background: #1754b8;
	border-radius: 4px;
	/*font-size:  1.125rem;*/
}


nav ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  color: var(--white-color);
  padding: 15px 10px 15px 20px; 
  border-radius: 4px;
  transition: background-color 0.3s; /* マウスを乗せた時の変化を滑らかに */
  gap:8px;
  min-height: 50px;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}


nav ul li a .material-symbols-outlined {
  font-size: 1.25em; 
　flex-shrink:0;	
}

/* マウスを乗せたとき（ホバー時）の色 */
nav ul li a:hover {
    background: #11408d;
	opacity: 0.8;
}

/* スマホ・PC共通：押した瞬間の処理 */
nav ul li a:active {
	background: #003d7a; /* タップした瞬間の濃い色 */
  transform: scale(0.98);    /* 少しだけボタンを小さくして凹み感を出す */
}

/*--explanation---*/
#explanation{
	position:relative;
}

.explanation_box{
	font-size: 1.125rem;
	padding: 50px 8em;
	position: relative;
	line-height: 1.8;
}

.explanation_box::before{
 	content: ""; /* 空にする */
  	position: absolute;
    right:18%;
	top: -10%;
	width: 127px;  /* アイコンの横幅 */
  	height: 99px;
	background-image: url("../img/travel_icon.webp");
  	background-size: contain;     /* 枠内に綺麗に収める */
  	background-position: center;  /* 中央に配置 */
  	background-repeat: no-repeat; /* ループ禁止 */
}

.tl_eng{
	text-align: center;
	font-family: gill-sans-nova, sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 2.1875rem;	
}

#hotel h2, #sightseeing h2, #train h2, #search_tour h2{
    font-family: ab-tombo-bold, sans-serif;
	font-weight: 400;
	font-style: normal;
    font-size: 1.25rem;
    text-align: center;
	color: #e33b2b;
}

#hotel{
    background: var(--bg-graycolor);
    padding:var(--pd-section);
    position: relative;
	text-align: center;
}


#hotel h2{
  position: relative; 
  display: inline-block; 
  margin: 0 auto;
}

#hotel h2::after{
 	content: "";
  	position: absolute;
	bottom: 5px;
	width: 61px;
  	height: 65px;
	background-image: url("../img/hotel_icon.webp");
  	background-size: contain;
  	background-position: center;
  	background-repeat: no-repeat;
	padding-right: 65px;
}



#hotel .hotel_box{
    display: grid;
    /*grid-template-columns: repeat(4,1fr);*/
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    /*background: #ffffff;*/
    padding: 0 20px;
	margin-top: 50px;
	text-align: left;
}

.hotel_box img{
    width:100%;
}

.hotel_box h3{
    font-weight: 900;
    font-size: 16px;
    font-weight: 900;
    padding: 5px;
    line-height: 1.3;
}

.hotel_col{
    display: grid;
    /*grid-auto-rows: auto 55px 120px 100px;*/
	/*grid-auto-rows: auto 55px 110px 95px 100px;
    align-content:space-between;*/
    position: relative;
	grid-row: span 5;
    grid-template-rows: subgrid; /* サブグリッド */
    row-gap: 5px;
	margin-top: 50px;
}

.hotel_box .kumamoto::before{
    content:"熊本市内";
    position: absolute;
    top: 10px;
    left: 0px;
    color: var(--white-color);
    background: var(--main-color);
    font-size: 16px;
    padding: 3px 5px;
}

.hotel_box .kumamotoair::before{
    content:"熊本空港近辺";
    position: absolute;
    top: 10px;
    left: 0px;
    color: var(--white-color);
    background: var(--main-color);
    font-size: 16px;
    padding: 3px 5px;
}

.hotel_box .aso::before{
    content:"阿蘇";
    position: absolute;
    top: 10px;
    left: 0px;
    color:  var(--white-color);
    background: var(--main-color);
    font-size: 16px;
    padding: 3px 5px;
}

.hotel_box .hitoyoshi::before{
    content:"人吉市";
    position: absolute;
    top: 10px;
    left: 0px;
    color:  var(--white-color);
    background: var(--main-color);
    font-size: 16px;
    padding: 3px 5px;
}

.hotel_txt{
    padding: 0 0.5em;
}

.hotel_acc{
	font-size: var(--fontsize-sub);
	/*border: solid #cccccc 0.9px;*/
	margin: 0 10px;
	/*padding: 0.5em;*/
	position: relative;
}

.hotel_acc .material-symbols-outlined{
	font-size: 0.95em;
	color: #ffffff;
}

.hotel_acc_tl{
	color: var(--white-color);
	font-size: 0.9em;
}

.hotel_acc_tlbox{
	position: relative;
	/*top:-0.5em;*/
	top:1em;
	left:-0.5em;
	background: #e27f66;
	border-radius:0 0 5px 0;
	padding: 0 5px 2px 2px;
	display: inline-block;
	z-index: 100;
}

.hotel_acc_txt{
	border: solid #cccccc 0.9px;
	padding: 1em 0.7em 0.5em 0.7em;
}

/*.hotel_acc_txt{
	position: relative;
	top:-0.5em;
	left:-0.5em;
	background: #e27f66;
	border-radius:0 0 5px 0;
	padding: 0 5px 2px 2px;
	display: inline-block;
	z-index: 100;
}*/

/*hotelボタン*/
.tour_link{
  list-style: none;
  margin: 15px 0 0 0; /* 必要に応じて調整してください */
  display: flex;
  flex-direction: column;
  gap: 15px; /* ボタンとボタンの間の隙間 */
  transition: background-color 0.3s;
  padding: 0 10px;
}

.tour_link li a{
  display: flex;
  justify-content: center;
  align-items: center; 
  position: relative;
  background: #e8390d;
  color:  var(--white-color);
  text-decoration: none;
	/*font-size: 1.125rem;*/
  padding: 12px 30px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

/* ホバー時（マウスを乗せたとき）のエフェクト */
.tour_link a:hover {
  background-color: #cc2f0a; /* 少し濃いオレンジに */
  opacity: 0.8;
}

/* スマホ・PC共通：押した瞬間の処理 */
.tour_link a:active {
  background-color: #cc2f0a; /* 少し濃いオレンジに */
  transform: scale(0.98);
}

/* Google Material Symbols (矢印アイコン) の配置 */
.tour_link a .material-symbols-outlined {
  position: absolute;
  right: 15px; 
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
}

#sightseeing{
    background: var(--white-color);
    padding:var(--pd-section);
    position: relative;
	text-align: center;
}

#sightseeing h2{
  position: relative;
  display: inline-block;
  margin: 0 auto;
}


#sightseeing h2::after{
 	content: "";
  	position: absolute;
	bottom: 5px;
	width: 86px; 
  	height: 64px;
	background-image: url("../img/sightseeing_icon.webp");
  	background-size: contain;
  	background-position: center;
  	background-repeat: no-repeat;
	padding-right: 90px;
}

#sightseeing .sightseeing_box{
    display: grid;
    column-gap: 20px;
    padding: 30px 20px;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-content:center;
	text-align: left;
}

.sightseeing_tl{
    padding: 5px;
    line-height: 1.3;
	font-weight: 900;
}

.sightseeing_box img{
    width:100%;
}


.sightseeing_col{
    display: grid;
	/*grid-auto-rows: auto 40px 90px 70px;*/
    position: relative;
	grid-row: span 4;
    grid-template-rows: subgrid; /* サブグリッド */
    row-gap: 5px;
	margin-top: 50px;
}

.sightseeing_box .kumamoto::before{
    content:"熊本市";
    position: absolute;
    top: 10px;
    left: 0px;
    background: var(--main-color);
	color: var(--white-color);
    font-size: 16px;
    padding: 3px 5px;
}

.sightseeing_box .asho::before{
    content:"阿蘇";
    position: absolute;
    top: 10px;
    left: 0px;
    background: var(--main-color);
	color: var(--white-color);
    font-size: 16px;
    padding: 3px 5px;
}

.sightseeing_box .amakusa::before{
    content:"天草";
    position: absolute;
    top: 10px;
    left: 0px;
    background: var(--main-color);
	color: var(--white-color);
    font-size: 16px;
    padding: 3px 5px;
}

.sightseeing_box .hitoyoshi::before{
    content:"人吉";
    position: absolute;
    top: 10px;
    left: 0px;
    background: var(--main-color);
	color: var(--white-color);
    font-size: 16px;
    padding: 3px 5px;
}

.sightseeing_box .yamagashi::before{
    content:"山鹿";
    position: absolute;
    top: 10px;
    left: 0px;
    background: var(--main-color);
	color: var(--white-color);
    font-size: 16px;
    padding: 3px 5px;
}


#train{
    background: var(--bg-graycolor);
    padding:var(--pd-section);
    position: relative;
	text-align: center;
}

#train h2{
  position: relative;
  display: inline-block;
  margin: 0 auto;
}


#train h2::after{
 	content: ""; /* 空にする */
  	position: absolute;
	bottom: 5px;
	width: 57px;  /* アイコンの横幅 */
  	height: 76px;
	background-image: url("../img/train_icon.webp");
  	background-size: contain;
  	background-position: center;
  	background-repeat: no-repeat;
	padding-right: 60px;
}

#train .train_box{
    display: grid;
    padding: 30px 20px;
    column-gap:20px;
    grid-template-columns:repeat(auto-fit, 33%);
    justify-content:center;
	margin-top: 50px;
}



.train_tl{
    padding: 5px;
    line-height: 1.3;
	font-weight: 900;
}

.train_box img{
    width:100%;
}

.train_col{
    display: grid;
    /*grid-auto-rows: auto 40px 120px;*/
    position: relative;
	text-align: left;
	grid-row: span 3;
    grid-template-rows: subgrid; /* サブグリッド */
    row-gap: 5px;
}

#search_tour{
    background: var(--white-color);
    padding: 100px 0;
    position: relative;
	text-align: center;
}

#search_tour h2{
	 position: relative;
 	 display: inline-block;
  	 margin: 0 auto;
}

#search_tour h2::after{
	content: "";
  	position: absolute;
	bottom: 5px;
	width: 65px;
  	height: 65px;
	background-image: url("../img/search icon.webp");
  	background-size: contain;
  	background-position: center;
  	background-repeat: no-repeat;
	padding-right: 150px;
}

#gadget_switching{
	padding-top: 5em;
}

#ga-dptour h2{
    font-weight: 900;
    font-size: 2.33rem;
    text-align: center;
    padding-bottom: 10px;
}

.train_note{
	padding-top: 3em;
	font-size: 0.9em;
	text-align: left;
}

#kumamotodc{
	background: var(--bg-graycolor);
}

.kumamotodc_link{
	display: flex;
	flex-wrap: wrap;
	justify-content:center;
	align-items:center;
	column-gap: 10px;
	padding: 3em 0; 
}

.kumamotodc_link div{
	text-align: center;
	font-size: 0.8rem;
}

#container .kumamotodc_link a, #container .kumamotodc_link a:link{
	color:#0066cc;
}

.fw-top .fw-btn-search-01{
    background: #e8390d;
}

.fw-top .fw-btn-search-01:hover{
    background: #cc2f0a;
}

.plan_txt{
    width:auto;
    margin: 0 auto;
    padding-top: 30px;
    padding-top: 150px;
    text-align: center;
}

.plan_research{
    font-weight: 900;
    border: #f3f06b 2px solid;
    padding: 10px 50px;
    margin: 20px auto;
    display: inline-block;
}


.fw-top .fw-search-top__btn button a:hover{
	background: #cc2f0a;
}
/************************************************************
					min770px－max999px
************************************************************/
@media screen and (min-width: 1001px) and (max-width: 1240px){

.w1000, .w1200 {
	/*min-width: auto;  
	width: auto;*/
	margin: 0 auto;
}
  
img{
    width /***/: auto;
    max-width: 100%;
    height: auto;
}
	
.title_box::after{
    background-size: 80%;
    }     
    
.title_bg{
        width:88%;
    }
    
.title_bg img{
    width:100%;
    }    
    
#train .train_box{
	grid-template-columns: repeat(2, 1fr);
		}	
.hotel_col{
    margin-bottom: 20px;
    }
}

/************************************************************
					タブレット対応
************************************************************/
@media screen and (min-width:600px) and (max-width:1000px)  {

.w1000, .w1200 {
	min-width: auto;  
	width: auto;
	margin: 0;
    }
    
.pc {display: none;}
.tb{display: block;}  
.sp{display: none;}	

       

img{
    width /***/: auto;
    max-width: 100%;
    height: auto;
}
    
#pankuzu, h1{
	width:auto;
	}
     	
#title{
	background:  url("../img/title_bg.webp") no-repeat center top / cover;
}	
	
.title_box::after{
    background-size: 80%;
    }     
    
.title_bg{
        width:88%;
    }

.title_bg::before{
    background-size: 80%;
    }    
    
.hotel_col{
    margin-bottom: 20px;
	grid-auto-rows:auto 55px 80px 70px 200px;
    }    
    
#hotel .hotel_box{
    grid-template-columns: repeat(2,1fr);
}
    
#train .train_box{
	grid-template-columns: repeat(2, 1fr);
		}	
	
.hotel_col{
    margin-bottom: 20px;
    }    
    

.title_box::after{
     display: none;
    } 
    
.title_bg::before, .title_bg::after{
    display: none;
    }
      
    
.title_box{
    flex-wrap: wrap;
    padding-bottom: 20px;
    }    
    
.title_bg{
    width:100%;
    }
	
.explanation_box{
	padding: 60px 4em;	
	}	
}


/************************************************************
						スマホ対応
************************************************************/
@media screen and (min-width:359px) and (max-width:599px)  {	
.w1000, .w1200{
    min-width: auto; 
	width: 100%;
	padding: 0 5%;
	/*padding-left: 2%;
	padding-right: 2%;*/
}
    
#pankuzu{
    width:auto;
    margin:5px auto;
	}
    
.pc{display: none;}
.tb{display: none;}	
.sp{display: block;}   
 
	
h1{
	width:auto;
	}	
	
#title{
	background:  url("../img/title_bg_sp.webp") no-repeat center top / cover;
}		
.title_box{
    width:80%;
    /*padding-left: 20%;*/
	padding-top: 5%;
    } 
    
.title_box img{
     width:100%;
    }    
    
.title_box{
    flex-wrap: wrap;
    padding-bottom: 100px;
    padding-top: 0;
    }    
    
.title_bg{
    width:100%;
    } 

	nav{
		padding:20px 0;
	}	
	
nav ul{
		row-gap:0;
	}	
	
nav ul li{
	/*width:100%;*/
	width:calc((100% - 20px) /2);
	margin-bottom: 1em;
	}
	
nav ul li a{
	min-height:70px;
	}	

.explanation_box{
	padding: 40px 1em;
	font-size: 1rem;
	}	
	
.explanation_box::before{
	content: "";
    position: absolute;
    /* right: 20%; */
    top: -10%;
    width: 80%;
    height: 80px;
    background-image: url(../img/travel_icon.webp);
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
	}	
    
#hotel{
     padding: 80px 2%;
    }    

    
#hotel .hotel_box, #sightseeing .sightseeing_box, #train .train_box{
   /* grid-template-columns: repeat(3,1fr);*/
    padding: 0px 20px;
    gap:20px;
}
    
#hotel{
    padding: 60px 2%;
	background: #efefef;
}
    
#hotel h2{
	padding-bottom: 5em;
	}	
	
#hotel h2::after{
    left: 50%;
    transform: translateX(-50%);
    top:2em;
	right: 0;
	padding-right:0;
}	
	
.hotel_box h3{
		font-size:1.2em ;
	}	
	
.hotel_col{
    /*margin-bottom: 4em;*/
    grid-auto-rows:auto auto auto auto;
    }	
	
#hotel .hotel_box{
	margin-top: 0;
	grid-template-columns: repeat(1, 1fr);
	}
	
.button_hotel a{
    width:70%;
    padding: 5px 10px;
    text-align: center;
    }
    
    
#sightseeing{
    padding:var(--pd-section-sp);
}
	
#sightseeing h2{
	padding-bottom: 3em;
	}	
	
#sightseeing h2::after{
    left: 50%;
    transform: translateX(-50%);
    top:2em;
	right: 0;
	padding-right:0;
}
    

.sightseeing_box{
    padding: 0;
    }    
    
.sightseeing_col{
    grid-auto-rows:auto auto auto;
    align-content:start;
	padding-bottom: 2em;
    } 
    

.plan_research{
    padding: 10px 20px;
    }
    
.plan_txt{
    padding-top: 50px;
    } 
	
#train{
	padding:var(--pd-section-sp);
	}	
	
#train h2{
	padding-bottom: 3em;
	}		
	
#train h2::after{      
    left: 50%;
    transform: translateX(-50%);
    top:2em;
	right: 0;
	padding-right:0;
	}
	
#train .train_box{
	grid-template-columns: repeat(1, 1fr);
		}	
	
.train_note{
	padding-top: 2em;
	font-size: 0.9em;
}	
	
#search_tour h2{
	padding-bottom: 3em;
	}		
	
#search_tour h2::after{
	left: 50%;
    transform: translateX(-50%);
    top:2em;
	right: 0;
	padding-right:0;
	}
    
#kumamotodc{
	padding:var(--pd-section-sp);
}

