@charset "UTF-8";
/* CSS Document */

:root {
  --header-h: 120px;
}

@media (max-width: 768px) {
  :root {
    --header-h: 80px;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}
body{
	color: #1a1a1a;
	background: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	letter-spacing: 0.12em;
}
p{
	line-height: 180%;
	font-size: 1rem;
}
a{
	text-decoration-line: none;
}
a:link{
	text-decoration: none;
}
ul li{
	list-style: none;
}
h2,h3,h4,h5,th{
	font-weight: 400;
}
/* 幅調整　*/
.w2560{
	width: 100%;
	max-width: 2560px;
	margin-inline: auto;
	overflow: clip
}
.w1920{
	width: 100%;
	max-width: 1920px;
	margin-inline: auto;
	overflow: clip
}
.w1600{
	width: calc(100% - 60px);
	max-width: 1600px;
	margin-inline: auto;
	position: relative;
	z-index: 8;
}
.w1300{
	width: 100%;
	max-width: 1300px;
	margin-inline: auto;
}
.w960{
	width: 100%;
	max-width: 960px;
	margin-inline: auto;
}

.contents{
	padding: 70px 0;
}
.wrap80{
	padding: 10px 10%;
}
.wrap_center{
	width: fit-content;
	margin-inline: auto;
}
@media (max-width: 960px){
	.wrap80{
		padding: 10px 5%;
	}
}
@media (max-width: 450px){
	.w1600{
		width: calc(100% - 30px);
	}
	.wrap80{
		padding: 10px 0;
	}
}

/* ボタン　================================================== */
.btn a{
	display: inline-block;
	min-width: 250px;
	color: #fff;
	font-weight: 600;
	font-size: 1rem;
    background: linear-gradient(to left, #0d54ac 0%, #0d54ac 50%, #fff 50%, #fff 100%);
    background-repeat: no-repeat;
    background-position: 100% 0;
    background-size: 200% auto;
	padding: 21px 2.5em;
	border: solid 2px #0d54ac;
	border-radius: 100px;
	letter-spacing: .1em;
	text-decoration: none;
	text-align: center;
	transition: all .5s ease 0s;
	line-height: 1;
}
.btn a i{
	color: #ffd900;
}
.btn a:hover{
	background-position: 0 0;
	color: #0d54ac;
}
.btn a .icon{
	padding-right: 25px;
}

/* table ============================================================ */
.line02 table {
    border-spacing:0;
    margin: 0 auto;
    padding: 0;
    width:100%;
}
.line02 table th{
	border-bottom: solid 3px #ffd900;
	padding: 1em;
	width: 25%;
	min-width: 10em;
	font-weight: 600;
}
.line02 table td{
	border-bottom: solid 3px #ccc;
	padding: 1em;
}

.line02 dl{
	margin-bottom: 0.5em;
	font-size: 0.9rem;
	display: flex;
}
.line02 dl dt{
	width: 11em;
}
.line02 dl dd{
	
}

.line02 ul li{
	padding-left: 1em;
	text-indent: -1em;
	margin-bottom: 0.5em;
}
@media (max-width: 768px){
	.line02 table th{
		display: block;
		width: 100%;
		border-bottom: none;
		text-align: left;
		padding-bottom: 0;
	}
	.line02 table td{
		display: block;
		width: 100%;
		border-bottom: solid 3px #ffd900;
	}
	.line02 dl{
		flex-direction: column;
		align-self: flex-start;
		justify-content: flex-start;
	}
}
/* simple ============================== */
.simple01 table {
	border-collapse: collapse;
    border-spacing: 5px;
    margin: 0 auto;
    padding: 0;
    width:100%;
	
}
.simple01 table tr{
	border-bottom: solid 1px #ccc;
}
.simple01 table th,.simple01 table td{
	padding: 1.5em 1em;
	text-align: left;
	vertical-align: top;
}
.simple01 table th{
	color: #0d54ac;
	font-weight: 600;
	width: 20%;
	min-width: 6em;
}
@media (max-width: 960px){
	.simple01 table th,.simple01 table td{
		display: block;
		width: 100%;
	}
	.simple01 table th{
		padding-bottom: 0;
	}
}

/* stripes ============================== */

.stripes table {
	border-collapse: collapse;
    border-spacing: 5px;
    margin: 0 auto;
    padding: 0;
    width:100%;
}
.stripes table tr:nth-child(odd){
	background:#eee;
}
.stripes table th,.stripes table td{
	padding: 0.5em;
}


/* リスト ============================== */
ul.border01{
	font-size: 1em;
}
ul.border01 li{
	border-bottom: dotted 1px #a0d8ef;
	text-indent: -1em;
	padding-left: 1rem;
	margin-bottom: 1rem;
}
ul.border01 li i{
	color: #0d54ac;
	display: inline;
}
ul.border01.txt_large{
	font-size: clamp(1rem, 0.91rem + 0.32vw, 1.2rem);
}
.dl_border01{
	padding: 1rem;
}
.dl_border01 dl{
	display: flex;
	align-items: flex-start;
	border-bottom: solid 1px #a0d8ef;
}
.dl_border01 dl dt{
	width: 20%;
	min-width: 6em;
	padding: 1em 0 1em 1em;
	font-weight: 700;
	white-space: nowrap;
}
.dl_border01 dl dt i{
	color: #a0d8ef;
	display: inline;
}
.dl_border01 dl dd{
	padding: 1em;
}
@media (max-width: 960px){
	.dl_border01 dl{
		display: block;
		width: 100%;
	}
	.dl_border01 dl dt{
		width: 100%;
		padding: 1em 1em 0.5em;
	}
	.dl_border01 dl dd{
		width: 100%;
		padding:0.5em 1em 1em;
	}
}
.border02{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 15px;
}
.border02 li{
	font-size: 1.2rem;
	font-family: "RocknRoll One", sans-serif;
	color: #0d54ac;
	border-bottom: dashed 1px;
}


/* 画像調整============================================================ */
.img_3-2{
	aspect-ratio: 3 / 2;
	object-fit: cover;
}
.img_4-3{
	aspect-ratio: 4 / 3;
	object-fit: cover;
}
.img_16-9{
	aspect-ratio: 16 / 9;
	object-fit: cover;
}
.img_1-1{
	aspect-ratio: 1 / 1;
	object-fit: cover;
}
/* 角丸============================================================ */
.bdr15{
	border-radius: 15px;
}
.bdr30{
	border-radius: 30px;
}
.bdr50{
	border-radius: 50px;
}
.bdr_p50{
	border-radius: 50%;
}
/* 余白調整============================================================ */
.h30{
	height: 30px;
}
.h50{
	height: 50px;
}
.h70{
	height: 70px;
}
.h100{
	height: 100px;
}
.mt15{
	margin-top: 15px;
}
.mt30{
	margin-top: 30px;
}
.mt50{
	margin-top: 50px;
}
.mt70{
	margin-top: 70px;
}
.mt100{
	margin-top: 100px;
}
.mb70{
	margin-bottom: 70px;
}
.mb30{
	margin-bottom: 30px;
}
.pt0{
	padding-top: 0;
}
.pb0{
	padding-bottom: 0;
}
.txt_c{
	text-align: center;
}
.txt_r{
	text-align: right;
}

.bold{
	font-weight: 600;
}

.line{
	background:linear-gradient(transparent 60%, rgba(255,217,0,0.5) 60%);
	font-size: 1em;
}
.inb{
	display: inline-block;
}
.txt_link{
	color: #0d54ac;
	font-weight: 600;
	border-bottom: dashed 1px;
}


/* TOPへ戻るボタン==================== */
#page_top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	line-height: 50px;
	width: 50px;
	text-align: center;
	border: none;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	opacity: 0;
	pointer-events: none; /* 非表示中はクリックできない */
	transition: opacity 0.5s ease;
	z-index: 999;
}
#page_top::after{
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	width: 50px;
	height: 50px;
	background: #ffd900;
	border-radius: 50%;
	z-index: -1;
}
#page_top.show {
	opacity: 1;
	pointer-events: auto; /* 表示中はクリック可能 */
}


/* スクロールフェードイン ================================================== */
.fadein {
	opacity : 0.2;
	filter: blur(2px);
	transform : translate(0, 80px);
	transition : all 1s;
	}

.fadein.scrollin {
	opacity : 1;
	filter: none;
	transform : translate(0, 0);
	}
/* スクロールエフェクト ================================================== */
.swipe{
   position: relative;
   overflow: hidden;
}
.swipe::after{
   content: '';
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
   background: #fff;
   pointer-events: none;
   z-index: 1;
   transform: translateX(-100%);
   transition: 1.2s ease-in-out;
}
.swipe .swipe_in{
   opacity: 0;
   transition: 0.2s ease-in;
   transition-delay: 0.6s;
}
.swipe.inview .swipe_in{
   opacity: 1;
}
.swipe.inview::after{
   transform: translateX(100%);
}
/* テキストアニメ　==================== */
.eachTextAnime span{
	opacity: 0;
}
.eachTextAnime.appeartext span{ 
	animation:text_anime_on 1.5s ease-out forwards; 
}
@keyframes text_anime_on {
	0% {
		opacity:0;
		
	}
	100% {
		opacity:1;
		transform : translate(0, 0);
	}
}

/* 00px以上非表示 ------------------------------ */
@media (min-width: 1200px){
	.openbtn,#g-nav{
		display: none !important;
	}
}
@media (min-width: 960px){
	.tbsp{
		display: none !important;}
}
@media (min-width: 750px){
	.sp{
		display: none!important;}
	}
@media (min-width: 450px){
	.sp_450{
		display: none!important;}
	}
/* 00px以下非表示 ------------------------------ */
@media (max-width: 1200px){
	.pc{
		display: none !important;
	}
	
}
@media (max-width: 960px){
	.pctb{
		display: none !important;
	}
}
@media (max-width: 750px){
	.pctb{
		display: none !important;
	}
}
@media (max-width: 450px){
	.pctb450{
		display: none;
	}
}
