@charset "UTF-8";



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

common

------------------------------------------- */
.container {
	margin: 8rem auto 10rem auto;
	width: 88rem;
}
@media screen and (max-width: 768px) {
	.container {
		margin: 8rem 3rem;
		width: auto;
	}
}



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

page-ttl

------------------------------------------- */
.page-ttl {
	background: url(../img/top-kv-1.jpg) no-repeat center / cover;
}
.page-ttl > div {
	background: rgba(0,0,0,0.45);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 24rem;
}
@media screen and (max-width: 768px) {
	.page-ttl > div {
		height: 26rem;
		padding-top: 6rem;
	}
}
/* h2 */
.page-ttl h2 {
	color:#fff;
	font-size: 3.6rem;
	line-height: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}



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

concept

------------------------------------------- */
.container .wrap {
	display: flex;
	justify-content: space-between;
}
.container .wrap.reverse {
	flex-direction: row-reverse;
}
.container .wrap > figure {
	width: 35%;
}
.container .wrap > figure img {
	aspect-ratio: 3 / 2;
	height: 100%;
	object-fit: cover;
}
.container .wrap > div {
	width: 60%;
}
@media screen and (max-width: 768px) {
	.container .wrap,
	.container .wrap.reverse {
		flex-direction: column;
	}
	.container .wrap > figure {
		width: 100%;
		margin-bottom: 2rem;
	}
	.container .wrap > div {
		width: 100%;
	}
}



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

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-REQUIRED {
    display: inline-block;
    margin-left: 0.6rem;
    padding: 0.15em 0.45em;
    background-color: #c00;
    color: #fff;
    font-size: 0.78em;
    font-weight: normal;
    line-height: 1.3;
    vertical-align: middle;
}
.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: #64dc6a;
    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: #64dc6a;
    color: #fff;
    display: block;
    /* font-family: 'Noto Serif JP', serif; */
    font-size: 1.6rem;
    margin: 0 auto;
    padding: 1.6rem 0 1.75rem 0;
    transition: all .3s;
    width: 24rem;
	font-weight: bold;
}
.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: rgba(220,0,0,1);
    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;
}
/* <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: #64dc6a;
}



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

flow

------------------------------------------- */
.flow-list {
	display: flex;
	gap: 3rem;
}
.flow-list li {
	width: calc((100% - 9rem) / 4);
	border: solid 0.3rem #64dc6a;
	padding: 2rem 2rem;
	display: flex;
	flex-direction: column;
	position: relative;
}
.flow-list li:not(:last-child):before {
	content: "";
	width: 0;
	height: 0;
	border-left: 1rem solid #64dc6a;
	border-top: 1rem solid transparent;
	border-bottom: 1rem solid transparent;	
	position: absolute;
	right: -2.4rem;
	top: calc(50% - 1rem)
}
.flow-list span:nth-of-type(1) {
	font-size: 2rem;
	font-weight: bold;
	color: #64dc6a;
	margin-bottom: 1.5rem;
	background: url(../img/dot.png) repeat-x left bottom;
	background-size: auto 0.2rem;
	padding-bottom: 1rem;
	text-align: center;
}
.flow-list span:nth-of-type(1).adjust {
	background: none;
	padding: 0;
	margin: 0;
}
.flow-list span:nth-of-type(1) {
	font-weight: 500;
}
.flow-list i {
	width: 4.4rem;
	height: 4.4rem;
	background: linear-gradient(to right,#73bd68,#27874d);
	position: absolute;
	left: -1.5rem;
	top: -1.5rem;
	border-radius: 50%;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "M PLUS 1p", sans-serif;
	font-weight: 800;
	font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
	.flow-list {
		flex-direction: column;
	}
	.flow-list li {
		width: 100%;
	}
	.flow-list li:not(:last-child):before {
		content: "";
		width: 0;
		height: 0;
		border-bottom: none;	
		border-left: 1rem solid transparent;
		border-right: 1rem solid transparent;
		border-top: 1rem solid #64dc6a;		
		right: auto;
		left: calc(50% - 1rem);
		top: auto;
		bottom: -2.4rem;
	}
	.flow-list span:nth-of-type(1) {
		font-size: 2rem;
		font-weight: bold;
		color: #64dc6a;
		margin-bottom: 1.5rem;
		background: url(../img/dot.png) repeat-x left bottom;
		background-size: auto 0.2rem;
		padding-bottom: 1rem;
		text-align: center;
	}
}