@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);
}

html .subtitle h2{
    visibility: hidden;
	opacity: 0.5;
	transition: .5s;
}
html.wf-active .subtitle h2{
    visibility: visible;
	opacity: 1;
}
body{
	color: #333;
	background: #fff;
	font-family: "BIZ UDPGothic", sans-serif;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.12em;
}
p{
	font-size: 1.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: 5;
}
.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_wrap{
	display: block;
	width: 270px;
	margin: 30px auto;
}

.btn01{
	display: inline-block;
	text-align: center;
	width: 100%;
	background: rgba(255,255,255,1);
	color: #333;
	border: solid 3px #b8d200;
	padding: 0.8em;
	position: relative;
	border-radius: 30px;
	box-shadow: 5px 5px rgba(0,0,0,0.1);
	font-size: 1em;
	font-weight: 500;
	transition: .3s;
}
.btn01::after{
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	content: "\f105";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 15px;
	transition: .3s;
}
.btn01:hover{
	transform: translate(3px,3px);
	box-shadow: 1px 1px rgba(0,0,0,0.1);
	transition: .3s;
}
.btn01:hover::after{
	right: 10px;
}

/* table ============================================================ */
.line02 table {
    border-spacing:0;
    margin: 0 auto;
    padding: 0;
    width:100%;
}
.line02 table th{
	border-bottom: solid 3px #4db56a;
	padding: 1em;
	width: 25%;
	min-width: 9em;
	font-weight: 700;
}
.line02 table td{
	border-bottom: solid 3px #ccc;
	padding: 1em;
}
.line02 table td i{
	color: #4db56a;
	padding-left: 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 #4db56a;
	}
	.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{
	font-weight: 700;
	width: 20%;
	min-width: 8em;
}
.simple01 ul li{
	padding-left: 1em;
	text-indent: -1em;
	margin-bottom: 0.5em;
	border-bottom: dashed 1px #ccc;
}
@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: dashed 1px #ccc;
	margin-bottom: 1rem;
}

.dl_border01{
	padding: 1rem;
}
.dl_border01 dl{
	display: flex;
	align-items: flex-start;
	border-bottom: dashed 1px #ccc;
}
.dl_border01 dl dt{
	width: 20%;
	padding: 1em 0 1em 1em;
	font-weight: 700;
}
.dl_border01 dl dt i{
	color: #8a9898;
}
.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;
	}
}
.nb_list li{
	font-size: 1rem;
	border-bottom: dashed 1px #ccc;
	margin-bottom: 1rem;
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	line-height: 1.8;
	gap: 0.5rem;
}
.nb_list li .nb{
	font-size: 250%;
	font-weight: 700;
	color: #b8d200;
	white-space: nowrap;
	line-height: 1.2;
}
@media (max-width: 750px){
	.nb_list li{
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
	}
}


/* 画像調整============================================================ */
.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;
}
.img_1-1round{
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
}
/* 角丸============================================================ */
.bdr15{
	border-radius: 15px;
}
.bdr30{
	border-radius: 30px;
}
.bdr50{
	border-radius: 50px;
}
.bdr_type01{
	border-radius: 39% 61% 31% 69% / 53% 22% 78% 47% ;
}
.bdr_type02{
	border-radius: 64% 36% 56% 44% / 37% 51% 49% 63%  ;
}
/* 余白調整============================================================ */
.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;
}
.pt70{
	padding-top: 70px;
}
.pb70{
	padding-bottom: 70px;
}
.txt_c{
	text-align: center;
}
.txt_r{
	text-align: right;
}

span.bold{
	font-weight: 700;
}

span.line{
	background:linear-gradient(transparent 60%, rgba(235,153,1,0.5) 60%);
	font-size: 1em;
}
span.inb{
	display: inline-block;
}

/* TOPへ戻るボタン==================== */
#page_top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	padding: 15px 20px;
	border: none;
	border-radius: 50%;
	background: url(../img/point_yg.png) no-repeat;
	background-size: contain;
	background-position: center;
	color: #fff;
	font-size: 18px;
	line-height: 1.4;
	cursor: pointer;
	opacity: 0;
	pointer-events: none; 
	transition: opacity 0.5s ease;
	z-index: 999;
}
#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);
	}

/* スクロールエフェクト ================================================== */
.imgup{
	position: relative;
	overflow: hidden;
	height: fit-content !important;
	clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
	transition: 1.4s;
	transition-delay: 0.3s;
}
.imgup img{
	transition: 1.8s cubic-bezier(0.6, 0, 0.07, 1);
	transform: translateX(-10%) scale(1.4);
}

.imgup.inview img{
	transform: translateX(0) scale(1);
}
.imgup.inview {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
/* テキストアニメ　==================== */
.eachTextAnime span{
	opacity: 0;
}
.eachTextAnime.appeartext span{ 
	display: inline-block;
	animation:text_anime_on 1s 3s ease forwards; 
	backface-visibility: hidden;
	perspective: 1000px;
}
@keyframes text_anime_on {
	0%,30% {
		transform: translateX(2rem) ;
		opacity:0;
	}
	to {
		transform: translateX(0rem) ;
		opacity:1;
	}
}

/* 00px以上非表示 ------------------------------ */
@media (min-width: 1200px){
	.openbtn,#g-nav,.mb_bg{
		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;
	}
}
