@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;}
:target {outline: none;caret-color: transparent;}
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: 80px;
}
/*top case*/
.anchor-case{
	position: relative;
	scroll-margin-top: 110px;
}

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

	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-number);
	font-weight: 500;
}
.number{
	font-family: var(--font-number);
	font-weight: 500;
}

/* Heading
========================================== */
.ttlMain{
	position: relative;
	line-height: var(--line-height-heading);
	margin-top: 1em;
	margin-bottom:3em;
	padding-right: 40px;
	padding-bottom: 40px;
	width: fit-content;
	font-weight: 600;
	color: var(--text-secondary);
}
.ttlMain::after{
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: 200%;
	height: 1px;
	background-color:#929292;
}
.ttlMain .en{
	display:block;
	margin-bottom: 30px;
}
.ttlMain .en img{
	max-width: 100%;
	height: auto;
}
.ttlMain .ja{
	display: block;
	position: relative;
	padding-left: 25px;
	color: var(--color-primary);
}
.ttlMain .ja::before{
	content: "";
	position: absolute;
	top: 0.5em;
	left: 0;
	background-color: var(--color-primary);
	border-radius: 9999px;
	width: 8px;
	height: 8px;
}
.ttlMain.white .ja{color:#fff;}
.ttlMain.white .ja::before{background-color:#fff;}

@media screen and (max-width:599px){
}


.ttlType01{
	line-height: var(--line-height-heading);
	margin:0 auto 2em;
	padding: 0.3em 0.5em .8em;
	border-bottom: 1px solid var(--color-primary);
	font-size: var(--font-size-subheading);
	font-weight: 800;
	color: var(--color-primary);
}
* + .ttlType01{margin-top: 2em;}
.ttlType01 span{
	display: inline-block;
}
.ttlType01.white{
	color: #fff;
}
.ttlType02{
	line-height: var(--line-height-heading);
	margin:1em auto 1.5em;
	padding:.5em 1em;
	background: var(--color-primary);
	font-weight: 800;
	font-size: var(--font-size-accent);
	font-family: var(--font-secondary);
    font-weight: 900;
	color: #fff;
}
.ttlType01 .number{
	margin-right: 20px;
	font-size: var(--font-size-heading);
}


/* 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: .7em;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 9999px;
	background-color: var(--color-primary);
}

.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
========================================== */
/* オレンジボタン */
.btnLink a{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap:0 10px;
	padding: 1.5em 3em 1.5em 0;
	width: fit-content;
	min-width: 300px;
	line-height: var(--line-height-heading);
	box-sizing: border-box;
	border: 1px solid var(--color-accent);
	background-color: var(--color-accent);
	text-align: center;
	text-decoration: none;
	color: #fff;
	transition: .3s;
}

.btnLink a::before{
	content:"";
	display:block;
	flex-shrink: 0;
	width: 60px;
	height: 1px;
	background-color:#fff;
	transform-origin: left;
	transition:
		transform .3s,
		background-color .3s;
}
.btnLink a:hover{
	background-color:var(--color-primary);
	border-color: #fff;
	color:#fff;
}
@media screen and (max-width:599px){
	.btnLink a{
		min-width: 250px;
	}
	.btnLink a::before{
		width: 40px;
	}
}

/* もっと詳しく */
p+.btnLinkMore{margin-top: 2em;}

.btnLinkMore.center{text-align: center;}
.btnLinkMore.right{text-align: right;}
.btnLinkMore a{
	display: inline-block;
	position: relative;
	gap:0 10px;
	padding: 10px 30px 15px 5px;
	text-decoration: none;
	font-weight: 600;
}
.btnLinkMore a::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--color-primary);
}
.btnLinkMore a::before{
	z-index: 2;
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--color-accent); 
	transition: width 0.3s ease;
}
.btnLinkMore a:hover::before{width: 100%;}
.btnLinkMore a .text{
	position: relative;
	padding-left: 30px;
}
.btnLinkMore a .text::before{
	content: "";
	position: absolute;
	top: 12px;
	left: 0;
	width: 20px;
	height: 1px;
	background-color: var(--color-primary);
}

/* 白バージョン */
.btnLinkMore.white a{color: #fff;}
.btnLinkMore.white a::after{background-color:#fff;}
.btnLinkMore.white a .text::before{background-color:#fff;}


@media screen and (max-width:599px){
	.btnLinkMore,
	.btnLinkMore.center,
	.btnLinkMore.right{text-align: center;}
}


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

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

@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.png);transform: rotate(180deg);}
.scrollArrow.next {right: -3%;background-image: url(../img/icon_next.png);}
.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;}
}