@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: #333;
	background: #fff;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 500;
	letter-spacing: 0.2em;
}
p{
	line-height: 2;
	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: 5;
}
.w1300{
	width: 100%;
	max-width: 1300px;
	margin-inline: auto;
}
.w960{
	width: 100%;
	max-width: 960px;
	margin-inline: auto;
}

.contents{
	padding: 70px 0;
	position: relative;
}
.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: block;
	position: relative;
	width: 100%;
	font-size: 1rem;
	text-align: center;
	background:#54b565;
	border: dashed 2px #fff;
	box-shadow: 0 0 0 8px #54b565, 2px 2px 0 10px rgba(0,0,0,0.1);
	background-size: 200%;
	background-position: left;
	color: #fff;
	font-weight: 700;
	border-radius: 50px;
	padding: 8px;
	transition: .3s ease-in-out;
}
.btn01::after{
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	content: "\f105";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 15px;
	transition: .5s;
}
.btn01:hover{
	transform: translateY(3px);
	box-shadow: 0 0 0 8px #54b565, 2px 2px 5px 8px rgba(0,0,0,0.1);
}

.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 #54b565;
	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: #666;
	padding-left: 1em;
}
.line02 dl{
	margin-bottom:30px;
	font-size: 1rem;
}
.line02 dl dd{
	margin-left: 1rem;
}
.line02 dl dt{
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.line02 ul li{
	padding-left: 1em;
	text-indent: -1em;
	margin-bottom: 0.5em;
}
.line02 dl dd.in_flex{
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}
.line02 dl dd.in_flex span{
	display: inline-block;
}
@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 #54b565;
	}
}
/* 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: #8a9898;
	font-weight: 600;
	width: 20%;
	min-width: 6em;
}
.simple01 table td i{
	color: #8a9898;
}
@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{
	padding-left: 1em;
	font-size: 1em;
}
ul.border01 li{
	border-bottom: dotted 1px #8a9898;
	margin-bottom: 1rem;
	padding-left: 1em;
	padding-bottom: 1rem;
	text-indent: -1em;
	line-height: 1.8;

}
ul.border01 li i{
	display: inline;
}
.dl_border01 dl{
	display: flex;
	align-items: flex-start;
	border-bottom: dotted 1px #8a9898;
	margin-bottom: 1rem;
	margin-left: 1rem;
}
.dl_border01 dl dt{
	width: 25%;
	min-width: 12em;
	font-weight: 700;
}
.dl_border01 dl dt i{
	color: #8a9898;
}
.dl_border01 dl dd{
	padding-left: 1rem;
}

.dl_border02 {
	padding: 30px;
	background-color: #f5f5f5;
}

.dl_border02 dt{
	font-weight:700;
	font-size: 1.2rem;
}
.dl_border02 .in_flex{
	display: flex;
	gap:15px;
	margin-top: 15px;
	flex-wrap: wrap;
}

.dl_border03{
	width: 100%;
	max-width: 800px;
	margin-inline: auto;
}
.dl_border03 dl{
	display: flex;
	align-items: flex-end;
	border-bottom: dotted 1px #8a9898;
	margin-bottom: 1rem;
	gap:30px;
}
.dl_border03 dl dt{
	font-size: clamp(1.5rem, 0.825rem + 2.4vw, 3rem);
}
.dl_border03 dl dd{
	font-size: 1.2rem;
}
.dl_border03 dl{
	width: calc(100% - 120px);
}
.dl_border03 dl:nth-child(2){
	margin-left: 40px;
}
.dl_border03 dl:nth-child(3){
	margin-left: 80px;
}
.dl_border03 dl:nth-child(4){
	margin-left: 120px;
}
@media (max-width: 960px){
	ul.border01{
		padding-left: 0;
	}
	.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;
	}
	.dl_border03 dl{
		width: calc(100% - 90px);
	}
	.dl_border03 dl:nth-child(2){
		margin-left: 30px;
	}
	.dl_border03 dl:nth-child(3){
		margin-left: 60px;
	}
	.dl_border03 dl:nth-child(4){
		margin-left: 90px;
	}
}
@media (max-width: 750px){
	.dl_border03 dl{
		width: 100%;
	}
	.dl_border03 dl:nth-child(2),
	.dl_border03 dl:nth-child(3),
	.dl_border03 dl:nth-child(4){
		margin-left: 0;
	}
}
@media (max-width: 550px){
	.dl_border03 dl{
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
		gap:5px;
	}
}

/* Map ============================================================ */
.map{
	width: 100%;
	padding: 10px;
}
.map iframe{
	width: 100%;
	vertical-align: middle;
	border:0;
	height: auto;
	
}


/* 動き ============================================================ */
.huwahuwa {
    animation: huwahuwa 3s infinite ease-in-out;
}
.huwahuwa02 {
    animation: huwahuwa 3s infinite ease-in-out;
	animation-delay: 1s;
}

@keyframes huwahuwa {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(15px);
    }
}
.pikopiko{
	animation: pikopiko 2s steps(2, start) infinite;
}
@keyframes pikopiko {
	0% {
		transform: rotate(18deg);
	}
	to {
		transform: rotate(-8deg);
	}
}

/* 画像調整============================================================ */
.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: 30px;
}
/* 余白調整============================================================ */
.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.l120{
	font-size: 120%;
}
span.l150{
	font-size: 150%;
}
span.s80{
	font-size: 80%;
}
span.s60{
	font-size: 60%;
}

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


.col_bl{
	color: #7ed9c8 !important;
}
.col_yg{
	color: #54b565 !important;
}
.col_or{
	color: #f2b33d !important;
}
.col_re{
	color: #f29c94 !important;
}
.col_vi{
	color: #ad82d9 !important;
}
.col_dg{
	color: #00a469 !important;
}

/* TOPへ戻るボタン==================== */
#page_top {
	position: fixed;
	right: 10px;
	bottom: 10px;
	width: 100px;
	height: 120px;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	opacity: 0;
	pointer-events: none; 
	transition: opacity 0.5s ease;
	z-index: 999;
}
#page_top::after{
	position: absolute;
	content: '';
	bottom: 50%;
	right: 50%;
	transform: translate(50% , 50%);
	color: #fff;
	width: 100px;
	height: 120px;
	background: url(../img/cut_tori01.png) no-repeat;
	background-size: contain;
	background-position: bottom;
	transition: .5s ease-in-out;
}
#page_top:hover::after{
	background: url(../img/cut_tori02.png) no-repeat;
	background-size: contain;
	background-position: top;
}
#page_top.show {
	opacity: 1;
	pointer-events: auto; /* 表示中はクリック可能 */
}
@media (max-width: 750px){
	#page_top{
		bottom: 40px;
	}
}

/* スクロールフェードイン ================================================== */
.fadein {
	opacity : 0;
	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%);
}

/* スクロールエフェクト ================================================== */
.imgup{
	position: relative;
	overflow: hidden;
	height: fit-content !important;
}
.imgup img{
	transition: 1.8s cubic-bezier(0.6, 0, 0.07, 1);
	transform: translateX(-10%) scale(1.4);
}
.imgup{
	clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
	transition: 1.4s;
	transition-delay: 0.3s;
}
.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;
	display: inline-block;
}
.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: translateY(1.5rem) rotate(10deg);
		opacity:0;
	}
	to {
		transform: translateY(0rem) rotate(0deg);
		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;
	}
}
