@charset "UTF-8";



/* -------------------------------------------

opening

------------------------------------------- */
.opening {
    position: fixed;
    z-index: 999999999;
    width: 100vw;
    height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	pointer-events: none;
}
.opening::before {
	content: "";
	width: 100%;
	height: 100%;
    background: url(../img/opening-bg.jpg) no-repeat center / cover;
	position: absolute;
	left: 0;
	top: 0;
	animation: bg ease-in 6s forwards;
}
@media screen and (max-width: 768px) {
	.opening::before {
		background: url(../img/opening-bg-sp.jpg) no-repeat center / cover;
	}
}
@keyframes bg {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.2);
	}
}
.opening .wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #fff;
	text-align: center;
	position: relative;
	z-index: 10;
	animation: wrap 2s forwards;	
	animation-delay: 4.5s;	
}
@keyframes wrap {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
.opening-txt-1 {
	font-weight: 900;
	font-size: 5.6rem;
	margin-bottom: 3rem;
	animation: txt-1 1s forwards;
	opacity: 0;
	animation-delay: 1s;
}
@keyframes txt-1 {
	0% {
		transform: translateY(1.5rem);
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}
.opening-txt-2 {
	font-weight: 500;
	font-size: 2rem;
	animation: txt-2 1s forwards;		
	animation-delay: 2s;
	opacity: 0;
}
@keyframes txt-2 {
	0% {
		transform: translateY(1.5rem);
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}
@media screen and (max-width: 768px) {
	.opening-txt-1 {
		font-size: 3.6rem;
		line-height: 1.4;
	}
	.opening-txt-2 {
		font-size: 2rem;
	}	
}




/* -------------------------------------------

kv

------------------------------------------- */
.top-kv {
	position: relative;
	height: 100vh;
	background: url(../img/top-kv.jpg) no-repeat center / cover;
}
.top-kv > p {
	position: absolute;
	right: 5rem;
	top: 20rem;
	text-align: right;
	font-size: 2.2rem;
	font-weight: bold;
	color: #fff;
}
.top-kv .wrap {
	position: absolute;
	left: 8rem;
	bottom: -2.5rem;
}
.top-kv .wrap > div:nth-of-type(1) {
	line-height: 1;
	font-size: 3.2rem;
	font-weight: bold;
	margin-bottom: 2rem;
	margin-left: 2.5rem;
}
.top-kv .wrap > div:nth-of-type(2) {
	display: flex;
	align-items: flex-start;
}	
.top-kv .wrap > div:nth-of-type(2) > span {
	transform: rotate(180deg);
	font-family: var(--font-en);
	font-size: 1.8rem;
	color: var(--prime);
}
.top-kv .wrap > div:nth-of-type(2) > p {
	color: var(--grey-light);
	border-left: solid 0.15rem var(--prime);
	padding-left: 2rem;
	padding-bottom: 10rem;
	font-weight: 500;
	font-size: 1.7rem;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
	.top-kv {
		height: calc(100dvh - 6rem);
	}	
	.top-kv > p {
		top: 9rem;
		right: 1.5rem;
		font-size: 1.4rem;
	}
	.top-kv .wrap {
		left: 2rem;
		bottom: -2.5rem;
	}
	.top-kv .wrap > div:nth-of-type(1) {
		font-size: 2.2rem;
		margin-left: 0;
	}
	.top-kv .wrap > div:nth-of-type(2) > p {
		padding-bottom: 6rem;
		font-size: 1.5rem;
	}
}



/* -------------------------------------------

news

------------------------------------------- */
.top-news {
    padding: 4rem 0 8rem 0;
}
.top-news .wrap {
	display: flex;
}
.top-news .wrap h2 {
	width: 16rem;
	display: flex;
	flex-direction: column;
	line-height: 1;
	font-weight: 500;
}
.top-news .wrap h2 .en {
	font-size: 4.4rem;
	font-weight: 900;
	margin-bottom: 1rem;
}
.top-news .wrap > div {
	width: calc(100% - 16rem);
}
.top-news .more {
    margin: 4rem 0 0 auto;
}
@media screen and (max-width: 768px) {
    .top-news {
        padding: 6rem 3rem 8rem 3rem;
    }   
	.top-news .wrap {
		display: block;
	}
	.top-news .wrap h2 {
		width: 100%;
		margin-bottom: 2rem;
		align-items: center;
	}
	.top-news .wrap > div {
		width: 100%;
	}	
	.top-news .more {
		margin: 4rem auto 0 auto;
	}
}
/* cms */
.top-news .CMS-NEWS-INDEX {
    padding-bottom: 0;
}
.top-news .CMS-NEWS-MORE-READ {
    display: none;
}



/* -------------------------------------------

mission

------------------------------------------- */
.top-mission {
	position: relative;
}
.top-mission::before {
	content: "";
	width: 32rem;
	height: 32rem;
	background: url(../img/top-bg-1.jpg) no-repeat center / contain;
	position: absolute;
	left: 7rem;
	top: -26rem;
	z-index: -1;
}
.top-mission h3 {
	text-align: center;
	font-size: 2.4rem;
}
.top-mission h3 + p {
	text-align: center;
	font-weight: bold;
	color: var(--blue);
	margin: 1.5rem 0 3rem 0;
}
.top-mission .wrap {
	display: flex;
	align-items: center;
	gap: 5rem
}
.top-mission .wrap > * {
	flex: 1;
}
.top-mission .more {
	margin: 0;
}
.top-mission p {
	line-height: 2;
	margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
	.top-mission::before {
		left: -4rem;
	}	
	.top-mission h3 {
		font-size: 2rem;
	}
	.top-mission h3 + p {
		line-height: 1.7;
	}
	.top-mission .wrap {
		flex-direction: column;
		padding: 0 3rem;
		gap: 2rem
	}
	.top-mission .more {
		margin: 0 auto;
	}
	.top-mission p {
		line-height: 1.8;
		margin-bottom: 4rem;
	}	
}



/* -------------------------------------------

service

------------------------------------------- */
.top-service {
	background: url(../img/top-service-bg.png) no-repeat center top;
	background-size: 100% auto;
	padding: 12rem 0 8rem 0;
	margin-top: -2rem;
}
.top-service h2 {
	flex-direction: row;
	align-items: flex-end;
	margin-bottom: 2rem;
}
.top-service h2 .en {
	margin: 0;
}
.top-service h2 .jp {
	margin-bottom: 0.6rem;
	margin-left: 1rem;
}
.top-service dl {
	margin-bottom: 4rem;
}
.top-service dt {
	color: var(--blue);
	font-size: 1.6rem;
	font-weight: bold;
	margin-bottom: 0.6rem;
}
.top-service .wrap {
	display: flex;
	align-items: flex-start;
}
.top-service .wrap > div {
	width: 47%;
	padding: 0 4rem 0 7rem;
	margin-top: 5rem;
	position: relative;
}
.top-service .wrap > div::before {
	content: "";
	width: 0.7rem;
	height: 17rem;
	position: absolute;
	left: 4.5rem;
	bottom: 0;
	background: linear-gradient(to top,var(--blue),var(--green));
}
.top-service h3 {
	font-size: 2.8rem;
	font-weight: 500;
	line-height: 1;
	margin-bottom: 2.5rem;
}
.top-service h3 strong {
	font-family: var(--font-en);
	font-size: 7rem;
	position: relative;
	left: 0.5rem;
	bottom: -0.4rem;
}
.top-service .wrap > ul {
	width: 53%;
}
.top-service .wrap > ul li:not(:last-child) {
	margin-bottom: 1rem;
}
.top-service .wrap > ul li:nth-child(2){
	margin-top: -3rem;
}
@media screen and (max-width: 768px) {
	.top-service {
		background-size: 150% auto;
		padding: 16rem 3rem 8rem 3rem;
		margin-top: 0;
	}
	.top-service dl {
		margin-bottom: 4rem;
	}
	.top-service .wrap {
		flex-direction: column;
	}
	.top-service .wrap > div {
		width: 100%;
		padding: 0 0 0 3rem;
		margin-top: 0;
		position: relative;
	}
	.top-service .wrap > div::before {
		height: 100%;
		left: 0;
	}
	.top-service .wrap > ul {
		width: 100%;
	}
}


/* -------------------------------------------

company

------------------------------------------- */
.top-company {
	position: relative;
	padding-bottom: 10rem;
}
.top-company h2 {
	margin-bottom: 2.5rem;
}
.top-company h2 .jp {
	margin-left: 0.6rem;
}
.top-company::before {
	content: "";
	width: 100%;
	height: 70%;
	background: linear-gradient(to bottom,var(--blue),var(--green));
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
}
.top-company .wrap {
	width: 96rem;
	margin: 0 auto;
	background: #fff;
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	padding: 0 4rem 6rem 4rem;
}
.top-company .wrap > * {
	position: relative;
	z-index: 10;
}
.top-company .wrap > div:nth-of-type(1) {
	width: 40%;
}
.top-company .wrap > div:nth-of-type(2) {
	width: 55%;
	padding-top: 4rem;
	padding-left: 6rem;
}
.top-company iframe {
	border-radius: 2rem;
	height: 42rem;
}
.top-company .more {
	margin: 0;
}
ul.detail {
	margin-bottom: 3rem;
}
ul.detail li {
	padding: 1.5rem 0;
	border-bottom: solid 0.15rem #D9D9D9;	
}
ul.detail dl {
	display: flex;
	flex-wrap: wrap;
}
ul.detail dl dt {
	width: 12rem;
	font-weight: bold;
	color: var(--blue);
}
ul.detail dl dd {
	width: calc(100% - 12rem);
}
ul.detail dl dt:not(:last-of-type),
ul.detail dl dd:not(:last-of-type) {
	margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
	.top-company {
		padding: 0 2rem 2rem 2rem;
	}
	.top-company h2 {
		margin-bottom: 1.5rem;
	}
	.top-company h2 .jp {
		margin-left: 0;
	}
	.top-company::before {
		content: "";
		width: 100%;
		height: 80%;
		background: linear-gradient(to bottom,var(--blue),var(--green));
		position: absolute;
		left: 0;
		bottom: 0;
		z-index: -1;
	}
	.top-company .wrap {
		width: auto;
		display: block;
		padding: 2rem 2rem 3rem 2rem;
	}
	.top-company .wrap > * {
		position: relative;
		z-index: 10;
	}
	.top-company .wrap > div:nth-of-type(1) {
		width: 100%;
	}
	.top-company .wrap > div:nth-of-type(2) {
		width: 100%;
		padding: 0;
	}
	.top-company iframe {
		border-radius: 2rem;
		height: 36rem;
	}
	.top-company .more {
		margin: 0 auto;
	}
	.top-company ul.detail {
		margin-bottom: 3rem;
	}
	ul.detail {
		display: block;
	}
	ul.detail dt {
		width: 100%;
	}
	ul.detail dd {
		width: 100%;
	}
	ul.detail dt:not(:last-of-type) {
		margin-bottom: 0;
	}
}



/* -------------------------------------------

sns

------------------------------------------- */
.top-sns {
	padding: 8rem 0;
}
.top-sns h2 {
	margin: 0;
}
.top-sns h2 .jp {
	font-size: 1.4rem;
}
.top-sns > div:nth-of-type(1) {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 4rem;
}
.top-sns .wrap {
	width: 80rem;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.top-sns {
		padding: 6rem 3rem;
	}
	.top-sns h2 {
		margin: 0 0 2rem 0;
	}
	.top-sns h2 .en {
		font-size: 4.8rem;
	}
	.top-sns h2 .jp {
		font-size: 1.4rem;
	}
	.top-sns > div:nth-of-type(1) {
		flex-direction: column;
		margin-bottom: 4rem;
	}
	.top-sns .wrap {
		width: auto;
	}
}
/* sns */
ul.sns {
	display: flex;
	align-items: center;
	gap: 3.5rem;
}
ul.sns li {
	width: 5rem;
}
footer ul.sns {
	gap: 2rem;
}
footer ul.sns li {
	width: 3.5rem;
}
@media screen and (max-width: 768px) {
	footer ul.sns li {
		width: 4.5rem;
	}
}
/* cms */
.CMS-INSTAGRAM-LIST {
    display: flex;
    flex-wrap: wrap;
	gap: 2rem;
}
.CMS-INSTAGRAM-LIST > * {
	width: calc((100% - 4rem) / 3);
}
.CMS-INSTAGRAM-LIST > *:nth-of-type(n + 4) {
    display: none;
}
@media screen and (max-width: 768px) {
	
}



/* -------------------------------------------

contact

------------------------------------------- */
.contact {
	background: 
		url(../img/contact-bg-1.png) no-repeat left top,
		url(../img/contact-bg-2.jpg) no-repeat center right;
	background-size:
		50rem auto,
		auto 100%;
	background-color: #000;
	padding: 7rem 0 5rem 12rem;
	color: #fff;
}
.contact > * {
	position: relative;
	z-index: 10;
}
.contact p {
	margin-bottom: 4rem;
}
.contact .more {
	margin: 0 0 0 25rem;
}
@media screen and (max-width: 768px) {
	.contact {
		background: 
			url(../img/contact-bg-2.jpg) no-repeat center / cover;
		padding: 6rem 3rem;
	}
	.contact > * {
		position: relative;
		z-index: 10;
	}
	.contact p {
		margin-bottom: 4rem;
	}
	.contact .more {
		margin: 0;
	}	
}



/* -------------------------------------------

form

------------------------------------------- */
.CMS-FORM-GROUP {
    display: flex;
    align-items: center;
}
@media screen and (max-width: 768px) {
    .CMS-FORM-GROUP {
        display: block;
    }
}
.CMS-FORM-GROUP:not(:last-of-type) {
    margin-bottom: 4rem;
}
.CMS-FORM-GROUP > label {
    width: 30%;
}
@media screen and (max-width: 768px) {
    .CMS-FORM-GROUP label {
        width: 100%;
        display: block;
        margin-bottom: 1rem;
    }
}
.CMS-FORM-INPUT,
.CMS-FORM-EMAIL {
    -webkit-appearance: none;
    appearance: none;
    border: #ddd solid 1px;
    padding: 2rem;
    width: 70%;
}
.CMS-FORM-GROUP textarea {
    -webkit-appearance: none;
    appearance: none;
    border: #ddd solid 1px;
    width: 70%;
    height: 16rem;
    padding: 2rem;
}
@media screen and (max-width: 768px) {
    .CMS-FORM-INPUT,
    .CMS-FORM-EMAIL,
    .CMS-FORM-GROUP textarea {
        width: 100%;
    }
}
/* ---- radio ---- */
.CMS-FORM-RADIO {
    flex-direction: column;
    display: flex;
    flex-wrap: wrap;
    white-space: nowrap;
    width: 70%;
}
.CMS-FORM-RADIO > div:not(:last-of-type) {
    margin-right: 2.5rem;
    margin-bottom: 1.2rem;
}
.CMS-FORM-RADIO > div {
    display: flex;
    align-items: center;
    width: calc(100% - 18px);
}
.CMS-FORM-RADIO > div label {
    margin-left: 0.5rem;
    margin-top: 0.3rem;
}
_::-webkit-full-page-media, _:future, :root .CMS-FORM-RADIO > div label {
    margin-top: 0;
}
@media screen and (max-width: 768px) {
    .CMS-FORM-RADIO {
        display: block;
        width: 100%;
        white-space:unset;
    }
    .CMS-FORM-RADIO > div:not(:last-of-type) {
        margin-bottom: 1.2rem;
    }
    .CMS-FORM-RADIO > div label {
        width: calc(100% - 24px);
    }
    _::-webkit-full-page-media, _:future, :root .CMS-FORM-RADIO > div label {
        margin-top: 0.7rem;
    }   
}
input[type="radio"] {
    position: relative;
    width: 18px;
    height: 18px;
    background: rgba(245,245,245,1);
    border: solid 1px #ddd;
    border-radius: 50%;
    vertical-align: -2px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
input[type="radio"]:checked:before {
    content: "";
    background: var(--prime);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 9px;
    height: 9px;
}
@media screen and (max-width: 768px) {
    input[type="radio"] {
        width: 24px;
        height: 24px;
    }
    input[type="radio"]:checked:before {
        width: 12px;
        height: 12px;
    }
}


/* ---- submit ---- */
.CMS-FORM-GROUP input[type="submit"] {
    background: var(--bg-grd-right);
    color: #fff;
    display: block;
	font-weight: bold;
	border-radius: 10rem;
    font-size: 1.6rem;
    margin: 0 auto;
    padding: 1.6rem 0 1.75rem 0;
    transition: all .3s;
    width: 24rem;
}
.CMS-FORM-GROUP input[type="submit"]:hover {
    cursor: pointer;
    opacity: 0.5;
}
input[type="submit"] {
    -webkit-appearance: button;
    appearance: button;
    border: none;
    border-radius: 0;
}
input[type="submit"]::-webkit-search-decoration {
    display: none;
}
@media screen and (max-width: 768px) {
    .CMS-FORM-GROUP input[type="submit"] {
        width: 100%;
        font-size: 1.7rem;
    }   
}
/* ---- calendar ---- */
input[type="date"] {
    -webkit-appearance: none;
    appearance: none;
    background: #fff;
    border: #ddd solid 1px;
    font-size: 1.4rem;
    font-weight: normal;
    padding: 2rem;
    width: 70%;
}
@media screen and (max-width: 768px) {
    input[type="date"] {
        width: 100%;
    }
}
/* ---- select ---- */
.select-wrap {
    position: relative;
    width: 70%;
}
.select-wrap::before {
    content: "";
    width: 0.6rem;
    height: 0.6rem;
    border-right: solid 0.15rem #333;
    border-bottom: solid 0.15rem #333;
    transform: rotate(45deg);
    position: absolute;
    right: 1.2rem;
    top: calc(50% - 0.6rem);
    z-index: 10;
}
select {
    appearance: none;
    background: #fff;
    border: solid 1px #ccc;
    border-radius: 0;
    color: #000;
    font-size: 1.4rem;
    padding: 1.6rem 4rem 1.5rem 1.5rem;
    position: relative;
    width: 100%;
}
@media screen and (max-width: 768px) {
    .select-wrap {
        width: 100%;
    }
}
/* ---- required ---- */
.required {
    background: var(--prime);
    color: #fff;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1;
    margin-left: 1.0rem;
    padding: 0.2rem 0.7rem 0.35rem 0.7rem;
    vertical-align: 0.1rem;
	border-radius: 10rem;
}
/* <span class="required">必須</span> */
@media screen and (max-width: 768px) {
    .CMS-FORM-GROUP input:focus,
    .CMS-FORM-GROUP textarea:focus {
        font-size: 16px;
    }
}



/* -------------------------------------------

privacy

------------------------------------------- */
.privacy {
    background: #fff;
    border: 1px solid #ddd;
    font-size: 1.2rem;
    height: 20rem;
    overflow: auto;
    padding: 1.7rem 2rem;
}
.privacy-note {
    font-size: 1.2rem;
    margin: 5rem 0 2rem 0;
}



/* -------------------------------------------

thanx

------------------------------------------- */
.thanx {
    text-align: center;
}
@media screen and (max-width: 768px) {
    .thanx {
        text-align: left;
    }
}
.back {
    display: block;
    text-align: center;
}
.back a {
    color: var(--prime);
}



/* -------------------------------------------

faq

------------------------------------------- */
/* ---- faq-ttl ---- */
.faq-ttl {
    display: flex;
    align-items: center;
    line-height: 1.4;
    padding: 0.9rem 6rem 1rem 2rem;
    position: relative;
    transition: all .3s;
	background: var(--bg-grd-right);
	color: #fff;
	font-weight: bold;
}
.faq-ttl i {
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    right: 2rem;
    top: calc(50% - 0.75rem);
}
.faq-ttl i::before,
.faq-ttl i::after {
    content: "";
    background: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.faq-ttl i::before {
    width: 100%;
    height: 0.2rem;
}
.faq-ttl i::after {
    width: 0.2rem;
    height: 100%;
    transition: all .3s;
}
.faq-ttl.open i::after {
    transform: translate(-50%,-50%) rotate(90deg);
}
.faq-ttl:hover {
    cursor: pointer;
}
.faq-ttl > span:nth-child(1),
.faq-content > span:nth-child(1) {
    font-size: 2rem;
    font-weight: bold;
    padding-top: 0.1rem;
    padding-bottom: 0.3rem;
}
.faq-content > span:nth-child(1)  {
	color: var(--blue);
}
.faq-ttl > span:nth-child(2) {
    font-size: 1.5rem;
    padding-left: 1rem;
}
/* ---- faq-content ---- */
.faq-content {
	background: linear-gradient(to right,#ebfaec,#e7f9fa);
    display: flex;
    padding: 1rem 2rem 2rem 2rem;
}
.faq-content > span:nth-child(2) {
    padding-left: 1rem;
    padding-top: 0.75rem;
}



/* -------------------------------------------

service

------------------------------------------- */
/* summary */
.service-summary {
	padding: 8rem 0 4rem 0;
}
.service-summary h3 {
	text-align: center;
	font-size: 2.8rem;
}
.service-summary h3 + p {
	text-align: center;
	font-weight: 500;
	color: var(--grey-light);
	margin: 1rem 0 6rem 0;
}
.service-summary h4 {
	color: #fff;
	font-size: 2.4rem;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bg-grd-left);
	height: 6rem;
	padding-bottom: 0.1rem;
}
.service-summary h4 + p {
	margin: 3.5rem 0;
	text-align: center;
}
.service-summary ul {
	display: flex;
	gap: 4rem;
}
.service-summary ul li {
	flex: 1;
	border: solid 0.2rem #D9D9D9;
	box-shadow: 0.2rem 0.2rem 0.8rem rgba(0,0,0,0.15);
	padding: 2rem 2.5rem;
}
.service-summary dt {
	font-weight: bold;
	color: #fff;
	border-radius: 0.8rem;
	background: var(--bg-grd-left);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 4.8rem;
	padding-bottom: 0.15rem;
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
}
.service-summary ul + p {
	text-align: center;
	margin: 3.5rem 0;
}
.service-summary ul + p + p {
	text-align: center;
	font-weight: bold;
	font-size: 1.8rem;
	color: var(--blue);
	display: flex;
	flex-direction: column;
	align-items: center;
}
.service-summary ul + p + p::after {
	content: "";
	width: 0;
	height: 0;
	border-left: 5rem solid transparent;
	border-right: 5rem solid transparent;
	border-top: 3rem solid var(--blue);	
	margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
	.service-summary {
		padding: 6rem 2rem 2rem 2rem;
	}
	.service-summary h3 {
		line-height: 1.2;
	}	
	.service-summary h3 + p {
		text-align: left;
		margin: 1.5rem 0 3rem 0;
	}
	.service-summary h4 {
		font-size: 2rem;
		height: 5.6rem;
	}
	.service-summary h4 + p {
		margin: 1.5rem 0 2rem 0;
		text-align: left;
	}
	.service-summary ul {
		flex-direction: column;
		gap: 2rem;
	}
	.service-summary ul li {
		width: 100%;
	}
	.service-summary ul + p {
		text-align: left;
		margin: 2.5rem 0 2rem 0;
	}
	.service-summary ul + p + p {
		font-size: 1.7rem;
		line-height: 1.4;
	}
}
/* detail */
.service-detail {
	padding: 8rem 0;
}
.service-detail .heading-2 + p {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-weight: 500;
}
.service-detail .heading-2 + p strong {
	font-weight: bold;
	color: var(--blue);
	font-size: 1.7rem;
	margin-bottom: 2rem;
}
.service-detail > section {
	margin-top: 5rem;
}
.service-detail .service-flow + .wrap {
	display: flex;
	align-items: center;
	margin-top: 4rem;
}
.service-detail .service-flow + .wrap > figure {
	width: 43%;
}
.service-detail .service-flow + .wrap > p {
	width: 57%;
	padding-left: 2.5rem;
	font-size: 1.3rem;
	font-weight: 500;
}
@media screen and (max-width: 768px) {
	.service-detail {
		padding: 5rem 2rem;
	}
	.service-detail .heading-2 + p {
		text-align: left;
		line-height: 1.5;
	}
	.service-detail > section {
		margin-top: 4rem;
	}
	.service-detail .service-flow + .wrap {
		flex-direction: column;
	}
	.service-detail .service-flow + .wrap > figure {
		width: 100%;
	}
	.service-detail .service-flow dd {
		line-height: 1.5;
	}
	.service-detail .service-flow + .wrap > p {
		width: 100%;
		padding-left: 0;
		margin-top: 1rem;
	}
}
/* beginner */
.service-beginner {
	padding: 10rem 0;	
}
.service-beginner > ul {
	margin-top: 6rem;
	margin-bottom: 4rem;
}
.service-beginner > ul li > div {
	display: flex;
	justify-content: space-between;
	margin-bottom: 4rem;
}
.service-beginner > ul li:not(:last-child) {
	margin-bottom: 6rem;
}
.service-beginner > ul li:nth-child(even) > div {
	flex-direction: row-reverse;
}
.service-beginner > ul li > div > div {
	width: 57%;
}
.service-beginner > ul li > div > figure {
	width: 38%;
}
.service-beginner > ul li:nth-child(1) > p {
	text-align: center;
	color: var(--blue);
	font-size: 1.6rem;
	font-weight: bold;
}
.service-beginner > ul li:nth-child(2) > div > figure {
	padding-right: 5rem;
}
.service-beginner figcaption {
	font-size: 1rem;
	text-align: center;
	margin-top: 1rem;
}
.service-beginner .num {
	line-height: 1;
	font-weight: 900;
	font-size: 5.2rem;
}
.service-beginner ul h4 {
	font-weight: 900;
	font-size: 1.5rem;
	margin: 2rem 0;
}
.service-beginner ul p {
	font-size: 1.3rem;
}
.service-beginner > ul h4,
.service-beginner > ul p {
	padding-left: 2.5rem;
}
.service-support {
	background: linear-gradient(to right,#ebfaec,#e7f9fa);
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 4rem 0 0;
}
.service-support > div {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-weight: bold;
	font-size: 2.4rem;
	line-height: 1;
	margin-bottom: 2.5rem;
}
.service-support > div span {
	font-weight: 500;
	font-size: 1.5rem;
	margin-bottom: 0.8rem;
}
.service-support ul {
	display: flex;
	justify-content: center;
	gap: 6rem;
}
.service-support ul li {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.service-support ul li figure {
	width: 14rem;
	padding: 0;
}
.service-support ul li dt {
	font-weight: 900;
	color: var(--blue);
	margin: 1.5rem 0 1rem;
	line-height: 1;
}
.service-support ul li dd {
	font-weight: bold;
}
@media screen and (max-width: 768px) {
	.service-beginner {
		padding: 5rem 2rem 3rem 2rem;	
	}
	.service-beginner > ul {
		margin-top: 5rem;
		margin-bottom: 3rem;
	}
	.service-beginner > ul li > div {
		flex-direction: column-reverse;
		margin-bottom: 4rem;
	}
	.service-beginner > ul li:not(:last-child) {
		margin-bottom: 6rem;
	}
	.service-beginner > ul li:nth-child(even) > div {
		flex-direction: column-reverse;
	}
	.service-beginner > ul li > div > div {
		width: 100%;
	}
	.service-beginner > ul li > div > figure {
		width: 100%;
		margin-top: 2rem;
	}
	.service-beginner > ul li:nth-child(1) > p {
		text-align: left;
	}
	.service-beginner > ul li:nth-child(2) > div > figure {
		padding: 0 3rem;
	}
	.service-beginner ul h4 {
		margin: 1rem 0 1.5rem 0;
		font-size: 1.6rem;
	}
	.service-beginner ul p {
		font-size: 1.4rem;
	}
	.service-beginner > ul h4,
	.service-beginner > ul p {
		padding-left: 0;
	}
	.service-support {
		padding: 3rem;
	}
	.service-support > div {
		font-size: 2rem;
	}
	.service-support ul {
		flex-direction: column;
		gap: 2rem;
	}
	.service-support ul li:not(:last-child) {
		margin: 0;
	}
	.service-support ul li figure {
		width: 18rem;
		padding: 0;
	}
}
/* menu */
.service-menu {
	background: linear-gradient(to right,#ebfaec,#e7f9fa);
	position: relative;
	padding-top: 3.5rem;
	position: relative;
}
.service-menu::before {
	content: "";
	width: 100%;
	height: 5rem;
	background: #fff;
	position: absolute;
	left: 0;
	bottom: 0;
}
.service-menu ul {
	display: flex;
	position: relative;
	z-index: 10;
}
.service-menu ul li {
	flex: 1;
}
@media screen and (max-width: 768px) {
	.service-menu {
		padding: 2rem 1.5rem 0 1.5rem;
	}
	.service-menu::before {
		height: 2rem;
	}
}
/* flow */
.service-flow {
	display: flex;
	gap: 2.5rem
}
.service-flow li {
	border: solid 0.2rem #D9D9D9;
	box-shadow: 0.2rem 0.2rem 0.8rem rgba(0,0,0,0.15);	
	padding: 1.5rem 1.5rem;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.service-flow li:not(:last-child)::after {
	content: "";
	width: 0;
	height: 0;
	border-left: 3rem solid var(--blue);
	border-top: 2.5rem solid transparent;
	border-bottom: 2.5rem solid transparent;	
	position: absolute;
	right: -2.2rem;
	top: 9rem;
	z-index: 10;
}
.service-flow li span {
	background-color: var(--blue);
	color: #fff;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10rem;
	height: 3rem;
	font-weight: 900;
	font-size: 1.8rem;
	padding-bottom: 0.15rem;
	width: 100%;
}
.service-flow li img {
	width: 60%;
	margin: 1rem 0;
}
.service-flow dt {
	text-align: center;
	font-weight: bold;
	color: var(--blue);
	font-size: 1.4rem;
	margin-bottom: 1rem;
	line-height: 1.4;
}
.service-flow dd {
	font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
	.service-flow {
		flex-wrap: wrap;
	}
	.service-flow li {
		width: calc((100% - 2.5rem) / 2);
	}
	.service-flow li:nth-child(2)::after {
		display: none;
	}
}



/* -------------------------------------------

company

------------------------------------------- */
.company-message h4 {
	color: var(--blue);
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
}
.company-mission p {
	text-align: center;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2;
	border: solid 0.8rem rgba(245,245,245,1);
	padding: 4rem 0;
}
@media screen and (max-width: 768px) {
	.company-mission p {
		text-align: left;
		padding: 3rem;
		font-size: 1.5rem;
		line-height: 1.8;
	}
}