@charset "UTF-8";
/*base*/
:root{
	--col_main: #000000;
	--col_sub: #323378;
	--col_white: #ffffff;
	--col_gray: #efefef;
	}


*{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	}

header, footer, nav, section, article {
	display:block;
	}

html{
	font-size: 100%;
	overflow-y: scroll; 
	scroll-behavior: smooth;
	scroll-padding-top: 65px;
	}

body{
	color: var(--col_main);
	background: var(--col_white);
	font-family: 'Noto Sans JP',sans-serif;
	}

ul li{
	/*list-style-type: none;*/
	list-style-position: outside;
	line-height: 2;
	}

ol li{
	list-style-position: outside;
	margin-left: 1rem;
	line-height: 2;
	}
p,th,td{
	line-height: 2;
	}
figcaption{
	}
h1,h2,h3,h4,h5,h6{
	font-size: 1em;
	}
.sp{
	display: none;
	}

/*fadein*/
.fadeUp{
	animation-name: fadeUpAnime;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	opacity: 0;
	}

@keyframes fadeUpAnime{
	from {
		opacity: 0;
		transform: translateY(50px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.fadein{
	opacity: 0;
	}



/*float*/
.alignleft{
	float: left;
	}

.alignright{
	float: right;
	}

.cl{
	clear: both;
	}

.clearfix{
	overflow: hidden;
	}


img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
 	}

img.alignright {
/*	padding: 4px;
	margin: 0 0 2px 7px;*/
	display: inline;
	 }

img.alignleft {
/*	padding: 4px;
	margin: 0 7px 2px 0;*/
	display: inline;
	}

img.alignnone {
/*	padding: 4px;
	margin: 7px;*/
	display: inline;
	}

/*text-align*/

.txt_alignleft{
	text-align: left;
	}
.txt_alignright{
	text-align: right;
	}
.txt_aligncenter{
	text-align: center;
	}

/*vertical-align*/

.txt_aligntop{
	vertical-align: top;
	}
.txt_alignmiddle{
	vertical-align: middle;
	}
.txt_alignbottom{
	vertical-align: bottom;
	}

/*link*/
a img {
    border-style: none;
	}

a:link{
	color: var(--col_main);
	text-decoration: none;
	}

a:active{
	text-decoration: underline;
	}

a:visited{
	color: var(--col_main);
	}

a:hover{
	text-decoration: underline;
	}

a img:hover{
	opacity: 0.8;
	}

/*inner*/
.inner{
	width: 1025px;
	margin-inline: auto;
	}

/*margin*/
.mgt1rem{
	margin-top: 1rem;
	}

.mgt10{
	margin-top: 10px;
	}

.mgt20{
	margin-top: 20px;
	}

.mgt30{
	margin-top: 30px;
	}

.mgt40{
	margin-top: 40px;
	}


.mgt50{
	margin-top: 50px;
	}

.mgt70{
	margin-top: 70px;
	}

.mgt80{
	margin-top: 80px;
	}
.mgt100{
	margin-top: 100px;
	}
.mgt120{
	margin-top: 120px;
	}

/*fontsize*/
.txt_reset{
	font-size: 1rem;
	}
.txt_12{
	font-size: 0.75rem;
	}
.txt_14{
	font-size: 0.875rem;
	}
.txt_18{
	font-size: 1.125rem;
	}
.txt_20{
	font-size: 1.25rem;
	}
.txt_24{
	font-size: 1.5rem;
	}
.txt_30{
	font-size: 1.875rem;
	}
.txt_36{
	font-size: 2.25rem;
	}
.txt_40{
	font-size: 2.5rem;
	}
.txt_48{
	font-size: 3rem;
	}

/*fontweight*/
.txt_bold{
	font-weight: bold;
	}
.txt_normal{
	font-weight: normal;
	}

/*color*/
.col_sub{
	color: var(--col_sub);
	}

/*background*/
.bg_gray{
	background: var(--col_gray);
	}

/*border*/

/*hr*/
/*li*/
li.disc{
	list-style-type: disc;
	margin-left: 1em;
	}

/*h*/
.h_img_wrap{
	width: 100%;
	padding-bottom: 100px;
	background: var(--col_sub);
	color: var(--col_white);
	position: relative;
	}
.h_img_wrap .h_img{
	display: block;
	width: 100%;
	height: 410px;
	object-fit: cover;
	}
.h_img_wrap .txt_wrap{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: column;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: calc(100% - 100px);
	text-align: center;
	}
.h_img_wrap .txt_wrap .h_img_txt{
	font-size: 3.9375rem;
	letter-spacing: 1rem;
	font-family: "Oswald", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	}

.h_oswald_wrap{
	position: relative;
	text-align: center;
	padding-bottom: 35px;
	color: var(--col_sub);
	}
.h_oswald_wrap:after{
	content: '';
	width: 125px;
	height: 2px;
	background: var(--col_main);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	}
.h_oswald_wrap .h_oswald{
	font-size: 3.75rem;
	letter-spacing: 1rem;
	font-family: "Oswald", sans-serif;
	font-optical-sizing: auto;
	font-weight: 200;
	font-style: normal;
	margin-bottom: 15px;
	}
.h_oswald_wrap .txt_20{
	font-weight: bold;
	}
.h_underline{
	position: relative;
	font-size: 1.25rem;
	color: var(--col_sub);
	text-align: center;
	padding-bottom: 35px;
	}
.h_underline:after{
	content: '';
	width: 125px;
	height: 2px;
	background: var(--col_main);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	}



/*btn*/


/*table*/
table.tbl_01{
	width: 100%;
	border-spacing: 0;
	border-top: 1px solid var(--col_main);
	}
table.tbl_01 > tbody > tr > th,table.tbl_01 > tbody > tr > td{
	padding: 20px 30px;	
	text-align: left;
	/*vertical-align: top;*/
	}
table.tbl_01 > tbody > tr > th{
	border-bottom: 1px solid var(--col_main);
	}
table.tbl_01 > tbody > tr > td{
	border-bottom: 1px solid var(--col_main);
	}
table.nobd{
	width: 100%;
	border-spacing: 0;
	}
table.nobd > tbody > tr > th,table.nobd > tbody > tr > td{
	padding: 10px;	
	text-align: left;
	/*vertical-align: top;*/
	}
table.nobd > tbody > tr > th{
	}
table.nobd > tbody > tr > td{
	}
/*flex*/
.flex{
	display: flex;
	}

.spflex{
	display: flex;
	}

.align_items_start{
	align-items: start;
	}

.align_items_center{
	align-items: center;
	}

.align_items_end{
	align-items: end;
	}

.justify_content_space_between{
	justify-content: space-between;
	}

.justify_content_start{
	justify-content: flex-start;
	}

.justify_content_center{
	justify-content: center;
	}

.flex_wrap{
	flex-wrap: wrap;
	}

/*grid*/
.grid_wrap{
	display: grid;
	}


/*header*/
header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 130px;
	background: var(--col_sub);
	z-index:1000;
	transition:.3s;
	}
header.is_fixed{
	height: 65px;
	}

header .grid_wrap{
	justify-content: space-between;
	align-items: end;
	grid-template-columns: 165px calc(100% - 230px);
	}

header .header_logo a{
	display: block;
	text-decoration: none;
	text-indent: -9999px;
	width: 165px;
	height: 87px;
	margin-top: 27px;
	background: url('../img/logo.png') center center no-repeat;
	background-size: cover;
	}
header.is_fixed .header_logo a{
	margin-top: 5px;
	width: 105px;
	height: 55px;
	}

header .header_logo a:hover{
	text-decoration: none;
	opacity: 0.7;
	}
#hamburger{
	display: none;
	}
.menu_btn{
	display: none;
	}
header .sp_logo,header .menu_close{
	display: none;
	}
.nav_wrap{
	}

header #mainmenu_wrap{
	}
header.is_fixed #mainmenu_wrap{
	}

header #mainmenu_wrap ul.mainmenu{
	width: 100%;
	display: flex;
	list-style-type: none;
	justify-content: space-between;
	}
header #mainmenu_wrap .mainmenu_item{
	padding-bottom: 20px;
	}
header.is_fixed #mainmenu_wrap .mainmenu_item{
	padding-bottom: 15px;
	}
header #mainmenu_wrap a{
	color: var(--col_white);
	position: relative;
	}
header #mainmenu_wrap span{
	color: #999999;
	}
header #mainmenu_wrap a:hover,header #mainmenu_wrap .current a{
	color: #c2b9d1;
	text-decoration: none;
	}
header #mainmenu_wrap a:hover:after,header #mainmenu_wrap .current a:after{
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
	width: 55px;
	height: 1px;
	background: #c2b9d1;
	}

header #mainmenu_wrap .sp_menu{
	display: none;
	}

/*contents*/
main{
	padding-top:130px;
	}

/*footer*/
footer{
	color: var(--col_white);
	padding: 168px 0 90px;
	background: url('../img/bg_footer.png') top right no-repeat var(--col_sub);
	background-size: contain;
	}
footer .txt_wrap{
	display: flex;
	align-items: end;
	gap: 30px;
	}
footer .footer_logo{
	display: block;
	text-decoration: none;
	text-indent: -9999px;
	width: 165px;
	height: 87px;
	background: url('../img/logo.png') center center no-repeat;
	background-size: cover;
	}
footer #footermenu_wrap ul.footermenu{
	display: flex;
	list-style-type: none;
	justify-content: space-between;
	margin: 80px 25px 0;
	}
footer #footermenu_wrap ul.footermenu li{
	}
footer #footermenu_wrap a{
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--col_white);
	position: relative;
	}
footer #footermenu_wrap span{
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999999;
	position: relative;
	}
footer #footermenu_wrap a:hover{
	color: #c2b9d1;
	text-decoration: none;
	}
footer #footermenu_wrap a:hover:after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 55px;
	height: 1px;
	background: #c2b9d1;
	}

/* Media Queries
==========================================================================*/
@media screen and (max-width:1335px) {
html {
	-webkit-text-size-adjust: none;
	}
}
@media screen and (max-width:1040px) {
.inner{
	width: calc(100% - 80px);
	}
header .grid_wrap{
	grid-template-columns: 105px calc(100% - 170px);
	}
header .header_logo a{
	margin-top: 59px;
	width: 105px;
	height: 55px;
	}

footer #footermenu_wrap ul.footermenu{
	width: calc(100% - 80px);
	}
}
@media screen and (max-width:767px) {
html {
	scroll-padding-top: 35px;
	font-size: 87.5%;
	}
body{
	overflow-x: hidden;
	}
.inner{
	width: calc(100% - 36px);
	}
img {
	max-width: 100%;
	height: auto;
     }

/*margin*/
.mgt10{
	margin-top: 5px;
	}

.mgt20{
	margin-top: 10px;
	}

.mgt30{
	margin-top: 15px;
	}

.mgt40{
	margin-top: 20px;
	}

.mgt50{
	margin-top: 15px;
	}
.mgt70{
	margin-top: 35px;
	}

.mgt80{
	margin-top: 40px;
	}

.mgt100{
	margin-top: 50px;
	}
.mgt120{
	margin-top: 45px;
	}

/*fontsize*/
.txt_18{
	font-size: 1rem;
	}
.txt_20{
	font-size: 1rem;
	}
.txt_24{
	font-size: 1rem;
	}
.txt_30{
	font-size: 1rem;
	}

.flex{
	display: block;
	}


/*hide*/
.pc{
	display: none;
	}
.sp{
	display: block;
	}



/*h*/
.h_img_wrap{
	padding-bottom: 38px;
	}
.h_img_wrap .h_img{
	height: 200px;
	}
.h_img_wrap .txt_wrap{
	height: calc(100% - 38px);
	}
.h_img_wrap .txt_wrap .h_img_txt{
	font-size: 1.857rem;
	}

.h_oswald_wrap{
	padding-bottom: 12px;
	}
.h_oswald_wrap:after{
	width: 60px;
	height: 1px;
	}
.h_oswald_wrap .h_oswald{
	font-size: 1.785rem;
	font-weight: 400;
	margin-bottom: 5px;
	}

.h_underline{
	font-size: 1rem;
	padding-bottom: 12px;
	}
.h_underline:after{
	width: 60px;
	height: 1px;
	}



/*btn*/
/*hr*/

/*table*/
table.tbl_01 > tbody > tr > th,table.tbl_01 > tbody > tr > td{
	padding: 10px;	
	}
table.tbl_03 > tbody > tr > th,table.tbl_03 > tbody > tr > td{
	padding: 10px;	
	}

table.tbl_04 > tbody > tr > th,table.tbl_04 > tbody > tr > td{
	padding: 10px;	
	}
table.tbl_sp > tbody > tr{
	display: block;
	}
table.tbl_sp > tbody > tr > th,table.tbl_sp > tbody > tr > td{
	display: list-item;
	list-style-type: none;
	width: auto;
	word-break: break-all;
	}
table.tbl_sp > tbody > tr > th{
	border-bottom: none;
	}

/*border*/

/*header*/
header{
	width: 100%;
	height: 35px;
	position: fixed;
	z-index: 11;
	}
header .grid_wrap{
	display: block;
	height: auto;
	width: 100%;
	}
header .header_logo a{
	width: 36px;
	height: 19px;
	background-size: 36px 19px;
	margin: 8px 30px;
	}
header .header_logo a:hover{
	text-decoration: none;
	opacity: 0.7;
	}

.menu_btn{
	display: block;
	text-decoration: none;
	text-indent: -9999px;
	position: absolute;
	width: 27px;
	height: 27px;
	top: 4px;
	right: 17px;
	z-index: 100;
	cursor: pointer;
	}

.menu_btn:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 27px;
	height: 27px;
	background: url('../img/menu_open.svg') center center no-repeat;
	background-size: 27px 19px;
	}


#hamburger:checked + .menu_btn:before{
	border-radius: 2px;
	background: url('../img/menu_close.svg') center center no-repeat var(--col_sub);
	background-size: 27px 27px;
	}

.nav_wrap{
	visibility: hidden;
	display: block;
	height: auto;
	margin-top: 0;
	padding-right: 0;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99;
	overflow: auto;
	background: rgba(255,255,255,0.8);
	scrollbar-width: none;
	opacity: 0;
	transition: 0.2s opacity;
	border-top: 1px solid #d0d9df;
	}

#hamburger:checked ~ .nav_wrap{
	visibility: visible;
	opacity: 1;
	}
header .sp_logo{
	display: block;
	text-decoration: none;
	text-indent: -9999px;
	width: 133px;
	height: 69px;
	margin: 65px auto 25px;
	background: url('../img/logo_sp.png') center center no-repeat;
	background-size: cover;
	}
header #mainmenu_wrap{
	margin-top: 0;
	}
header #mainmenu_wrap ul.mainmenu{
	display: list-item;
	}
header #mainmenu_wrap .mainmenu_item{
	position: static;
	padding-bottom: 10px;
	}

header #mainmenu_wrap a{
	display: block;
	width: 100%;
	padding: 5px;
	color: var(--col_main);
	margin-left: 0;
	font-size: 1rem;
	font-weight: 500;
	}

header #mainmenu_wrap .mainmenu_item:has(.sp_menu) a{
	padding-bottom: 5px;
	}

header #mainmenu_wrap .mainmenu_item a{
	text-align: center;
	}
header #mainmenu_wrap .mainmenu_item span{
	display: block;
	width: 100%;
	padding: 5px;
	margin-left: 0;
	font-size: 1rem;
	font-weight: 500;
	text-align: center;
	}

header #mainmenu_wrap a:hover,header #mainmenu_wrap .current a{
	color: var(--col_main);
	}
header #mainmenu_wrap a:hover:after,header #mainmenu_wrap .current a:after{
	content: normal;
	}

header #mainmenu_wrap .sp_menu{
	display: block;
	}
header #mainmenu_wrap .sp_menu a{
	display: block;
	width: 100%;
	padding: 0px;
	color: var(--col_main);
	margin-left: 0;
	font-size: 0.857rem;
	font-weight: 500;
	}

header .menu_close{
	display: flex block;
	align-items: center;
	justify-content: center;
	width: 110px;
	height: 30px;
	margin: 35px auto 0;
	border-radius: 12px;
	border: 1px solid #a8a8a8;
	color: #a8a8a8;
	background: var(--col_white);
	}

/*main*/
main{
	padding-top: 35px;
	}

/*footer*/
footer{
	padding: 30px 0 25px;
	background-position: bottom center;
	}
footer .footer_logo{
	width: 120px;
	height: 63px;
	}
footer .txt_wrap{
	flex-flow: column;
	align-items: center;
	gap: 20px;
	text-align: center;
	}
footer .txt_wrap a:link{
	color: var(--col_white);
	}
footer .mgt20{
	margin-top: 20px;
	}

footer #footermenu_wrap ul.footermenu{
	display: none;
	}
}

@media print{
}