@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bakbak+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');



/*  ----------------------------------------------------------

base

----------------------------------------------------------  */
:root {
	--navy: #171c61;
	--yellow: #ffec17;
	--red: #d32f47;
	--bg-grey: #efefef;
	--font-bakbak: 'Bakbak One', cursive;
	--font-anton: 'Anton', sans-serif;;
}
body {
	background: 
		url(../img/kv-bg-1.jpg) no-repeat center top,
		url(../img/cmn-bg-1.jpg) no-repeat center bottom;
	background-size: 
		100% auto;
	color: #585858;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.4rem;
	letter-spacing: 0.06em;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
}
body.low {
	background: none;
}
@media screen and (max-width: 768px) {
	body {
		font-size: 1.5rem;
		background-size: 200% auto;
	}
}
a {
	color: #585858;
}



/*  ----------------------------------------------------------

font-size

----------------------------------------------------------  */
html {
    font-size: 0.833vw;
}
@media screen and (max-width: 768px) {
    html {
        font-size: 1.303vw;
    }	
}
@media screen and (max-width: 540px) {
    html {
        font-size: 1.851vw;
    }	
}
@media screen and (max-width: 414px) {
    html {
        font-size: 2.415vw;
    }	
}



/*  ----------------------------------------------------------

style

----------------------------------------------------------  */
/* heading */
.heading-1 {
	line-height: 1;
	margin-bottom: 3rem;
	color: var(--navy);
	font-size: 2.4rem;
	position: relative;
}
.heading-1 span {
	display: inline-block;
	background: #fff;
	padding-right: 2rem;
	position: relative;
	z-index: 99;
}
.heading-1::before {
	content: "";
	width: 100%;
	height: 0.15rem;
	background: var(--navy);
	position: absolute;
	left: 0;
	top: 50%;
}
.heading-2 {
	border-top: solid 0.2rem var(--navy);
	border-bottom: solid 0.2rem var(--navy);
	line-height: 1;
	font-size: 5.2rem;
	font-weight: 900;
	color: var(--navy);
	text-align: center;
	padding: 1.8rem 0 2.2rem 0;
	margin-bottom: 2rem;
}
.heading-3 {
	line-height: 1;
	color: var(--navy);
	font-size: 3.6rem;
	display: flex;
	position: relative;
	margin-bottom: 6rem;
}
.heading-3::after {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	line-height: 1;
	font-size: 12rem;
	font-weight: 900;
	opacity: 0.1;
	padding-bottom: 0.8rem;
}
@media screen and (max-width: 768px) {
	.heading-2 {
		font-size: 3.2rem;
	}
	.heading-3 {
		font-size: 2.8rem;
		margin-bottom: 4rem;
	}
	.heading-3::after {
		font-size: 6.4rem;
	}	
}
/* table */
table {
	width: 100%;
	border-collapse: collapse;
}
table th,
table td {
	border: solid 0.3rem #fff;
	padding: 1.5rem 0;
	text-align: center;
	vertical-align: middle;
}
.bg-grey-deep {
	background: #efefef;
}
.bg-grey-pale {
	background: #f7f7f7;
}
.bg-blue-deep {
	background: #e4e6ea;
}
.bg-blue-pale {
	background: #edf1f8;
}
.bg-red {
	background: var(--red);
	color: #fff;
}
.txt-red {
	color: var(--red);
}
.border-botmm-grey {
	border-bottom: #ddd solid 0.12rem;
}
.radius-left {
	border-radius: 0 0 0 1rem;
}
.radius-right {
	border-radius: 0 0 1rem 0;
}
td i {
	font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
	.table-wrap {
		overflow-x: scroll;
	}
	.table-wrap table th,
	.table-wrap table td {
		white-space: nowrap;
	}
	table th,
	table td {
		padding: 1.5rem 2rem;
	}	
}



/*  ----------------------------------------------------------

layout

----------------------------------------------------------  */
.base-width {
	width: 88rem;
	margin-left: auto;
	margin-right: auto;
}
.container {
	margin: 10rem 0;
}
@media screen and (max-width: 768px) {
	.base-width {
		width: auto;
		margin-left: 2rem;
		margin-right: 2rem;
	}
	.container {
		margin: 6rem 3rem;
	}
}



/*  ----------------------------------------------------------

hamburger

----------------------------------------------------------  */
.gnav-sp {
	display: block;
	position: fixed;
	top: 0;
	bottom: 0;
	width: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transition: all .5s;
	z-index: -1;
	opacity: 0;
	background: url(../img/nav-bg.jpg) no-repeat center top;
	background-size: 100% auto;	
	background-color: #0a0f58;
}
.gnav-sp .wrap {
	display: flex;
	align-items: center;
	flex-direction: column;
	height: 100%;
	padding: 8rem 0;
}
.gnav-sp .logo {
	width: 8rem;
	margin: 0 auto 4rem auto;
}
.gnav-sp-menu li {
	font-size: 1.6rem;
	text-align: center;
}
.gnav-sp-menu li span {
	display: block;
}
.gnav-sp-menu li a {
	display: block;
	padding: 2rem 0;
	white-space: nowrap;
	color: #fff;
}
/* toggle */
.toggle-btn {
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	width: 6rem;
	height: 6rem;
	transition: all .5s;
	cursor: pointer;
	z-index: 100000;
}
.toggle-btn span {
	display: block;
	position: absolute;
	left: 1rem;
	width: 4rem;
	height: 0.12rem;
	background: #0a0f58;
	transition: all .4s;
}
.toggle-btn span:nth-child(1) {
	top: 2.4rem;
}
.toggle-btn span:nth-child(2) {
	top: 3.4rem;
}
/* open */
.open .gnav-sp {
	top: 0;
	opacity: 1;
	z-index: 99999;
}
.open .toggle-btn span {
	background: #fff;
}
.open .toggle-btn span:nth-child(1) {
	transform: translateY(0.5rem) rotate(-45deg);
}
.open .toggle-btn span:nth-child(2) {
	transform: translateY(-0.5rem) rotate(45deg);
}



/*  ----------------------------------------------------------

display

----------------------------------------------------------  */
@media screen and (min-width: 769px) {
	.sp {
		display: none !important;
	}
}
@media screen and (max-width: 768px) {
	.pc {
		display: none !important;
	}
}



/*  ----------------------------------------------------------

page-top

----------------------------------------------------------  */
#page-top {
    position: fixed;
	z-index: 999;
	bottom: 1rem;
	right: 1rem;	
}
#page-top a {
	background: #fff;
	border: solid 0.2rem var(--navy);
	color: var(--navy);	
	width: 4rem;
	height: 4rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	line-height: 1;
	font-size: 1.6rem;
	padding-left: 0.1rem;
}
@media screen and (max-width: 768px) {
	#page-top {
		bottom: 7rem;
	}
}



/*  ----------------------------------------------------------

link

----------------------------------------------------------  */
a {
    text-decoration: none;
    -webkit-transition: 0.3s ease-in-out;  
    -moz-transition: 0.3s ease-in-out;  
    -o-transition: 0.3s ease-in-out;  
    transition: 0.3s ease-in-out; 
}
a.line {
	text-decoration: underline;
}
a:hover.line {
	text-decoration: none;
}
a:hover {
    opacity: 0.5;
} 
@media screen and (min-width: 769px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}
@media screen and (max-width: 768px) {
    a[href^="tel:"] {
        text-decoration: underline;
    }
}



/*  ----------------------------------------------------------

class

----------------------------------------------------------  */
/* margin */
.mb-10 { 
	margin-bottom: 1rem !important;
}
.mb-15 {
	margin-bottom: 1.5rem !important;
}
.mb-20 {
	margin-bottom: 2.0rem !important;
}
.mb-25 {
	margin-bottom: 2.5rem !important;
}
.mb-30 {
	margin-bottom: 3.0rem !important;
}
.mb-35 {
	margin-bottom: 3.5rem !important;
}
.mb-40 {
	margin-bottom: 4.0rem !important;
}
.mb-45 {
	margin-bottom: 4.5rem !important;
}
.mb-50 {
	margin-bottom: 5.0rem !important;
}
.mb-55 {
	margin-bottom: 5.5rem !important;
}
.mb-60 {
	margin-bottom: 6.0rem !important;
}
.mb-65 {
	margin-bottom: 6.5rem !important;
}
.mb-70 {
	margin-bottom: 7.0rem !important;
}
.mb-75 {
	margin-bottom: 7.5rem !important;
}
.mb-80 {
	margin-bottom: 8.0rem !important;
}
.mb-85 {
	margin-bottom: 8.5rem !important;
}
.mb-90 {
	margin-bottom: 9.0rem !important;
}
.mb-95 {
	margin-bottom: 9.5rem !important;
}
.mb-100	{
	margin-bottom: 10.0rem !important;
}



/*  ----------------------------------------------------------

fade

----------------------------------------------------------  */
@keyframes fadeUp {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
.fadeUp {
    animation: fadeUp 0.5s ease;
    animation-fill-mode: both
}
.fade {
	opacity: 0;
	transform: translateY(2rem);
}
.delay-1 {
	animation-delay: 0.2s;
	-moz-animation-delay: 0.2s;
	-webkit-animation-delay: 0.2s;
	-o-animation-delay: 0.2s;
}
.delay-2 {
	animation-delay: 0.35s;
	-moz-animation-delay: 0.35s;
	-webkit-animation-delay: 0.35s;
	-o-animation-delay: 0.35s;
}
.delay-3 {
	animation-delay: 0.5s;
	-moz-animation-delay: 0.5s;
	-webkit-animation-delay: 0.5s;
	-o-animation-delay: 0.5s;
}
.delay-4 {
	animation-delay: 0.65s;
	-moz-animation-delay: 0.65s;
	-webkit-animation-delay: 0.65s;
	-o-animation-delay: 0.65s;
}
.delay-5 {
	animation-delay: 0.8s;
	-moz-animation-delay: 0.8s;
	-webkit-animation-delay: 0.8s;
	-o-animation-delay: 0.8s;
}