@charset "UTF-8";

/* ------------------------------
main.css 上書き
------------------------------ */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
address,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
img,
form {
	font-family: "ヒラギノ角ゴ Pro W3", "Noto Sans JP", "メイリオ", sans-serif;
	color: #000;
}
body {
	padding-top: 0;
}
a {
	/* color: #f00; */
}
a:hover {
	text-decoration: none;
}
a.no-opacity:hover {
	opacity: 1;
}

/* ------------------------------
共通
------------------------------ */
body {
    background-color: #f2f2f2;
}
.contents,
.contents-noheader {
	max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
}

/* ------------------------------
UIkit 調整
------------------------------ */
.top .uk-container {
	max-width: 1160px
}
.uk-container-small {
	max-width: 1000px
}
.uk-align-top {
	margin-top: 0;
}

/* ------------------------------
header
------------------------------ */
/* 高さ調整 */
body>.contents {
	padding-top: 52px;
	/* padding-bottom: 26px; */
}

/* header */
#header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	max-width: 750px;
	margin-left: auto;
	margin-right: auto;
	background-color: #fff;
	padding-top: 16px;
	padding-bottom: 16px;
	z-index: 300;
	opacity: 0.95;
}
#header .gl li .child{
	display: none;
	position: absolute;
	width: 170px;
	box-sizing: border-box;
	left: 2em;
	top: 2.2em;
}
#header .gl {
	display: none;
	position: absolute;
	z-index: 9999;
	top: 0;
	left: 0;
	width: 100%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	background: #41cfd9;
	padding: 0 0 0 0;
}
#header .gl.active {
	display: block;
}
#header .gl > li {
	padding: 0 0 0 0;
}
#header .gl > li + li {
	margin-left: 0;
}
#header .gl li .child {
	position: relative;
	background: #41cfd9;
	padding: 0 ;
	width: 100%;
	left: 0;
	top: 0;
	border-bottom: 1px solid #fff;
}
#header .gl li > a,
#header .gl li > span {
	padding: 1em 0 1em;
	display: block;
	width: 100%;
	box-sizing: border-box;
	text-align: center;
	border-bottom: 1px solid #fff;
}
#header .gl > li:first-child > a,
#header .gl > li:first-child > span {
	border-top: none;
}
#header .gl li a{
	text-align: center;
	font-weight: bold;
	color: #fff;
}
#header .gl > li span:after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f107";
	padding-left: 0.5em;
	color: #fff;
}
#header .gl > li span.active:after {
	content: "\f106";
}
#header .gl > li li + li{
	border-top: none;
}
#header .gl li .child li a:hover {
	background: inherit;
}

/* ハンバーガーメニュー */
.btn-sp {
	width: 20px;
	height: 20px;
	margin-left: 1.5em;
	margin-right: 14px;
}
.btn-sp a {
	display: block;
	width: 20px;
	height: 0;
	padding-top: 20px;
	overflow: hidden;
}
.btn-sp a.menu-trigger {
	position: relative;
	width: 20px;
	height: 20px;
	z-index: 99999;
	padding: 0;
	margin: 0;
}
.menu-trigger,
.menu-trigger span {
	display: inline-block;
	-webkit-transition: all .4s;
	transition: all .4s;
	box-sizing: border-box;
	cursor: pointer;
}
.menu-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #a3a3a3;
	border-radius: 2px;
	}
.menu-trigger span:nth-of-type(1) {
	top: 1px;
}
.menu-trigger span:nth-of-type(2) {
	top: 8px;
}
.menu-trigger span:nth-of-type(3) {
	bottom: 1px;
}
.menu-trigger.active span:nth-of-type(1) {
	-webkit-transform: translateY(6px) rotate(-315deg);
	-ms-transform: translateY(6px) rotate(-315deg);
	transform: translateY(6px) rotate(-315deg);
	background-color: #fff;
}
.menu-trigger.active span:nth-of-type(2) {
	opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
	-webkit-transform: translateY(-8px) rotate(315deg);
	-ms-transform: translateY(-8px) rotate(315deg);
	transform: translateY(-8px) rotate(315deg);
	background-color: #fff;
}
.layer {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.77);
	z-index: auto;
	cursor: pointer;
}
.layer.active {
	display: block;
}
/* ドロップダウンリスト時背景固定 */
.scroll-prevent {
	position: fixed;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
}

/* ------------------------------
footer
------------------------------ */
/* 高さ調整 */
body>.contents {
	padding-bottom: 120px;
}
@media (min-width: 390px) {
	body>.contents {
		padding-bottom: 140px;
	}
}
@media (min-width: 420px) {
	body>.contents {
		padding-bottom: 180px;
	}
}
@media (min-width: 480px) {
	body>.contents {
		padding-bottom: 220px;
	}
}
@media (min-width: 640px) {
	body>.contents {
		padding-bottom: 250px;
	}
}
#footer {
 	padding: 4px 4px;
	background: #fff;

	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 400;
	/* opacity: 0.95; */
}

/* ------------------------------
banner
------------------------------ */
.banner-wrapper {
	position: relative;
}
.banner-image {
}
.banner-button {
	position: absolute;
	right: 6px;
	top: 6px;
}
.banner-button img {
	width: calc(100vw / 19);
	max-width: 42px;
	margin-left: 4px;
}
.banner-button a:hover {
	opacity: 1;
}

/* ------------------------------
apc
------------------------------ */
.apc-b1s-black { border: 1px solid #000; }
.apc-fs60 { font-size: 60px; font-size: 6rem; }
.apc-fs40 { font-size: 40px; font-size: 4rem; }
.apc-fs39 { font-size: 39px; font-size: 3.9rem; }
.apc-fs38 { font-size: 38px; font-size: 3.8rem; }
.apc-fs36 { font-size: 36px; font-size: 3.6rem; }
.apc-fs34 { font-size: 34px; font-size: 3.4rem; }
.apc-fs33 { font-size: 33px; font-size: 3.3rem; }
.apc-fs32 { font-size: 32px; font-size: 3.2rem; }
.apc-fs31 { font-size: 31px; font-size: 3.1rem; }
.apc-fs30 { font-size: 30px; font-size: 3rem; }
.apc-fs29 { font-size: 29px; font-size: 2.9rem; }
.apc-fs28 { font-size: 28px; font-size: 2.8rem; }
.apc-fs27 { font-size: 27px; font-size: 2.7rem; }
.apc-fs26 { font-size: 26px; font-size: 2.6rem; }
.apc-fs25 { font-size: 25px; font-size: 2.5rem; }
.apc-fs24 { font-size: 24px; font-size: 2.4rem; }
.apc-fs23 { font-size: 23px; font-size: 2.3rem; }
.apc-fs22 { font-size: 22px; font-size: 2.2rem; }
.apc-fs21 { font-size: 21px; font-size: 2.1rem; }
.apc-fs20 { font-size: 20px; font-size: 2rem; }
.apc-fs19 { font-size: 19px; font-size: 1.9rem; }
.apc-fs18 { font-size: 18px; font-size: 1.8rem; }
.apc-fs17 { font-size: 17px; font-size: 1.7rem; }
.apc-fs16 { font-size: 16px; font-size: 1.6rem; }
.apc-fs15 { font-size: 15px; font-size: 1.5rem; }
.apc-fs14 { font-size: 14px; font-size: 1.4rem; }
.apc-fs13 { font-size: 13px; font-size: 1.3rem; }
.apc-fs12 { font-size: 12px; font-size: 1.2rem; }
.apc-fs11 { font-size: 11px; font-size: 1.1rem; }

.text-black { color: #000000; }
.text-red { color: #e60012; }
.text-green { color: #009800; }
.text-limegreen { color: #afdb50; }
.text-emeraldgreen { color: #00c47c; }
.text-mosgreen { color: #358da9; }
.text-darkgreen { color: #008200; }
.text-lightgreen { color: #48a040; }
.text-blue { color: #0065ff; }
.text-skyblue { color: #00a0e9; }
.text-orange { color: #f08300; }
.text-darkGrey { color: #535353; }
.text-pink { color: #e4007f; }

.bgWhite { background: #ffffff; }
.bgGrey {
	/* background: #eff0ea; */
	background: #f6f7f2;
}

.ptb60 { padding-top: 60px; padding-bottom: 60px; }
.ptb30 { padding-top: 30px; padding-bottom: 30px; }
.pb100 { padding-bottom: 100px; }
.apc-mt100 { margin-top: 100px; }

.section60 { width: 100%; padding: 60px 0; }
.section50 { width: 100%; padding: 50px 0; }
.section60t { width: 100%; padding: 60px 0 0; }
.section60b { width: 100%; padding: 0 0 60px; }
.section30 { width: 100%; padding: 30px 0; }
.section30t { width: 100%; padding: 30px 0 0; }
.section30b { width: 100%; padding: 0 0 30px; }
.section0 { width: 100%; padding: 0 0; }

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}