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


/******************************************************

PC設定 768px以上の場合に適用 

*******************************************************/

/* header */
.header {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
}

.drawerNav__btnIcon,
.drawerNav__btnIcon::before,
.drawerNav__btnIcon::after {
	background: #000!important;
}

.drawerNav__btnArea:hover .drawerNav__btnIcon {
	background-color: #00A2BF!important;
}

.drawerNav__btnArea.openBtn .drawerNav__btnIcon { /* トグルボタンをクリックすると真ん中の線は消える */
	background-color: transparent!important;
}

.localNav {
	position: fixed;
	display: flex;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	top: 85px;
	margin: auto;
	z-index: 9000;
}

.localNav__item:not(:last-child)::after {
	content: "/";
	margin-left: 20px;
	margin-right: 20px;
}

.localNav__link {
	font-size: 15px;
	font-family: 'greycliff-cf', 'sans-serif';
	padding: 0 5px 5px 5px;
	transition: .3s;
}

.localNav__link:hover {
	border-bottom: 2px solid #00A2BF;
}




/* main */
.main {
	margin: 280px auto 250px auto;
	width: 95%;
	max-width: 700px;
}

.main__img {
	display: block;
	width: 200px;
	height: auto;
	margin-bottom: 30px;
}

.main__inner {
	padding: 70px 0 50px 0;
	position: relative;
}

.main__inner:before {
	content: "";
	display: inline-block;
	width: 200px;
	height: 1px;
	background-color: #3e3a39;
	position: absolute;
	top: 0;
	left: 0;
}

.main__inner:after {
	content: "";
	display: inline-block;
	width: 200px;
	height: 1px;
	background-color: #000;
	position: absolute;
	bottom: 0;
	left: 0;
}

.main__h1 {
	font-size: 13px;
	margin-bottom: 40px;
}

.main__tbl {
	width: 100%;
	max-width: 500px;
	font-size: 13px;
}

.main__tbl tr th {
	width: 20%;
	color: #8B8B8B;
	padding-bottom: 20px;
}

.main__tbl tr td {
	width: 80%;
	line-height: 2;
	padding-bottom: 20px;
}



/* footer */
.footer__txt {
	text-align: left;
	margin-left: 70px;
}



/******************************************************

SPの設定 767px以下の場合に適用 

*******************************************************/

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

/* main */
.main {
	margin: 130px auto 20px auto;
	width: calc(100% - 40px);
}
	
.main__img {
	width: 60%;
	max-width: 200px;
	margin-bottom: 30px;
}

.localNav {
	position: static;
	margin-top: 90px;
	margin-left: 20px;
	transform: none;
	-webkit-transform:none;
}

.localNav__item:not(:last-child)::after {
	font-size: 10px;
	margin-left: 7px;
	margin-right: 7px;
}

.localNav__link {
	font-size: 10px;
	padding: 0;
}

.localNav__link:hover {
	border-bottom: none;
	color: #00A2BF;
}

.header__link::before{
background: url('/img/common/logo-sp.svg')no-repeat center center;
background-size: cover;
}


/* footer */
.footer__txt {
	text-align: center;
	margin-left: 0;
}


	
	
}