@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hina+Mincho&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap');
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 1em;
}
html {
	font-size: 62.5%;
}
body, table, input, textarea, select, option {
	font-family: 'Noto Sans JP', sans-serif;
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
img {
	vertical-align: top;
	max-width: 100%;
    height: auto;
}
a,
a:link {
	color: #333;
	text-decoration: none;
	transition: .3s;
}
a:visited {
	color: #333;
}
a:hover {
	color: #333;
}
a:active {
	color: #333;
}
/*------------------------------------------------------------
	SP PC 振り分け
------------------------------------------------------------*/
.sp_only {
	display: none;
}
@media all and (max-width: 896px) {
	.sp_only {
		display: block;
	}	
}
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* clearfix */	
.clearfix:after {content: "";display: block;clear: both;}
/* flex */	
.flex,.flexA,.flexB,.flexC {display: flex;flex-wrap: wrap;}
.flexA {justify-content: space-around;}
.flexB {justify-content: space-between;}
.flexC {justify-content: center;}
.mg100 {margin-top: 100px;}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	min-width: 1000px;
	color: #333;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.5;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: #FFF;
}
#container {
	text-align: left;
}
#main {
	display: block;
}
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
@media all and (min-width: 897px) {
	.sp {
		display: none !important;
	}
	.menu-box {
		display: none !important;
	}
}
@media all and (max-width: 896px) {
	body {
		min-width: inherit;
	}
	body.fixed {
		position: fixed;
		width: 100%;
		height: 100%;
	}
	a:hover,
	a:hover img {
		opacity: 1 !important;
	}
	.pc {
		display: none !important;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
}
/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#header {
	height: 120px;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	padding: 35px 0 0 50px;
	box-sizing: border-box;
	z-index: 99;
}
#header.on {
	background: rgba(51,51,51,0.5);
}
#header h1 {
	width: 291px;
}
#header .h-info {
	width: 700px;
	margin-top: -27px;
}
#header .h-list {
	width: 455px;
	margin: 0 0 0 auto;
}
#header .h-list li {
	width: 197px;
	height: 60px;
	box-sizing: border-box;
}
#header .h-list li:first-child {
	width: 258px;
	padding: 2px 0 0 64px;
	color: #fff;
	font-size: 1.1rem;
	letter-spacing: 0.1em;
	background: #03C5F6 url("../img/common/icon02.png") no-repeat left 26px top 10px;
	background-size: 28px auto;
	border-right: 2px dashed #fff;
}
#header .h-list li:first-child span {
	margin-bottom: -2px;
	display: block;
	font-size: 2.3rem;
	letter-spacing: 0.05em;
}
#header .h-list a {
	height: 100%;
	padding: 20px 0 0 38px;
	display: block;
	text-align: center;
	letter-spacing: 0.1em;
	background: #A7EDFF url("../img/common/icon01.png") no-repeat left 31px center;
	background-size: 25px auto;
	box-sizing: border-box;
}
#g-navi {
	margin: 10px 51px 0 0;
}
#g-navi ul {
	font-weight: 700;
	letter-spacing: 0.05em;
	justify-content: flex-end;
}
#g-navi li:not(:first-child) {
	margin-left: 15px;
}
#g-navi a {
	padding: 0 9px;
	display: inline-block;
	color: #fff;
	position: relative;
}
#g-navi a:before {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 10px;
	background-color: #03C5F6;
	content: "";
	opacity: 0;
	transition: .3s;
}
#g-navi a:hover:before,
#g-navi li.on a:before {
	opacity: 1;
}
#g-navi a span {
	position: relative;
	z-index: 1;
}
@media all and (max-width: 1050px) {
	#header {
		padding-left: 15px;
	}
	#header .h-info {
		width: 570px;
	}
	#g-navi {
		margin-right: 15px;
	}
	#g-navi li:not(:first-child) {
		margin-left: 7px;
	}
}
@media all and (min-width: 897px) {
	#header .h-list a:hover {
		color: #A7EDFF;
		background-color: #fff;
		background-image: url("../img/common/icon01_on.png");
	}
}
@media all and (max-width: 896px) {
	#header {
		height: 65px;
		padding: 16px 15px 10px;
	}
	#header h1 {
		width: 160px;
	}
	#header .h-info {
		display: none;
	}
	.menu {
		position: fixed;
		top: 10px;
		right: 10px;
		width: 45px;
		height: 45px;
		background-color: #03C5F6;
		z-index: 99;
	}
	 .menu span {
		width: 15px;
		height: 2px;
		position: absolute;
		top: 15px;
		left: 15px;
		background: #fff;
		border-radius: 3px;
		transition: all .35s ease;
    }
    .menu span:nth-of-type(2) {
        top: 21px;
    }
    .menu span:nth-of-type(3) {
        top: 27px;
    }
    .menu.on span:nth-of-type(1) {
        transform: translateY(7px) translateX(0) rotate(45deg);
    }
    .menu.on span:nth-of-type(2) {
        opacity: 0;
    }
    .menu.on span:nth-of-type(3) {
        transform: translateY(-5px) translateX(0) rotate(-45deg);
    }
	.menu-box {
		display: none;
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		overflow-y: auto;
		box-sizing: border-box;
		z-index: 98;
		background: rgba(51,51,51,0.5);
	}
	.menu-box .menu-info {
		padding: 65px 0;
	}
	.menu-box .menu-list a {
		padding: 21px 30px;
		display: block;
		font-size: 1.2rem;
		font-weight: 700;
		color: #fff;
		letter-spacing: 0.1em;
		background: #03C5F6 url("../img/common/sp_icon01.png") no-repeat center right 19px;
		background-size: 7px auto;
		border-bottom: 1px solid rgba(255,255,255,0.5);
	}
	.menu-box .menu-list a > span {
		display: inline-block;
		position: relative;
	}
	.menu-box .menu-list a > span:before {
		position: absolute;
		left: -5px;
		bottom: 0;
		right: -5px;
		height: 5px;
		background: rgba(51,51,51,0.5);
		content: "";
		opacity: 0;
	}
	.menu-box .menu-list li.on a > span:before {
		opacity: 1;
	}
	.menu-box .menu-list a > span span {
		position: relative;
		z-index: 1;
	}
	.menu-box .menu-ul {
		padding: 20px;
		background-color: #fff;
	}
	.menu-box .menu-ul li:first-child a {
		color: #fff;
		border-bottom: 1px dashed #fff;
		padding-left: 32px;
		font-size: 0.9rem;
		text-align: left;
		letter-spacing: 0.1em;
		background: url("../img/common/icon02.png") no-repeat left 5px top 9px,#03C5F6;
		background-size: 20px auto;
    background-position: calc(50% - 80px) 15px;
    padding: 8px 0 8px calc(50% - 60px);
	}
	.menu-box .menu-ul li:first-child a > span.lato {
		padding: 0;
		margin-bottom: -2px;
		display: block;
		font-size: 1.8rem;
		letter-spacing: 0.05em;
		background: none;
	}
	.menu-box .menu-ul a {
		height: 60px;
		padding-top: 21px;
		display: block;
		text-align: center;
		font-size: 1.15rem;
		letter-spacing: 0.1em;
		box-sizing: border-box;
		background-color: #A7EDFF;
	}
	.menu-box .menu-ul a > span {
		padding-left: 35px;
		display: inline-block;
		background: url("../img/common/sp_icon02.png") no-repeat left center;
		background-size: 20px auto;
	}
}
/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#footer {
	padding-top: 73px;
	background-color: #C8C8C8;
}
#footer .page-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 80px;
	z-index: 90;
	opacity: 0;
	visibility: hidden;
	transition: all .8s ease;
}
#footer .page-top.is-active {
	opacity: 1;
	visibility: inherit;
}
#footer .page-top a {
	display: block;
	position: relative;
}
#footer .page-top a:before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url("../img/common/page_top_on.jpg") no-repeat;
	background-size: 80px auto;
	content: "";
	opacity: 0;
	transition: .3s;
}
#footer .f-box {
	max-width: 1030px;
	padding: 0 15px;
	margin: 0 auto 78px;
	box-sizing: border-box;
	align-items: flex-start;
}
#footer .f-info {
	width: 360px;
}
#footer .f-logo {
	margin-bottom: 32px;
	width: 291px;
}
#footer .f-text {
	color: #7D7D7D;
	letter-spacing: 0.1em;
}
#footer .f-navi {
	margin: -26px 0 0 49px;
	width: 370px;
}
#footer .f-navi li {
	width: 108px;
	margin-top: 21px;
	font-weight: bold;
	letter-spacing: 0.05em;
}
#footer .f-navi li:nth-child(3n - 1) {
	width: 122px;
}
#footer .f-navi a {
	color: #7D7D7D;
}
#footer .f-navi a:hover {
	text-decoration: underline;
}
#footer address {
	padding: 29px 0;
	text-align: center;
	color: #fff;
	font-weight: 700;
	letter-spacing: 0.1em;
	font-style: normal;
	background-color: #333;
}
@media all and (min-width: 897px) {
	#footer .page-top a:hover:before {
		opacity: 1;
	}
}
@media all and (max-width: 896px) {
	#footer {
		padding-top: 33px;
	}
	#footer .page-top {
		bottom: 20px;
		right: 20px;
		width: 40px;
	}
	#footer .f-box {
		max-width: inherit;
		display: block;
		margin: 0 auto 30px;
	}
	#footer .f-info {
		width: auto;
	}
	#footer .f-logo {
		margin: 0 auto 12px;
		width: 217px;
	}
	#footer .f-text {
		font-size: 1.2rem;
		text-align: center;
	}
	#footer .f-navi {
		display: none;
	}
	#footer address {
		padding: 18px 0;
		font-size: 1rem;
	}
}
/*------------------------------------------------------------
	font
------------------------------------------------------------*/
.lato {
	font-weight: 900;
	font-family: 'Lato', sans-serif;
}
.min {
	font-weight: 400;
	font-family: 'Hina Mincho', serif;
}
/*------------------------------------------------------------
	page-title
------------------------------------------------------------*/
.page-title {
	margin-bottom: 99px;
	height: 500px;
	padding: 249px 15px 0;
	box-sizing: border-box;
	background: url("../img/common/page_title_bg.jpg") no-repeat center center;
	background-size: cover;
}
.page-title h2 {
	margin: 0 auto;
	max-width: 1000px;
	color: #fff;
	font-size: 5rem;
	letter-spacing: 0.05em;
	box-sizing: border-box;
}
@media all and (max-width: 896px) {
	.page-title {
		margin-bottom: 50px !important;
		padding-top: 99px;
		height: 200px;
		background-image: url("../img/common/sp_page_title_bg.jpg");
	}
	.page-title h2 {
		font-size: 2.5rem;
		text-align: center;
	}
}
/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
	max-width: 1030px;
	padding: 0 15px;
	margin: 0 auto;
	box-sizing: border-box;
}
@media all and (max-width: 896px) {
	.content {
		max-width: inherit !important;
		padding: 0 30px;
	}
}
@media all and (max-width: 359px) {
	.content {
		padding: 0 15px;
	}
}
/*------------------------------------------------------------
	head-line01
------------------------------------------------------------*/
.head-line01 {
	margin-bottom: 19px;
	font-size: 2.5rem;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.1em;
	font-family: 'Hina Mincho', serif;
}
.head-line01 span {
	margin-bottom: 7px;
	display: block;
	color: #03C5F6;
	font-size: 1.2rem;
	font-weight: 900;
	letter-spacing: 0.5em;
	font-family: 'Lato', sans-serif;
}
@media all and (max-width: 896px) {
	.head-line01 {
		margin-bottom: 14px !important;
		font-size: 1.8rem;
		line-height: 1.3;
		text-align: center;
	}
	.head-line01 span {
		margin-bottom: 7px;
		font-size: 1.2rem;
	}
}
/*------------------------------------------------------------
	head-line02
------------------------------------------------------------*/
.head-line02 {
	margin-bottom: 81px;
	position: relative;
	font-size: 3.2rem;
	font-weight: 400;
	text-align: center;
	letter-spacing: 0.05em;
}
.head-line02::before {
	margin-left: -40px;
	position: absolute;
	width: 80px;
	height: 2px;
	left: 50%;
	bottom: -31px;
	background-color: #03C5F6;
	content: "";
}
@media all and (max-width: 896px) {
	.head-line02 {
		margin-bottom: 50px !important;
		font-size: 1.8rem;
	}
	.head-line02::before {
		margin-left: -30px;
		width: 60px;
		bottom: -15px;
	}	
}
/*------------------------------------------------------------
	head-line03
------------------------------------------------------------*/
.head-line03 {
	margin-bottom: 40px;
	padding: 0 0 6px 20px;
	font-size: 2.5rem;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0.1em;
	font-family: 'Hina Mincho', serif;
	border-left: 2px solid #03C5F6;
}
@media all and (max-width: 896px) {
	.head-line03 {
		margin-bottom: 20px;
		padding: 0 0 4px 10px;
		font-size: 1.8rem;
	}
}
/*------------------------------------------------------------
	com-link
------------------------------------------------------------*/
.com-link {
	width: 231px;
	margin: 0 auto;
}
.com-link a {
	height: 61px;
	padding: 5px 33px 4px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-weight: 700;
	font-size: 1.6rem;
	letter-spacing: 0.1em;
	background: #A7EDFF url("../img/common/icon03.png") no-repeat center right;
	background-size: 61px auto;
	border-radius: 76px;
	box-sizing: border-box;
}
.com-link a:hover {
	opacity: 0.7;
}
@media all and (max-width: 896px) {
	.com-link {
		width: auto !important;
		max-width: 200px;
	}
	.com-link a {
		height: 45px;
		padding: 3px 20px 4px 0;
		font-size: 1.4rem;
		background-size: 45px auto;
	}
}
/*------------------------------------------------------------
	com-contact
------------------------------------------------------------*/
.com-contact {
	padding: 100px 0 31px;
}
.com-contact .pho {
	overflow: hidden;
	border-radius: 10px;
}
.com-contact .text-box {
	max-width: 740px;
	padding: 57px 60px;
	position: relative;
	z-index: 1;
	margin: -161px 50px 0 auto;
	box-sizing: border-box;
	background-color: #fff;
	border-radius: 10px;
}
.com-contact .head-line01 {
	margin-bottom: 33px;
}
.com-contact p {
	margin-bottom: 35px;
	letter-spacing: 0.05em;
	line-height: 2.14;
}
.com-contact .com-link {
	width: 310px;
	margin: 0 -15px 0 0;
}
.com-contact .com-link a {
	font-size: 1.4rem;
}
.com-contact .com-link span {
	padding-left: 35px;
	display: inline-block;
	background: url("../img/common/icon01.png") no-repeat left center;
	background-size: 25px auto;
}
.com-contact ul li:first-child {
	margin-top: -1px;
	font-size: 1.2rem;
	letter-spacing: 0.1em;
}
.com-contact ul li:first-child a {
	padding: 0 0 0 41px;
	min-height: 70px;
	display: block;
	background: url("../img/common/icon05.png") no-repeat left 3px top 13px;
	background-size: 26px auto;
	color: #03C5F6;
}
.com-contact ul li:first-child span {
	margin-bottom: -9px;
	display: block;
	font-size: 3.1rem;
	letter-spacing: 0.05em;
}
@media all and (max-width: 896px) {
	.com-contact {
		padding: 40px 0;
	}
	.com-contact .pho {
		border-radius: 5px;
	}
	.com-contact .pho img {
		width: 100%;
	}
	.com-contact .text-box {
		max-width: inherit;
		padding: 30px 20px;
		margin: -80px 20px 0;
		border-radius: 5px;
	}
	.com-contact .head-line01 {
		margin-bottom: 14px;
	}
	.com-contact p {
		margin-bottom: 10px;
		line-height: 1.66;
	}
	.com-contact .com-link {
		max-width: 237px;
		margin: 0 auto;
	}
	.com-contact .com-link a {
		font-size: 1.1rem;
	}
	.com-contact .com-link span {
		padding-left: 28px;
		background-size: 18px auto;
	}
	.com-contact ul {
		display: block;
	}
	.com-contact ul li:first-child {
		margin: 0 0 6px;
		font-size: 1rem;
		text-align: center;
	}
	.com-contact ul li:first-child a {
		padding: 0 0 0 29px;
		min-height: 55px;
		display: inline-block;
		text-align: left;
		background-position: left top 9px;
		background-size: 22px auto;
	}
	.com-contact ul li:first-child span {
		margin-bottom: -2px;
		font-size: 2rem;
	}
}
@media all and (max-width: 359px) {
	.com-contact .com-link a {
		padding-right: 28px;
	}
	.com-contact .com-link span {
		padding-left: 21px;
	}
}
/*------------------------------------------------------------
	com-slide
------------------------------------------------------------*/
.com-slide .slide {
	width: 19.52%;
	margin: 0 0.3%;
}
.com-slide .slide:first-child {
	margin-left: 0;
}
.com-slide .slide:nth-child(5) {
	margin-right: 0;
}
.com-slide .slide a {
	display: block;
	position: relative;
	overflow: hidden;
	border-radius: 5px;
}
.com-slide .slide a:hover {
	opacity: 0.7;
}
.com-slide .slide a img {
	max-width: inherit;
	width: 100%;
	height: 195px;
	object-fit: cover;
	font-family: 'object-fit: cover;';
}
.com-slide .slide .text {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	padding: 20px 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}
.com-slide .slide .text span {
	min-width: 170px;
	padding: 9px 5px;
	font-weight: 700;
	line-height: 1.21;
	text-align: center;
	letter-spacing: 0.1em;
	display: inline-block;
	background-color: #fff;
	box-sizing: border-box;
}
@media all and (max-width: 896px) {
	.com-slide {
		margin: -20px 20px 0;
		justify-content: space-between;
	}
	.com-slide .slide {
		width: 48.5%;
		margin: 20px 0 0;
	}
	.com-slide .slide .text {
		padding: 15px;
	}
	.com-slide .slide .text span {
		min-width: 120px;
		padding: 5px;
	}
}
/*------------------------------------------------------------
	com-img-box
------------------------------------------------------------*/
.com-img-box .photo-box {
	margin-top: 3px;
	width: 41%;
}
.com-img-box .photo-box img {
	width: 100%;
	height: 410px;
	object-fit: cover;
	font-family: 'object-fit: cover;';
}
.com-img-box .text-box {
	width: 55.1%;
	padding-left: 15px;
	box-sizing: border-box;
}
.com-img-box .text-box .sub-box {
	max-width: 576px;
	margin: 0 0 0 auto;
}
.com-img-box .text-box .head-line01 {
	margin-bottom: 33px;
	
}
.com-img-box .text-box p {
	line-height: 2.15;
	letter-spacing: 0.05em;
}
@media all and (max-width: 896px) {	
	.com-img-box .photo-box {
		margin: 0 0 25px;
		width: 100%;
		order: -1;
	}
	.com-img-box .text-box {
		width: 100% !important;
		padding: 0 30px !important;
		box-sizing: border-box;
	}
	.com-img-box .text-box .sub-box {
		max-width: inherit;
	}
	.com-img-box .text-box .head-line01 {
		margin-bottom: 20px;
	}
	.com-img-box .text-box p {
		line-height: 1.7;
	}
}
@media all and (max-width: 359px) {
	.com-img-box .text-box {
		padding: 0 15px !important;
	}
}
/*------------------------------------------------------------
	com-table
------------------------------------------------------------*/
.com-table {
	width: 100%;
	border-collapse: collapse;
}
.com-table td,
.com-table th {
	padding: 27px 7px 24px;
	text-align: left;
	line-height: 1.7;
	vertical-align: top;
	letter-spacing: 0.05em;
	box-sizing: border-box;
}
.com-table tr:nth-child(2n-1) th,
.com-table tr:nth-child(2n-1) td {
	background-color: #FFF;
}
.com-table th {
	padding-left: 70px;
	width: 28%;
	font-weight: 700;
	letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {	
	.com-table td,
	.com-table th {
		padding: 5px 15px 10px;
		width: 100% !important;
		float: left;
	}
	.com-table th {
		padding: 10px 15px 0;
	}
}
/*------------------------------------------------------------
	index
------------------------------------------------------------*/
.index .main-visual {
	height: 900px;
	padding-top: 372px;
	text-align: right;
	box-sizing: border-box;
	background: url("../img/index/main_visual_bg.jpg") no-repeat center top;
	background-size: cover;
}
.index .main-visual .content {
	max-width: 990px;
}
.index .main-visual h2 {
	display: inline-block;
	text-align: left;
	color: #fff;
	font-size: 5rem;
	line-height: 1.4;
	letter-spacing: 0.05em;
}
.index .main-visual h2 span {
	margin: 33px 0 0 105px;
	display: block;
	position: relative;
	font-size: 2.5rem;
	letter-spacing: 0.1em;
}
.index .main-visual h2 span:before {
	margin-top: 3px;
	position: absolute;
	left: -100px;
	top: 50%;
	width: 80px;
	height: 1px;
	background-color: #fff;
	content: "";
}
.index #main .sec01 {
	padding: 122px 15px 0;
	background: url("../img/index/bg01.png") no-repeat bottom center;
	background-size: 100% auto;
}
.index #main .sec01 .head-line01 {
	max-width: 1000px;
	margin: 0 auto 74px;
}
.index #main .sec01 ul {
	max-width: 1280px;
	margin: 0 auto 34px;
	position: relative;
}
.index #main .sec01 ul:after {
	content: "";
	width: 30.46%;
}
.index #main .sec01 li {
	width: 30.46%;
}
.index #main .sec01 li:nth-child(2) {
	margin-top: 55px;
}
.index #main .sec01 li:nth-child(3) {
	margin-top: 109px;
}
.index #main .sec01 li .pho {
	margin-bottom: 18px;
	position: relative;
}
.index #main .sec01 li .pho span {
	position: absolute;
	bottom: -20px;
	right: 28px;
	color: #A7EDFF;
	font-size: 6rem;
	line-height: 1;
	letter-spacing: 0.03em;
}
.index #main .sec01 li p {
	line-height: 2.14;
	letter-spacing: 0.05em;
}
.index #main .sec01 li .ttl {
	margin-bottom: 14px;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.66;
}
.index #main .sec02 {
	padding: 260px 0 44px;
	position: relative;
}
.index #main .sec02 .pho {
	position: absolute;
	right: 0;
	top: 100px;
	width: calc(50% + 500px);
	height: 320px;
	background: url("../img/index/photo04.jpg") no-repeat center center;
	background-size: cover;
}
.index #main .sec02 .text-box {
	max-width: 740px;
	margin-left: 50px;
	padding: 57px 60px;
	position: relative;
	z-index: 1;
	background-color: #fff;
	box-sizing: border-box;
	border-radius: 10px;
}
.index #main .sec02 p {
	line-height: 2.14;
	letter-spacing: 0.05em;
}
.index #main .sec02 .com-link {
	margin: 38px 0 0;
}
.index #main .sec03 {
	padding: 76px 0 100px;
	background-color: #F5FDFF;
}
.index #main .sec03 .head-line01 {
	margin-bottom: 44px;
	text-align: center;
}
.index #main .sec03 .com-slide {
	margin-bottom: 50px;
}
.index #main .sec04 {
	padding: 100px 0;
}
.index #main .sec04 .content {
	position: relative;
}
.index #main .sec04 .head-line01 {
	margin: 0;
	position: absolute;
	left: 15px;
	top: -3px;
}
.index #main .sec04 .news-box {
	margin: 0 0 0 auto;
	max-width: 830px;
	height: 180px;
	overflow-y: scroll;
	box-sizing: border-box;
}
.index #main .sec04 ::-webkit-scrollbar {
	width: 10px;
}
.index #main .sec04 ::-webkit-scrollbar-track {
	background: #A7EDFF;
	border-radius: 50px;
}
.index #main .sec04 ::-webkit-scrollbar-thumb {
	background: #03C5F6;
	border-radius: 50px;
}
.index #main .sec04 .news-box ul {
	margin-right: 15px;
}
.index #main .sec04 li > a,
.index #main .sec04 li > span {
	padding: 18px 60px 17px 165px;
	display: block;
	position: relative;
	line-height: 1.78;
	letter-spacing: 0.05em;
}
.index #main .sec04 li > a{
	color: #1e87a1;
}
.index #main .sec04 li > a >span {
	color: #333;
}
.index #main .sec04 li > a:before {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 60px;
	background: url("../img/common/icon04.png") no-repeat center center #A7EDFF;
	background-size: 13px auto;
	content: "";
	opacity: 0;
	transition: .3s;
}
.index #main .sec04 li:nth-child(2n + 1) > a,
.index #main .sec04 li:nth-child(2n + 1) > span {
	background-color: #F5F5F5;
}
@media all and (min-width: 897px) {
	.index #main .sec04 li > a:hover:before {
		opacity: 1;
	}
}
.index #main .sec04 li .time {
	position: absolute;
	left: 40px;
	top: 20px;
	font-size: 1.2rem;
	letter-spacing: 0.1em;
	font-weight: 900;
	font-family: 'Lato', sans-serif;
}
.index #main .sec04 .com-link {
	margin: 0 0 0 auto;
}
.index #main .sec05 li {
	width: 50%;
}
.index #main .sec05 a {
	display: block;
	position: relative;
}
.index #main .sec05 a img {
	max-width: inherit;
	width: 100%;
	height: 100%;
	object-fit: cover;
font-family: 'object-fit: cover;';
}
.index #main .sec05 a:hover {
	opacity: 0.7;
}
.index #main .sec05 h3 {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	font-weight: 700;
	font-size: 2.8rem;
	letter-spacing: 0.1em;
	z-index: 1;
}
@media all and (max-width: 896px) {
	.index .main-visual {
		height: 500px;
		position: relative;
		padding-top: 0;
		background-position: 20% 0;
	}
	.index .main-visual h2 {
		display: block;
		position: absolute;
		bottom: 75px;
		right: 30px;
		text-align: right;
		font-size: 2rem;
		letter-spacing: 0;
	}
	.index .main-visual h2 span {
		margin: 10px 0 0 35px;
		font-size: 1.4rem;
		letter-spacing: 0;
	}
	.index .main-visual h2 span:before {
		margin-top: 0;
		left: -30px;
		width: 25px;
	}
	.index #main .sec01 {
		padding: 40px 30px 0;
	}
	.index #main .sec01 .head-line01 {
		max-width: inherit;
	}
	.index #main .sec01 ul {
		max-width: inherit;
		display: block;
		margin: 0 auto 30px;
	}
	.index #main .sec01 li {
		width: auto;
	}
	.index #main .sec01 li:nth-child(2) {
		margin-top: 25px;
	}
	.index #main .sec01 li:nth-child(3) {
		margin-top: 25px;
	}
	.index #main .sec01 li .pho {
		width: 100%;
		margin: 0 auto 15px;
	}
	.index #main .sec01 li .pho img {
		width: 100%;
    height: 280px;
    object-fit: cover;
		font-family: 'object-fit: cover;';
    object-position: top right;
	}
	.index #main .sec01 li .pho span {
		bottom: -15px;
		right: 5px;
		font-size: 5rem;
	}
	.index #main .sec01 li p {
		line-height: 1.7;
	}
	.index #main .sec01 li .ttl {
		margin-bottom: 5px;
		font-size: 1.7rem;
		line-height: 1.4;
	}
	.index #main .sec02 {
		padding: 40px 0;
	}
	.index #main .sec02 .pho {
		position: static;
		width: auto;
		height: auto;
		padding-bottom: 50%;
	}
	.index #main .sec02 .text-box {
		max-width: inherit;
		margin: -60px 0 0;
		padding: 30px 20px;
		border-radius: 5px;
	}
	.index #main .sec02 p {
		line-height: 1.66;
	}
	.index #main .sec02 .com-link {
		margin: 20px auto 0;
	}
	.index #main .sec03 {
		padding: 40px 0;
	}
	.index #main .sec03 .com-slide {
		margin-bottom: 30px;
	}
	.index #main .sec04 {
		padding: 40px 0;
	}
	.index #main .sec04 .head-line01 {
		position: static;
	}
	.index #main .sec04 .news-box {
		margin: 0;
		max-width: inherit;
		height: 250px;
	}
	.index #main .sec04 li > a,
	.index #main .sec04 li > span {
		padding: 5px 35px 5px 10px;
		line-height: 1.78;
	}
	.index #main .sec04 li > a:before {
		width: 30px;
		background-size: 10px auto;
		opacity: 1;
	}
	.index #main .sec04 li .time {
		position: static;
		display: block;
	}
	.index #main .sec04 .com-link {
		margin: 0 auto;
	}
	.index #main .sec05 ul {
		display: block;
	}
	.index #main .sec05 li {
		width: auto;
	}
	.index #main .sec05 h3 {
		font-size: 1.8rem;
	}
}
@media all and (max-width: 359px) {
	.index #main .sec01 {
		padding: 40px 15px 0;
	}
}
/*------------------------------------------------------------
	efforts
------------------------------------------------------------*/
.efforts #main .top-box {
	margin-bottom: 105px;
	text-align: center;
}
.efforts #main .dec_sdgs_none + .dec_sdgs_none {
	display: none;
}
.efforts #main .top-box .photo {
	margin-bottom: 58px;
}
.efforts #main .top-box p {
	font-size: 1.6rem;
	letter-spacing: 0.05em;
	line-height: 1.85;
	font-weight: 500;
}
.efforts #main .img-box {
	margin-bottom: 98px;
	flex-direction: row-reverse;
}
.efforts #main .img-box:last-child {
	margin-bottom: 0 !important;
}
.efforts #main .img-box .photo-box {
	margin-top: 2px;
	width: 350px;
}
.efforts #main .img-box .photo-box img {
	width: 100%;
	max-height: 450px;
	object-fit: cover;
	font-family: 'object-fit: cover;';
}
.efforts #main .img-box .text-box {
	width: 590px;
}
.efforts #main .img-box .text-box .head-line01 {
	margin-bottom: 33px;
}
.efforts #main .img-box .text-box .head-line01 span {
	margin-bottom: 6px;
}
.efforts #main .img-box .text-box p {
	margin-bottom: 34px;
	line-height: 2.15;
	letter-spacing: 0.05em;
}
.efforts #main .img-box .text-box .title {
	margin-bottom: 20px;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.5;
}
.efforts #main .img-box .text-box .text-list {
	padding: 27px 28px 26px;
	border: 2px solid #E6E6E6;
}
.efforts #main .img-box .text-box .text-list li {
	padding-left: 18px;
	letter-spacing: 0.05em;
	line-height: 1.7;
	background: url("../img/common/icon06.png") no-repeat left 9px / 8px;
}
.efforts #main .img-box .text-box .text-list li:not(:last-child) {
	margin-bottom: 6px;
}
@media all and (max-width: 896px) {
	.efforts #main .top-box {
		margin-bottom: 40px;
	}
	.efforts #main .top-box .photo {
		margin: 0 auto 40px;
		width: 50%;
	}
	.efforts #main .top-box p {
		font-size: 1.4rem;
		line-height: 1.5;
	}
	.efforts #main .img-box {
		margin-bottom: 50px;
		display: block;
	}
	.efforts #main .img-box .photo-box {
		margin: 0 0 30px;
		width: auto;
		text-align: center;
	}
	.efforts #main .img-box .text-box {
		width: auto;
	}
	.efforts #main .img-box .text-box .head-line01 {
		margin-bottom: 20px !important;
	}
	.efforts #main .img-box .text-box p {
		margin-bottom: 20px;
		line-height: 1.6;
	}
	.efforts #main .img-box .text-box .title {
		font-size: 1.5rem;
	}
	.efforts #main .img-box .text-box .text-list {
		padding: 20px;
	}
}
/*------------------------------------------------------------
	recruit
------------------------------------------------------------*/
.recruit #main .sec01 {
	padding-bottom: 120px;
}

.recruit #main .sec01 .photo-box img{
	width: 100%;
	max-height: 410px;
	object-fit: cover;
	font-family: 'object-fit: cover;';
}
.recruit #main .head-line02 {
	margin-bottom: 108px;
}
.recruit #main .sec02 {
	padding: 77px 0 110px;
	background-color: #F5FDFF;
}
.recruit #main .sec02 .head-line01 {
	margin-bottom: 51px;
	text-align: center;
}
.recruit #main .sec02 .com-table + .com-table {
	margin-top: 50px;
}
.recruit #main .sec03 {
	padding-top: 120px;
}
.recruit #main .sec03 .head-line02 {
	margin-bottom: 151px;
}
.recruit #main .sec03 .step-list {
	margin: -25px 0 50px;
	counter-reset: number 0;
}
.recruit #main .sec03 .step-list li .min::after{
	counter-increment: number 1;
	content: counter(number,decimal-leading-zero);
}
.recruit #main .sec03 .step-list li {
	margin-top: 25px;
	width: 29.3%;
	position: relative;
	padding: 69px 29px 34px;
	letter-spacing: 0.05em;
	box-sizing: border-box;
	line-height: 2.15;
	border: 1px solid #03C5F6;
}
.recruit #main .sec03 .step-list li::before {
	position: absolute;
	margin-top: -15px;
	width: 26px;
	height: 30px;
	right: -16%;
	top: 50%;
	background: url("../img/recruit/arrow01.png") no-repeat;
	background-size: 26px 30px;
	content: "";
}
.recruit #main .sec03 .step-list li:nth-of-type(3n)::before,
.recruit #main .sec03 .step-list li:last-child::before {
	display: none;
}
.recruit #main .sec03 .step-list li:nth-child(3n-1) {
	margin: 25px 6.05% 0;
}
.recruit #main .sec03 .step-list li > span {
	display: block;
}
.recruit #main .sec03 .step-list li .num {
	position: absolute;
	top: -41px;
	left: 50%;
	margin-left: -40px;
	width: 80px;
	height: 80px;
	padding-top: 14px;
	color: #FFF;
	font-size: 3.4rem;
	line-height: 1.2;
	text-align: center;
	box-sizing: border-box;
	border-radius: 50%;
	background-color: #03C5F6;
}
.recruit #main .sec03 .step-list li .num .en {
	margin-bottom: -4px;
	display: block;
	font-size: 1.3rem;
}
.recruit #main .sec03 .step-list li .pho {
	margin-bottom: 38px;
	text-align: center;
}
.recruit #main .sec03 .step-list li .pho img {
	width: auto;
	height: 51px;
	object-fit: contain;
	font-family: 'object-fit: contain;';
}
.recruit #main .sec03 .step-list li .ttl {
	margin-bottom: 24px;
	display: block;
	color: #03C5F6;
	font-size: 2rem;
	line-height: 1.5;
	font-weight: 700;
	text-align: center;
}
.recruit #main .sec03 .com-link {
    width: 268px;
}
@media all and (max-width: 896px) {
	.recruit #main .sec01 {
		padding-bottom: 50px;
	}
	.recruit #main .sec01 .head-line01 {
		margin: 0 -10px;
	}
	.recruit #main .sec02 {
		padding: 40px 0 30px;
	}
	.recruit #main .sec02 .head-line01 {
		margin-bottom: 30px !important;
	}
	.recruit #main .sec03 {
		padding-top: 40px;
	}
	.recruit #main .sec03 .head-line02 {
		margin-bottom: 70px !important;
	}
	.recruit #main .sec03 .step-list {
		margin: 0 0 50px;
		display: block;
	}
	.recruit #main .sec03 .step-list li {
		margin: 0 0 64px !important;
		width: auto;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		padding: 37px 20px 23px;
		line-height: 1.45;
	}
	.recruit #main .sec03 .step-list li::before {
		margin: 0 -10px 0 0;
		width: 20px;
		height: 18px;
		left: inherit;
		top: inherit;
		right: 50%;
		bottom: -29px;
		background: url("../img/recruit/sp_arrow01.png") no-repeat;
		background-size: 20px 18px;
	}
	.recruit #main .sec03 .step-list li:last-child {
		margin-bottom: 0 !important;
	}
	.recruit #main .sec03 .step-list li .num {
		margin-left: -28px;
		width: 55px;
		height: 55px;
		top: -28px;
		padding-top: 10px;
		font-size: 2.3rem;
	}
	.recruit #main .sec03 .step-list li .num .en {
		font-size: 0.9rem;
	}
	.recruit #main .sec03 .step-list li .pho {
		margin-bottom: 0;
		width: 64px;
	}
	.recruit #main .sec03 .step-list li .pho img {
		width: 45px;
		height: auto;
	}
	.recruit #main .sec03 .step-list li .sub-box {
		width: calc(100% - 86px);
	}
	.recruit #main .sec03 .step-list li .ttl {
		margin-bottom: 11px;
		font-size: 1.5rem;
		text-align: left;
	}	
}
@media all and (max-width: 335px) {
	.recruit #main .com-img-box .text-box .head-line01 {
		font-size: 1.7rem;
	}
}
/*------------------------------------------------------------
	about
------------------------------------------------------------*/
.about .page-title {
	margin-bottom: 96px;
}
.about #main .sec01 {
	padding-bottom: 100px;
}
.about #main .sec01 p {
	margin-bottom: 30px;
}
.about #main .sec01 .name {
	text-align: right;
	margin: -16px 9px 0 0;
	font-weight: 700;
}
.about #main .sec01 .name span {
	margin-left: 25px;
	display: inline-block;
	font-size: 2rem;
}
.about #main .sec01 .com-img-box01 {
	margin-top: 97px;
}
.about #main .sec01 .com-img-box01 .text-box {
	padding: 0 15px 0 0;
	width: 55.4%;
}
.about #main .sec01 .com-img-box01 .sub-box {
	margin: 0;
}
.about #main .sec02 {
	padding: 77px 0 85px;
	background-color: #F5FDFF;
}
.about #main .sec02 .head-line01 {
	margin-bottom: 50px;
	text-align: center;
}
.about #main .sec03 {
	padding: 96px 0 98px;
}
.about #main .sec03 .head-line01 {
	margin-bottom: 44px;
	text-align: center;
}
.about #main .sec03 .btm-text {
	margin: 44px 0 39px;
	text-align: center;
	letter-spacing: 0.05em;
}
.about #main .sec04 .head-line01 {
	margin-bottom: 38px;
	text-align: center;
}
.about #main .sec04 .map {
	height: 399px;
	background-color: #ccc;
    position: relative;
    overflow: hidden;
}
.about #main .sec04 .map iframe {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media all and (max-width: 896px) {
	.about #main .sec01 {
		padding-bottom: 40px;
	}
	.about #main .sec01 p {
		margin-bottom: 10px;
	}
	.about #main .sec01 .name {
		margin: 0;
	}
	.about #main .sec01 .name span {
		margin-left: 10px;
		font-size: 1.6rem;
	}
	.about #main .sec01 .com-img-box01 {
		margin-top: 40px;
	}
	.about #main .sec02 {
		padding: 40px 0;
	}
	.about #main .sec03 {
		padding: 40px 0;
	}
	.about #main .sec03 .btm-text {
		margin: 20px 15px;
	}
	.about #main .sec04 .map {
		height: 0;
		padding-bottom: 75%;
	}
}
/*------------------------------------------------------------
	work
------------------------------------------------------------*/
.work #main .sec01 .head-line02 {
	margin-bottom: 141px;
}
.work #main .sec01{
	counter-reset: number 0;
}
.work #main .sec01 .head-line01 >span:not([class]):after {
	content: counter(number, decimal-leading-zero);
	counter-increment: number 1;
	margin-left: 10px;
}
.work #main .sec01 .text-box .head-line01 >p {
	line-height: 1.6;
	letter-spacing: 0.1em;
}
.work #main .sec01 .img-box:nth-of-type(even){
	flex-direction: row-reverse;
}
.work #main .sec01 .img-box:not(:last-child) {
	margin-bottom: 110px;
}
.work #main .sec01 .pho {
	width: 37%;
	position: relative;
}
.work #main .sec01 .pho img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	font-family: 'object-fit: cover;';
	position: relative;
	z-index: 1;
}
.work #main .sec01 .pho:before {
	position: absolute;
	right: -30px;
	top: -30px;
	left: 30px;
	bottom: 30px;
	background-color: #EEF2F4;
	content: "";
}
.work #main .sec01 .img-box:nth-of-type(even) .pho:before,
.work #main .sec01 .img-box01 .pho:before {
	left: -30px;
	right: 30px;
}
.work #main .sec01 .text-box {
	margin-top: -3px;
	width: 58%;
}
.work #main .sec01 .text-box .head-line01 {
	margin-bottom: 33px;
}
.work #main .sec01 .text-box p {
	line-height: 2.14;
	letter-spacing: 0.05em;
}
.work #main .sec02 {
	padding: 119px 0 114px;
}
.work #main .sec02 .head-line02 {
	margin-bottom: 111px;
}
.work #main .sec02 .photo-list {
	margin-top: -75px;
}
.work #main .sec02 .photo-list li {
	margin-top: 75px;
	width: 47%;
}
.work #main .sec02 .photo-list .pho {
	margin-bottom: 37px;
}
.work #main .sec02 .photo-list .pho img{
	width: 100%;
	height: 200px;
	object-fit: cover;
	font-family: 'object-fit: cover;';
}
.work #main .sec02 .photo-list p {
	letter-spacing: 0.05em;
	line-height: 2.14;
}
.work #main .sec02 .photo-list h4 {
	margin-bottom: 22px;
	font-size: 2.3rem;
	letter-spacing: 0.1em;
	line-height: 1.74;
}
.work #main .sec03 {
	padding: 120px 0;
	background-color: #F5FDFF;
}
.work #main .sec03 .head-line02 {
	margin-bottom: 111px;
}
.work #main .sec03 .text-ul {
	position: relative;
	counter-reset: number 0;
}
.work #main .sec03 .text-ul:after {
	content: "";
	width: 29.3%;
}
.work #main .sec03 .text-ul li {
	width: 29.3%;
	padding: 33px 28px 45px;
	background-color: #fff;
	border: 1px solid #03C5F6;
	box-sizing: border-box;
}
.work #main .sec03 .text-ul li:nth-of-type(n+4){
	margin-top: 19px;
}
.work #main .sec03 .text-ul p {
	letter-spacing: 0.05em;
	line-height: 2.14;
}
.work #main .sec03 .text-ul .ttl {
	margin: 0 -10px 18px;
	text-align: center;
	color: #03C5F6;
	font-size: 2rem;
	font-weight: 700;
}
.work #main .sec03 .text-ul .ttl span {
	margin-bottom: 16px;
	display: block;
	font-size: 6rem;
	line-height: 1;
}
.work #main .sec03 .text-ul li .ttl .min::after {
	content: counter(number, decimal-leading-zero);
	counter-increment: number 1;
}
.work #main .sec04 {
	padding: 119px 0 0;
}
.work #main .sec04 .head-line02 {
	margin-bottom: 111px;
}
.work #main .sec04 .photo-ul {
	margin: -40px 0 50px;
}
.work #main .sec04 .photo-ul li {
	margin-top: 40px;
	width: 48%;
}
.work #main .sec04 .link-ul li {
	margin: 0 30px;
	width: 268px;
}
.work #main .sec04 .photo-ul a {
	width: 100%;
	height: 325px;
	display: block;
	overflow: hidden;
}
.work #main .sec04 .photo-ul a:hover img{
	transform: scale(1.05);
}
.work #main .sec04 .photo-ul li img{
	width: 100%;
	height: 325px;
	object-fit: cover;
	font-family: 'object-fit: cover;';
	transition: all .8s ease;
}
@media all and (max-width: 1080px) {
	.work #main .sec01 .pho:before {
		right: -10px;
		top: -10px;
		left: 10px;
		bottom: 10px;
	}
	.work #main .sec01 .img-box01 .pho:before {
		left: -10px;
		right: 10px;
	}
}
@media all and (max-width: 896px) {
	.work #main .sec01 .head-line02 {
		margin: 0 -10px;
	}
	.work #main .sec01 .img-box:not(:last-child) {
		margin-bottom: 40px;
	}
	.work #main .sec01 .pho {
		width: 100%;
		order: -1;
	}
	.work #main .sec01 .pho img {
		width: 100%;
	}
	.work #main .sec01 .text-box {
		margin-top: 20px;
		width: 100%;
	}
	.work #main .sec01 .text-box p {
		line-height: 1.7;
	}
	.work #main .sec02 {
		padding: 40px 0;
	}
	.work #main .sec02 .photo-list {
		margin-top: 0;
		display: block;
	}
	.work #main .sec02 .photo-list li {
		margin-top: 20px;
		width: auto;
	}
	.work #main .sec02 .photo-list .pho {
		margin-bottom: 15px;
	}
	.work #main .sec02 .photo-list .pho img {
		width: 100%;
	}
	.work #main .sec02 .photo-list p {
		line-height: 1.7;
	}
	.work #main .sec02 .photo-list h4 {
		margin-bottom: 5px;
		font-size: 1.8rem;
		line-height: 1.4;
		letter-spacing: 0;
	}
	.work #main .sec03 {
		padding: 40px 0;
	}
	.work #main .sec03 .text-ul {
		display: block;
	}
	.work #main .sec03 .text-ul li {
		margin-bottom: 19px;
		width: auto;
		padding: 28px 23px 29px;
	}
	.work #main .sec03 .text-ul li:last-child {
		margin-bottom: 0;
	}
	.work #main .sec03 .text-ul p {
		line-height: 1.46;
	}
	.work #main .sec03 .text-ul .ttl {
		margin: 0 0 16px 47px;
		font-size: 1.5rem;
		text-align: left;
		position: relative;
	}
	.work #main .sec03 .text-ul .ttl span {
		margin-bottom: 0;
		font-size: 3rem;
		position: absolute;
		left: -46px;
		top: 50%;
		margin-top: -17px;
	}
	.work #main .sec04 {
		padding: 40px 0 0;
	}
	.work #main .sec04 .photo-ul {
		margin: -20px 0 30px;
	}
	.work #main .sec04 .photo-ul li {
		margin-top: 20px;
		width: auto;
		text-align: center;
	}
	.work #main .sec04 .link-ul {
		display: block;
	}
	.work #main .sec04 .link-ul li {
		margin: 0 auto 10px;
	}
	.work #main .sec04 .link-ul li:last-child {
		margin-bottom: 0;
	}
}
/*------------------------------------------------------------
	case
------------------------------------------------------------*/
.case #main .head-line02 {
	margin-bottom: 88px;
}
.case #main .top-text {
	margin-bottom: 100px;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.875;
}
.case #main .info:not(:last-child) {
	margin-bottom: 103px;
}
.case #main .photo-ul {
	margin-top: -20px;
}
.case #main .photo-ul:not(:last-child) {
	margin-bottom: 20px;
}
.case #main .photo-ul img {
	object-fit: cover;
	font-family: 'object-fit: cover;';
}
.case #main .photo-ul:not(.sml) img {
	height: 330px;
}
.case #main .photo-ul.sml img {
	height: 160px;
}
.case #main .photo-ul li {
	margin-top: 20px;
	width: 49%;
}
.case #main .photo-ul li > p {
	margin-top: 10px;
}
.case #main .photo-ul a,
.case #main .pho-box a {
	display: block;
	width: 100%;
	height: auto;
}
.case #main .photo-ul a img,
.case #main .pho-box a img {
	max-width: inherit;
	width: 100%;
	height: 100%;
	object-fit: cover;
font-family: 'object-fit: cover;';
}
.case #main .photo-ul a:hover,
.case #main .pho-box a:hover {
	opacity: 0.7;
}
.case #main .photo-ul.sml li {
	width: 23.5%;
	margin-right: 2%;
}
.case #main .photo-ul.sml li:nth-child(4n) {
	margin-right: 0;
}
.case #main .text-box {
	margin-top: 40px;
	padding: 26px 38px 36px;
	border: 2px solid #E6E6E6;
}
.case #main .text-box p {
	line-height: 2.14;
	letter-spacing: 0.05em;
}
.case #main .text-box .ttl {
	margin-bottom: 9px;
	text-align: center;
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
	.case #main .top-text {
		margin-bottom: 30px;
		font-size: 1.5rem;
		line-height: 1.5;
		text-align: left;
	}
	.case #main .info:not(:last-child) {
		margin-bottom: 40px;
	}
	.case #main .photo-ul {
		margin-top: 0;
		display: block;
	}
	.case #main .info img {
		width: 100%;
	}
	.case #main .photo-ul li {
		width: auto;
		margin: 0 0 20px;
	}
	.case #main .photo-ul li:last-child {
		margin-bottom: 0;
	}
	.case #main .photo-ul.sml {
		margin-top: -20px;
		justify-content: space-between;
		display: flex;
	}
	.case #main .photo-ul.sml li {
		width: 48%;
		margin: 20px 0 0;
	}
	.case #main .text-box {
		margin-top: 20px;
		padding: 20px 15px;
	}
	.case #main .text-box p {
		line-height: 1.7;
	}
	.case #main .text-box .ttl {
		margin-bottom: 5px;
		font-size: 1.5rem;
	}
}
/*------------------------------------------------------------
	contact
------------------------------------------------------------*/
.contact #main .sec01 {
	padding-bottom: 100px;
}
.contact #main .sec01 .tel {
	margin: -18px 5px 0 0;
	text-align: center;
	font-size: 1.4rem;
	letter-spacing: 0.1em;
}
.contact #main .sec01 .tel a {
	padding: 0 0 0 46px;
	min-height: 70px;
	display: inline-block;
	text-align: left;
	background: url("../img/common/icon07.png") no-repeat left top 17px;
	background-size: 32px auto;
	color: #03C5F6;
}
.contact #main .sec01 .tel span {
	margin-bottom: -5px;
	display: block;
	font-size: 3.8rem;
	letter-spacing: 0.05em;
}
.contact #main .sec02 {
	padding: 99px 0;
	background-color: #F5FDFF;
}
.contact #main .sec02 .head-line02 {
	margin-bottom: 58px;
}
.contact #main .sec02 .form-text {
	margin-bottom: 119px;
	text-align: center;
	font-weight: 500;
	letter-spacing: 0.05em;
	font-size: 1.6rem;
	line-height: 1.875;
}
.contact #main .sec02 .text-ul {
	width: 366px;
	margin: 0 auto 70px;
	height: 2px;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	position: relative;
	background-color: #333;
}
body:not([class]) .contact #main .sec02 .text-ul li:first-child,
.phase-input .contact #main .sec02 .text-ul li:first-child,
.phase-confirm .contact #main .sec02 .text-ul li:nth-of-type(2),
.phase-complete .contact #main .sec02 .text-ul li:nth-of-type(3){
	color: #03C5F6;
}
.contact #main .sec02 .text-ul li {
	position: absolute;
	top: -42px;
}
.contact #main .sec02 .text-ul li:before {
	position: absolute;
	left: calc(50% - 5px);
	bottom: -24px;
	margin-left: -7px;
	width: 10px;
	height: 10px;
	background-color: #333;
	box-sizing: border-box;
	content: "";
	border-radius: 100px;
}
body:not([class]) .contact #main .sec02 .text-ul li:first-child::before,
.phase-input .contact #main .sec02 .text-ul li:first-child::before,
.phase-confirm .contact #main .sec02 .text-ul li:nth-of-type(2)::before,
.phase-complete .contact #main .sec02 .text-ul li:nth-of-type(3)::before {
	margin-left: -12px;
	bottom: -29px;
	width: 20px;
	height: 20px;
	background-color: #fff;
	border: 5px solid #03C5F6;
}
.contact #main .sec02 .text-ul li:first-child {
	left: -41px;
}
.contact #main .sec02 .text-ul li:nth-child(2) {
	left: 50%;
	margin-left: -43px;
}
.contact #main .sec02 .text-ul li:last-child {
	right: -40px;
}
.contact #main .sec02 .form-inner {
	padding: 29px 40px 27px;
	margin-bottom: 30px;
	background-color: #fff;
}
.contact #main .sec02 #FormArea table {
	width: 100%;
	border-collapse: collapse;
}
.contact #main .sec02 #FormArea th,
.contact #main .sec02 #FormArea td {
	padding: 20px 0;
	vertical-align: middle;
	text-align: left;
	box-sizing: border-box;
	letter-spacing: 0.05em;
	word-break: break-all;
}
.contact #main .sec02 #FormArea th {
	padding: 0 50px 0 10px;
	width: 29.4%;
	font-weight: 700;
	letter-spacing: 0.1em;
}
.contact #main .sec02 #FormArea th.v-top {
	vertical-align: top;
	padding-top: 34px;
}
.contact #main .sec02 #FormArea th .type-required {
	margin-top: 2px;
	width: 42px;
	padding: 1px 0;
	display: block;
	float: right;
	font-size: 1.1rem;
	color: #fff;
	letter-spacing: 0.08em;
	text-align: center;
	background-color: #03C5F6;
	box-sizing: border-box;
}
.contact #main .sec02 #FormArea td input[type="text"],
.contact #main .sec02 #FormArea td input[type="email"],
.contact #main .sec02 #FormArea td input[type="tel"],
.contact #main .sec02 #FormArea td textarea {
	width: 100%;
	height: 50px;
	padding: 0 19px;
	font-size: 1.4rem;
	letter-spacing: 0.05em;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid #ddd;
	box-sizing: border-box;
	background-color: #fff;
	border-radius: 3px;
}
.contact #main .sec02 #FormArea td textarea {
	height: 200px;
	padding: 14px 19px;
	resize: vertical;
}
.contact #main .sec02 #FormArea td .radio-area {
	margin-top: -10px;
	display: flex;
	flex-wrap: wrap;
}
.contact #main .sec02 #FormArea td .radio-area span {
	margin: 10px 30px 0 0;
}
.contact #main .sec02 #FormArea td .radio-area span:last-child {
	margin-right: 0 !important;
}
.contact #main .sec02 #FormArea td input[type="radio"] {
	display: none;
}
.contact #main .sec02 #FormArea td input[type="radio"] + span {
	padding-left: 31px;
	display: inline-block;
	cursor: pointer;
	background: url("../img/common/radio_img01.png") no-repeat left center;
	background-size: 20px auto;
}
.contact #main .sec02 #FormArea td input[type="radio"]:checked + span {
	background-image: url("../img/common/radio_img02.png");
}
.contact #main .sec02 #FormArea .unit-privacy {
	margin-bottom: 50px;
	padding: 30px;
	height: 131px;
	box-sizing: border-box;
	background-color: #fff;
	border: 1px solid #ddd;
	overflow-y: scroll;
}
.contact #main .sec02 #FormArea .unit-privacy .text-box {
	padding: 27px 29px;
}
.contact #main .sec02 #FormArea .unit-privacy p {
	margin-bottom: 20px;
	line-height: 1.78;
	text-align: left;
}
.contact #main .sec02 #FormArea .unit-privacy p:last-child {
	margin-bottom: 0 !important;
}
.contact #main .sec02 #FormArea .submit {
	text-align: center;
}
.contact #main .sec02 #FormArea .check_no-through,
.contact #main .sec02 #FormArea .check_submit,
.contact #main .sec02 #FormArea .submit li {
	width: 100%;
	margin: 0 10px;
	display: flex;
	justify-content: center;
}
.contact #main .sec02 #FormArea .contact_btn,
.contact #main .sec02 #FormArea .check_no-through span{
	width: 420px;
	height: 61px;
	padding: 5px 33px 4px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-weight: 700;
	font-size: 1.6rem;
	letter-spacing: 0.1em;
	background: #A7EDFF url("../img/common/icon03.png") no-repeat center right;
	background-size: 61px auto;
	border-radius: 76px;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	cursor: pointer;
}
.contact #main .sec02 #FormArea .check_no-through span {
	cursor: default;
}
.contact #main .sec02 #FormArea .contact_btn.is-back {
	filter: grayscale(1);
	padding-left: 33px;	
	background: #dfdfdf url("../img/common/icon03.png") no-repeat center right;
	background-position: 0;
	background-size: 61px auto;
}
.contact #main .sec02 #FormArea .contact_btn:hover {
	opacity: .8;
}
.contact #main .sec02 #FormArea .form-wrapper {
	text-align: center;
	display: block;
}
.contact #main .sec02 #FormArea .is-button {
	display: inline-block;
}
.contact #main .sec02 #FormArea .is-button + .is-button {
	margin-left: 30px;
}
.contact #main .sec02 #FormArea .contact_btn {
	width: 250px;
}
.contact #main .sec02 #FormArea .submit input:hover {
	opacity: 0.7;
}
.contact #main .sec02 #FormArea .form_title {
	margin-bottom: 19px;
	font-size: 2.5rem;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.1em;
	font-family: 'Hina Mincho', serif;
}
@media all and (max-width: 896px) {
	.contact #main .sec01 {
		padding-bottom: 40px;
	}
	.contact #main .sec01 .tel {
		margin: -15px 0 0;
		font-size: 1.2rem;
	}
	.contact #main .sec01 .tel a {
		padding: 0 0 0 35px;
		background-position: left top 14px;
		background-size: 26px auto;
	}
	.contact #main .sec01 .tel span {
		font-size: 3rem;
	}
	.contact #main .sec02 {
		padding: 40px 0;
	}
	.contact #main .sec02 .form-inner {
		padding: 8%;
	}
	.contact #main .sec02 .form-text {
		margin: -20px 0 60px;
		text-align: left;
		font-size: 1.3rem;
		line-height: 1.7;
	}
	.contact #main .sec02 .text-ul {
		width: 220px;
		margin: 0 auto 30px;
		font-size: 1.3rem;
	}
	.contact #main .sec02 .text-ul li {
		top: -35px;
	}
	.contact #main .sec02 .text-ul li:before {
		bottom: -21px;
	}
	
	body:not([class]) .contact #main .sec02 .text-ul li:first-child,
	.phase-input .contact #main .sec02 .text-ul li:first-child,
	.phase-confirm .contact #main .sec02 .text-ul li:nth-of-type(2),
	.phase-complete .contact #main .sec02 .text-ul li:nth-of-type(3) {
		bottom: 20px;
	}
	.contact #main .sec02 .text-ul li:first-child {
		left: -40px;
	}
	.phase-confirm .contact #main .sec02 .text-ul li:first-child,
	.phase-complete .contact #main .sec02 .text-ul li:first-child {
		left: -35px;
	}
	.contact #main .sec02 .text-ul li:nth-child(2) {
		margin-left: -40px;
	}
	.contact #main .sec02 .text-ul li:last-child {
		right: -35px;
	}
	.contact #main .sec02 .table-box {
		padding: 20px 15px;
		margin-bottom: 20px;
	}
	.contact #main .sec02 #FormArea th,
	.contact #main .sec02 #FormArea td {
		display: block;
		padding: 0 0 25px !important;
		width: 100% !important;
	}
	.contact #main .sec02 #FormArea th {
		padding: 0 0 10px !important;
	}
	.contact #main .sec02 #FormArea th .must {
		margin-top: 0;
	}
	.contact #main .sec02 #FormArea td input[type="text"],
	.contact #main .sec02 #FormArea td input[type="email"],
	.contact #main .sec02 #FormArea td input[type="tel"],
	.contact #main .sec02 #FormArea td textarea {
		height: 45px;
		padding: 0 10px;
		font-size: 1.3rem;
	}
	.contact #main .sec02 #FormArea td textarea {
		height: 150px;
		padding: 10px;
	}
	.contact #main .sec02 #FormArea td .radio-area li {
		margin-right: 10px;
	}
	.contact #main .sec02 #FormArea td input[type="radio"] {
		display: none;
	}
	.contact #main .sec02 #FormArea td input[type="radio"] + span {
		padding-left: 25px;
		background-size: 16px auto;
	}
	.contact #main .sec02 #FormArea .unit-privacy {
		margin-bottom: 30px;
	}
	.contact #main .sec02 #FormArea .unit-privacy .text-box {
		padding: 15px;
	}
	.contact #main .sec02 #FormArea .unit-privacy p {
		line-height: 1.7;
		text-align: left;
	}
	.contact #main .sec02 #FormArea .check_no-through,
	.contact #main .sec02 #FormArea .check_submit,
	.contact #main .sec02 #FormArea .submit li {
		margin: 0 auto;
	}
	.contact #main .sec02 #FormArea .check_no-through span {
		width: 100%;
		font-size: 13px;
	}
	.contact #main .sec02 #FormArea .check_no-through,
	.contact #main .sec02 #FormArea .submit {
		display: block;
	}
	.contact #main .sec02 #FormArea .check_no-through,
	.contact #main .sec02 #FormArea .submit li {
		margin: 0 auto 10px;
	}
	.contact #main .sec02 #FormArea .check_no-through,
	.contact #main .sec02 #FormArea .submit li:last-child {
		margin-bottom: 0;
	}
	.contact #main .sec02 #FormArea .check_no-through,
	.contact #main .sec02 #FormArea .submit input {
		height: 45px;
		padding: 3px 20px 4px 0;
		font-size: 1.4rem;
		background-size: 45px auto;
	}
	.contact #main .sec02 #FormArea .submit input:hover {
		opacity: 1;
	}
	.contact #main .sec02 #FormArea .is-button + .is-button {
		margin-left: auto;
		margin-top: 5%;
	}
}