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

@media screen and (min-width: 841px) {
	.pc {display: block;}
	.tablet {display: none !important;}
	.sp {display: none !important;}
}
@media screen and (min-width: 600px) and (max-width: 840px) {
	.pc {display: none !important;}
	.tablet {display: block;}
	.sp {display: none !important;}
}
@media screen and (max-width: 599px) {
	.pc {display: none !important;}
	.tablet {display: none !important;}
	.sp {display: block;}
}

/* Link
========================================== */
a:link {color:var(--text-primary); text-decoration:underline;}
a:visited {color:var(--text-primary);}
a:hover {text-decoration:none;}
a:focus{outline: none;}
a.tel{
	text-decoration: none!important;
	color: var(--text-primary);
	font-size: var(--font-size-subheading);
	font-family: var(--font-number);}
a.link{
	color: var(--text-primary);
	font-weight: bold;
	text-decoration: underline;}

a.link:hover{text-decoration: none;}

.anchor{
	position: relative;
	scroll-margin-top: 100px;
}


a[href^="tel:"] {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
}
@media screen and (max-width: 599px) {
	.anchor{scroll-margin-top: 60px;}

	a[href^="tel:"] {
		pointer-events: auto;
		cursor: pointer;
	}
}

/* Text
========================================== */
p+p{margin-top: 1.5em;}
em{font-style: normal;}
.acenter{text-align:center;}
.aright{text-align:right;}
.textUnderline{
    padding: 0 .2em;
	border-bottom: 2px solid var(--color-secondary);
	font-weight: 700;
}
.textPoint{color: var(--color-accent);font-weight: 800;}

/* Font
========================================== */
.en{
	font-family: var(--font-english);
	font-weight: 600;
}
.number{
	font-family: var(--font-number);
	font-weight: 600;
}

/* Heading
========================================== */
.ttlMain{
	line-height: var(--line-height-heading);
	margin-top: 1em;
	margin-bottom:3em;
	font-weight: 600;
	color: var(--text-secondary);
}
.ttlMain .ja{
	display: block;
	position: relative;
	padding-left: 15px;
	margin-bottom: 1em;
}
.ttlMain .ja::before{
	content: "";
	position: absolute;
	top: 0.5em;
	left: 0;
	background-color: var(--color-secondary);
	border-radius: 9999px;
	width: 10px;
	height: 10px;

}
.ttlMain .en{
	line-height: 1;
	display: block;
	color: var(--color-primary);
	font-family: var(--font-english);
	font-size:min(10vw,11rem);;
}
.ttlMain.center{
	margin-right: auto;
	margin-left: auto;
	width: fit-content;
}
.ttlMain .en.white{color: #fff;}

@media screen and (max-width:599px){
	.ttlMain.center{margin-left: 0;}
}

.ttlType01{
	line-height: var(--line-height-heading);
	margin:0 auto 2em;
	padding: 0.3em 0.5em .4em;
	width: fit-content;
	font-size: var(--font-size-heading);
	font-weight: 800;
	color: var(--color-primary);
	text-align: center;
}
.ttlType01 span{
	display: inline-block;
}
.ttlType01.white{
	color: #fff;
}
.ttlType02{
	line-height: var(--line-height-heading);
	width: fit-content;
	margin: 0 auto 1.5em;
	padding:.1em 0.3em;
	background: #ffe546;
	font-weight: 800;
	font-size: var(--font-size-heading);
	color: var(--color-primary);
	text-align: center;
}
.ttlType02 span{
	display: inline-block;
}
.ttlType02.white{
	background-color: #fff;
}

.ttlBorder{
	position: relative;
	line-height: var(--line-height-heading);
	margin:0 0 1.5em;
	padding: 1em 0;
	border-top: 3px solid var(--color-primary);
	border-bottom: 1px solid var(--border-color);
	background-color: #fff;
	font-size: clamp(1.8rem, 3vw + 0.8rem, 2.2rem);
	font-family: var(--font-secondary);
	font-weight: 800;
	color: var(--color-primary);
}

.ttlYellow{
	position: relative;
	line-height: var(--line-height-heading);
	margin:0 0 1.5em;
	padding:.6em 1em .7em;
	background-color:#ffe546;
	font-size: clamp(1.8rem, 2vw + 0.8rem, 2.2rem);
	font-family: var(--font-secondary);
	font-weight: 800;
	color: var(--color-primary);
}

* + .ttlBorder,
* + .ttlYellow{margin-top: 2em;}

/* List
========================================== */
p+.listType01,
p+.listDecimal{
	margin-top: 1em;
}

.listType01 {
	display: flex;
	flex-direction: column;
	gap: 0 1em;
	padding-left: 0.6em;
}
.listType01 li {
	position: relative;
	padding-bottom: 5px;
	padding-left: 20px;
}

.listType01 li::after {
	display: block;
	content: '';
	position: absolute;
	top: .5em;
	left: 0;
	width: 10px;
	height: 10px;
	border-radius: 9999px;
	background-color: var(--color-secondary);
}

.listType01 li ul {
	margin-top: .8em;
	margin-bottom: .8em;
}

.listType01 li ul li::after {
	display: block;
	content: '';
	position: absolute;
	top: .8em;
	left: 0;
	width: 10px;
	height: 3px;
	border-radius: 0;
	background-color: var(--color-primary);
}

/* 横並び */
.listType01.flex {
	flex-direction: row;
	flex-wrap: wrap;
	gap: 2em;
}
.listDecimal {
	counter-reset: li;
	list-style: none;
	padding-left: 0;
}
.listDecimal>li+li {
	margin-top: 1em;
}
.listDecimal>li {
	position: relative;
	padding-left: 2.5em;
}
.listDecimal>li:before {
	content: counter(li) "";
	counter-increment: li;
	position: absolute;
	top: 2px;
	left: 0;
	width: 1.6em;
	height: 1.6em;
	background-color: var(--color-primary);
	border-radius: 50px;
	color: #fff;
	line-height: 1.4;
	text-align: center;
	font-weight: 500;
}
.listDecimal ul,
.listDecimal ol {margin-top: 1.5em;margin-bottom: 1.5em;}

.listBrackets{
	counter-reset:number;
	position: relative;}
p+.listBrackets{margin-top: 1em;}
.listBrackets > li{padding-left: 2em;}
.listBrackets > li:before {
	content:  "("counter(number) ")";
	counter-increment: number;
	position: absolute;
	left: 0;
}
.listBrackets>li+li {
	margin-top: 1em;
}

/* Button
========================================== */
p+.btnLink{margin-top: 2em;}

.btnLink.center{
	text-align: center;
}
.btnLink.mt{margin-top: 50px;}
.btnLink a{
	position: relative;
	display: inline-block;
	line-height: var(--line-height-heading);
	padding: 20px 50px;
	gap:0 15px;
	min-width: 300px;
	box-sizing: border-box;
	background-color: var(--color-primary);
	border-radius: 5px;
	text-align: center;
	text-decoration: none;
	color: #fff;
	transition: 0.3s;
}
.btnLink a::after{
	content:"";
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	mask-image: url("../img/icon_arrow.svg");
	-webkit-mask-image: url("../img/icon_arrow.svg");
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	-webkit-mask-size: contain;
	background-color: currentColor;
	transition: 0.3s;
}

.btnLink a:hover{
	background-color:var(--color-accent);
	color: var(--text-primary);
}
.btnLink a:hover::after{right: 15px;}

@media screen and (max-width:599px){
	.btnLink a{
		min-width: 250px;
	}
}


/* Table
========================================== */
*+.tableType01{margin-top: 2em;}
.tableType01{
	margin: 50px auto 0;
	width: 1080px;
	border-collapse: collapse;
}
.tableType01 th,
.tableType01 td{
	border: 1px solid var(--border-color);
	padding: 1.5em 2em;
}
.tableType01 th {
	width: 14em;
	text-align: left;
	background-color:#002951;
	vertical-align: middle;
	color: #fff;
	font-weight: 800;
}

.tableType01 td {
	background-color: #fff;
	font-weight: 800;
}

@media screen and (max-width:1080px){
	.tableType01{width:100%;}
}
@media screen and (max-width:840px){
}

@media screen and (max-width:599px){
	.tableType01,
	.tableType01 tbody,
	.tableType01 tr,
	.tableType01 th,
	.tableType01 td{
		display:block;
		width:100%;
	}
	.tableType01 th{padding:0.5em 1em;border: none;}
	.tableType01 td{padding:1em;}
}

/* scroll
========================================== */
.scrollWrap {
	position: relative;
	overflow: visible;/*iphone*/}
.scrollArrow {
	position: absolute;
	top: calc(50% - 35px);
	z-index: 100;
	width: 40px;
	height: 40px;
	background-position: left top;
	background-repeat: no-repeat;
	background-size: contain;
	cursor: pointer;
}
.scrollArrow.prev {left: -3%;background-image: url(../img/icon_next.svg);transform: rotate(180deg);}
.scrollArrow.next {right: -3%;background-image: url(../img/icon_next.svg);}
.pc-on .scrollArrow.hidden{display: block;}
.pc-on .scrollArrow.prev {left:10px;}
.pc-on .scrollArrow.next {right:10px;}
:not(.pc-on) .scrollArrow.hidden{display: none;}
@media screen and (max-width:840px){
	.scrollArrow.hidden{display: none;}
}

/* Animation
========================================== */
.fadeUp.active{
	animation-name:fadeUpAnime;
	animation-duration:1.5s;
	animation-fill-mode:forwards;
}
.fadeUp{opacity:0;}
@keyframes fadeUpAnime{
	from {
	opacity: 0;
	transform: translateY(100px);
	transition : all 500ms;
	}
	to {
	opacity: 1;
	transform: translateY(0);
	}
}

.fadeIn.active{
	animation-name:fadeInAnime;
	animation-duration:1.8s;
	animation-fill-mode:forwards;
}
.fadeIn{opacity:0;}
@keyframes fadeInAnime{
	from {opacity: 0;}
	to {opacity: 1;}
}

.fadeText.active{
	animation-name:fadeTextAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}
.fadeText{opacity:0;}
@keyframes fadeTextAnime{
	from {
	opacity: 0;
	transform: translateY(100%);
	transition : all .5s;
	}
	to {
	opacity: 1;
	transform: translateY(0);
	}
}

@media screen and (max-width: 840px) {
	.fadeUp.active,
	.fadeIn.active,
	.fadeText.active{animation: none;}
	.fadeUp,.fadeIn,.fadeText{opacity:1;}
}