@charset "UTF-8";

html {
    font-size: 0.833vw;
}
@media screen and (max-width: 767px) {
    html {
        font-size:1.302vw;
    }	
}
@media screen and (max-width: 540px) {
    html {
        font-size:1.851vw;
    }	
}
@media screen and (max-width: 414px) {
    html {
        font-size: 2.415vw;
    }	
}

:root {
	--prime: #3a396d;
}

body {
	color: #000;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 2rem;
	line-height: 1.6;
}

a {
	color: #000;
}



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

gnav

----------------------------------------------------------  */
.gnav {
	background: #d9d7e2;
}
.gnav ul {
	display: flex;
	justify-content: center;
}
.gnav ul li a {
	display: block;
	margin: 0 2rem;
	color: #3e377b;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1;
	padding: 2rem 0;
}



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

footer

----------------------------------------------------------  */
footer {
	background: #ebeaef;
	padding: 6rem 20%;
}
footer a {
	display: block;
	text-align: right;
	margin-top: 1rem;
}
footer h2 {
	border-bottom: solid 1px #7a7788;
	padding-bottom: 1rem;
	margin-bottom: 3rem;
}
footer h2 img {
	width: 50%;
	display: block;
	margin: 0 auto;
}
.footer-wrap {
	display: flex;
	justify-content: space-between;
}
.footer-wrap > * {
	width: 48%;
}
footer address {
	font-style: normal;
	font-size: 2.4rem;
	margin-bottom: 1.5rem;
}
.footer-fax {
	display: flex;
	font-size: 2.4rem;
	justify-content: space-between;
	margin-bottom: 2.5rem;
}
.footer-fax dt {
	width: 20%;
	background: #000;
	color: #fff;
	text-align: center;
}
.footer-fax dd {
	width: 75%;
}
.footer-access dt {
	background: url(../img/ico-bus.png) no-repeat left 1.5rem center;
	background-size: 3rem auto;
	background-color: #d9d7e2;
	padding: 1rem 1rem 1rem 5.5rem;
	color: #2d2765;
	font-weight: bold;
	font-size: 2.4rem;
	margin-bottom: 1rem;
}
.footer-access dd {
	display: flex;
}
.footer-access dd span {
	border: solid 1px #000;
	display: block;
	margin-left: 1rem;
	padding: 0 1rem;
}
@media screen and (max-width: 767px) {
	footer {
		background: #ebeaef;
		padding: 6rem 10% 10rem 10%;
	}
	footer h2 img {
		width: 80%;
	}
	.footer-wrap {
		display: block;
	}
	.footer-wrap > * {
		width: 100%;
	}		
	.footer-wrap > *:first-of-type {
		margin-bottom: 3rem;
	}
}



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

style

----------------------------------------------------------  */
/* heading */
.heading {
	width: 36rem;
	line-height: 1;
	margin-bottom: 2rem;	
}
@media screen and (max-width: 767px) {
	.heading {
		width: 100%;
	}
}



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

hamburger

----------------------------------------------------------  */
nav.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/bg-texture.jpg) center top;
	background-size: 45rem auto;
}
.open nav.gnav-sp {
	top: 0;
	opacity: 1;
	z-index: 99999;
}
.gnav-sp-inner {
	padding: 6rem 2.5rem;
}
@media screen and (min-width: 768px) {
	.gnav-sp-inner {
		display: flex;
		align-items: center;
		justify-content: center;
		height: 100vh;
	}
}
.gnav-sp-inner ul {
	margin-bottom: 3rem;
}
.gnav-sp-inner ul li {
	font-size: 2.2rem;
	text-align: center;
	font-weight: bold;
}
.gnav-sp-inner ul li a {
	display: block;
	padding: 1.5rem;
	color: #fff;
}
.gnav-sp-inner > div {
	text-align: center;
	font-size: 3.2rem;
	font-weight: bold;
	line-height: 1;
}
.gnav-sp-inner > div span {
	font-size: 2.8rem;
	vertical-align: -0.2rem;
}

/* toggle_btn */
.toggle_btn {
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	width: 6rem;
	height: 6rem;
	transition: all .5s;
	cursor: pointer;
	z-index: 100000;
	background: var(--prime);
}
.toggle_btn span {
	display: block;
	position: absolute;
	left: 2rem;
	width: 2rem;
	height: 2px;
	background-color: #fff;
	transition: all .4s;
}
.toggle_btn span:nth-child(1) {
	top: 1.9rem;
}
.toggle_btn span:nth-child(2) {
	top: 2.7rem;
}
.toggle_btn span:nth-child(3) {
	top: 3.5rem;
}
.open .toggle_btn span {
	background-color: #fff;
}
.open .toggle_btn span:nth-child(1) {
	-webkit-transform: translateY(0.8rem) rotate(-45deg);
	transform: translateY(0.8rem) rotate(-45deg);
}
.open .toggle_btn span:nth-child(2) {
	opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
	-webkit-transform: translateY(-0.8rem) rotate(45deg);
	transform: translateY(-0.8rem) rotate(45deg);
}

/* mask */
#mask {
	display: none;
	transition: all .5s;
}
.open #mask {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0);
	opacity: 0.8;
	z-index: 2;
	cursor: pointer;
}


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

layout

----------------------------------------------------------  */
.container {
	margin: 0 auto;
	width: 60%;
}
.inner {
	padding: 0 4rem;
}
@media screen and (max-width: 767px) {
	.container {
		margin: 0 auto;
		width: 90%;
	}
	.inner {
		padding: 0;
	}
}



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

display

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



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

page-top

----------------------------------------------------------  */
#page-top {
    position: fixed;
	z-index: 999;
}
#page-top a {
	background: var(--prime);
	color: #fff;	
	width: 8rem;
	height: 8rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	line-height: 1;
	font-size: 1.8rem;
	font-family: 'Klee One', cursive;
	font-weight: 600;	
}
@media screen and (min-width: 768px) {
    #page-top {
        bottom: 2rem;
        right: 1.5rem;	
    }
}
@media screen and (max-width: 767px) {
    #page-top {
        bottom: 1.5rem;
        right: 1rem;	
    } 
	#page-top a {
		width: 6rem;
		height: 6rem;
	}	
}



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

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:hover {
    opacity: 0.4;  
    filter: alpha(opacity=60);  
} 
@media screen and (min-width: 768px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}



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

margin

----------------------------------------------------------  */
.mb10	{ margin-bottom: 1rem!important; }
.mb15	{ margin-bottom: 1.5rem!important; }
.mb20	{ margin-bottom: 2.0rem!important; }
.mb25	{ margin-bottom: 2.5rem!important; }
.mb30	{ margin-bottom: 3.0rem!important; }
.mb35	{ margin-bottom: 3.5rem!important; }
.mb40	{ margin-bottom: 4.0rem!important; }
.mb45	{ margin-bottom: 4.5rem!important; }
.mb50	{ margin-bottom: 5.0rem!important; }
.mb55	{ margin-bottom: 5.5rem!important; }
.mb60	{ margin-bottom: 6.0rem!important; }
.mb65	{ margin-bottom: 6.5rem!important; }
.mb70	{ margin-bottom: 7.0rem!important; }
.mb75	{ margin-bottom: 7.5rem!important; }
.mb80	{ margin-bottom: 8.0rem!important; }
.mb85	{ margin-bottom: 8.5rem!important; }
.mb90	{ margin-bottom: 9.0rem!important; }
.mb95	{ margin-bottom: 9.5rem!important; }
.mb100	{ margin-bottom: 10.0rem!important; }