@charset "UTF-8";
/* CSS Document */
/*スマートフォン非表示*/
.img_sp{
	display:none;
}


/*------------------------------------------------------------
	共通
------------------------------------------------------------*/

.wrapper{
	width: 100%;
	height: auto;
	overflow: hidden;/*必ず入れること*/
	background-color: #00a0e9;/*テーマカラーブルー*/
}

.contents{
	width: 100%;
	/*max-width: 1440px;*/
	height: auto;
	box-sizing: border-box;
}


/*------------------------------------------------------------
	準備中
------------------------------------------------------------*/

.jyunbi{
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
	   font-size: 2rem;
    letter-spacing: 0.2em;
	color:#ffffff;
	font-weight: bold;
}

/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/

.headerbox{
    width: 100%;
    max-width: 1440px;
	height: auto;
	margin: 0 auto;
	position: relative;
}
.headlogo_itobrand{
	width: 197px;
	height: 83px;
	margin: 0px auto;
	padding-top: 70px;
}

/*------------------------------------------------------------
	トップページ
------------------------------------------------------------*/

.hero_main{
	width: 70%;
	max-width: 1000px;
	height: auto;
	margin: 20px auto 0 auto;

}
.off20{
	width: 462px;
	height: 352px;
	margin: 0 auto;
	position: relative;
	z-index: 100;
}

/*hero イラスト*/

.ill_bird{
	width: 169px;
	height: 127px;
	position: absolute;
	top:38px;
	left:329px;
}

.ill_woman{
	width: 122px;
	height: 232px;
	position: absolute;
	top:53px;
	left:79px;
}
.ill_kutsu{
	width: 97px;
	height: 89px;
	position: absolute;
	top:338px;
	left:59px;
}

.ill_boy{
	width: 148px;
	height: 174px;
	position: absolute;
	top:527px;
	left:72px;
}

.ill_bag{
	width: 132px;
	height: 109px;
	position: absolute;
	top:646px;
	left: 302px;
}


.ill_rainbow{
	width: 235px;
	height: 125px;
	position: absolute;
	top:40px;
	right: 135px;
}

.ill_yashi{
	width: 151px;
	height: 245px;
	position: absolute;
	top:260px;
	right: 30px;
}

.ill_guide{
	width: 177px;
	height: 221px;
	position: absolute;
	top:551px;
	right: 40px;
}

.ill_flower{
	width: 103px;
	height: 91px;
	position: absolute;
	top:651px;
	right: 277px;
}

/*-----------------ティッカースライド---------------*/
.gallerybg{
	width: 100%;
	height: 220px;
	margin-top: -100px;
	margin-bottom: 70px;
	overflow: hidden;  /* ← 追加 */
}

#gallery {
	height: 220px;
	width: 100%;
	margin: 0 auto;
	}

.gallaryitem{
	width: 310px;
	height: 220px;
	display: block;
}

.bg_gallaryitem_sashimi{
	background:url("../imgs/pic_spot01.jpg") no-repeat;	
}
.bg_gallaryitem_omuro{
	background:url("../imgs/pic_spot02.jpg") no-repeat;	
}
.bg_gallaryitem_tokaikan{
	background:url("../imgs/pic_spot03.jpg") no-repeat;	
}
.bg_gallaryitem_jyogasaki{
	background:url("../imgs/pic_spot04.jpg") no-repeat;	
}
.bg_gallaryitem_komuro{
	background:url("../imgs/pic_spot05.jpg") no-repeat;	
}
.bg_gallaryitem_sea{
	background:url("../imgs/pic_spot06.jpg") no-repeat;	
}
.bg_gallaryitem_onsen{
	background:url("../imgs/pic_spot07.jpg") no-repeat;	
}


/*------------------------お知らせ-------------------------*/

.infobox{
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}
.whitebox{
	width: 100%;
	max-width: 1100px;
	height: auto;
	background-color: #ffffff;
	padding: 40px;
	box-sizing: border-box;
	border-radius: 10px;
	margin: 0 auto 50px auto;

}
.bluebox{
	width: 100%;
	max-width: 1100px;
	height: auto;
	background-color: #ffffff;
	padding: 30px 30px 30px 30px;
	box-sizing: border-box;
	border-radius: 10px;
	margin: 0 auto 50px auto;
}

.infbox_scrooll{
	max-height: 200px;
	overflow: scroll;
	padding: 30px 30px 30px 200px;
	box-sizing: border-box;
}
.infottl{
	width: 177px;
	height: 179;
	margin-bottom: -220px;
	margin-left: 20px;
}
.infotexbox{
	width: 95%;
	height: auto;
	margin-left: 30px;

}
.infolist{
	display: flex;
	flex-wrap: wrap;
	padding: 10px 0;
	border-bottom: solid 1px #333333;
}
.date{
	width: 20%;
	height: auto;
	font-weight: bold;
}
.infotex{
	width: 80%;
}

/*--------------------インフォメーション----------------------*/

.info_section {
  width: 100%;
	height: auto;
	margin-bottom: 20px;
}

.info_grid {
  max-width: 1100px;  /* ★ 1100px統一 */
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 常に2列 */
  gap: 40px;
  box-sizing: border-box;  /* ★ 統一 */
}

.info_card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.info_card img {
  width: 150px;
  height: 128px;
  margin-bottom: 16px;
}

.info_card h3 {
  font-size: 30px;
  color: #1e88c8;
  margin-bottom: 12px;
  font-weight: 700;
}

.info_card p {
  line-height: 1.7;
  color: #444;
}

.info_card span {
  font-size: 16px;
  color: #555;
}

.atention{
	  font-size: 16px;
  color: #555;
	line-height: 100%;
	font-weight: normal;
}




.period_section {
	padding: 40px 0;


}

.period_box {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 32px 70px;
  box-sizing: border-box;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

/* 見出し（枠内） */
.period_header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-left: 70px;
  padding-right: 70px;
}  width: 60px;
  height: auto;
  object-fit: contain;
}

.period_header h2 {
  font-size: 25px;
  color: #1e88c8;
  font-weight: 700;
  letter-spacing: 0.05em;
}
/* テーブル */
.period_table {
  display: flex;
  flex-direction: column;
}

.period_row {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 2px dotted #1e88c8;
}

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

/* 左列（会社名） */
.period_name {
  font-weight: bold;
  font-size: 1.2em;
}

/* 各社カラー */
.period_name.rakuten {
  color: #00a63c; /* 楽天寄せ */
}

.period_name.jalan {
  color: #333333; /* じゃらんは黒ベース */
}

.period_name.ikkyu {
  color: #6b4f2a; /* 高級感寄せ（推測です） */
}

.period_name.yahoo {
  color: #ff0033; /* Yahoo赤 */
}

.period_name.jtb {
  color: #d6001c; /* JTB赤 */
}

.period_name.nta {
  color: #1a3dc1; /* 日本旅行青 */
}
/* 右列（日付） */
.period_date {
  font-size: 1.1em;
  color: #555;
}

/* 3列レイアウト（最低宿泊料金・割引上限） */
.period_table--3col .period_row {
  grid-template-columns: 220px 1fr 1fr;
}

.period_table--3col .period_date {
  text-align: center;  /* ★ 金額をヘッダーの真下に揃える */
}

.period_row--header {
  border-bottom: 2px solid #1e88c8;
}

.period_row--header .period_date {
  font-weight: 700;
  color: #1e88c8;
}



/*-----------------------ボタン---------------------------*/

.cta_section {
  padding: 60px 20px;
}

.cta_grid {
  max-width: 1100px;  /* ★ 1100px統一 */
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  box-sizing: border-box;  /* ★ 統一 */
}

.cta_btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 45px 28px;
  border-radius: 14px;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  transition: all 0.2s ease;
}

.cta_btn:link,
.cta_btn:visited,
.cta_btn:hover,
.cta_btn:active {
  color: #fff;
  text-decoration: none;
}

.cta_btn:hover {
  transform: translateY(3px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border-bottom-width: 1px;
}

/* 矢印 */
.cta_arrow {
  background: #fff;
  color: #666;
  border-radius: 50%;
  font-size: 24px;
  padding: 6px;
}

/* 各旅行会社のボタン色（参考画像に準拠・鮮やかめ） */
/* 1. 楽天トラベル：赤 */
.cta_grid .cta_btn:nth-child(1) {
  background: linear-gradient(to bottom, #e84545, #d03030);
  border-bottom: 4px solid #a82828;
}

/* 2. じゃらんnet：オレンジ */
.cta_grid .cta_btn:nth-child(2) {
  background: linear-gradient(to bottom, #f5a028, #e88a18);
  border-bottom: 4px solid #c87010;
}

/* 3. 一休.com：ブラウンゴールド */
.cta_grid .cta_btn:nth-child(3) {
  background: linear-gradient(to bottom, #c89040, #b07828);
  border-bottom: 4px solid #906020;
}

/* 4. Yahoo!トラベル：コーラルレッド */
.cta_grid .cta_btn:nth-child(4) {
  background: linear-gradient(to bottom, #f05850, #e04040);
  border-bottom: 4px solid #c03535;
}

/* 5. JTB：緑 */
.cta_grid .cta_btn:nth-child(5) {
  background: linear-gradient(to bottom, #58c858, #40b040);
  border-bottom: 4px solid #309030;
}

/* 6. 日本旅行：青 */
.cta_grid .cta_btn:nth-child(6) {
  background: linear-gradient(to bottom, #4088d0, #2870b8);
  border-bottom: 4px solid #205898;
}


/*------------------------------------------------------------
	宿泊ページ
------------------------------------------------------------*/
.stayttlbox{
	width: 1200px;
	height: 335px;
	margin: 0 auto;
	background: url("../imgs/ill_page_bag.png") no-repeat;
	background-position: bottom 30px right 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.pagettl_fukidashi{
	width: 524px;
	height: 309px;
	margin-right: 50px;
}
.btn_orange{
	width: 100%;
	height: auto;
	padding: 20px;
	background-color: #f45d22;/*基準濃いオレンジ*/
	border-radius: 10px;
	text-align: center;
	font-weight: bold;
	color: #ffffff;
	margin-bottom: 30px;
	text-decoration: none;
	transition: 0.5s;
	line-height: 1.5em;
  border-bottom: 5px solid #b84c00;

}
.btn_orange:hover{
	background-color: #ffff00;
	color:#f45d22;/*基準濃いオレンジ*/
	  border-bottom: 2px solid #b84c00;
	  margin-top: 3px;
	margin-bottom: 33px;


}
a.btn_orange{
	color:#ffffff;/*基準濃いオレンジ*/
}
.wide480{
	width: 480px;
	
}
.topbtnbox a{
	text-decoration: none;	
}
.btnttl{
	font-size: 1.8em;
	text-align: center;
	margin-bottom: 20px;/*20*/
}

.stay_attention{
	font-size: 1.3em;
	font-weight: bold;
	color: red;
	padding-left: 1em;
	text-indent: -1em;
}

/*------------------------------------------------------------
	footer
------------------------------------------------------------*/
.footwrap{
	width: 100%;
	height: auto;
	border-top:solid 2px #fff;
}
.footer{
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 50px 40px;
	color: #ffffff;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	gap: 120px;
}
.foot_logo{
	width: 180px;
	flex-shrink: 0;
}
.foot_logo img{
	width: 100%;
	height: auto;
}
.foot_info{
	flex: 1;
	text-align: left;
}
.footnamebox{
	width: 100%;
	height: auto;
	display: flex;
}
.footname{
	margin-bottom: 0.5em;
	line-height: 1.8em;
}
.footname a{
	font-size: 1.5em;
	font-weight: bold;
	color:  #ffffff;
	box-sizing: border-box;
	text-decoration: none;
}

.btn_toiawase{
	width: 500px;
	margin: 0.5em auto 2em auto;
}
.btn_toiawase a{
	text-decoration: none;
}


/* ボタンのスタイル */
.buttonIconText03 {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  height: 64px;
  padding: 8px 16px 8px 8px;
  font-family: sans-serif;
  font-size: 16px;
  color:  #00a0e9;/*テーマカラーブルー*/
  text-align: center;
  overflow-wrap: anywhere;
  background-color: #ffffff;
  border-radius: 32px; /* (buttonの高さ / 2) の値 */
}
.buttonIconText03_text{
	color: #00a0e9;/*テーマカラーブルー*/
}
.buttonIconText03__reverse {
  flex-direction: row-reverse;
  padding: 8px 8px 8px 16px;
}

.buttonIconText03_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  aspect-ratio: 1;
  overflow: hidden;
}

@media (any-hover: hover) {
  .buttonIconText03 {
    transition: background-color 0.2s;
  }

  .buttonIconText03:hover {
    background-color: #ffff5d;
  }
}