@charset "UTF-8"; 

html{font-family: 'Noto Sans JP', sans-serif;}

/* スムーススクロール */
html{scroll-behavior: smooth;}

/* ページトップへ戻るボタン */
.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    border: solid 2px #707070;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #707070;
    border-right: 3px solid #707070;
    transform: translateY(20%) rotate(-45deg);
}

@media (hover: hover) and (pointer: fine) {
    .pagetop:hover, .pagetop:hover .pagetop__arrow {
        border-color: #0E8072;
    }
}


/* topエリア */
.top{
	background-image: url(../img/mv_pc.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 600px;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media screen and (max-width:765px) {
	.top{
		background-image: url(../img/mv_sp.jpg);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
		height: 600px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
}


.top__title{
	width: 789px;
	height: 213px;
	background: rgba(255,255,255,0.5);
	border-radius: 10px;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	}
@media screen and (max-width:765px) {
	.top__title{
		width: 315px;
		height: 200px;
	}
}	
	
.top__maintitle{
	font-size: 30px;
	color:#707070;
}
@media screen and (max-width:765px) {
	.top__maintitle{
		font-size: 18px;
	}
}


.top__item{
	width: 106px;
	height: 5px;
	margin-top: 20px;
	margin-bottom: 20px;
	background-image: linear-gradient(90deg,#0E8072 0% 50%, #FABF00 50% 100%);
}
@media screen and (max-width:765px) {
	.top__item{
		width: 70px;
		height: 4px;
		margin-top: 15px;
		margin-bottom: 15px;
	}
}

.top__subtitle{
	font-size: 50px;
	color:#707070;
}
@media screen and (max-width:765px) {
	.top__subtitle{
		font-size: 30px;
		text-align: center;
	}
}



/* mainエリア */
.main-content{
	max-width: 1170px;
	margin: 0 auto;
	display: flex;
	flex-flow: column;
	padding: 0 60px;
	margin-bottom: 70px;
}
@media screen and (max-width:765px) {
	.main-content{
		width: 315px;
		padding: 0;
	}
}

.content-menu{
	width: 100%;
	height: 100px;
	border-bottom: solid 1px #9D9B9B;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 80px;
	margin-bottom: -50px;
}
@media screen and (max-width:765px) {
	.content-menu{
		display: flex;
		height: 200px;
		margin: 0 auto;
		flex-flow: column;
		align-items: flex-start;
		gap:20px 0;
	}
}


.menu{
	position: relative;
	text-decoration: none;
	color: #707070;
	font-size: 20px;
}
.menu3{
	position: relative;
	text-decoration: none;
	color: #707070;
	font-size: 20px;
}
@media screen and (max-width:765px) {
	.menu{
		margin-left: 17%;
	}
	.menu3{
		margin-left: 17%;
	}
}

.menu::after{
	content: "";
	background-image: url("../img/arrow.svg");
	display: inline-block;
	height: 20px;
	width: 20px;
	vertical-align: middle;
	position: absolute;
	right: -25px;
	top: 13.5px;
}
.menu3::after{
	content: "";
	background-image: url("../img/arrow.svg");
	display: inline-block;
	height: 20px;
	width: 20px;
	vertical-align: middle;
	position: absolute;
	right: -25px;
	top: 2.5px;
}
.menu-section{
	margin-top: 100px;
}
@media screen and (max-width:765px) {
	.menu-section{
		margin-top: 40px;
	}
}


.menu-section__title{
	width: 100%;
	height: 75px;
	background-color: #0E8072;
	font-size: 35px;
	color: #FFFFFF;
	border-radius: 10px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
#menu1 .menu-section__title{
	margin-bottom: 70px;
}
@media screen and (max-width:765px) {
	.menu-section__title{
		height: 100px;
		font-size: 25px;
		margin: 0 auto;
	}
	#menu1 .menu-section__title{
		margin-bottom: 35px;
	}
	#menu3 .menu-section__title{
		height: 75px;
	}
}


.menu-section__head{
	font-size: 30px;
	color:#707070;
	width: 100%;
	height: 50px;
	line-height:50px;
	border-left: solid 9px #FABF00;
	padding-left: 10px;
	margin-top: 70px;
	margin-bottom: 30px;
}
@media screen and (max-width:765px) {
	.menu-section__head{
		font-size: 19px;
		height: 35px;
		line-height:35px;
		border-left: solid 7px #FABF00;
		padding-left: 10px;
		margin-top: 35px;
		margin-bottom: 20px;
		margin-left: auto;
		margin-right: auto;
	}
}

/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 100%;
    margin:0 auto;
    padding: 0;
}
@media screen and (max-width:765px) {
	.accordion-area{
	    width: 315px;
	    margin:0 auto;
	    padding: 0;
	}
}


.accordion-area li{
    margin: 10px 0;
}

.accordion-area section {
	border: 1px solid #707070;
	border-radius: 10px;
}

/*アコーディオンタイトル*/
.title {
	position: relative;/*+マークの位置基準とするためrelative指定*/
	cursor: pointer;
	font-size:20px;
	color: #707070;
	font-weight: normal;
	padding: 0 3% 0 50px;
	transition: all .5s ease;
	margin-left: 10px;
	line-height: 1.5em;
}
@media screen and (max-width:765px) {
	.title {
		font-size:16px;
		padding: 1% 3% 1% 50px;
	}
}

/*アイコンの＋と×*/
.title::before,
.title::after{
	position: absolute;
	content:'';
	width: 20px;
	height: 2px;
	background-color: #707070;
	
}
.title::before{
	top:14px;
	left: 15px;
	transform: rotate(0deg);
}
.title::after{    
	top:14px;
	left: 15px;
	transform: rotate(90deg);
}
@media screen and (max-width:765px) {
	.title::before{
		top:15px;
	}
	.title::after{    
		top:15px;
	}

}
/*　closeというクラスがついたら形状変化　*/
.title.close::before{
	transform: rotate(45deg);
}

.title.close::after{
	transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
	display: none;/*はじめは非表示*/
	background: #F0F0F0;
	margin:0 3% 3% 3%;
	padding: 1% 2% 1% 2%;
	border-radius: 10px;
}
@media screen and (max-width:765px) {
	.box {
		padding: 7%;
	}
}


.box p{
	font-size: 20px;
	color: #707070;
	line-height: 1.5em;
	margin-block-start:0;
	margin-block-end:0;
}
@media screen and (max-width:765px) {
	.box p{
		font-size: 16px;
		line-height: 1.5em;
	}
}


