@charset "utf-8";
@import url('reset.css?v=2');
/*
 *  共通
 */
html {
	font-size:10px;
}
body {
	color:#000;
	width: 100%;
	font-family: 'Noto Sans','Noto Sans JP', sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 1.6rem;
	line-height: 1.6;
	letter-spacing:0;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
}
a {
	color:#004da0;
	display:inline-block;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	text-decoration: none;
	text-underline-offset: 0.2em;
}
a:focus {
	outline:none;
}
a:link{
	color:#004da0;
	text-decoration: none;
}
a:visited{
	color:#004da0;
	text-decoration: none;
}
a:hover{
	color:#004da0;
	text-decoration: underline;
}
a:active{
	color:#004da0;
	text-decoration: underline;
}
img {
	line-height: 0;
	border: 0;
	width:100%;
	max-width:none;
	vertical-align:top;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
img::selection {
	background-color: transparent;
}
table {
	width:100%;
	table-layout: fixed;
}
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	font-size: 0;
	line-height: 0;
	visibility: hidden;
}
.clearfix {
	min-height: 1px;
}
.cleartxt {
	text-indent: -99999%;
	text-decoration: none;
	overflow: hidden;
	white-space: nowrap;
}
.clr {
	clear:both;
}
.text-center {
	text-align: center;
}

.button ,
.button-image {
	text-decoration: none;
	transition: all 0.3s;
}
.button:hover,
.button:active  {
	opacity: 0.6;
}
.button-image:hover,
.button-image:active {
	filter: brightness(1.2);
}
/* box */
.trans-box {
	position:relative !important;
	cursor: pointer !important;
	overflow: hidden !important;
	text-decoration:none !important;
	transition:background 0.4s ease-out !important;
	color:#575757 !important;
	background:#fff !important;
	border:1px solid #575757;
	display: flex;
	align-items: center;
	min-height: 4.5em;
	font-size:1.6rem;
	font-weight: 600;
	padding:0 0.5em;
	line-height: 1.2;
}
.trans-box.arrow {
	padding-left:2.4em;
}
.trans-box.arrow:before {
	content: '';
	position: absolute;
	background-image: url(../img/icon-arrow-g.png);
	background-repeat: no-repeat;
	background-size: contain;
	width:1.25em;
	height:1.3em;
	left:0.75em;
	top:0;
	bottom:0;
	margin:auto;
	transition: all 0.6s;
}
.trans-box:hover,
.trans-box:active {
	transition:background 0.6s ease-out,color 0.6s ease-out !important;
	text-decoration:none !important;
	color:#fff !important;
	background:#575757 !important;
}
.trans-box.arrow:hover:before,
.trans-box.arrow:active:before {
	background-image: url(../img/icon-arrow-w.png);
}
.trans-image {
	line-height: 1;
	text-decoration:none !important;
}
.trans-image > .image {
	display:block;
	margin:0 auto;
	overflow:hidden;
}
.trans-image:hover,
.trans-image:active {
	text-decoration:underline !important;
}
.trans-image > .image > img {
	transition:0.2s ease-in !important;
}
.trans-image:hover > .image > img,
.trans-image:active > .image > img {
	transition:0.3s ease-out !important;
	transform:scale(1.2,1.2);
}
.trans-image.s1:hover > .image > img,
.trans-image.s1:active > .image > img {
	transform:scale(1.1,1.1);
}
.js-inview {
	position:relative;
	overflow:hidden;
}
.js-inview > .inview-box {
	position:absolute;
	left:0;
	top:0;
	opacity:0;
}
.is-inview > .inview-box {
	/* transition:left 0.6s ease-in-out,top 0.6s ease-in-out,opacity 0.6s ease-in-out !important; */
	transition:left 0.8s ease-in-out,top 0.8s ease-in-out,opacity 0.8s ease-in-out !important;
	position:relative;
	top:0 !important;
	left:0 !important;
	opacity:1 !important;
}
@media print, screen and (min-width: 728px) {
	img {
		width:auto;
		max-width: 100%;
	}
	.trans-box {
		font-size:1.8rem;
	}
	.js-inview > .inview-box {
		top:100px;
	}
	.js-inview.inview-left,
	.js-inview.inview-right {
		overflow:visible;
	}
	.js-inview.inview-left > .inview-box,
	.js-inview.inview-right > .inview-box {
		top:0;
	}
	.js-inview.inview-left > .inview-box {
		left:-100px;
	}
	.js-inview.inview-right > .inview-box {
		left:100px;
	}
}
/* layout */
body > .wrapper ,
header ,
main ,
footer {
	width:100%;
	padding:0;
	margin:0;
	position:relative;
	z-index: 0;
}
body > .wrapper {
	display: flex;
	flex-direction: column;
	min-width: 300px;
	min-height: 100vh;
}
header {
	z-index:2;
}
main {
	flex:1;
	z-index:1;
}
.container {
	width:auto;
	max-width:1240px;
	margin:0 auto;
	position:relative;
	padding:0 10px;
	overflow: hidden;
}
@media print, screen and (min-width: 728px) {
	.container {
		padding:0 20px;
	}
}

/* s.header */
header .menubar {
	background-color: #000;
	overflow: hidden;
}
header .menubar .container {
	display: flex;
	align-items: center;
	line-height:1;
}
header .menubar .lik,
header .menubar .sns {
	vertical-align: middle;
	padding:6px 0;
}
header .menubar .link > * {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	font-size:1.2rem;
	font-weight:500;
	margin:12px 20px 12px 0;
	color:#fff;
}
header .menubar .link > *:before {
	content:'';
	position: absolute;
	background-repeat: no-repeat;
	background-size:contain;
	left:0;
	top:0;
	bottom:0;
	margin:auto;
	height:20px;
}
header .menubar .link .tel {
	padding-left:16px;
}
header .menubar .link .tel:before {
	background-image: url('../img/icon-tel.png');
	width:12px;
}
header .menubar .link .mail {
	display: none;
	padding-left:36px;
}
header .menubar .link .mail:before {
	background-image: url('../img/icon-mail.png');
	width:30px;
}
header .menubar .link .access {
	display: none;
	padding-left:18px;
}
header .menubar .link .access:before {
	background-image: url('../img/icon-access.png');
	width:14px;
}
header .menubar .sns {
	text-align: right;
	flex:1;
}
header .menubar .sns > a {
	vertical-align: middle;
	margin-left:10px;
	width:24px;
	filter: brightness(0) invert(1);
}
header > .container {
	display: flex;
	align-items: center;
}
header .logo {
	padding:0;
	margin:20px 0;
	width:230px;
	line-height: 1;
}
header .menu {
	position: fixed;
	width: 290px;
	height:100%;
	padding: 100px 10px 0;
	background-color:#000;
	top: 0;
	right: 0;
	z-index: 10;
	opacity:0;
	overflow-y:scroll;
	transform: translate(290px);
	transition:transform 0.5s;
}
header .menu.open {
	opacity:0.9;
	transform: translateZ(0);
}
header .menu ul {
	border-top: 1px solid #fff;
}
header .menu li {
	position: relative;
	padding:0;
	margin:0;
	font-size:1.6rem;
	line-height: 1.4;
	font-weight:500;
	border-bottom: 1px solid #fff;
}
header .menu a {
	position:relative;
	display:block;
	padding:1em 0;
	text-decoration:none;
	text-align: center;
	color:#fff;
}
header .menu a:hover,
header .menu a:active {
	text-decoration: underline;
}
header .menu-trigger {
	display: inline-block;
	width: 36px;
	height: 29px;
	vertical-align: middle;
	cursor: pointer;
	position: fixed;
	top: 52px;
	right: 24px;
	z-index: 100;
	transform: translateX(0);
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
header .menu-trigger span {
	display: inline-block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #000;
	transition: all 0.5s;
	border-radius:10px;
}
header .menu-trigger.active span {
 	background-color: #fff;
}
header .menu-trigger span:nth-of-type(1) {
 	top: 0;
}
header .menu-trigger.active span:nth-of-type(1) {
 	transform: translateY(12px) rotate(-45deg);
}
header .menu-trigger span:nth-of-type(2) {
 	top: 12px;
}
header .menu-trigger.active span:nth-of-type(2) {
 	opacity: 0;
}
header .menu-trigger span:nth-of-type(3) {
 	bottom: 0;
}
header .menu-trigger.active span:nth-of-type(3) {
 	transform: translateY(-12px) rotate(45deg);
}
@media print, screen and (min-width: 728px) {
	header .menubar .link .mail,
	header .menubar .link .access {
		display: inline-block;
	}
	header .logo {
		width:250px;
		margin:30px 1%;
	}
	header .menu {
		position: relative;
		flex:1;
		margin:0 1% 0 0;
		padding:0 !important;
		background:transparent;
		overflow-y:visible;
		width:auto;
		height:auto;
		right:auto;
		top:auto !important;
		transform:none;
		opacity:1;
		transition: all 0s;
	}
	header .menu ul {
		display:flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: flex-end;
		margin:10px 0;
		border:0;
	}
	header .menu li {
		margin:0;
		padding:6px 0 6px 1em;
		font-size:1.4rem;
		border:0;
	}
	header .menu a {
		margin:0;
		padding:0;
		color:#000;
	}
	header .menu-trigger {
		display:none;
	}
}
.main-image {
	position:relative;
	margin:0 auto;
	padding:0;
	width:100%;
	max-width:1200px;
	line-height: 1;
	z-index:1;
	overflow: hidden;
}
.main-image:before {
	content: '';
	display: block;
	padding-top: 51.667%;
}
.main-image > .main-slider,
.main-image > .image {
	position:absolute;
	width:100%;
	height:100%;
	left:0;
	top:0;
	overflow: hidden;
}
.main-image > .main-slider .main-slick {
	position: relative;
	text-align: center;
}
.main-image > .main-slider a {
	text-decoration: none;
}
.main-image .image img {
	max-width: none;
	width:100%;
}
.main-image .title {
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color:rgba(149,168,178,0.8);
	padding:0 5% 0 0;
	color:#fff;
	line-height: 1.2;
	position: absolute;
	margin:auto;
	width:100%;
	height:45%;
	min-height:110px;
	left:0;
	top:0;
	bottom:0;
	text-shadow: 0 0 6px #95a8b2, 0 0 6px #95a8b2, 0 0 6px #95a8b2, 0 0 6px #95a8b2, 0 0 6px #95a8b2;
}
.main-image .title span {
	display: block;
	padding:0 0 0 5%;
	font-size:1.6rem;
	font-weight: 700;
}
.main-image .title span:first-child {
	padding-bottom:0.25em;
	margin-bottom:0.4em;
	font-size:3rem;
	font-weight:600;
	border-bottom:1px solid #fff;
}
.main-image.is-inview .image > img {
	transition:1.5s ease-in-out !important;
	transform:scale(1.2,1.2);
}
.main-image.is-inview .title {
	opacity:0;
}
.main-image.is-inview-done .title {
	transition:0.5s ease-in-out;
	opacity:1;
}
@media print, screen and (min-width: 728px) {
	.main-image .title {
		width:40%;
		background-color: #95a8b2;
	}
	.main-image .title span {
		padding:0 0 0 7%;
		font-size:1.8rem;
	}
	.main-image .title span:first-child {
		font-size:3.2vw;
	}
}
@media print, screen and (min-width: 1240px) {
	.main-image .title span:first-child {
		font-size:4rem;
	}
}
/* breadcrumbs */
main .breadcrumbs {
	overflow-x: auto;
	padding:16px 0;
}
main .breadcrumbs > div {
	display: table;
	width:100%;
}
main .breadcrumbs > div > * {
	position: relative;
	display: table-cell;
	padding:0;
	font-size:1.4rem;
	font-weight:500;
	line-height: 1.3;
	color:#000;
	white-space: nowrap;
	vertical-align: middle;
}
main .breadcrumbs > div > a ,
main .breadcrumbs > div > .label {
	font-weight: 600;
	color:#717171;
	text-decoration: none;
}
main .breadcrumbs > div > a:hover,
main .breadcrumbs > div > a:active {
	text-decoration: underline;
}
main .breadcrumbs > div > .arrow {
	padding:0 0.5em;
}
main .breadcrumbs > div > .arrow:before {
	content:'';
	position: absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	margin:auto;
	width:8px;
	height:14px;
	background-image: url(../img/icon-arrow.png);
	background-repeat: no-repeat;
	background-size: contain;
}
main .breadcrumbs > div > *:last-child {
	width:100%;
}
@media print, screen and (min-width: 728px) {
	main .breadcrumbs > div {
		display: flex;
		align-items: center;
	}
	main .breadcrumbs > div > * {
		font-size:1.6rem;
		white-space: normal;
	}
	main .breadcrumbs > div > *:last-child {
		flex:1;
	}
}
.section {
	position: relative;
	margin:0 auto;
	padding:40px 0 0;
}
.section:first-child {
	padding-top:0;
}
.section:last-child {
	padding-bottom:40px;
}
.section > .title {
	position: relative;
	margin:0;
	padding:0;
	font-size:2.4rem;
	font-weight:700;
	line-height:1.4;
	text-align:center;
	color:#717171;
}
.section > .title.invert {
	padding:0.5em;
	background-color: #717171;
	font-size:1.8rem;
	color:#fff;
}
.section > .text {
	position: relative;
	margin:20px 0 0;
	padding:0;
	font-size:1.6rem;
	font-weight:500;
}
.section > .box {
	position: relative;
	margin:20px 0 0;
}
.section > .image {
	position: relative;
	margin:20px auto 0;
	text-align: center;
}
.section > .group-button {
	margin:0 -10px;
	padding:10px 0 0;
	font-size:0;
	text-align:center;
}
.list-box {
	font-size:0;
	text-align:center;
}
.list-box > * {
	position:relative;
	display:inline-block;
	vertical-align: top;
}
.list-bullet > *,
.list-double > *,
.list-square > *,
.list-notice > * {
	padding-left:1em;
}
.list-bullet > *:before,
.list-double > *:before,
.list-square > *:before,
.list-notice > *:before {
	content:'';
	position:absolute;
	left:0;
}
.list-bullet > *:before {
	content:'●';
}
.list-double > *:before {
	content:'◎';
}
.list-square > *:before {
	content:'■';
}
.list-notice  > *:before{
	content:'※';
}
.section > *:first-child {
	margin-top:0 !important;
}
.popup-hidden {
	display: none;
}
@media print, screen and (min-width: 728px) {
	.section {
		padding-top:40px;
	}
	.section:first-child {
		padding-top:0;
	}
	.section:last-child {
		padding-bottom:60px;
	}
	.section > .title {
		font-size:3rem;
	}
	.section > .title.invert {
		font-size:2rem;
	}
	.section > .text {
		margin:30px 0 0;
		font-size:1.5rem;
	}
	.section > .box {
		margin:30px 0 0;
	}
	.section > .image {
		margin:30px 0 0;
	}
	.section > .group-button {
		margin:0 -15px;
	}
}
footer {
	overflow: hidden;
}
footer > .wrapper {
	background-color: #dbdbdb;
	box-shadow:inset 0px 3px 10px rgba(0, 0, 0, 0.6);
	margin:0 -10px;
	padding:0 10px;
}
footer .menu {
	padding:20px 0 0;
}
footer .menu li {
	display: inline-block;
}
footer .menu li.index {
	width:100%;
}
footer .menu li > * {
	position: relative;
	display: inline-block;
	padding:0.5em 1em;
	font-size:1.6rem;
	line-height:1.4;
	font-weight:500;
	color:#000;
	text-decoration:none;
}
footer .menu li > *:before {
	content:'';
	position: absolute;
	left:0;
	top:11px;
	width:1em;
	height:1em;
	line-height: 1;
}
footer .menu li > span {
	font-weight:600;
	margin:0.5em 0 0;
}
footer .menu li > span:before {
	content:'・';
}
footer .menu li > a {
	padding-left:1.5em;
}
footer .menu li > a:before {
	background-image: url(../img/icon-arrow.png);
	background-repeat: no-repeat;
	background-size:contain;
	left:0.5em;
}
footer .menu li > a:hover,
footer .menu li > a:active {
	text-decoration: underline;
}
footer .introduction {
	position: relative;
	padding-bottom:58px;
}
footer .introduction li {
	display: block;
	margin:auto;
	padding:0;
	font-size:1.6rem;
	font-weight:500;
	line-height:1.4;
	text-align: center;
}
footer .introduction .logo {
	padding:26px 0 16px;
	line-height:1;
}
footer .introduction .logo a {
	max-width:250px;
	min-width:230px;
	width:80%;
}
footer .copyright {
	position: absolute;
	margin:0 auto;
	padding:0;
	bottom:20px;
	left:0;
	right:0;
	font-size:1.4rem;
	line-height:1.4;
	text-align: center;
}
@media print, screen and (min-width: 728px){
	footer .container {
		display: flex;
		padding-top:30px;
		padding-bottom:30px;
	}
	footer .menu {
		order:2;
		display:flex;
		flex-wrap: wrap;
		flex: 1;
		margin:0;
		padding:0 0 0 3%;
		border-top:0;
		border-left:1px solid #000;
	}
	footer .menu ul {
		margin:0;
		width:50%;
		border:0;
	}
	footer .menu li {
		width:100%;
	}
	footer .menu li > * {
		padding-top:5px;
		padding-bottom:5px;
		font-size:1.4rem;
	}
	footer .menu li > span {
		margin:0.75em 0 0;
	}
	footer .menu li > span:before {
		top:8px;
	}
	footer .menu li:first-child > span {
		margin:0;
	}
	footer .menu li > a:before {
		width:16px;
		height:16px;
		top:6px;
	}
	footer .introduction {
		order:1;
		width:300px;
		margin:0;
		padding:0 3% 0 0;
	}
	footer .introduction li {
		font-size:1.5rem;
		text-align: left;
	}
	footer .copyright {
		text-align: left;
		bottom:3px;
	}
}
@media print, screen and (min-width: 1025px){
	footer .container {
		padding-left:3%;
		padding-right:3%;
	}
	footer .menu {
		padding-left:5%;
	}
	footer .introduction {
		padding-right:5%;
		width:auto;
	}
}
.vd,.vt,.hm {
	display:none !important;
}
.hd,.ht,.vm {
	display:inherit !important;
}
br.vd,br.hd,br.vt,br.htbr.vm,br.vm {
	line-height:0 !important;
}
@media print, screen and (min-width: 728px){
	.vd,.ht,.vm {
		display:none !important;
	}
	.hd,.vt,.hm {
		display:inherit !important;
	}
}
@media print, screen and (min-width: 1025px){
	.hd,.vt,.vm {
		display:none !important;
	}
	.vd,.ht,.hm {
		display:inherit !important;
	}
}
/* print */
@media print {
	body{
		-webkit-print-color-adjust: exact;
	}
	body > .wrapper {
		min-width: 1200px !important;
	}
	.js-inview > .inview-box {
		position:relative;
		top:0 !important;
		left:0 !important;
		opacity:1 !important;
		min-height:auto !important;
	}
	.main-image.js-inview .title {
		opacity:1 !important;
	}
	.section > div {
		page-break-inside:avoid;
	}
}
@page {
	size: A4 portrait;
	margin-left:   0;
	margin-right:  0;
	margin-top:    10mm;
	margin-bottom: 10mm;
}
