@charset "UTF-8";
/* -----------------------------------------------------------
	ヘッダー
----------------------------------------------------------- */

#headercontainer{
	padding: 30px 0 60px 0;
	text-align: center;
	background: #fff;
	position: relative;
}
.header-illa01{
	width: 340px;
	position: absolute;
	top: 30px;
	left: 40px;
}
.header-illa02{
	width: 250px;
	position: absolute;
	top: 35px;
	right: 40px;
}
.header-illa01 img,
.header-illa02 img{
	width: 100%;
}
.logo{
	display: inline-block;
	font-size: clamp(1.25rem, 0.795rem + 1.94vw, 3.125rem);
	font-family: var(--font-zenmaru);
	font-weight: 500;
	position: relative;
	z-index: 1;
}
.logo a{
	display: block;
	color: #333;
	text-decoration: none;
}
.logo::after{
	content: '';
	display: block;
	width: calc(100% + 60px);
	height: 30px;
	background: var(--bg-color02);
	position: absolute;
	bottom: -8px;
	left: -30px;
	z-index: -1;
}
.logo span{
	display: block;
	width: 395px;
	margin: 0 auto;
	padding-bottom: 20px;
}
.logo span img{
	width: 100%;
}

/*@media screen and (max-width:1700px){
	.header-illa01{
		width: 370px;
	}
	.header-illa02{
		width: 260px;
	}
}*/

@media screen and (max-width:1400px){
	.header-illa01{
		width: 290px;
	}
	.header-illa02{
		width: 215px;
	}
	.logo::after{
		height: 18px;
	}
}
@media screen and (max-width:1200px){
	#headercontainer{
		padding: 30px 0 45px 0;
	}
	.header-illa01{
		width: 210px;
	}
	.header-illa02{
		width: 160px;
	}
}

@media screen and (max-width:991px){
	.logo span{
		width: 300px;
	}
	.header-illa01{
		width: 165px;
		left: 20px;
	}
	.header-illa02{
		width: 125px;
		right: 20px;
	}
}

@media screen and (max-width:767px){
	#headercontainer{
		padding: 20px 0 20px 0;
	}
	/*.logo{
		font-size: 1.25rem;
	}*/
	.logo::after{
		width: calc(100% + 20px);
		height: 12px;
		bottom: -5px;
    	left: -10px;
	}
	.logo span{
		width: 195px;
		padding-bottom: 10px;
	}
	.header-illa01,
	.header-illa02{
		display: none;
	}
}


/* -----------------------------------------------------------
	メインビジュアル
----------------------------------------------------------- */

.top-mv{
	overflow: hidden;
	padding-bottom: 30px;
}
.top-mv-inner{
	display: flex;
	justify-content: center;
	position: relative;
	margin-bottom: 50px;
}
.top-mv-inner::before{
	content: '';
	display: block;
    width: calc(100% + 200px);
    height: 300px;
    background: #fff;
    border-bottom-left-radius: 1000px 200px;
    border-bottom-right-radius: 1000px 200px;
    margin-left: -100px;
    margin-right: -100px;
    padding-left: 100px;
    padding-right: 100px;
    position: absolute;
    top: 0;
    left: 0;
	z-index: -1;
}
.top-mv-text{
	writing-mode: vertical-rl;
	font-family: var(--font-zenmaru);
	font-weight: 500;
	color: var(--main-color);
}

.top-mv-text .top-mv-text-pre{
	display: block;
	padding-left: 800px;
}
.top-mv-text .top-mv-text-after{
	display: block;
	padding-left: 130px;
}
.top-mv-text .top-mv-text-l{
	font-size: clamp(2.313rem, 1.736rem + 2.46vw, 4.688rem);
	color: var(--sub-color02);
}
.top-mv-text .top-mv-text-m{
	font-size: clamp(1.625rem, 1.109rem + 2.2vw, 3.75rem);
}
.top-mv-text .top-mv-text-s{
	font-size: clamp(1.313rem, 0.948rem + 1.55vw, 2.813rem);
}

.top-mv-illa{
	width: 550px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.top-mv-illa img{
	width: 100%;
}
.top-mv-illa-sp{
	display: none;
}

.top-mv-link{
	display: flex;
	gap: 35px;
	margin-left: 0;
	margin-bottom: 0;
}
.top-mv-link > li{
	width: 100%;
	position: relative;
}
.top-mv-link > li > div{
	width: 76px;
	height: 76px;
	padding: 10px;
	background: var(--sub-color03);
	border-radius: 50%;
	position: absolute;
	top: -38px;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 2;
}
.top-mv-link > li > div.top-mv-icon-brain{
	left: -85px
}
.top-mv-link > li > div.top-mv-icon-heart{
	left: 85px
}
.top-mv-link > li > div > img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}
.top-mv-link > li > a{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	font-size: 1.87rem;
	font-family: var(--font-zenmaru);
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
	padding: 50px 25px 45px;
	background: #fff;
	border-radius: 500px;
	position: relative;
}
.top-mv-link > li > a::after{
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 9px solid transparent;
	border-left: 9px solid transparent;
	border-top: 15px solid var(--sub-color03);
	border-bottom: 0;
	position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
	margin: 0 auto;
}

@media screen and (max-width:1700px){
	.top-mv-text .top-mv-text-pre{
		padding-left: 640px;
	}
	.top-mv-illa{
		width: 470px;
	}
	.top-mv-link > li > a{
		font-size: 1.56rem;
	}
}

@media screen and (max-width:1400px){
	.top-mv-inner::before{
		height: 230px;
	}
	.top-mv-text .top-mv-text-pre{
		padding-left: 540px;
	}
	.top-mv-illa{
		width: 420px;
	}
}

@media screen and (max-width:1200px){
	.top-mv-text .top-mv-text-pre{
		padding-left: 450px;
	}
	.top-mv-text .top-mv-text-after{
		padding-left: 100px;
	}
	.top-mv-illa{
		width: 360px;
	}
	.top-mv-inner{
		margin-bottom: 30px;
	}
	.top-mv-inner::before{
		height: 190px;
	}
	
	.top-mv-link{
		gap: 15px;
	}
	.top-mv-link > li > div{
		width: 60px;
    	height: 60px;
	}
	.top-mv-link > li > a{
		font-size: 1.25rem;
    	padding: 25px 10px 30px;
	}
}

@media screen and (max-width:991px){
	.top-mv-inner{
		flex-direction: column;
		align-items: center;
		margin-bottom: 50px;
	}
	.top-mv-inner::before{
		height: 315px;
	}
	.top-mv-text{
		margin-bottom: 0;
	}
	.top-mv-text .top-mv-text-pre,
	.top-mv-text .top-mv-text-after{
		padding-left: 0;
	}
	.top-mv-illa{
		position: relative;
	}
	.top-mv-link > li > a{
		font-size: 1.125rem;
	}
	.top-mv-link > li > div{
		width: 50px;
        height: 50px;
		top: -25px;
	}
	.top-mv-link > li > div.top-mv-icon-brain{
		left: -58px;
	}
	.top-mv-link > li > div.top-mv-icon-heart{
		left: 58px;
	}
}

@media screen and (max-width:767px){
	.top-mv-inner{
		margin-bottom: 20px;
	}
	.top-mv-illa{
		display: none;
	}
	.top-mv-illa-sp{
		display: block;
		width: 355px;
	}
	.top-mv-illa-sp img{
		width: 100%;
	}
	
	.top-mv-link{
		flex-direction: column;
    	gap: 10px;
	}
	.top-mv-link > li > a{
		font-size: 1rem;
        margin-left: 15px;
		padding: 10px 30px 10px 35px;
		justify-content: flex-start;
		text-align: left;
	}
	.top-mv-link > li > a::after{
		border-right: 5px solid transparent;
    	border-left: 5px solid transparent;
    	border-top: 8px solid var(--sub-color03);
		top: 0;
		bottom: 0;
		left: auto;
		right: 20px;
		margin: auto 0;
	}
	.top-mv-link > li > div{
		padding: 5px;
		width: 35px;
        height: 35px;
        top: 0;
        bottom: 0;
        left: 0;
        right: auto;
        margin: auto 0;
	}
	.top-mv-link > li > div.top-mv-icon-brain{
		top: 3px;
        bottom: auto;
        left: 0;
		margin: 0;
	}
	.top-mv-link > li > div.top-mv-icon-heart{
		top: auto;
    	bottom: 3px;
		left: 0;
		margin: 0;
	}
}

/* -----------------------------------------------------------
	相談窓口
----------------------------------------------------------- */


.consult{
	margin-top: 230px;
	margin-bottom: 60px;
	padding-top: 120px;
	padding-bottom: 80px;
	background: #fff;
	border-radius: 110px;
	text-align: center;
	position: relative;
}
.consult h2{
	position: absolute;
	top: -115px;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.consult h2 > span{
	display: inline-block;
	font-size: 2rem;
	font-family: var(--font-zenmaru);
	font-weight: 500;
	color: var(--sub-color01);
	margin-bottom: 20px;
	position: relative;
}
.consult h2 > span::before,
.consult h2 > span::after{
	content: '';
	display: block;
	width: 1px;
	height: 42px;
	background: var(--sub-color01);
	position: absolute;
	top: 0;
}
.consult h2 > span::before{
	transform: rotate(-38deg);
	left: -40px;
}
.consult h2 > span::after{
	transform: rotate(38deg);
	right: -40px;
}
.consult h2 > div{
	display: flex;
	justify-content: center;
}
.consult h2 > div > span{
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 4.37rem;
	font-family: var(--font-zenmaru);
	font-weight: 500;
	color: #fff;
	background: var(--main-color);
	width: 120px;
	height: 120px;
	border-radius: 50%;
}

.consult-top{
	display: flex;
	justify-content: center;
	align-items: center;
}
.consult-top-text{
	font-size: 1.87rem;
	font-family: var(--font-zenmaru);
	font-weight: 500;
	color: var(--main-color);
}
.consult-top-illa{
	width: 350px;
	margin-left: 60px;
}
.consult-top-illa img{
	width: 100%;
}

.consult-tel{
	display: inline-block;
	font-size: 3.75rem;
	font-family: var(--font-zenmaru);
	font-weight: 500;
	line-height: 1.2;
	color: var(--sub-color01);
	padding-left:  50px;
	position: relative;
}
.consult-tel::before{
	content: '';
	display: block;
	width: 35px;
	height: 45px;
	background: url("../imgs/common/icon-tel.png") center / contain no-repeat;
	position: absolute;
	top: 20px;
	left: 0;
}

.consult-access{
	text-align: left;
}
.consult-access h4{
	margin: 0;
	padding: 0;
	background: none;
}
.consult-access h4 span{
	display: inline-block;
	/*font-size: 1.56rem;
	font-family: var(--font-zenmaru);
	font-weight: 500;*/
	background: var(--bg-color03);
	margin-top: 30px;
	margin-bottom: 15px;
	padding: 8px 20px;
	border-radius: 30px; 
}
.consult-access-list > li{
	padding: 5px 0 5px 20px;
	position: relative;
}
.consult-access-list > li::before{
	content: '';
	display: block;
	width: 12px;
	height: 12px;
	background: var(--sub-color04);
	border-radius: 50%;
	position: absolute;
	top: 17px;
	left: 0;
}
.consult-footer-illa{
	width: 150px;
	position: absolute;
	bottom: -180px;
	right: 50px;
}
.consult-footer-illa img{
	width: 100%;
}

@media screen and (max-width:1200px){
	.consult{
		padding-top: 90px;
		border-radius: 60px;
	}
	.consult h2 > span{
		font-size: 1.75rem;
	}
	.consult h2 > div > span{
		font-size: 3.12rem;
    	width: 90px;
    	height: 90px;
	}
	.consult-top{
		flex-direction: column;
	}
	.consult-top-text{
		font-size: 1.5rem;
	}
	.consult-footer-illa{
		width: 100px;
    	bottom: -120px;
	}
}

@media screen and (max-width:767px){
	.consult{
		border-radius: 30px;
        margin-top: 100px;
		margin-bottom: 60px;
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.consult h2{
		top: -67px;
	}
	.consult h2 > span{
		font-size: 1rem;
		margin-bottom: 10px;
	}
	.consult h2 > span::before,
	.consult h2 > span::after{
		height: 20px;
	}
	.consult h2 > span::before{
		left: -20px;
	}
	.consult h2 > span::after{
		right: -20px;
	}
	.consult h2 > div > span{
		width: 60px;
    	height: 60px;
    	font-size: 2.18rem;
	}
	
	.consult-top-text{
		font-size: 1.12rem;
	}
	.consult-top-illa {
		width: 180px;
    	margin-left: 0;
	}
	.consult-tel{
		font-size: 2.81rem;
		padding-left: 35px;
	}
	.consult-tel::before{
		width: 27px;
        height: 36px;
        top: 13px;
	}
	
	.consult-access h4 span{
		font-size: 1.12rem;
    	padding: 5px 10px;
		margin-top: 15px;
    	margin-bottom: 10px;
	}
	.consult-access-list > li::before{
		top: 13px;
	}
	.consult-footer-illa{
		width: 68px;
		right: 20px;
		bottom: -75px;
	}
}

/* -----------------------------------------------------------
	センターとは
----------------------------------------------------------- */

.about{
	text-align: center;
	margin: 60px auto;
	position: relative;
}
.about-header-illa{
	width: 140px;
	position: absolute;
	top: -50px;
	left: 50px;
}
.about-header-illa img{
	width: 100%;
}
.about h3{
	border: none;
	font-size: 1.75rem;
	color: var(--sub-color01);
	line-height: 1.5;
	margin-bottom: 20px;
}
.about-illa{
	width: 950px;
	margin: 40px auto;
	position: relative;
}
.about-illa img{
	width: 100%;
}
.about-supportlist > li{
	width: 290px;
	height: 290px;
	background: #fff;
	border-radius: 50%;
	padding: 70px 0;
	text-align: center;
}
.about-supportlist > li > img{
	display: block;
	width: 80px;
	margin: 0 auto;
}
.about-supportlist > li > p{
	font-size: 3.12rem;
	font-family: var(--font-zenmaru);
	font-weight: 500;
	color: var(--sub-color01);
}

.about-support{
	display: inline-block;
	position: relative;
}
.about-supportlist > li:nth-child(1){
	position: absolute;
	top: 350px;
	left: 0;
}
.about-supportlist > li:nth-child(2){
	position: absolute;
	top: 50px;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.about-supportlist > li:nth-child(3){
	position: absolute;
	top: 350px;
	right: 0;
}

@media screen and (max-width:1200px){
	.about-header-illa{
		width: 100px;
    	top: -150px;
	}
	.about-illa{
		width: 700px;
	}
	.about-supportlist > li{
		width: 220px;
    	height: 220px;
	}
	.about-supportlist > li:nth-child(1),
	.about-supportlist > li:nth-child(3){
		top: 225px;
	}
	.about-supportlist > li > img{
		width: 65px;
	}
	.about-supportlist > li > p{
		font-size: 2rem;
	}
}

@media screen and (max-width:767px){
	.about-header-illa{
		width: 62px;
		left: 20px;
		top: -100px;
	}
	.about{
		margin: 60px auto 40px;
	}
	.about h3{
		font-size: 1.12rem;
		margin-bottom: 10px;
	}
	
	.about-illa{
		width: 330px;
	}
	.about-supportlist > li{
		width: 140px;
    	height: 140px;
    	padding: 30px 0;
	}
	.about-supportlist > li > img{
		width: 50px;
	}
	.about-supportlist > li > p{
		font-size: 1.31rem;
	}
	.about-supportlist > li:nth-child(1){
		top: 135px;
	}
	.about-supportlist > li:nth-child(2){
		top: 0;
	}
	.about-supportlist > li:nth-child(3){
		top: 135px;
	}
}

/* -----------------------------------------------------------
	お知らせ
----------------------------------------------------------- */

.news{
	text-align: center;
	margin: 60px auto 60px;
	padding-bottom: 80px;
	background: #fff;
	border-radius: 110px;
}
.news h2{
	position: relative;
	top: -90px;
	margin-bottom: 0;
}

@media screen and (max-width:1200px){
	.news{
		border-radius: 60px;
	}
}
@media screen and (max-width:767px){
	.news{
		margin: 60px auto 40px;
		padding-bottom: 30px;
		border-radius: 30px;
	}
	.news h2{
		top: -38px;
		margin-top: 0;
	}
}



