@charset "UTF-8";



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

kv

------------------------------------------- */
.top-kv figure {
	margin-bottom: 4rem;
	padding: 0 6rem;
}
.top-kv figure img {
	border-radius: 2.5rem;
}
@media screen and (max-width: 768px) {
	.top-kv figure {
		margin-bottom: 2rem;
		padding: 0;
	}
	.top-kv figure img {
		border-radius: 0;
	}
}
/* ---- ul ---- */
.top-kv ul {
	display: flex;
	justify-content: center;
}
.top-kv ul li {
	width: 18rem;
}
.top-kv ul li:not(:last-child) {
	margin-right: 6rem;
}
.top-kv ul li a {
	width: 18rem;
	height: 18rem;
	background-color: #a296c7;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-weight: bold;
	font-size: 2rem;
	border: solid 0.25rem #fff;
	box-shadow: 0.6rem 0.6rem 1.5rem rgba(0,0,0,0.15);
	color: #fff;
}
.top-kv ul li a img {
	width: 75%;
	margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
	.top-kv ul li {
		width: 12rem;
	}
	.top-kv ul li:not(:last-child) {
		margin-right: 0.5rem;
	}
	.top-kv ul li a {
		width: 12rem;
		height: 12rem;
		font-size: 1.5rem;
	}
	.top-kv ul li a img {
		margin-bottom: 0.5rem;
	}
}



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

about

------------------------------------------- */
.top-about {
	padding: 10rem 0;
}
@media screen and (max-width: 768px) {
	.top-about {
		padding: 8rem 3rem;
	}
}
/* ---- wrap ---- */
.top-about .wrap {
	display: flex;
	justify-content: space-between;
	margin-bottom: 6rem;
}
.top-about .wrap > figure {
	width: 43%;
}
.top-about .wrap > figure img {
	border-radius: 2rem;
}
.top-about .wrap > p {
	width: 52%;
	font-size: 1.3rem;
	line-height: 1.8;
}
@media screen and (max-width: 768px) {
	.top-about .wrap {
		display: block;
		margin-bottom: 3rem;
	}
	.top-about .wrap > figure {
		width: 100%;
		margin-bottom: 1.5rem;
	}
	.top-about .wrap > p {
		width: 100%;
		font-size: 1.5rem;
	}
}
/* ---- ul ---- */
.top-about ul {
	display: flex;
	justify-content: center;
}
.top-about ul li:not(:last-child) {
	margin-right: 6rem;
}
.top-about ul a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	line-height: 1;
	width: 20rem;
	height: 7.2rem;
	color: #fff;
	border-radius: 2rem;
	box-shadow: 0.3rem 0.3rem 0.5rem rgba(0,0,0,0.15);	
}
.top-about ul a span {
	font-size: 2.1rem;
	font-weight: bold;
	margin-top: 0.5rem;
}
.top-about ul li:nth-child(1) a {
	background: var(--prime);
}
.top-about ul li:nth-child(2) a {
	background: var(--green);
}
@media screen and (max-width: 768px) {
	.top-about ul {
		display: block;
	}
	.top-about ul li:not(:last-child) {
		margin-right: 0;
		margin-bottom: 1.5rem;
	}
	.top-about ul a {
		width: 100%;
	}
}



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

plan

------------------------------------------- */
.top-plan {
	background: #a3967e;
	padding: 10rem 0;
}
@media screen and (max-width: 768px) {
	.top-plan {
		padding: 8rem 3rem;
	}
}
/* ---- h2 ---- */
.top-plan .heading-1 {
	color: #ede7d9;
}
.top-plan .heading-1::before,
.top-plan .heading-1::after {
	width: 34rem;
	border-top: solid 0.12rem #ede7d9;
	border-bottom: solid 0.12rem #ede7d9;
}
@media screen and (max-width: 768px) {
	.top-plan .heading-1::before,
	.top-plan .heading-1::after {
		width: 5rem;

	}
}
/* ---- ul ---- */
.top-plan ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: 88rem;
	margin: 0 auto 4rem auto;
}
.top-plan ul li {
	width: 48%;
}
.top-plan ul li:nth-child(1) {
	margin-right: 4%;
}
.top-plan ul li:nth-child(3) {
	margin-top: 4rem;
}
@media screen and (max-width: 768px) {
	.top-plan ul {
		display: block;
		width: auto;
		margin: 0 auto 2rem auto;
	}
	.top-plan ul li {
		width: 100%;
	}
	.top-plan ul li:not(:last-child) {
		margin-bottom: 2rem;
	}
	.top-plan ul li:nth-child(1) {
		margin-right: 0;
	}
	.top-plan ul li:nth-child(3) {
		margin-top: 0;
	}
}
/* ---- div ---- */
.top-plan div {
	width: 36rem;
	margin: 0 auto 4rem auto;
}
.top-plan div a {
	background: var(--prime);
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	border-radius: 1.5rem;
	padding: 2rem 0;
	line-height: 1;
	box-shadow: 0.3rem 0.3rem 0.5rem rgba(0,0,0,0.15);	
}
.top-plan div a span {
	font-size: 2.4rem;
	font-weight: bold;
	margin-top: 0.5rem;
}
.top-plan p {
	display: flex;
	justify-content: flex-end;
	color: #fff;
}
@media screen and (max-width: 768px) {
	.top-plan div {
		width: 100%;
		margin: 0 auto 3rem auto;
	}
}



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

news

------------------------------------------- */
.top-news {
    padding: 8rem 0;
}
/* ---- h2 ---- */
.top-news .heading-1::before,
.top-news .heading-1::after {
	width: 39rem;
}
@media screen and (max-width: 768px) {
    .top-news {
        padding: 8rem 3rem;
    } 
	.top-news .heading-1::before,
	.top-news .heading-1::after {
		width: 10rem;
	}	  
}
/* ---- wrap ---- */
.top-news .wrap {
	width: 88rem;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.top-news .wrap {
		width: auto;
	}
}
/* ---- more ---- */
.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;
}



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

instagram

------------------------------------------- */
.top-insta {
	padding: 0 0 8rem 0;
}
@media screen and (max-width: 768px) {
	.top-insta {
		padding: 0 3rem 8rem 3rem;
	}
}
/* ---- h2 ---- */
.top-insta .heading-1::before,
.top-insta .heading-1::after {
	width: 37rem;
}
/* ---- wrap ---- */
.top-insta .wrap {
	margin: 0 auto;
	width: 80rem;
}
@media screen and (max-width: 768px) {
	.top-insta .wrap {
		padding: 0;
		width: auto;
	}
	.top-insta .heading-1::before,
	.top-insta .heading-1::after {
		width: 8.5rem;
	}	
}
/* ---- cms ---- */
.CMS-INSTAGRAM-LIST {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
}
.CMS-INSTAGRAM-LIST > * {
    margin-right: 1rem;
	width: calc((100% - 2rem) / 3);
}
.CMS-INSTAGRAM-LIST > *:nth-of-type(3n) {
    margin-right: 0;
}
.CMS-INSTAGRAM-LIST > *:nth-of-type(n + 4) {
    margin-top: 1rem;
}
.CMS-INSTAGRAM-LIST > *:nth-of-type(n + 7) {
    display: none;
}



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

access

------------------------------------------- */
.top-access {
	padding-bottom: 8rem;
}
@media screen and (max-width: 768px) {
	.top-access {
		padding: 0 3rem 8rem 3rem;
	}
}
/* ---- h2 ---- */
.top-access .heading-1::before,
.top-access .heading-1::after {
	width: 36rem;
}
.top-access .gmap {
	border: solid 0.2rem var(--brown2);
	border-radius: 2rem;
	margin-bottom: 6rem;
}
.top-access .gmap iframe {
	border-radius: 2rem;
}
@media screen and (max-width: 768px) {
	.top-access .heading-1::before,
	.top-access .heading-1::after {
		width: 8rem;
	}
	.top-access .gmap {
		margin-bottom: 3rem;
	}
}
/* ---- wrap ---- */
.top-access .wrap {
	width: 88rem;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.top-access .wrap > div {
	width: 24rem;
}
@media screen and (max-width: 768px) {
	.top-access .wrap {
		width: auto;
		flex-direction: column;
		align-items: center;
	}	
	.top-access .wrap > div {
		width: 24rem;
		margin-bottom: 2rem;
	}	
}



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

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%;
	font-weight: bold;
	display: flex;
	align-items: center;
}
@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: none;
    padding: 2rem;
    width: 70%;
}
.CMS-FORM-GROUP textarea {
    -webkit-appearance: none;
    appearance: none;
    border: none;
    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(--prime);
    color: #fff;
    display: block;
    font-size: 1.6rem;
    margin: 0 auto;
    padding: 1.6rem 0 1.75rem 0;
    transition: all .3s;
    width: 24rem;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: bold;	
	border-radius: 10rem
}
.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(--green);
    color: #fff;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1;
    margin-left: 1.0rem;
    padding: 0.4rem 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;
    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(--grey);
}



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

first

------------------------------------------- */
.first-flow ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.first-flow ul li {
	background: rgba(255,255,255,0.75);
	border-radius: 2rem;
	padding: 2.5rem;
	position: relative;
	width: 32%;
}
.first-flow ul li:nth-child(n + 4) {
	margin-top: 3rem;
}
.first-flow .num {
	width: 5.6rem;
	height: 5.6rem;
	position: absolute;
	left: -1rem;
	top: -1rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--brown2);
	color: #fff;
	font-weight: 700;
	font-size: 2rem;
}
.first-flow ul li > figure {
	margin-bottom: 1.5rem;
}
.first-flow ul li > figure img {
	border-radius: 1.5rem;
}
.first-flow ul li > dl dt {
	font-size: 2rem;
	color: var(--prime);
	font-weight: bold;
	margin-bottom: 0.5rem;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.first-flow ul {
		display: block;
	}
	.first-flow ul li {
		width: 100%;
	}
	.first-flow ul li:nth-child(n + 4) {
		margin-top: 0;
	}
	.first-flow ul li:not(:last-child) {
		margin-bottom: 3rem;
	}
	.first-flow .num {
		width: 6.4rem;
		height: 6.4rem;
		font-size: 2.6rem;
	}
}
.first-faq {
	margin-bottom: 2rem;
}
.first-faq dl {
	border-bottom: dotted 0.15rem var(--grey);
}
/* ---- faq-ttl ---- */
.faq-ttl {
    display: flex;
    align-items: center;
    line-height: 1.4;
    padding: 2rem 6rem 2.1rem 0;
    position: relative;
    font-weight: bold;
    transition: all .3s;
    font-size: 1.6rem;
}
.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: var(--grey);
    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: 1.8rem;
    font-weight: 700;
    padding-top: 0.1rem;
    padding-bottom: 0.3rem;
    width: 4rem;
    height: 4rem;
    color: #fff;
    background: var(--prime);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-en);
    padding-top: 0.25rem;
    padding-left: 0.15rem;
	border-radius: 50%;
}
.faq-content > span:nth-child(1) {
    background: var(--green);
}
.faq-ttl > span:nth-child(2),
.faq-content > span:nth-child(2) {
    width: calc(100% - 4rem);
    padding-left: 2rem;
}
/* ---- faq-content ---- */
.faq-content {
    display: flex;
    padding: 0 0 2.1rem 0;
}
.faq-content > span:nth-child(2) {
    padding-left: 2rem;
    padding-top: 0.5rem;
    font-weight: 500;
}
@media screen and (max-width: 768px) {
    .faq-ttl {
        padding: 2rem 5rem 2.1rem 1rem;
    }
    .faq-content {
        padding: 0 1rem 2.1rem 1rem;
    }    
}



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

plan

------------------------------------------- */
.plan-wrap {
	display: flex;
	justify-content: space-between;
}
.plan-wrap > div {
	background: #fff;
	padding: 1.5rem;
	width: 48%;
	position: relative;
}
.plan-wrap > div > span {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	line-height: 1;
	width: 8rem;
	height: 8rem;
	border-radius: 50%;
	background: #ffe100;
	position: absolute;
	right: -1.5rem;
	top: -1.5rem;
	color: #f08300;
	font-weight: bold;
	font-size: 2.4rem;
}
.plan-wrap > div > span i {
	font-size: 1.2rem;
	margin-bottom: 0.2rem;
}
@media screen and (max-width: 768px) {
	.plan-wrap {
		display: block;
	}
	.plan-wrap > div {
		width: 100%;
	}
	.plan-wrap > div:not(:last-of-type) {
		margin-bottom: 3rem;
	}	
}
.plan-wrap > div dl {
	margin-bottom: 1rem;
}
.plan-wrap > div dl dt {
	font-weight: 700;
	color: #fff;
	text-align: center;
	font-size: 2rem;
	background: var(--prime);
	padding: 0.8rem 0;
	margin-bottom: 1rem;
}
.plan-wrap > div dl dd {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	line-height: 1.4;
}
.plan-wrap > div dl dd > span:nth-child(1) {
	font-weight: 700;
	font-size: 2.8rem;
	color: var(--brown2);
	line-height: 1;
	margin-bottom: 0.5rem;
}
.plan-wrap > div dl dd > span:nth-child(1) i {
	font-size: 1.2rem;
}
.set-ttl {
	background: var(--green);
	color: #fff;
	padding: 1.2rem 1.5rem;
	font-weight: bold;
	font-size: 1.5rem;
	line-height: 1;
	position: relative;
	transition: all .3s;
}
.set-ttl:hover {
	cursor: pointer;
	opacity: 0.5;
}
.set-ttl i {
	width: 1.4rem;
	height: 1.4rem;
	position: absolute;
	right: 1.5rem;
	top: calc(50% - 0.6rem);
}
.set-ttl i::before {
	width: 100%;
	height: 0.2rem;
	right: 0;
	top: calc(50% - 0.1rem)
}
.set-ttl i::after {
	width: 0.2rem;
	height: 100%;
	top: 0;
	left: calc(50% - 0.1rem);	
}
.set-ttl.open i::after {
	transform: rotate(90deg);
}
.set-ttl i::before,
.set-ttl i::after {
	content: "";
	background: #fff;
	position: absolute;
	transition: all .3s;
}
.set-content {
	font-size: 1.2rem;
	padding-top: 1rem;
	display: flex;
	justify-content: space-between;
}
.set-content > * {
	width: 49%;
	border-collapse: collapse;
	border: solid 0.2rem var(--grey);
}
@media screen and (max-width: 768px) {
	.set-content {
		font-size: 1.3rem;
		display: block;
	}
	.set-content > * {
		width: 100%;
	}
	.set-content > *:not(:last-of-type) {
		margin-bottom: 1rem;
	}
}
.set-content table th {
	text-align: left;
	font-weight: normal;
	white-space: nowrap;
	background: #eceaf4;
}
.set-content table th,
.set-content table td {
	padding: 0.5rem;
	vertical-align: middle;
	border: solid 0.1rem var(--grey);
	line-height: 1.3;
}
@media screen and (max-width: 768px) {
	.set-content table th,
	.set-content table td {
		width: 50%;
	}
}
.plan-set {
	margin-top: 2rem;
}
.plan-set .set-content {
	background: #fff;
	padding: 2rem;
	display: flex;
	justify-content: space-between;
}
.plan-set .set-content span {
	display: block;
	text-align: center;
	font-weight: bold;
	font-size: 1.4rem;
	color: #fff;
	padding: 0.8rem 0;
	line-height: 1.2;
	background: var(--prime);
	margin-bottom: 1rem;
}
.plan-set .set-content > * {
	width: 47.5%;
	border: none;
}
.table-wrap {
	display: flex;
	justify-content: space-between;
}
.table-wrap > * {
	width: 49%;
	border: solid 0.2rem var(--grey);
}