@charset "UTF-8";



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

kv

------------------------------------------- */
.top-kv {
	background: var(--bg-red);
}
.CMS-NOT-EDITABLE-AREA {
	height: 41rem;
}
@media screen and (min-width: 1401px) {
	.CMS-NOT-EDITABLE-AREA {
		height: 50rem;
	}
}
@media screen and (max-width: 768px) {
	.CMS-NOT-EDITABLE-AREA {
		height: 28rem;
	}
}
@media screen and (max-width: 540px) {
	.CMS-NOT-EDITABLE-AREA {
		height: 19rem;
	}
}
@media screen and (max-width: 430px) {
	.CMS-NOT-EDITABLE-AREA {
		height: 19rem;
	}
}
@media screen and (max-width: 414px) {
	.CMS-NOT-EDITABLE-AREA {
		height: 14rem;
	}
}



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

first

------------------------------------------- */
.top-first {
	background: url(../img/top-first-deco-1.png) no-repeat left -7rem top -7rem;
	background-size: 30rem auto;
	background-color: var(--bg-red);
	padding: 10rem 0;
}
.top-first h2 {
	margin: 0;
}
@media screen and (max-width: 768px) {
	.top-first {
		background: url(../img/top-first-deco-1.png) no-repeat left -5rem top -5rem;
		background-size: 20rem auto;
		padding: 8rem 3rem;
		background-color: var(--bg-red);		
	}
	.top-first h2 {
		margin-bottom: 4rem;
	}	
}
/* ---- wrap ---- */
.top-first .wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.top-first .wrap > * {
	width: 48%;
}
@media screen and (max-width: 768px) {
	.top-first .wrap {
		display: block;
	}
	.top-first .wrap > * {
		width: 100%;
	}
}



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

service

------------------------------------------- */
.top-service {
	position: relative;
	padding: 10rem 0;
	background: 
		url(../img/top-service-deco-1.png) no-repeat right -8rem top -8rem,
		url(../img/top-service-deco-2.png) no-repeat left -8rem bottom 70rem;
	background-size:
		30rem auto,
		30rem auto;
}
@media screen and (max-width: 768px) {
	.top-service {
		padding: 8rem 3rem;
		background: 
			url(../img/top-service-deco-1.png) no-repeat right -3rem top -3rem,
			url(../img/top-service-deco-2.png) no-repeat left -8rem bottom 70rem;
		background-size:
			16rem auto,
			16rem auto;
	}
}
/* ---- deco ---- */
.top-service .deco {
	position: absolute;
	left: 33rem;
	top: 3rem;
	width: 15rem;
}
@media screen and (max-width: 768px) {
	.top-service .deco {
		left: 2rem;
		top: 2rem;
		width: 10rem;
	}
}
/* ---- p ---- */
.top-service h2 + p {
	text-align: center;
}
@media screen and (max-width: 768px) {
	.top-service h2 + p {
		text-align: left;
	}
}
/* ---- wrap-1 ---- */
.top-service .wrap-1 {
	margin-top: 6rem;
	margin-bottom: 6rem;
}
.top-service .wrap-1 ul {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 3rem;
}
.top-service .wrap-1 ul li {
	width: 28rem;
	margin-right: 2rem;
	background: var(--bg-red);
	border-radius: 1rem;
}
.top-service .wrap-1 ul li:nth-child(3n) {
	margin-right: 0;
}
.top-service .wrap-1 ul li:nth-child(n + 4) {
	margin-top: 2rem;
}
.top-service .wrap-1 dt {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	border-radius: 1rem 1rem 0 0;
	font-weight: bold;
	font-size: 2.2rem;
	line-height: 1.2;
	height: 5.6rem;
	background: var(--prime);
	text-align: center;
}
.top-service .wrap-1 li:nth-child(n + 4) dt {
	height: 8rem;
}
.top-service .wrap-1 dd {
	padding: 1.5rem;
}
.top-service .wrap-1 dd p {
	margin-top: 1rem;
	padding: 0 1rem;
}
@media screen and (max-width: 768px) {
	.top-service .wrap-1 {
		margin-top: 3rem;
		margin-bottom: 6rem;
	}
	.top-service .wrap-1 ul {
		display: block;
	}
	.top-service .wrap-1 ul li {
		width: 100%;
		margin-right: 0;
	}
	.top-service .wrap-1 ul li:not(:last-child) {
		margin-bottom: 3rem;
	}	
	.top-service .wrap-1 ul li:nth-child(n + 4) {
		margin-top: 0;
	}
}
/* ---- wrap-2 ---- */
.top-service .wrap-2 {
	display: flex;
}
.top-service .wrap-2.reverse {
	flex-direction: row-reverse;
}
.top-service .wrap-2 > * {
	width: 50%;
}
.top-service .wrap-2 > div {
	padding: 0 1.5rem;
}
.top-service .wrap-2:last-of-type {
	margin-top: 6rem;
}
@media screen and (max-width: 768px) {
	.top-service .wrap-2 {
		display: block;
	}
	.top-service .wrap-2 > * {
		width: 100%;
	}
	.top-service .wrap-2 > div {
		padding: 0;
		margin-top: 2rem;
	}
	.top-service .wrap-2:last-of-type {
		margin-top: 4rem;
	}
}
/* h3 */
.top-service .wrap-2 h3 {
	color: var(--prime);
	font-size: 2.2rem;
	border-bottom: solid 0.3rem var(--prime);
	padding-bottom: 1.5rem;
	padding-left: 1rem;
	margin-bottom: 1.5rem;
}
.top-service .wrap-2 p {
	padding: 0 1rem;
	margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
	.top-service .wrap-2 h3 {
		padding-left: 0;
		text-align: center;
	}
	.top-service .wrap-2 p {
		padding: 0;
	}
}



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

point

------------------------------------------- */
.top-point {
	padding: 10rem 0;
	position: relative;
	background: url(../img/top-point-bg.jpg) no-repeat center top;
	background-size: 100% auto;
	background-color: var(--bg-yellow);
}
@media screen and (max-width: 768px) {
	.top-point {
		padding: 8rem 3rem;
	}
}
/* ---- deco ---- */
.top-point .deco {
	position: absolute;
	right: 26rem;
	top: 6rem;
	width: 15rem;
}
@media screen and (max-width: 768px) {
	.top-point .deco {
		right: 12rem;
		top: -1rem;
		width: 10rem;
	}
}	
/* ---- h2 ---- */
.top-point h2 .jp {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.top-point h2 .jp i {
	font-size: 3.2rem;
}
.top-point h2 .jp strong {
	font-size: 7rem;
	vertical-align: -0.4rem;
	margin-left: -0.4rem;
}
/* ---- ul ---- */
.top-point ul {
	margin-bottom: 6rem;
}
.top-point ul li {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.top-point ul li:nth-child(even) {
	flex-direction: row-reverse;
}
.top-point ul li:not(:last-child) {
	margin-bottom: 5rem;
}
.top-point ul li > figure {
	width: 37%;
}
.top-point ul li > figure img {
	border-radius: 1rem;
}
.top-point ul li > div {
	width: 60%;
}
@media screen and (max-width: 768px) {
	.top-point ul li {
		display: block;
	}
	.top-point ul li:not(:last-child) {
		margin-bottom: 5rem;
	}
	.top-point ul li > figure {
		width: 100%;
		margin-bottom: 1.5rem;
	}
	.top-point ul li > figure img {
		border-radius: 1rem;
	}
	.top-point ul li > div {
		width: 100%;
	}
}
/* h3 */
.top-point h3 {
	display: flex;
	align-items: center;
	margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
	.top-point h3 {
		margin-bottom: 1rem;
	}
}
.top-point h3 .num {
	width: 5rem;
	height: 5rem;
	background: var(--prime);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3.6rem;
	font-weight: normal;
	padding-left: 0.1rem;
	padding-bottom: 0.35rem;
}
.top-point h3 span:last-child {
	width: calc(100% - 5rem);
	padding-left: 1rem;
	font-size: 2.4rem;
	line-height: 1.3;
}
/* ---- wrap ---- */
.top-point .wrap {
	width: 72rem;
	margin: 0 auto;
	background: #fff;
	border-radius: 1rem;
	position: relative;
	padding: 3rem 15rem 3rem 4rem;
}
.top-point .wrap figure {
	position: absolute;
	right: 2rem;
	bottom: 0;
	width: 12rem;
}
@media screen and (max-width: 768px) {
	.top-point .wrap {
		width: 100%;
		padding: 2.5rem;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.top-point .wrap figure {
		position: relative;
		right: auto;
		bottom: auto;
		width: 50%;
		margin-top: 1.5rem;
	}	
}



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

news

------------------------------------------- */
.top-news {
    padding: 10rem 0;
	background: var(--bg-red);
}
@media screen and (max-width: 768px) {
    .top-news {
        padding: 8rem 3rem;
    }   
}
/* ---- wrap ---- */
.top-news .wrap {
	min-height: 25rem;
}
/* ---- 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;
}



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

faq

------------------------------------------- */
.top-faq {
	padding: 10rem 0;
}
@media screen and (max-width: 768px) {
	.top-faq {
		padding: 8rem 3rem;
	}
}
/* ---- wrap ---- */
.top-faq .wrap {
	margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
	
}



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

access

------------------------------------------- */
.top-access {
	background: var(--bg-red);
	padding: 10rem 0;
	position: relative;
}
@media screen and (max-width: 768px) {
	.top-access {
		padding: 8rem 3rem;
	}
}
/* ---- deco ---- */
.top-access .deco {
	position: absolute;
	right: 28rem;
	top: -3rem;
	width: 15rem;
}
@media screen and (max-width: 768px) {
	.top-access .deco {
		right: 13rem;
		top: -3rem;
		width: 12rem;
	}
}
/* ---- wrap ---- */
.top-access .wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.top-access .wrap > figure {
	width: 40%;
}
.top-access .wrap > figure img {
	border-radius: 1rem;
}
.top-access .wrap > div {
	width: 57%;
}
@media screen and (max-width: 768px) {
	.top-access .wrap {
		display: block;
	}
	.top-access .wrap > figure {
		width: 100%;
		margin-bottom: 1rem;
	}
	.top-access .wrap > div {
		width: 100%;
	}
}
/* ---- gmap ---- */
.top-access .gmap {
	margin-top: 4rem;
	margin-bottom: 6rem;
}
.top-access .gmap iframe {
	border-radius: 1rem;
	height: 28rem;
}

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



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

contact

------------------------------------------- */
#contact {
	padding-top: 12.9rem;
	margin-top: -12.9rem;
	display: block;
}
@media screen and (max-width: 768px) {
	#contact {
		padding-top: 0;
		margin-top: 0;
	}
}
.top-contact {
	padding: 10rem 0;
	background:
		url(../img/top-contact-deco-1.png) no-repeat right -8rem top -8rem,
		url(../img/top-contact-deco-2.png) no-repeat left -8rem bottom -8rem;
	background-size:
		30rem auto,
		34rem auto;
}
.top-contact h2 {
	margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
	.top-contact {
		padding: 8rem 0;
		background:
			url(../img/top-contact-deco-1.png) no-repeat right -4rem top -4rem,
			url(../img/top-contact-deco-2.png) no-repeat left -4rem bottom -4rem;
		background-size:
			20rem auto,
			24rem auto;
	}
	.top-contact h2 {
		margin-bottom: 3rem;
	}
}



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

form

------------------------------------------- */
.CMS-FORM-GROUP {
    display: flex;
    align-items: center;
	padding: 2rem;
}
.CMS-FORM-GROUP:nth-of-type(even) {
	background: var(--bg-red);
}
@media screen and (max-width: 768px) {
    .CMS-FORM-GROUP {
        display: block;
    }
}
.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: none;
	box-shadow: inset 0 0 0.5rem rgba(0,0,0,0.2);
    padding: 1.2rem 2rem;
    width: 70%;
	border-radius: 0.5rem;
}
.CMS-FORM-GROUP textarea {
    -webkit-appearance: none;
    appearance: none;
    border: none;
    width: 70%;
    height: 16rem;
    padding: 2rem;
	box-shadow: inset 0 0 0.5rem rgba(0,0,0,0.2);	
	border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
    .CMS-FORM-INPUT,
    .CMS-FORM-EMAIL,
    .CMS-FORM-GROUP textarea {
        width: 100%;
    }
}
/* ---- radio ---- */
.CMS-FORM-RADIO {
    display: flex;
    flex-wrap: wrap;
    white-space: nowrap;
    width: 70%;
}
.CMS-FORM-RADIO > div:not(:last-of-type) {
    margin-right: 2rem;
}
.CMS-FORM-RADIO > div {
    display: flex;
    align-items: center;
}
.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;
	box-shadow: inset 0 0 0.3rem rgba(0,0,0,0.2);		
    border: none;
    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:last-of-type {
	margin-top: 2rem;
}
.CMS-FORM-GROUP input[type="submit"] {
    background: var(--prime);
    color: #fff;
    display: block;
    font-size: 1.8rem;
	font-weight:bold;
    margin: 0 auto;
    padding: 1.4rem 0 1.55rem 0;
    transition: all .3s;
    width: 30rem;
	border-radius: 10rem;
	box-shadow: 0 0.5rem #a41f14;
}
.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;
    }   
}
.CMS-FORM-GROUP label span {
	margin-right: 1rem;
    background: var(--prime);
    color: #fff;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1;
    margin-left: 1rem;
    padding: 0.2rem 0.7rem 0.35rem 0.7rem;
    vertical-align: 0.1rem;
	border-radius: 10rem	
}
span.nini {
	background: #afafaf !important;
}
/* <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;
}
@media screen and (max-width: 768px) {
	.privacy-note {
		padding: 0 3rem;
	}
	.privacy {
		width: calc(100% - 6rem);
		margin: 2rem auto;
	}
}



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

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);
}