@charset "UTF-8";
/*
Theme Name; demo
*/

/* 基本 */
/*:root {
	--v-space: clamp(90px, 9vw, 120px);
}*/

body {
	margin: 0;
	padding: 0;
	color: #222222;
	font-family: "Noto Sans JP", sans-serif;
}

h1, h2, h3, h4, h5, h6, p, figure, ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

p {
	line-height: 1.8;
}

dl, dt, dd{
	padding: 0;
	margin: 0;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	filter: brightness(90%) contrast(120%);
}

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

.space_t_M{
	padding-top: 24px;
}

.space_t_S{
	padding-top: 16px;
}

.txt_L{
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.2;
}

.txt_LL{/*20250914追記*/
	font-size: 2.5rem;
	font-weight: bold;
	/* line-height: 1.2; */
}

.txt_ML{
	font-size: 1.2rem;
}

.txt_M{
	font-size: 1.1rem;
}

.txt_S{
	font-size: .8rem;
}

.txt_SS{/*20250826追記*/
	font-size: .7rem;
}

.txt_bold{/*20250914追記*/
	font-weight: bold;
}

.txt_blue{/*20250914追記*/
	color: #005b92;
}

.txt_center{
	text-align: center;
}

.txt_right{
	text-align: right;
}

.txt_left{
	text-align: left;
}

.sp{
	display: none;
}

.pc{
	display: block;
}

.mt_24{
	margin-top: 24px;
}

.mt_16{
	margin-top: 16px;
}

.sub_tit{
	background-color: #005b92;
	color: #fff;
	padding: 8px 16px;
	font-size: 1rem;
	font-weight: normal;
	margin-bottom: 8px;
}

.sub_tit_news{
	background-color: #005b92;
	color: #fff;
	padding: 8px 16px;
	font-size: 1rem;
	font-weight: normal;
	margin-bottom: 8px;
	display: flex;
	justify-content: space-between;
}

.news_link{
	background-color: #fff;
	color: #005b92;
	padding: 0 .8rem;
	text-align: center;
	font-weight: bold;
}

@media (max-width: 767px) {
	.txt_L{
		font-size: 1rem;
	}

	.txt_ML{
	font-size: 1.1rem;
	}

	.txt_M{
	font-size: 1rem;
	}

	.txt_S{
	font-size: .8rem;
	}

	.sp{
	display: block;
	}

	.pc{
	display: none;
}
}

/*--------------------
ヘッダー
--------------------*/
.header {
	/*height: 40px;
	width: 92%;
	margin: 0 auto;*/
}

.header_container {
	display: flex;
	justify-content: space-between;
	/*justify-content: right;*/
	align-items: center;
	height: 100%;
	/*padding-top: .5rem;*/
	/*padding-top: 1.4rem;*/
	padding-top: 24px;
}

.logo img{
	/*width: 48%;*//*20250722修正*/
	width: 32%;
	display: block;
	margin: 24px auto;
}

/* ナビゲーションメニュー：モバイル ここから*/

/* ナビゲーションボタン */
.navbtn {
	padding: 0;
	outline: none;
	border: none;
	background: transparent;
	cursor: pointer;
	color: #005b92;
	font-size: 30px;
}

.open .navbtn {
	z-index: 110;
	color: #ffffff;
}

.navbtn .fa-bars {
	display: revert;
}
.open .navbtn .fa-bars {
	display: none;
}

.navbtn .fa-times {
	display: none;
}
.open .navbtn .fa-times {
	display: revert;
}

@media (min-width: 768px) {
	.navbtn {
		display: none;
	}
}

@media (max-width: 767px) {
	.header{
		width: 90%;
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
	}

	.logo img{
		/*width: 90%;*/
		width: 100%;/*20250617修正*/
		margin: 24px 0;
	}

	.nav {
		position: fixed;
		inset: 0 -100% 0 100%;
		z-index: 100;
		/*background-color: #4e483ae6;*/
		background-color: #005b92;
		opacity: 96%;
		transition: transform 0.3s;
		/*padding-top: 2rem;*//*これが無いと上のテキストが表示されない*/
		padding-top: 4rem;/*20250826追記*/
		padding-bottom: .5rem;/*20250826追記*/
		/*padding-bottom: 2rem;*/
		/*height: 100%;*/
		font-size: .8rem;/*20250826追記*/
	}

	.nav img{/*20250529追記*/
		display: block;
		width: 80%;
		margin: 8px auto;
	}

	.open .nav {
		transform: translate(-100%, 0);
	}

	.open body {
		position: fixed;
		overflow: hidden;
	}

	ul.nav_menu {
		display: flex;
		flex-direction: column;
		/*justify-content: center;*//*20250826追記　これがあると上が見切れてしまう（縦中央で表示されるから？）*/
		/*align-items: center;*//*リストの入れ子にするとなぜか中央からずれていく*/
		height: 100%;
		/*gap: 24px;*/
		/*gap: 16px;*//*20250826追記*/
		gap: 4px;
		color: #ffffff;
		height: 100%;
		overflow-y: scroll;
		/*font-size: 1.2rem;*/
		/*width: 64%;*//*20250617追記*/
		width: 80%;/*20250826修正*/
		margin: 0 auto;/*20250617追記*/
	}

	.nav_pc{
		display: none;
	}

	.nav_sp_tit{/*20250617追記*/
		border-bottom: dotted 1px #fff;
		padding-bottom: 4px;
		margin-bottom: 8px;
		/*background-color: #fff;
		color: #005b92;
		text-align: center;
		padding: 4px 8px;
		font-weight: bold;
		margin-bottom: 8px;
		display: flex;
		justify-content: space-between;*/
	}

	.nav_sp_tit_home{/*20250617追記*/
		/*border: #fff 1px solid;
		color: #fff;*/
		background-color: #b9dbf0;
		color: #005b92;
		text-align: center;
		/*padding: 4px 8px;*//*20250826修正*/
		padding: 4px 8px;/*20250826追記*/
		font-weight: bold;
		margin-bottom: 8px;
		display: flex;
		justify-content: space-between;
	}

	.nav_sp_subtit{/*20250617追記*/
		display: flex;
		justify-content: space-between;
	}

	.menu_arrow img{/*20250617追記*/
		width: 8px;
		display: block;
	}

	ul.nav_submenu li{/*20250617追記*/
		/*margin-bottom: 8px;*//*20250826修正*/
		/*margin-bottom: 4px;*//*20250826追記*/
	}

	.sp_gray{/*20250828追記*/
		color: #adadad;
	}

}

/* ナビゲーションメニュー：モバイル ここまで*/

/*ナビゲーションメニュー：PC ここから*/

.gnavi_pc{
	width: 100%;
	background-color: #005b92;
}

.gnavi__wrap {
    max-width: 1280px;
    margin: 0 auto;
	background-color: #005b92;
}
.gnavi__lists {
    display: flex;
}
.gnavi__list {
    /*width: 20%;*/
	width: calc(100% / 4);
    /*height: 60px;*//*20250722修正*/
	height: 40px;
    position: relative;
    transition: all .3s;
}
.gnavi__list:last-child {/*20250612追記*/
	border-right: 1px solid #fff;
}
.gnavi__list:first-child {/*20250612追記*/
	border-left: 1px solid #fff;
}
.gnavi__list:hover {
    background-color: #70aace;
}
.gnavi__list:not(:first-child)::before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s;
}

.gnavi__list:hover::before {
    background-color: #0071BB;
}
.gnavi__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    letter-spacing: 0.05em;
    font-weight: 600;
    transition: all .3s;
}
.gnavi__list:hover a {
    /*color: #fff;*/
	color: #005b92;/*ホバーした時に出てくるメニューの文字色*/
	/*background-color: #ccc;*//*20250828追記*/
}

.gnavi__list:hover a.gnav_tit{/*20250612追記 ドロップダウンした時の一番上のボタンの文字色*/
	color: #fff;
	/*background-color: #0071BB;*//*20250828追記*/
}

/*ここからドロップダウン*/

.dropdown__lists {
    display: none;/*デフォルトでは非表示の状態にしておく*/
    width: 100%;
    position: absolute;
    /*top: 60px;*//*20250722修正*/
	top: 40px;
    left: 0;
}
.gnavi__list:hover .dropdown__lists {
    display: block;/*Gナビメニューにホバーしたら表示*/
}
.dropdown__list {
    /*background-color: #004d80;*/
	background-color: #fff;
    /*height: 60px;*//*20250722修正*/
	height: 40px;
    transition: all .3s;
    position: relative;
}
.dropdown__list:not(:first-child)::before{
    content: "";
    width: 100%;
    height: 1px;
    background-color: #3492d1;
    position: absolute;
    top: 0;
    left: 0;
}
.dropdown__list:hover {
    /*background-color: #003558;*/
	background-color: #cde7f7;
}
.dropdown__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    position: relative;
}
.dropdown__list a::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    /*border-top: 2px solid #fff;
    border-left: 2px solid #fff;*//*矢印の色*/
	border-top: 2px solid #005b92;
    border-left: 2px solid #005b92;
    transform: rotate(135deg);
    position: absolute;
    right: 15px;
    top: calc(50% - 5px);
}

/*必須ではないがアニメーション*/

.dropdown__lists {
    visibility: hidden;/*デフォルトでは非表示の状態にしておく*/
    opacity: 0;/*不透明度0*/
    transition: all .3s;/*表示の変化を0.3秒に指定*/
    width: 100%;
    position: absolute;
    /*top: 60px;*//*20250722修正*/
	top: 40px;
    left: 0;
}
.gnavi__list:hover .dropdown__lists {
    visibility: visible;/*Gナビメニューにホバーしたら表示*/
    opacity: 1;/*不透明度1*/
}

.gnavi__list .dropdown__lists .gray {/*20250826・0828追記*/
	/*background-color: #fcfcfc;*/
	background-color: #ccc;
	color: #888;
	display: flex;
    justify-content: center;
    align-items: center;
}

.gnavi__list .dropdown__lists .on {/*20250828追記*/
	background-color: #005b92;
	color: #fff;
	display: flex;
    justify-content: center;
    align-items: center;
}

/*ナビゲーションメニュー：PC ここまで*/

/*--------------------
フッター
--------------------*/

.footer{
	max-width: 1280px;
	margin: 0 auto;
}

.footer_base{
	background: rgba(255,255,255,0.8);
	padding: 32px 0;
	/*margin: 64px auto 0 auto;*//*20250624追記*/
}

.footer_cont{
	display: flex;
	justify-content:space-between;
}

.footer_child{
	/*width: calc(100% / 4);*//*20250826修正*/
	/* width: calc(100% / 3); */
	width: calc(100% / 3);
	padding: 8px 16px;
	box-sizing: border-box;
}

.subpage_footer_base{/*20250619追記*/
	background: rgba(255,255,255,0.8);
	padding: 32px 0;
}

.video_box{/*20250826追記*/
	width: 100%;
  	/*margin: 32px auto 0 auto;*/
  	display: block;
}

@media (max-width: 767px) {
	.footer_cont{
		flex-direction: column;
	}

	.footer_child{
		/*width: 100%;*/
		width: 80%;
		padding: 0 0 16px 0;
		margin: 0 auto;
	}
	.video_box{/*20250826追記*/
		width: 100%;
  		margin: 24px auto 0 auto;
  		display: block;
	}
}

/*バナー*/
ul.bnr li{
	margin-bottom: 16px;
}

/*お知らせ*/

.news .news_line{
		padding-bottom: 8px;
		border-bottom: 1px dashed #005b92;
}

@media (max-width: 767px) {
		.news{
			font-size: .8rem;
		}
} 

/*コピーライト*/

.copyright{
	font-size: .8rem;
	color: #fff;
	background-color: #005b92;
	padding: 16px 0;
	text-align: center;
}

@media (max-width: 767px) {
	.copyright{
	padding: 8px 0;
	font-size: .6rem;
	}
}

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

/*メインビジュアル*/

.mv_area{
	background-image: url(../images/mv2.jpg);
	background-repeat:no-repeat;
	background-size: cover;
	/*background-size:contain;*/
	/*height: 1080px;*//*高さ調整の方法他に無いか？*/
}

.mv_txt img{
	/*width: 56%;*//*20250722修正*/
	/*width: 48%;*/
	width: 40%;
	display: block;
	margin-left: auto;
	/*padding: 80px 120px 40px 0;*//*20250722修正*/
	/*padding: 40px 200px 40px 0;*/
	padding: 2rem 16rem 2rem 0;
	/*height: 56vh;
	width: 56vw;*//*テキストの画像サイズを画面幅に合わせて変える(ファーストビューに収まるように)*/
	/*↑文字が若干横に伸びた感じになり、画面を縮めていくとギュッとなってしまう。調整が難しい*/
}

@media (max-width: 1280px) {/*タブレットで分岐*//*20250722追記*/
.mv_txt img{
	width: 40%;
	display: block;
	margin-left: auto;
	padding: 2rem 8rem 2rem 0;
}
}

@media (max-width: 767px) {
.mv_area{
	background-image: url(../images/sp_mv.png);
	background-repeat:no-repeat;
	/*background-size: cover;*/
	background-size: contain;/*20250624追記*/
	height: 100%;
	/*background-position: center;*//*20250624修正*/
}


.mv_txt img{
	/*width: 96%;*//*20250624修正*/
	width: 72%;
	/*padding: 32px 0;*//*20250619修正*/
	/*padding: 80px 0;*//*20250624修正*/
	padding: 32px 16px 240px 0;
	/*padding: 120px 0;*//*20250624修正*/
	}
}

/*---------------------
下層ページ
----------------------*/

.subpage_tit{
	border-top: #005b92 solid 6px;
	border-bottom: #005b92 solid 6px;
	padding: 1.2rem 0;
	color: #005b92;
	text-align: center;
	font-size: 1.8rem;
	margin-bottom: 2rem;
}

.subpage_catchcopy{
	text-align: center;
}

.subpage_catchcopy img{/*20250914修正*/
	display: inline-block;
	width: 60%;
	margin: 1rem auto;
}

.container{
	max-width: 1280px;
	margin: 0 auto 4rem auto;
}

.contents{
	background-color: #fff;
	padding-bottom: 4rem;/*20250826修正*/
	/*padding: 4rem 8rem;*//*20250826追記*/
	/*box-sizing: border-box;*/
	width: 96%;
	margin: 0 auto;
}

.tbl{
	/*width: 64%;*/
	width: 80%;
	margin: 0 auto;
	border-collapse: collapse;
  	border-spacing: 0;
  	table-layout: fixed;
}

.tbl tr,th,td{
  border-bottom:solid 1px #fff;
  padding: 10px 16px;
  box-sizing: border-box;
  font-weight: bold;
}

.tbl th{
	width: 20%;
	text-align: left;
	font-weight: normal;
	background-color: #005b92;
	color: #fff;
	text-align: center;
}

.tbl td{
	width: 80%;
	background-color: #ececec;
}

.subpage_mv_area{/*20250619追記*/
	background-image: url(../images/mv.jpg);
	background-repeat:no-repeat;
	background-size: cover;
}

.base{/*20250826追記*/
	/*padding: 0 4rem;*/
	width: 80%;
	margin: 0 auto;
}

.base p{/*20250908追記*/
	margin-bottom: 30px;
}

.tbl_schedule tr:nth-child(1) {/*20250908追記*/
	color: #fff;
	text-align: center;
}

.tbl_schedule tr:first-child>* {/*20250908追記*/
	background-color: #005b92;
	text-align: center;
	border-bottom:none;
}

.tbl_schedule{/*20250908追記*/
	/*width: 64%;*/
	width: 80%;
	margin: 0 auto;
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: fixed;
}


.tbl_schedule th{/*20250908追記*/
	width: 50%;
	font-weight: bold;
	text-align: center;
	border-right:solid 1px #fff;
	border-bottom:solid 1px #005b92;
	background-color: #ececec;
}

.tbl_schedule td{/*20250908追記*/
	width: 50%;
	text-align: center;
	border-bottom:solid 1px #005b92;
	background-color: #fff;
}

.sponsorship_contact {/*20250911追記*/
	width: 80%;
	margin: 0 auto;
	text-align: center;
	margin-top: 50px;
}

.sponsorship_contact p {/*20250911追記*/
	/* font-weight: bold; */
	margin-bottom: 0%;
}

.sponsorship_contact_inner {/*20250911追記*/
	width: 50%;
	margin: 0 auto;
	text-align: center;
	margin-top: 30px;
	border: solid 3px #005b92;
	padding-top: 20px;
}

.sponsorship_contact_title {
	font-weight: bold;
}

@media (max-width: 767px) {

.subpage_tit{
	font-size: 1.2rem;
}	

.tbl{
	/*width: 80%;*//*20250826修正*/
	width: 100%;
}	

.tbl th{
	display: inline-block;
    width: 100%;
    float: left;
}

.tbl td{
	display: inline-block;
    width: 100%;
    float: left;
}

.tbl{
	font-size: .8rem;
	}

.subpage_catchcopy img{
	width: 96%;
	margin: 1rem auto;
}

.subpage_mv_area{/*20250916追記*/
	background-image: url(../images/mv.jpg);
	background-repeat:no-repeat;
	/*background-size: cover;*/
	/* background-size: auto; */
	/*height: 100%;*/
	background-position: center;
}

.contents{/*20250826追記*/
	box-sizing: border-box;
	width: 100%;
}

.base{/*20250826追記*/
	/*padding: 0 2rem;
	box-sizing: border-box;*/
	/*width: 100%;*/
	width: 90%;
	font-size: .8rem;
}

}

/*会長挨拶*/

.photo img{
	display: block;
	/*width: 16%;*//*20250828修正*/
	width: 100%;
	margin-right: 0;
	margin-left: auto;
}

.block_right{
	/*margin: 4rem 0 4rem auto;*//*20250828修正*/
	margin-bottom: 2rem;
	text-align: right;
}

.message{
	/*font-size: 1.2rem;*//*20250828修正*/
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.2;
	padding-top: 24px;
}

.greeting_base{/*20250828追記*/
	display: flex;
	justify-content:space-between;
	height: auto;
}

.greeting_tit{/*20250828追記*/
	width: 50%;
}

.chairman{/*20250828追記*/
	/*width: 50%;*/
	width: 100%;
}

.chairman_box{/*20250828追記*/
	display: flex;
	justify-content: flex-end;
	align-items: end;
}

.chairman_txt{/*20250828追記*/
	width: 80%;
	margin-right: 2rem;
	font-size: 1.1rem;
}

.underline {
	text-decoration: underline;
}

.chairman_photo{/*20250828追記*/
	width: 20%;
}

/* 宿泊のご案内 */

.stay_inner {/*20250916追記*/
	/* width: 80%; */
	margin: 50px auto 30px auto;
	margin-top: ;
	/* border: solid 3px #dd0000; */
	background-color: #d9ecf8;
	padding: 40px 40px 30px 40px;
	border-radius: 30px;
}

.stay_inner p{/*20250916追記*/
	font-weight: bold;
	margin-bottom: 15px;
}

.stay_icon_rakuten {/*20250914追記*/
	width: 300px;
	margin-bottom: 30px;
}

.stay_icon_jal1 {/*20250914追記*/
	margin-bottom: 30px;
}

.stay_icon_jal_sp {/*20250914追記*/
	display: none;
}

.stay_icon_jal_pc {/*20250914追記*/
	width: 60%;
	margin-bottom: 30px;

}

.stay_underline {
	border-bottom: solid 3px #87CEFA;
}

/* フッター */


.footer_inner{/*20250914追記*/
	margin: 8px 16px 30px 16px;
	padding: 20px 10%;
	box-sizing: border-box;
	/* border: solid 1px #005b92 ; */
	background-color: #fff;
}

.footer_inner p {/*20250914追記*/
	margin: 10px 0;
	font-weight: bold;
	color: #005b92;
}

.footer_inner span{/*20250914追記*/
	border-bottom: solid 3px #87CEFA;
}

.countdown {/*20250914追記*/
	background: radial-gradient(rgb(169, 214, 255), #005b92);
	text-align: center;
	color: #fff;
	margin-top: 50px;
	padding: 5px 20px 10px 20px;
	border-radius: 20px;
}

.countdown p {/*20250914追記*/
margin: 2px;
}

.countdown_title {/*20250914追記*/
	background-color: #fff;
	color: #005b92;
	border-radius: 999px;
	padding: 3px 0;
}


@media (max-width: 767px) {

.photo img{
	margin: 0 auto;
	width: 40%;
}
.block_right{
		margin: 0 0 .8rem 0;
		text-align: center;
	}

.message{
	font-size: 1rem;
	text-align: center;
	padding-top: 0;
	padding-bottom: 2rem;
}

.chairman_box{/*20250828追記*/
	flex-direction: column-reverse;
}

.chairman_txt{/*20250828追記*/
	width: 100%;
	margin-right: 0;
	margin-bottom: .8rem;
	font-size: .9rem;
}

.chairman_photo{/*20250828追記*/
	width: 100%;
}

.tbl_schedule{/*20250908追記*/
	/*width: 64%;*/
	width: 100%;
}

.sponsorship_contact_inner {/*20250911追記*/
	width: 100%;
}

.stay_icon_jal_sp {/*20250914追記*/
	display: block;
	margin-bottom: 30px;
}

.stay_icon_jal_pc {/*20250914追記*/
	display: none;
}	

.footer_inner p {/*20250914追記*/
	font-size: 0.9rem;
}

}