@charset "UTF-8"


/* ----------------------------------
    reset
----------------------------------- */
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
  all: unset;
  display: revert;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 16px;
}



body,
h1{
	font-family: "Zen Maru Gothic", serif;
	color="#3A2516"
}
h2{
	font-family: "PT Sans", sans-serif;
	color="#3A2516"
}
h3,
h4{
	font-family: "Zen Maru Gothic", serif;
	color="#3A2516"
}
h5 {
  margin: 0px;
  padding: 0px;
  font-weight: normal;
}

body {
  color: #3A2516;
  font-family:;
  line-height: 1.3;
  font-size: 16px;
}

ol,
ul {
  list-style: none;
}

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

table {
  border-collapse: collapse;
}

a {
  cursor: pointer;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=esubmit],
button,
select,
textarea {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

/* ----------------------------------
    基本レイアウト
----------------------------------- */
.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
  font-style: normal;
}

b{
	font-family: "Zen Maru Gothic", serif;
	color="#3A2516"
}

.zen-kaku-gothic-new-regular {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}
p{
	font-family: "PT Sans", sans-serif;
	color="#3A2516"
}

font-family: 'Source Han Sans JP', 'Yu Gothic', 'Noto Serif JP', 'Zen Maru Gothic', sans-serif;


#wrapper {
  overflow: hidden;
}

.main_width {
  height: auto;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: auto;
}




/* ----------------------------------
    共通パーツ
----------------------------------- */

.section{
	position: relative;
}



/* TOURISM 観光情報のページ */
/* スライダー全体のスタイル */
.slider {
    position: relative;
    top: -10vw;
    left: 0;
    width: 100%;
    height: 90%; /* 画面の高さ全体を使用 */
    z-index: -1; /* ヘッダーの背面に配置 */
    overflow: hidden;
}

/* スライドコンテナ */
.slides {
    position: relative;
}

/* 各スライドのスタイル */
.slide {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* 最初のスライドを表示 */
.slide.active {
    opacity: 1;
    position: relative;
}

/* 画像のスタイル */
.slide img {
    width: 100%;
    display: block;
}

.tourism01{
	position: absolute;
	max-width: 100%;
	height: auto;
	left: 0vw;
	bottom: -20%;
}

.tourism-logo{
	position: absolute;
 	top: 40%; /* 縦方向の中央 */
  left: 50%; /* 横方向の中央 */
  transform: translate(-50%, -50%); /* 正確に中央に配置 */
  z-index: 2; /* ロゴを動画の前面に表示 */
  width: 25%; /* ロゴのサイズを調整 */
}

.tourism-logo_en{
	position: absolute;
 	top: 40%; /* 縦方向の中央 */
  left: 50%; /* 横方向の中央 */
  transform: translate(-50%, -50%); /* 正確に中央に配置 */
  z-index: 2; /* ロゴを動画の前面に表示 */
  width: 45%; /* ロゴのサイズを調整 */
}

.tourism02{
	position: relative;
	max-width: 90%;
	height: auto;
	top: -25vw;
	padding-left: 5vw;
}
.tourism03{
	position: relative;
	display: flex;
	margin: 0 auto;
	width: 35%;
	top: -60vw;
}

.tourism_en{
	position: relative;
	display: flex;
	margin: 0 auto;
	width: 45%;
	top: -60vw;
}

.tourism-title{
	position: relative;
	text-align: center;
	top: -59vw;
	font-size: 16px;
	line-height: 1.5;
	margin-left: 10%;
	margin-right: 10%;
}
.bordered-table{
	position: relative;
	border: 1px solid #333;
	margin: 0 auto;
	width: 300px;
	height: auto;
	line-height: 16px;
	border-collapse: collapse;
}

.bordered-table th, .bordered-table td{
  	padding-left: 10px;
	padding-right: 10px;
}
.category-tags {
    padding: 0; /* 追加：セル内のパディングをリセット */
    text-align: left; /* カテゴリータグを左揃え */
	padding-bottom: 4px;
}

.category-tags b {
    margin-right: 0px; /* 追加：各タグ間の間隔を統一 */
    display: inline-block; /* インライン要素として表示 */
}
.ichiran{
	position: relative;
	display: grid;
	grid-template-columns: repeat(4,300px);
	gap: 25px 25px;
	justify-content: center;
	align-content: center;
	margin-top: -50vw;
	padding-left: 5%;
	padding-right: 5%;
	overflow: hidden;
}
@media (max-width: 1320px) {
	.ichiran {
		grid-template-columns: repeat(3, 300px);
	}
}
@media (max-width: 1000px) {
	.ichiran {
		grid-template-columns: repeat(2, 300px);
	}
}
@media (max-width: 670px) {
    .ichiran {
        grid-template-columns: repeat(2, calc(50% - 15px)); /* 各列の幅を50%にして、ギャップを考慮 */
        gap: 20px; /* 要素間のギャップを設定 */
    }
    
    .bordered-table {
        width: 100%; /* テーブルの幅を100%にして画面に合わせる */
        height: auto; /* 高さは自動で調整 */
    }
    
    .ichiran-mainpic {
        width: 100%; /* メイン画像を画面幅にフィットさせる */
        height: auto; /* 縦横比を保ちながら画像をリサイズ */
    }
}



.ichiran-mainpic{
	position: relative;
	width: 100%;
	height: 218px;
	object-fit: cover;
	object-position: center;
	padding-top: 10px;
}
.area-tag-shimogo{
	position: absolute;
	background-color: #7F3819;
	font-size: 20px;
	letter-spacing: 1px;
	padding: 8px 15px;
	top: 10px;
	left: 10px;
}
.area-tag-hinoemata{
	position: absolute;
	background-color: #CE952E;
	font-size: 20px;
	letter-spacing: 1px;
	padding: 8px 15px;
	top: 10px;
	left: 10px;
}
.area-tag-tadami{
	position: absolute;
	background-color: #437008;
	font-size: 20px;
	letter-spacing: 1px;
	padding: 8px 15px;
	top: 10px;
	left: 10px;
}
.area-tag-minamiaizu{
	position: absolute;
	background-color: #A9EA63;
	font-size: 20px;
	letter-spacing: 1px;
	padding: 8px 15px;
	top: 10px;
	left: 10px;
}
.ichiran-title{
	position: relative;
	font-size: 18px;
	top: 10px;
	line-height: 1;
}
.ichiran-title2{
	position: relative;
	font-size: 16px;
	top: 10px;
	line-height: 1;
}

.category-tags{
	padding-top: 15px;
	padding-bottom: 5px;
	line-height: 1.3;
}
.category-tag_all{
	position: relative;
	background-color: #FFE200;
	font-size: 10px;
	padding: 2px 12px;
	border-radius: 5px; 
}
.category-tag_spring{
	position: relative;
	background-color: #ED7836;
	font-size: 10px;
	padding: 2px 12px;
	border-radius: 5px; 
}
.category-tag_summer{
	position: relative;
	background-color: #C3D000;
	font-size: 10px;
	padding: 2px 12px;
	border-radius: 5px; 
}
.category-tag_autumn{
	position: relative;
	background-color: #F5AB18;
	font-size: 10px;
	padding: 2px 12px;
	border-radius: 5px; 
}
.category-tag_winter{
	position: relative;
	background-color: #86C9AB;
	font-size: 10px;
	padding: 2px 12px;
	border-radius: 5px; 
}

.category-tag_kanko{
	position: relative;
	background-color: #EDE263;
	font-size: 10px;
	padding: 2px 12px;
	border-radius: 5px; 
}
.category-tag_gurume{
	position: relative;
	background-color: #A9EA63;
	font-size: 10px;
	padding: 2px 12px;
	border-radius: 5px;
}
.category-tag_onsen{
	position: relative;
	background-color: #EA7963;
	font-size: 10px;
	padding: 2px 12px;
	border-radius: 5px; 
}
.category-tag_shukuhaku{
	position: relative;
	background-color: #F5AB18;
	font-size: 10px;
	padding: 2px 12px;
	border-radius: 5px; 
}
.category-tag_taiken{
	position: relative;
	background-color: #7DCCF3;
	font-size: 10px;
	padding: 2px 12px;
	border-radius: 5px; 
}
.category-tag_shizen{
	position: relative;
	background-color: #3ACDD7;
	font-size: 10px;
	padding: 2px 12px;
	border-radius: 5px; 
}
.category-tag_sangyo{
	position: relative;
	background-color: #C0C7E1;
	font-size: 10px;
	padding: 2px 12px;
	border-radius: 5px; 
}
.category-tag_miru{
	position: relative;
	background-color: #ED7836;
	font-size: 10px;
	padding: 2px 12px;
	border-radius: 5px; 
}

.ichiran-subtitle{
	position: relative;
	font-size: 14px;
	letter-spacing: 0px;
	margin-top: 0;
}
.ichiran-more{
	width: 100px;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-right: 10px;
	transition: transform 0.3s ease;
}
.ichiran-more:hover {
    transform: scale(1.1); /* 少し拡大 */
}


.separator03{
	position: relative;
	display: block;
	width: 100%;
  	height: auto;
	padding-top: 10%;
	padding-bottom: 10%;
  	padding-left: 10%;
	padding-right: 10%;
}
.tourism-modelcourse{
	position: relative;
	padding-left: 10%;
	padding-right: 10%;
}
.text-container {
    display: inline-flex;
    align-items: baseline;
    border-bottom: 2px solid black; /* 下線を全体に引く */
	margin-left: 10%;
}


.title_info {
	font-size: 40px;
	font-weight: bold;
    margin: 0 20px 0 0; /* 右にスペースを追加 */
}

.info {
    font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.1vw;
    margin: 0; /* h3のデフォルトマージンを無効化 */
}

@media (max-width: 768px) {
	.title_info {
	font-size: 30px;
	}
	.info {
    font-size: 14px;
	}
}

.top-events{
	position: relative;
	margin-top: 1%;
	padding-left: 10%;
	padding-right: 10%;
	margin-bottom: 10%;
}

.top-events-title01{
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 1.2;
	width: 100%;
	height: auto;
	margin-top: 1%;
	
}


.tourism-modelcourse03{
	position: absolute;
	width: 90%;
	left: 5vw;
	top: -5vw;
	z-index: -1;
}
.borderless-table {
  border: none;
}
.borderless-table td, .borderless-table th {
  border: none;
}
.tourism-modelcourse-pic{
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1vw; /* 画像間に隙間を設ける */
	top: 6vw;
	margin-left: 10%;
	width: 90%;
}
@media (max-width: 970px) {
	.tourism-modelcourse-pic {
		grid-template-columns: repeat(2, 1fr);
		gap: 2vw;
		margin-left: 5%;
		width: 90%;
	}
}
.pic-tm {
  	width: 30vw;
	height: auto;
	aspect-ratio: 3 / 5; /* 画像のアスペクト比を指定 */
	object-fit: cover; /* 画像のアスペクト比を保ちながら枠にフィット */
	overflow: hidden;
	border-radius: 10px; /* 画像の角を丸くする */
}

.course-button{
	width: 20px;
}
.course-title{
	font-size: 16px;
	white-space: nowrap;
	text-align: left; /* テキストを左詰めにする */
}
.course-flag{
	width: 12px;
}
.course-subtitle{
	font-size: 12px;
}
.jump{
	width: 100px;
	margin-top: 5%;
	transition: transform 0.3s ease;
}

.jump:hover {
	transform: scale(1.1);
}


.sakura{
	position: relative;
	padding-left: 10%;
	padding-right: 10%;
}
.tourism-title-sakura{
	position: relative;
	text-align: center;
	font-size: 16px;
	line-height: 1.5;
	margin-left: 10%;
	margin-right: 10%;
	top: -7vw;
}
.tourism-title-sake{
	position: relative;
	text-align: center;
	font-size: 16px;
	line-height: 1.5;
	margin-left: 10%;
	margin-right: 10%;
	top: -5vw;
}
.ichiran-sakura{
	position: relative;
	display: grid;
	grid-template-columns: repeat(4,300px);
	gap: 25px 25px;
	justify-content: center;
	align-content: center;
	padding-left: 5%;
	padding-right: 5%;
	overflow: hidden;
}
@media (max-width: 1320px) {
	.ichiran-sakura {
		grid-template-columns: repeat(3, 300px);
	}
}
@media (max-width: 1000px) {
	.ichiran-sakura {
		grid-template-columns: repeat(2, 300px);
	}
}
@media (max-width: 670px) {
    .ichiran-sakura {
        grid-template-columns: repeat(2, calc(50% - 15px)); /* 各列の幅を50%にして、ギャップを考慮 */
        gap: 20px; /* 要素間のギャップを設定 */
    }
}
