@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap');

/* ==========================================================================
  base
========================================================================== */
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
html, body {-webkit-text-size-adjust: 100%;}
html {font-size: 62.5%;}
body {
	color: #333;
	font-family: Arial, "Kosugi Maru", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, sans-serif;
	font-size: 1.4em;
	line-height: 1.6;
	overflow-x: hidden;
}
img {
	max-width: 100%;
	border: 0;
	vertical-align: top;
	backface-visibility: hidden;
}
b, em, strong {font-weight: bold;}
em {font-style: normal;}
sup, sub {
	font-size: 1.2rem;
	margin: 0 1px;
	position: relative;
}
sup {
	vertical-align: top;
	top: -.1em;
}
sub {
	vertical-align: bottom;
	bottom: -.1em;
}
blockquote {margin: 0;}
button, input, optgroup, select, textarea {
	color: inherit;
	font: inherit;
	padding: 0;
	margin: 0;
}
button, select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none;
	border: none;
	text-transform: none;
}
button[disabled], html input[disabled] {cursor: default;}
button::-moz-focus-inner, input::-moz-focus-inner {
	border: 0;
	padding: 0;
}
select::-ms-expand {display: none;}
textarea {overflow: auto;}

@media screen and (max-width: 767px) {
	body {
		min-width: 320px;
	
	}
	sub, sup {font-size: 1rem;}
}

/* ==========================================================================
  common
========================================================================== */
.show {
	display: block !important;
}
.none {
	display: none !important;
}

/* .clearfix
----------------------------------------------- */
.clearfix:before, .clearfix:after {content: ''; display: table;}
.clearfix:after {clear: both;}

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

/* .hover
----------------------------------------------- */
@media screen and (min-width: 768px) {
	.hover{
		-webkit-transition: all .1s ease-in-out;
		transition: all .1s ease-in-out;
	}
	.hover:hover{
		opacity: 0.7;
		filter: alpha(opacity=70);
		-ms-filter: "alpha(opacity=70)";
	}
	.hover-line:hover {
		text-decoration: underline;
	}
}

/* margin
----------------------------------------------- */
.mt0{margin-top: 0!important;}
.mt5{margin-top: 5px!important;}
.mt15{margin-top: 15px!important;}
.mt10{margin-top: 10px!important;}
.mt20{margin-top: 20px!important;}
.mt30{margin-top: 30px!important;}
.mt40{margin-top: 40px!important;}

.mb0{margin-bottom: 0!important;}
.mb5{margin-bottom: 5px!important;}
.mb10{margin-bottom: 10px!important;}
.mb15{margin-bottom: 15px!important;}
.mb20{margin-bottom: 20px!important;}
.mb25{margin-bottom: 25px!important;}
.mb30{margin-bottom: 30px!important;}
.mb40{margin-bottom: 40px!important;}

/* image
----------------------------------------------- */
.image{
	display: block;
	margin: 0 auto 25px;
}

/* width-over
----------------------------------------------- */
.width-over {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}

@media screen and (max-width: 767px) {
	.width-over__sp {
		margin: 0 calc(50% - 50vw);
		width: 100vw;
	}
}

/* ==========================================================================
  flex
========================================================================== */
.flex {
	display: flex;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-left: 0;
}
.flex > * {
	width: 100%;
}

@media screen and (min-width:768px) {
	.flex {
		margin-left: -20px;
	}
	.flex > * {
		margin: 20px 0 0 20px;
	}
	.col-2,.col-2-2 { width: calc(100% / 2 - 20px) !important; }
	.col-3,.col-3-3 { width: calc(100% / 3 - 20px) !important; }
	.col-4,.col-4-2 { width: calc(100% / 4 - 20px) !important; }
	.col-5,.col-5-2,.col-5-3 { width: calc(100% / 5 - 20px) !important; }
	.col-6,.col-6-3 { width: calc(100% / 6 - 20px) !important; }
	.col-2:nth-child(-n+2),
	.col-2-2:nth-child(-n+2),
	.col-3:nth-child(-n+3),
	.col-3-3:nth-child(-n+3),
	.col-4:nth-child(-n+4),
	.col-4-2:nth-child(-n+4),
	.col-5:nth-child(-n+5),
	.col-5-2:nth-child(-n+5),
	.col-5-3:nth-child(-n+5),
	.col-6:nth-child(-n+6),
	.col-6-3:nth-child(-n+6) { margin-top: 0 !important; }
}

@media screen and (max-width:767px) {
	.flex {
		margin-left: -10px;
	}
	.flex > * {
		margin: 10px 0 0 10px;
	}
	.col-2-2,
	.col-4-2,
	.col-5-2 { width: calc(100% / 2 - 10px) !important; }
	.col-3-3,
	.col-5-3,
	.col-6-3 { width: calc(100% / 3 - 10px) !important; }
	.col-2-2:nth-child(-n+2),
	.col-4-2:nth-child(-n+2),
	.col-3-3:nth-child(-n+3),
	.col-5-2:nth-child(-n+2),
	.col-5-3:nth-child(-n+3),
	.col-6-3:nth-child(-n+3) { margin-top: 0 !important; }
}

/* common
----------------------------------------------- */
.note {
	font-size: 1.2rem;
	text-align: left;
}

/* ==========================================================================
  固定フッター
========================================================================== */
.footMenu {
	position: fixed;
	align-items: center;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 65px;
	background: #fff;
	z-index: 20;
	display: flex;
	justify-content: space-around;
	padding-bottom: 15px;
}
.footMenu_li {
	text-align: center;
	width: 60px;
}
.footMenu_li .footMenu_item {
	display: inline-block;
	padding-top: 20px;
}
.footMenu_li .icon1,
.footMenu_li .icon2,
.footMenu_li .icon3,
.footMenu_li .icon4,
.footMenu_li .icon5,
.footMenu_li .icon6 {
	position: relative;
	font-size: 8px;
	color: #666;
	line-height: 1;
}
.footMenu_li .icon1::before,
.footMenu_li .icon2::before,
.footMenu_li .icon3::before,
.footMenu_li .icon4::before,
.footMenu_li .icon5::before,
.footMenu_li .icon6::before {
	display: block;
	position: absolute;
	content: '';
	width: 18px;
	height: 18px;
	background: url(/img/icon_good.svg) no-repeat center center;
	background-size: 18px 18px;
	left: 0;
	right: 0;
	top: -22px;
	margin: auto;
}
.footMenu_li .icon2::before { background-image: url(/img/icon_star.svg); }
.footMenu_li .icon3::before { background-image: url(/img/icon_rakushifu.svg); }
.footMenu_li .icon4::before { background-image: url(/img/icon_gear.svg); }
.footMenu_li .icon5::before { background-image: url(/img/icon_logout.svg); }
.footMenu_li .icon6::before { background-image: url(/img/icon_manual.svg); }
