@charset "utf-8";

/* business */

body {
	overflow: hidden;
	line-height: 1.5;
	margin: 0;
}

html {
	overflow: auto;
	font-family: 'Noto Sans JP', sans-serif;
	scroll-behavior: smooth;
}

a:focus {
	outline: none;
}

li a:hover{
	opacity: .75;
}

.business ul,
.ly-header ul,
.ly-footer ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.business a,
.ly-header a,
.ly-footer a {
	color: #333;
	text-decoration: none;
}

img {
	max-width: 100%;
	width: auto;
	height: auto;
	vertical-align: bottom;
}

.bold {
	font-weight: bold;
}

a .img {
	overflow: hidden;
}

a:hover .img img {
	transform: scale(1.05);
	transition: cubic-bezier(0.4,0,0.2,1) .3s;
}

.author-body {
	text-align: center;
	color: #fff;
}

.author-body a {
	color: #fff;
}



/* --- SP ---------- header*/
@media print,
screen and (max-width: 1080px) {
	.btn-or a {
		color: #fff;
		font-weight: bold;
		width: 100%;
		display: block;
		background: #f0672d;
		border-radius: 5px;
		position: relative;
		text-align: center;
		padding: 8px 16px;
		box-sizing: border-box;
		-webkit-transition: all 0.7s ease;
		-moz-transition: all 0.7s ease;
		-o-transition: all 0.7s ease;
		transition: all 0.7s ease;
	}

	.btn-or a:after {
		content: "";
		position: absolute;
		right: 10px;
		width: 4px;
		top: 14px;
		height: 4px;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	.btn-or a:hover {
		background: #c64d47;
	}

	.btn-wh a {
		color: #f0672d;
		font-weight: bold;
		width: 100%;
		display: block;
		background: #fff;
		border: 2px solid #f0672d;
		border-radius: 5px;
		position: relative;
		text-align: center;
		padding: 8px 16px;
		box-sizing: border-box;
		-webkit-transition: all 0.7s ease;
		-moz-transition: all 0.7s ease;
		-o-transition: all 0.7s ease;
		transition: all 0.7s ease;
		text-decoration: none;
	}

	.btn-wh a:hover {
		color: #fff;
		background: #f0672d;
	}

	.business .green {
		color: #f0672d;
	}

	.ly-header .top-header-menu {
		position: relative;
	}


	.ly-header #menu-icon {
		border-radius: 0 0 0 10px;
		color: #fff;
		cursor: pointer;
		display: block;
		height: 50px;
		width: 70px;
		position: absolute;
		right: 0;
		top: 0;
		bottom: 0;
		margin: auto 0;
		transition: all 0.3s linear 0s;
		z-index: 1100;
	}

	.ly-header #ham-menu {
		box-sizing: border-box;
		height: 100%;
		padding: 0;
		position: fixed;
		right: -256px;
		top: 0;
		transition: transform 0.3s linear 0s;
		width: 256px;
		z-index: 1000;
		display: block;
	}


	.ly-header #ham-menu .sp-contents a {
		width: 256px;
	}

	.ly-header #menu-background {
		background-color: #333;
		display: block;
		height: 100%;
		opacity: 0;
		right: 0;
		top: 0;
		transition: all 0.3s linear 0s;
		width: 100%;
	}

	.ly-header #menu-cb {
		display: none;
	}

	.ly-header #menu-cb~#menu-icon img:last-child {
		display: none;
	}

	.ly-header #menu-cb:checked~#menu-icon img:first-child {
		display: none;
	}

	.ly-header #menu-cb:checked~#menu-icon img:last-child {
		display: block;
		box-sizing: border-box;
	}

	.ly-header #menu-cb:checked~#ham-menu,
	.ly-header #menu-cb:checked~#menu-icon {
		transform: translate(-256px);
	}

	.ly-header #menu-cb:checked~#ham-menu {
		overflow-y: auto;
		box-sizing: border-box;
		background: #fff;
		padding-top: 20px;
	}

	.ly-header #menu-cb:checked~#menu-background {
		opacity: 0.5;
		z-index: 999;
		position: fixed;
	}

	.ly-header .ly-header-body nav {
		order: 1;
		width: 100%;
	}

	.ly-header .ly-header-body nav.top-nav {
		order: 2;
	}

	.ly-header {
		width: 100%;
		background: #fff;
		border-bottom: 1px solid #2eb9b9;
		height: 50px;
		position: fixed;
		top: 0;
		right: 0;
        left: 0;
		z-index: 2;
	}

	.ly-header .ly-header-body {
		max-width: 1800px;
		width: 100%;
		height: 100%;
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.ly-header .ly-header-body .top-logo {
		margin-left: 1rem;
	}

	.ly-header .ly-header-body .top-logo img {
		height: 30px;
	}

	.ly-header .ly-header-body ul li {
		border-bottom: 1px solid #ddd;
		padding: 16px 0;
		box-sizing: border-box;
	}

	.ly-header .ly-header-body ul li a {
		font-weight: bold;
		padding: 0 0 0 15px;
		display: block;
		position: relative;
	}

	.ly-header .ly-header-body ul li a:after {
		content: "";
		display: block;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 4px 0 4px 5px;
		border-color: transparent transparent transparent #ddd;
		position: absolute;
		right: 15px;
		top: 25%;
	}

	.ly-header .ly-header-body nav .btn-or {
		width: 90%;
		margin: 40px auto 0;
	}
}

/* --- PC ---------- header*/
@media print,
screen and (min-width: 1081px) {
	.btn-or a {
		color: #fff;
		font-weight: bold;
		width: 100%;
		display: block;
		background: #f0672d;
		border-radius: 5px;
		position: relative;
		text-align: center;
		padding: 7px 16px 9px;
		box-sizing: border-box;
		-webkit-transition: all 0.7s ease;
		-moz-transition: all 0.7s ease;
		-o-transition: all 0.7s ease;
		transition: all 0.7s ease;
	}

	.btn-or a:after {
		content: "";
		position: absolute;
		right: 10px;
		width: 4px;
		top: 50%;
		height: 4px;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		transform: rotate(45deg) translate(-50%, 0%);
	}

	.btn-or a:hover {
		background: #c64d47;
	}

	.btn-wh a {
		color: #f0672d;
		font-weight: bold;
		width: 100%;
		display: block;
		background: #fff;
		border: 2px solid #f0672d;
		border-radius: 5px;
		position: relative;
		text-align: center;
		padding: 8px 16px;
		box-sizing: border-box;
		-webkit-transition: all 0.7s ease;
		-moz-transition: all 0.7s ease;
		-o-transition: all 0.7s ease;
		transition: all 0.7s ease;
		text-decoration: none;
	}

	.btn-wh a:hover {
		color: #fff;
		background: #f0672d;
	}

	.business .green {
		color: #f0672d;
	}

	.ly-header.fixed {
		left: 0;
		position: fixed;
		top: 0;
		z-index: 9999;
	}


	#menu-icon,
	#menu-cb,
	#menu-background {
		display: none;
	}

	.ly-header {
		width: 100%;
		background: #fff;
		border-bottom: 1px solid #2eb9b9;
		height: 80px;
		position: fixed;
		top: 0;
		right: 0;
        left: 0;
		z-index: 2;
		box-sizing: border-box;
	}

	.ly-header .ly-header-body {
		max-width: 1284px;
		width: 96%;
		height: 100%;
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.ly-header .ly-header-body #ham-menu {
		display: flex;
		flex-wrap: wrap;
	}

	.ly-header .ly-header-body nav {
		display: flex;
		width: 100%;
		justify-content: flex-end;
		align-items: center;
		order: 2;
	}

	.ly-header .ly-header-body nav.top-nav {
		order: 1;
		margin-bottom: 0.5rem;
	}

	.ly-header .ly-header-body nav.top-nav a {
		color: #111111;
	}

	.ly-header .ly-header-body nav.top-nav li {
		position: relative;
	}

	.ly-header .ly-header-body nav.top-nav li::after {
		content: '';
		display: inline-block;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		margin: auto 0;
		height: 80%;
		border-right: 1px solid #111111;
	}

	.ly-header .ly-header-body nav.top-nav li:last-child::after {
		content: none;
	}

	.ly-header .ly-header-body ul {
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.ly-header .ly-header-body ul li a {
		font-weight: bold;
		margin: 0 15px;
		color: #2eb9b9;
	}

	.ly-header .ly-header-body nav .btn-or {
		width: 190px;
		margin-left: 15px;
	}
}



/* --- SP ---------- */
@media print,
screen and (max-width: 768px) {

	.pc-contents {
		display: none;
	}

	.ly-footer {
		background: url(../images/top/footer-bk.jpg) center top no-repeat;
		background-size: cover;
		padding: 40px 0 70px;
	}

	.ly-footer .ly-footer-body {
		max-width: 1080px;
		width: 90%;
		margin: 0px auto 50px;
	}

	.ly-footer .ly-footer-body .left {
		margin-bottom: 30px;
	}

	.ly-footer .ly-footer-body .left h2 {
		color: #fff;
		font-size: 100%;
		letter-spacing: 1px;
		font-weight: bold;
		margin-bottom: 20px;
		text-align: center;
	}

	.ly-footer .ly-footer-body .left .footer-logo {
		width: 60%;
		margin: 0 auto;
	}

	.ly-footer .ly-footer-body .right {}

	.ly-footer .ly-footer-body .right a {
		color: #fff;
	}

	.ly-footer .ly-footer-body .right ul {
		display: none;
		max-width: 600px;
		width: 100%;
		margin: 0 auto;
	}

	.ly-footer .ly-footer-body .right ul li {
		width: auto;
        margin: 0 0.5em 10px;
        text-align: center;
        display: inline-block;
	}

	.ly-footer .ly-footer-body .right ul li a {
		font-size: 90%;
	}

	.ly-footer .author-body {
		max-width: 1080px;
		width: 90%;
		margin: auto;
	}

	.ly-footer .author-body h2 {
		font-size: 20px;
	}

	.ly-footer .author-body p {
		font-size: 13px;
		line-height: 1.75;
	}

	.ly-footer small {
		text-align: center;
		color: #fff;
		font-size: 12px;
		margin: 40px 0 0;
		display: block;
	}

}

/* --- PC ---------- */
@media print,
screen and (min-width: 769px) {

	.sp-contents {
		display: none;
	}

	.business .sp-contents,
	.ly-header .sp-contents,
	.ly-footer .sp-contents {
		display: none;
	}


	.ly-footer {
		background: url(../images/top/footer-bk.jpg) center top no-repeat;
		background-size: cover;
		padding: 80px 0 60px;
	}

	.ly-footer .ly-footer-body {
		max-width: 1080px;
		width: 90%;
		margin: 0px auto;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		align-items: flex-start;
		margin-bottom: 40px;
	}

	.ly-footer .ly-footer-body .left {
		width: 32%;
	}

	.ly-footer .ly-footer-body .left h2 {
		color: #fff;
		font-size: 120%;
		letter-spacing: 1px;
		font-weight: bold;
		margin-bottom: 24px;
		margin-top: 0;
	}

	.ly-footer .ly-footer-body .right {
		width: 58%;
	}

	.ly-footer .ly-footer-body .right a {
		color: #fff;
	}

	.ly-footer .ly-footer-body .right ul {
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.ly-footer .ly-footer-body .right ul li {
		width: 49%;
		margin-bottom: 20px;
	}

	.ly-footer small {
		text-align: center;
		color: #fff;
		font-size: 90%;
		margin: 40px 0 0;
		display: block;
	}
}

@media screen and (min-width: 981px) and (max-width: 1081px) {
	.ly-header .ly-header-body ul li a {
		margin: 0 15px;
		font-size: 95%;
	}

}

@media screen and (min-width: 770px) and (max-width: 980px) {
	.ly-header .ly-header-body ul li a {
		margin: 0 15px;
		font-size: 95%;
	}

}

/* common-template */

.common-template .ly-title .el-en-title {
	text-align: center;
	font-size: 40px;
	letter-spacing: 1px;
	font-weight: bold;
	margin: 24px 0 4px;
}

.common-template .ly-title .el-main-title {
	text-align: center;
	font-size: 16px;
	margin: 4px 0;
}

.common-template .ly-contact {
	background: #f2f2f2;
	padding: 40px 0;
}

.common-template .ly-contact .inner {
	max-width: 500px;
	width: 90%;
	margin: 0 auto;
}

.common-template .ly-contact .inner .el-title {
	color: #f0672d;
	text-align: center;
}

.common-template .ly-contact .inner .el-lead {
	text-align: center;
	font-size: 16px;
	margin: 36px 0;
}

.common-template .ly-contact .inner .el-txt {
	font-size: 14px;
	line-height: 1.6;
}

.common-template .ly-contact .inner .btn-or {
	margin: 40px auto;
	width: 70%;
}

.common-template .ly-contact .inner .btn-or a {
	text-decoration: none;
	padding: 30px;
	font-size: 20px;
}

.common-template .ly-contact .inner .btn-or a:after {
	top: 46%;
}

/* --- PC ---------- */
@media print,
screen and (min-width: 769px) {

	.common-template .ly-contact .inner .el-title {
		font-size: 32px;
	}

	.common-template .ly-contact .inner .el-lead {
		font-size: 24px;
		margin: 60px 0;
	}

	.common-template .ly-contact .inner {
		max-width: 980px;
	}

	.common-template .ly-contact .inner .el-txt {
		text-align: center;
		font-size: 16px;
		line-height: 2.0;
	}

	.common-template .ly-contact .inner .btn-or {
		margin: 60px auto;
	}

	.common-template .ly-contact {
		padding: 80px 0;
	}

	.special-bnr {
		position: fixed;
		bottom: 20px;
		right: 20px;
	}
}


/* --- SP ---------- */
@media print,
screen and (max-width: 768px) {
	.common-template .ly-contact .inner .el-title {
		margin: 12px 0 0 0;
		font-size: 24px;
	}

	.common-template .ly-contact .inner .btn-or {
		max-width: 480px;
		width: 100%;
	}

	.common-template .ly-contact .inner .btn-or a {
		font-size: 16px;
	}

	.special-bnr {
		position: fixed;
		bottom: -2px;
		left: 0;
		right: 0;
	}

	.special-bnr img {
		width: 100%;
	}
}

.overlay {
	position: fixed;
	top: 0;
	z-index: 100;
	width: 100%;
	height: 100%;
	display: none;
	background: rgba(0, 0, 0, 0.6);
}

.cv-spinner {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.spinner {
	width: 40px;
	height: 40px;
	border: 4px #ddd solid;
	border-top: 4px #f0672d solid;
	border-radius: 50%;
	animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
	100% {
		transform: rotate(360deg);
	}
}

a.btn {
	position: relative;
	display: block;
	background-color: #2eb9b9;
	border: 2px solid #2eb9b9;
	border-radius: 30px;
	margin: 0 auto;
	padding: 15px;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	width: 280px;
	text-align: center;
	box-sizing: border-box;
}

a.btn:hover {
	background-color: #fff;
	color: #2eb9b9;
}

a.btn.contact {
	font-size: 1.25rem;
	width: 450px;
}

a.btn.contact::after {
	content: '';
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 1.5rem;
	border-style: solid;
	border-width: 7px 0px 7px 12px;
	border-color: transparent transparent transparent #fff;
	transform: translateY(-50%);
}

a.btn.contact.white-btn::after {
	border-color: transparent transparent transparent #2eb9b9;
}

a.btn.contact:hover::after {
	border-color: transparent transparent transparent #2eb9b9;
}

a.btn.contact.white-btn:hover::after {
	border-color: transparent transparent transparent #fff;
}

a.btn.white-btn {
	background-color: #fff;
	color: #2eb9b9 !important;
}

a.btn.white-btn:hover {
	color: #fff !important;
	background-color: #2eb9b9;
}

.btn-wrap {
	display: flex;
	justify-content: center;
	column-gap: 1rem;
}

.btn-wrap a.btn {
	width: 320px;
	margin: 0;
}

.fixed-btn-wrap {
	position: fixed;
}

.fixed-btn-wrap .fixed-btn .btn {
	font-size: 1rem;
	text-decoration: none;
	text-align: center;
	box-sizing: border-box;
	position: relative;
	z-index: 99999;
	padding: 10px;
}

@media print,screen and (min-width: 1079px) {
	.fixed-btn-wrap {
		right: 30px;
		top: 300px;
		display: flex;
		flex-direction: column;
	}

	.fixed-btn-wrap .fixed-btn:first-child {
		margin-bottom: 10px;
	}

	.fixed-btn-wrap .fixed-btn .btn {
		-ms-writing-mode: tb-rl;
		writing-mode: vertical-rl;
		width: auto;
		height: 177px;
		letter-spacing: 3.5px;
		box-shadow: 0 0 0 2px #ffffff;
	}
}

@media print,screen and (max-width: 1080px) {
	.fixed-btn-wrap {
		position: fixed;
        bottom: 0;
        left: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
		width: 100%;
	}

	.fixed-btn-wrap .fixed-btn .btn {
		width: 100%;
		border-radius: 0;
		border: 0;
	}
}

.ivory-bk {
	background-color: #F8F7F4;
}

main {
	padding-top: 80px;
}

section {
	padding: 4rem 1rem;
	box-sizing: border-box;
}

.title-wrap {
	text-align: center;
}

.title-wrap .sub {
	color: #2eb9b9;
	font-size: 18px;
	margin: 0;
	font-weight: bold;
}

.title-wrap .title {
	font-size: 2.5rem;
	margin: 0;
	line-height: 1.7;
}

/* common start */
.top-title-wrap {
	position: relative;
	padding: 5rem 1rem;
	box-sizing: border-box;
	text-align: center;
}

.top-title-wrap::before {
	content: '';
	display: inline-block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 5rem;
	background-color: #D5F3F4;
	z-index: -1;
}

.top-title-wrap .top-title {
	font-weight: bold;
	font-size: 2.25rem;
	margin: 0;
	position: relative;
}

.middle {
	position: relative;
	background: #D5F3F4;
	padding: 5rem 1rem;
	box-sizing: border-box;
}

.middle::before,
.middle::after {
	content: '';
	display: block;
	position: absolute;
	bottom: 100%;
	width: 53%;
	height: 5rem;
	background-color: #fff;
	z-index: -1;
}

.middle::before {
	left: -3%;
	border-radius: 0 0 0 100%;
}

.middle::after {
	right: -3%;
	border-radius: 0 0 100% 0;
}

.white-bk {
	max-width: 1284px;
	margin: 0 auto;
	border-radius: 3rem;
	background-color: #fff;
	padding: 4rem 0;
	box-sizing: border-box;
}

.white-bk>div {
	max-width: 1084px;
	width: 90%;
	margin: 0 auto;
}

.white-bk .h1-title {
	text-align: center;
	font-size: 2.25rem;
	margin: 0;
}

.white-bk .wrap {
	margin-top: 5rem;
}

.middle .links {
	width: fit-content;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 1.5rem;
	row-gap: 1.5rem;
	margin: 5rem auto 2rem;
}

.middle .links .link {
	display: grid;
	place-content: center;
	background-color: #00579D;
	color: #fff;
	font-weight: bold;
	text-align: center;
	width: 268px;
	border-radius: 1.75rem;
	padding: 0.5rem 1rem;
	box-sizing: border-box;
	text-decoration: none;
	border: 2px solid #00579D;
}

.middle .links a.link:hover {
	background-color: #fff;
	color: #00579D;
}

.aboutbox {
	position: relative;
	max-width: 848px;
	width: 100%;
	margin: 1.75rem auto;
	text-align: center;
	background-color: #F5F5F5;
	border-radius: 20px;
	padding: 2rem;
	box-sizing: border-box;
}

.aboutbox::after {
	content: '';
	display: inline-block;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	margin: 0 auto;
	border-style: solid;
	border-width: 20px 39px 0px 39px;
	border-color: #F5F5F5 transparent transparent transparent;
}

.aboutbox:last-child::after {
	content: none;
}

.aboutbox .ttl {
	font-size: 1.75rem;
	margin-top: 0;
}

.aboutbox .ttl b {
	display: inline-block;
	color: #fff;
	background: linear-gradient(90deg, rgba(0, 87, 157, 1) 0%, rgba(0, 44, 79, 1) 100%);
	padding: 0 1rem 2px;
	box-sizing: border-box;
	margin-right: 1rem;
}

/* --- SP ---------- */
@media print, screen and (max-width: 768px) {
	.top-title-wrap::before,
	.middle::before,
	.middle::after {
		height: 2.5rem;
	}
	.aboutbox {
		padding: 1rem;
	}

	.aboutbox .ttl {
		text-align: center;
		font-size: 1.15rem;
	}

	.aboutbox p {
		text-align: left;
	}

	.aboutbox .ttl b {
		margin-right: 0.5rem;
	}

	.btn-wrap {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		column-gap: 0.5rem;
	}
}

/*********************************
 * breadcrumbs
*********************************/

.sec-flow {
	background-color: #EEF8F8;
}

.sec-flow .title-wrap .title {
	font-size: 2.25rem;
}

.sec-flow .inner {
	max-width: 1284px;
	width: 100%;
	margin: 4rem auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	column-gap: 2rem;
}

.sec-flow .inner .box {
	position: relative;
	background-color: #fff;
	border-radius: 20px;
	padding: 3.25rem 1.5rem 1.5rem;
}

.sec-flow .inner .box::after {
	content: '';
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 100%;
	transform: translateY(-50%);
	border-style: solid;
	border-width: 39px 0px 39px 20px;
	border-color: transparent transparent transparent #fff;
}

.sec-flow .inner .box:last-child::after {
	content: none;
}

.sec-flow .inner .box .num {
	position: absolute;
	top: -38px;
	left: 1.5rem;
	margin: 0;
	display: grid;
	place-content: center;
	text-align: center;
	color: #2eb9b9;
	box-sizing: border-box;
	font-weight: bold;
	line-height: 1;
	padding-bottom: 0.5rem;
}

.sec-flow .inner .box .num::after {
	content: '';
	display: inline-block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 70%;
	border-bottom: 1px solid #2eb9b9;
}

.sec-flow .inner .box .num b {
	font-size: 2.5rem;
}

.sec-flow .inner .box .img {
	text-align: center;
}

.sec-flow .inner .box .ttl {
	text-align: center;
	color: #2eb9b9;
}

.sec-flow .btn-top{
	margin: 60px auto 25px;
	text-align: center;
	font-size: 18px;
}

/* --- SP ---------- */
@media print,
screen and (max-width: 768px) {

	section {
		padding: 2rem 1rem;
	}

	.top-title-wrap {
		padding: 2rem 1rem 3.5rem;
	}

	.top-title-wrap .top-title {
		font-size: 1.5rem;
	}

	.title-wrap .title {
		font-size: 2rem;
	}

	.white-bk {
		border-radius: 1rem;
		padding: 2rem 0;
	}


	.white-bk .h1-title {
		font-size: 1.5rem;
	}

	.middle {
		padding: 2rem 1rem;
	}

	.middle .links {
		width: auto;
		grid-template-columns: repeat(2, 1fr);
		column-gap: 0.5rem;
		row-gap: 0.5rem;
		margin: 2rem auto 1rem;
	}

	.middle .links .link {
		width: auto;
	}

	main {
		overflow-x: hidden;
	}

	main .contact .contact-lead {
		margin: 5px 0 20px;
	}

	a.btn.contact {
		width: 280px;
        font-size: 1rem;
        padding: 0.5rem;
	}

	.btn-wrap a.btn {
		width: auto;
		font-size: 3.9vw;
        padding: 0.5rem 1.5rem 0.5rem 0.5rem;
	}

	a.btn.contact::after {
		border-width: 3px 0px 3px 5px;
		right: 0.75rem;
	}

	.sec-flow .title-wrap .title {
		font-size: 1.5rem;
	}

	.sec-flow .inner {
		display: grid;
		width: 90%;
		grid-template-columns: repeat(1, 1fr);
		row-gap: 4rem;
		margin: 3.5rem auto 1.5rem;
	}

	.sec-flow .inner .box::after {
		top: 100%;
		bottom: auto;
		left: 50%;
		transform: translateX(-50%);
		border-width: 20px 39px 0px 39px;
		border-color: #fff transparent transparent transparent;
	}

	.sec-flow .btn-top{
		margin: 30px auto 15px;
		font-size: 16px;
	}

}

/* common end */

@media print,
screen and (max-width: 1070px) {
	main {
		padding-top: 50px;
	}
}

/*  下層ページ  */

.under-style .under-body a {
	color: #000;
}

.under-style .under-body a:hover {
	color: #2eb9b9;
}

.under-style .under-fv {
	padding: 75px 0;
}

.under-style .under-fv .under-ttl {
	font-size: 62px;
	margin: 0;
}

.under-style .under-fv .lead {
	max-width: 848px;
	width: 100%;
	margin: 50px auto 0;
}

.under-style .under-fv .lead p {
	font-size: 18px;
	line-height: 1.55;
	margin: 0;
}

.under-style .under-body {
	padding: 100px 0;
}

.under-style .contact-body {
	padding: 100px 0;
}

.under-style .contact-body .inner {
	max-width: 629px;
}

.under-style .contact-body .contact-ttl {
	font-size: 36px;
	text-align: center;
	margin: 0;
}

.under-style .contact-body .contact-lead {
	font-size: 18px;
	line-height: 1.55;
	margin: 35px 0;
}

.under-style .contact-body .contact-btn-wrap {
	display: flex;
}

#breadcrumb {
	max-width: 1740px;
	width: 95%;
	margin: 1rem auto;
}

#breadcrumb span{
	display: inline-block;
	font-size: 13px;
}

#breadcrumb span:nth-of-type(n+2) {
	padding-left: 1.5em;
	position: relative;
}

#breadcrumb span:nth-of-type(n+2)::before {
	content: '';
	display: inline-block;
	width: 4px;
	height: 4px;
	position: absolute;
	left: 0.5em;
	top: 50%;
	border: 1px solid;
	border-color: #111 #111 transparent transparent;
	transform: translateY(-50%) rotate(45deg);
}

#breadcrumb span a {
	text-decoration: none;
	color: #000;
}

#breadcrumb span:hover a{
	text-decoration: underline;
}

/* --- SP ---------- */
@media print,
screen and (max-width: 768px) {
	.under-style .under-fv {
		padding: 2rem 1rem 2.5rem;
	}

	.under-style .under-fv .under-ttl {
		font-size: 1.75rem;
	}

	.under-style .under-fv .lead {
		margin-top: 20px;
		text-align: left;
	}

	.under-style .under-fv .lead p,
	.under-style .contact-body .contact-lead {
		font-size: 16px;
	}

	.under-style .under-body,
	.under-style .contact-body {
		padding: 50px 0;
	}

	.under-style .contact-body .contact-ttl {
		font-size: 28px;
	}

	.under-style .contact-body .contact-lead {
		margin: 20px 0;
	}

	.under-style .contact-body .contact-btn-wrap a.btn.white-btn {
		margin-right: 10px;
	}
}


/* privacypolicy  sitepolicy */

.policy .under-body .inner {
	max-width: 1024px;
	width: 90%;
	margin: 0 auto;
}

.policy .under-body h2.title {
	margin: 40px 0 16px;
}

.policy .under-body h2.title:first-child {
	margin-top: 0;
}

.policy .under-body p {
	line-height: 1.55;
}

.policy .under-body ul {
	padding-left: 1em;
	list-style: none;
	padding: 0;
}

.policy .under-body ul li {
	padding-left: 1em;
	margin-top: 7px;
	line-height: 1.55;
	position: relative;
}

.policy .under-body ul li:first-child {
	margin-top: 0;
}

.policy .under-body ul li::before {
	content: '・';
	display: inline-block;
	position: absolute;
	left: 0;
}

.policy .under-body p.el-times {
	text-align: right;
}



/* about */

.about .under-body .inner {
	max-width: 1066px;
	width: 90%;
	margin: 0 auto;
}

.about .about-table {
	width: 100%;
}

.about .about-table th,
.about .about-table td {
	line-height: 1.55;
}

.about .about-table th span {
	display: block;
	background-color: #2eb9b9;
	padding: 3px 10px;
	border-radius: 5px;
	box-sizing: border-box;
	text-align: center;
	font-weight: bold;
	color: #FFFFFF;
}

.about .about-table td {
	font-size: 20px;
	font-weight: bold;
}

.about .about-table th a:hover,
.about .about-table td a:hover {
	text-decoration: underline;
}

.about .map iframe {
	aspect-ratio: 16 / 9;
	width: 100%;
	height: auto;
}

.about dl {
	margin: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	width: fit-content;
	column-gap: 1.5rem;
	row-gap: 1rem;
}

.about dl dd {
	margin: 0;
}

.about dl a {
	font-weight: normal;
}

.introduction {
	position: relative;
	background-color: #EEF8F8;
	padding: 5rem 1rem 6rem;
	box-sizing: border-box;
}

.introduction::before {
	content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5rem;
    background-color: #fff;
}

.introduction .white-bk {
	max-width: 1084px;
	margin-top: 3rem;
}

.sec-contact {
	position: relative;
	padding: 5rem 1rem;
	box-sizing: border-box;
}

.sec-contact::before,
.sec-contact::after {
	content: '';
    display: block;
    position: absolute;
    bottom: 100%;
    width: 53%;
    height: 5rem;
    background-color: #EEF8F8;
}

.sec-contact::before {
	left: -3%;
    border-radius: 0 0 0 100%;
}

.sec-contact::after {
	right: -3%;
    border-radius: 0 0 100% 0;
}

.sec-contact .title {
	color: #00579D;
}

.sec-contact .btn.contact {
	margin: 2rem auto 0.5rem;
}

.about .map {
	margin: 3rem auto;
}

/* --- PC ---------- */
@media print,
screen and (min-width: 769px) {

	.about .about-table th,
	.about .about-table td {
		padding-bottom: 55px;
		vertical-align: top;
	}

	.about .about-table tr:last-child th,
	.about .about-table tr:last-child td {
		padding-bottom: 0;
	}

	.about .about-table th {
		width: 194px;
	}

	.about .about-table td {
		padding-left: 1em;
	}

}

/* --- SP ---------- */
@media print,
screen and (max-width: 768px) {

	.about .about-table th,
	.about .about-table td {
		display: block;
	}

	.about .about-table th span {
		text-align: left;
	}

	.about .about-table td {
		padding: 0.5rem 0.5rem;
		margin-bottom: 20px;
		font-size: 16px;
		box-sizing: border-box;
	}

	.about .map {
		margin: 1rem auto;
	}

	.about dl {
		grid-template-columns: repeat(1, 1fr);
		margin: 1rem auto;
		width: 100%;
		row-gap: 0.5rem;
	}

	.introduction {
		padding: 2rem 1rem 3rem;
	}

	.introduction .title-wrap .title {
		font-size: 1.25rem;
	}

	.introduction .title-wrap p {
		text-align: left;
	}

	.introduction .white-bk {
		margin-top: 1.5rem;
	}

	.introduction::before,
	.sec-contact::before,
	.sec-contact::after {
		height: 2.5rem;
	}

	.sec-contact {
		padding: 2rem 1rem;
	}

	.sec-contact .title {
		font-size: 1.25rem;
	}

	.sec-contact .btn.contact {
		margin: 1rem auto 0.5rem;
	}
}


/* faq */

.faq .under-body .inner {
	max-width: 1000px;
	width: 90%;
	margin: 0 auto;
}

.faq .faq-box {
	background-color: #FFFFFF;
	border-radius: 20px;
	box-sizing: border-box;
	margin-bottom: 20px;
}

.faq .faq-box:last-child {
	margin-bottom: 0;
}

.faq .faq-list summary {
	font-weight: bold;
	align-items: center;
	display: grid;
	grid-template-columns: 40px 1fr 20px;
	grid-template-rows: 1fr;
	grid-column-gap: 19px;
	grid-row-gap: 0px;
	line-height: 1.55;
	padding: 25px;
}

.faq .faq-list summary:hover {
	cursor: pointer;
}

.faq .faq-list[open] summary:hover {
	background-color: transparent;
}

.faq .faq-list summary .circle,
.faq .faq-list .answer-box .circle {
	display: inline-block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid #2eb9b9;
	position: relative;
}

.faq .faq-list summary .circle.question {
	background-color: #2eb9b9;
}

.faq .faq-list .answer-box .circle.answer {
	background-color: #fff;
}

.faq .faq-list summary .circle::before,
.faq .faq-list .answer-box .circle::before {
	content: '';
	display: inline-block;
	font-weight: bold;
	font-size: 18px;
	line-height: 1;
	position: absolute;
	top: 46%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}

.faq .faq-list summary .circle.question::before {
	content: 'Q';
	color: #fff;
}

.faq .faq-list .answer-box .circle.answer::before {
	content: 'A';
	color: #2eb9b9;
}

.faq .faq-list summary .arrow {
	position: relative;
	display: inline-block;
	width: 20px;
	height: 11px;
}

.faq .faq-list[open] summary .arrow {
	transform: rotate(180deg);
}

.faq .faq-list summary .arrow::before,
.faq .faq-list summary .arrow::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: calc(50% - 0.5px);
	width: 1px;
	height: 14.8px;
	background-color: #707070;
	transform-origin: 50% calc(100% - 0.5px);
}

.faq .faq-list summary .arrow::before {
	transform: rotate(43.55deg);
}

.faq .faq-list summary .arrow::after {
	transform: rotate(-43.55deg);
}

.faq .faq-list .answer-box {
	padding: 0 25px 25px;
	display: grid;
	grid-template-columns: 40px 1fr;
	grid-template-rows: 1fr;
	grid-column-gap: 19px;
	grid-row-gap: 0px;
}

.faq .faq-list .answer-box .answer-desc {
	margin-top: 10px;
}

.faq .faq-list .answer-box .answer-desc p {
	margin: 0;
	word-break: break-all;
	line-height: 1.55;
	font-weight: bold;
}

.faq .faq-list .answer-box .answer-desc p:nth-of-type(n+2) {
	margin-top: 10px;
}

.faq .faq-list .answer-box .answer-desc .btn {
	margin-top: 25px;
	max-width: 280px;
	width: 100%;
}


/* --- SP ---------- */
@media print,
screen and (max-width: 768px) {
	.faq .faq-list summary {
		padding: 15px;
	}

	.faq .faq-list .answer-box {
		padding: 0 15px 15px;
	}
}



/* sitemap */

.sitemap .under-body .inner {
	max-width: 696px;
}

.sitemap .sitemap-list.bottom-list {
	margin-top: 70px;
}

.sitemap .sitemap-list li {
	font-weight: bold;
}

.sitemap .sitemap-list.top-list li {
	font-size: 22px;
}

.sitemap .sitemap-list.bottom-list li {
	font-size: 18px;
}

.sitemap .sitemap-list li a {
	padding: 20px 10px;
	border-bottom: 1px solid;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.sitemap .sitemap-list li:first-child a {
	border-top: 1px solid;
}

.sitemap .sitemap-list li a:hover {
	background-color: #ffffff9c;
}

.sitemap .sitemap-list.top-list li a {
	color: #2eb9b9;
}

.sitemap .sitemap-list li a .arrow {
	position: relative;
	display: inline-block;
	margin-left: 1em;
}

.sitemap .sitemap-list.top-list li a .arrow {
	width: 11px;
	height: 20px;
}

.sitemap .sitemap-list.bottom-list li a .arrow {
	width: 9px;
	height: 16px;
}

.sitemap .sitemap-list li a .arrow::before,
.sitemap .sitemap-list li a .arrow::after {
	content: "";
	position: absolute;
	top: calc(50% - 0.5px);
	right: 0;
	height: 1px;
	border-radius: 9999px;
	background-color: #111111;
	transform-origin: calc(100% - 0.5px) 50%;
}

.sitemap .sitemap-list.top-list li a .arrow::before,
.sitemap .sitemap-list.top-list li a .arrow::after {
	width: 14.8px;
	background-color: #2eb9b9;
}

.sitemap .sitemap-list.bottom-list li a .arrow::before,
.sitemap .sitemap-list.bottom-list li a .arrow::after {
	width: 12px;
}

.sitemap .sitemap-list.top-list li a .arrow::before {
	transform: rotate(43.55deg);
}

.sitemap .sitemap-list.top-list li a .arrow::after {
	transform: rotate(-43.55deg);
}

.sitemap .sitemap-list.bottom-list li a .arrow::before {
	transform: rotate(43.15deg);
}

.sitemap .sitemap-list.bottom-list li a .arrow::after {
	transform: rotate(-43.15deg);
}

.category-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin-bottom: 40px;
}

.button{
	max-width: 420px;
	width: 100%;
	margin: auto;
}

.button a{
	display: block;
	border: 2px solid #2eb9b9;
	padding: 8px;
	border-radius: 40px;
	text-align: center;
	font-weight: bold;
	font-size: 18px;
	color: #000;
    text-decoration: none;
	background-color: #FFF;
}

.button a:hover{
	background-color: #2eb9b9;
	color: #FFF;
}

.category-wrap .button {
	max-width: max-content;
	width: auto;
	margin: 0 0.5rem 0.5rem 0;
}

.category-wrap .button.now a {
	color: #FFF;
	background-color: #2eb9b9;
}

.category-wrap .button:last-child {
	margin-right: 0;
}

.category-wrap .button a {
	padding: 8px 20px;
	color: #2eb9b9;
	text-decoration: none;
	border: 2px solid #2eb9b9;
	box-sizing: border-box;
}

.category-wrap .button a:hover {
	color: #fff;
}

.archive .related-cont-body {
	display: flex;
	flex-wrap: wrap;
}

.archive .bl-related-article {
	width: 23.5%;
	margin-right: 2%;
	margin-bottom: 50px;
}

.archive .bl-related-article:nth-child(4n) {
	margin-right: 0;
}

.archive .bl-related-article a {
    text-decoration: none;
}

.archive .bl-relatedimg {
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}

.archive .el-relatedimg {
	overflow: hidden;
	position: relative;
	display: block;
	height: 0;
	padding-bottom: 69%;
	margin: 0;
}

.archive .el-relatedimg img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s linear;
}

.archive .bl-related-article:hover .el-relatedimg img {
	transform: scale(1.1);
}


.archive .article-category {
	margin: 10px 0;
	line-height: 1;
}

.archive .article-category a {
	font-size: 12px;
	font-weight: bold;
	color: #D70C18;
}

.archive .article-category a:hover {
	text-decoration: underline;
}

.archive .el-relatedtitle {
	margin: 5px 0;
}

.archive .el-relatedtitle a {
	font-size: 18px;
	color: #000;
	/*
	line-height: 1.55;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 54px;
	*/
}

.archive .bl-related-article:hover .el-relatedtitle a {
	opacity: .75;
}

.archive .related-date {
	font-size: 12px;
	font-weight: bold;
	color: #6E6E70;
	margin: 0;
}

.archive .related-desc {
	font-size: 14px;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	height: 42px;
	line-height: 1.55em;
	color: #707070;
	margin: 10px 0 0;
}

.archive .bl-relatedtext .case-body{
	margin-top: 5px;
	font-size: 14px;
	color: #43341B;
	margin: 0;
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media print,
screen and (max-width: 768px) {

	.button{
		width: 80%;
		margin: auto;
	}
	
	.button a{
		font-size: 16px;
	}

	.category-wrap .button a {
		padding: 5px 12px;
	}

	.archive .bl-related-article {
		width: 48%;
		margin-right: 4%;
		margin-bottom: 30px;
	}

	.archive .bl-related-article:nth-child(2n) {
		margin-right: 0;
	}

	.archive .article-category {
		margin: 5px 0;
	}

	.archive .article-category a {
		font-size: 11px;
	}

	.archive .el-relatedtitle {
		line-height: 1.25em;
	}

	.archive .el-relatedtitle a {
		font-size: 16px;
	}

	.archive .related-date {
		font-size: 10px;
	}

	.archive .related-desc {
		margin: 0;
	}
}



.under-style .bottom-contact {
    position: relative;
    padding: 7.5rem 1rem 5rem;
    box-sizing: border-box;
    text-align: center;
}

.under-style .bottom-contact::before,
.under-style .bottom-contact::after{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    width: 53%;
    height: 2.5rem;
    background-color: #D5F3F4;
    z-index: -1;
}

.under-style.partners .bottom-contact::before,
.under-style.partners .bottom-contact::after{
	background-color: #EEF8F8;
}

.under-style .bottom-contact::before{
	left: -3%;
    border-radius: 0 0 0 100%;
}

.under-style .bottom-contact::after{
	right: -3%;
    border-radius: 0 0 100% 0;
}

.under-style .bottom-contact .inner{
	max-width: 1284px;
    margin: 0 auto;
	width: 98%;
	text-align: center;
}

.under-style .bottom-contact .inner h2.contact-ttl{
	color: #00579D;
    font-size: 34px;
    font-weight: bold;
	margin: 0;
}

.under-style .bottom-contact .inner .contact-lead{
	font-size: 18px;
    line-height: 2;
    margin: 50px 0 40px;
}

/* --- SP ---------- */
@media print, screen and (max-width: 768px) {
	.under-style .bottom-contact .inner h2.contact-ttl{
		font-size: 26px;
	}

	.under-style .bottom-contact .inner .contact-lead{
		font-size: 16px;
		margin: 20px 0 30px;
		text-align: left;
	}
}


/* cases */

.cases .middle .inner{
	max-width: 1284px;
    margin: 0 auto;
}

.single-cases .middle{
	padding-top: 1px;
}

.single-cases .white-bk{
	max-width: 1080px;
	margin-top: 5rem;
}

.single-cases .white-bk>div{
	max-width: 860px;
}

.single-cases .date-category-wrap{
	display: flex;
}

.single-cases .date{
	font-weight: bold;
    color: #6E6E70;
    margin: 0;
}

.single-cases .categories{
	margin: 10px 0 15px;
    padding: 0;
    list-style-type: none;
    display: flex;
}

.single-cases .categories li{
	font-weight: bold;
    color: #D70C18;
    padding: 0 1em;
    border-radius: 1em;
    border: 1px solid #D70C18;
    box-sizing: border-box;
	margin-right: 15px;
}

.single-cases h1{
	margin: 0 0 30px;
    padding: 0 0 10px;
    border-bottom: 2px solid #2eb9b9;
}

.single-cases .content{
	margin: 30px 0;
}

.single-cases .nav-links{
	margin: 80px 0 0;
    padding-top: 40px;
    border-top: 1px solid #e5e5e5;
    display: flex;
	justify-content: space-between;
}

.single-cases .nav-links .prev a{
	margin-right: 1em;
}

.single-cases .nav-links .prev a,
.single-cases .nav-links .next a{
	padding: 8px 20px;
    color: #2eb9b9;
    text-decoration: none;
    border: 1px solid #2eb9b9;
    box-sizing: border-box;
    border-radius: 2em;
	background-color: #fff;
}

.single-cases .nav-links .prev a:hover,
.single-cases .nav-links .next a:hover{
	background-color: #2eb9b9;
	color: #fff;
}

.single-cases a.btn{
	font-size: 20px;
	border-radius: 40px;
	margin: 40px auto 0;
}

/* --- SP ---------- */
@media print, screen and (max-width: 768px) {
	.single-cases .white-bk{
		margin-top: 2rem;
	}
	
	.single-cases h1{
		font-size: 150%;
	}
}


/* sitemap */

.sitemap .white-bk{
	max-width: 860px;
}

.sitemap .white-bk>div{
	max-width: 650px;
}

.sitemap .sitemap-link.bottom{
	margin-top: 70px;
}

.sitemap .sitemap-link a{
    color: #000;
    text-decoration: none;
    font-size: 22px;
	font-weight: bold;
	padding: 10px;
	display: block;
	background-color: #fff;
	position: relative;
	border-bottom: 1px solid #2eb9b9;
}

.sitemap .sitemap-link a:first-child{
	border-top: 1px solid #2eb9b9;
}

.sitemap .sitemap-link.bottom a{
    font-size: 18px;
}

.sitemap .sitemap-link a::after{
	content: '';
	display: inline-block;
	width: 13px;
    height: 18px;
    background: #2eb9b9;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
	position: absolute;
	right: 10px;
    top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.sitemap .sitemap-link a:hover{
    background-color: #f4fbfb;
}

/* --- SP ---------- */
@media print, screen and (max-width: 768px) {
	.sitemap .sitemap-link a{
		font-size: 20px;
	}

	.sitemap .sitemap-link.bottom{
		margin-top: 40px;
	}
}