@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500&display=swap');

html,body{
	padding: 0;
	margin: 0;
}
body {
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 17px;
	line-height: 1.8em;
	color: #646464;
}

/* common */
a{
	text-decoration: none;
	color: #fff;
	transition: 0.4s;
}
a:hover{
	opacity: 0.7;
}
p{
	margin: 0 0 15px;
}
img{
	max-width: 100%;
}
.contents{
	width: 1200px;
	max-width: 100%;
	margin: auto;
	padding: 10px;
	box-sizing: border-box;
}
.fixs,
.sp{
	display: none;
}
.pink{
	color: #ed7e94;
}
.orange{
	color: #f6ac2d;
}
.title{
	text-align: center;
	margin: 0 0 70px;
}
.title img{
	width: 60px;
}
.title h2{
	font-weight: 500;
	font-size: 2em;
	margin: 10px 0 10px;
}
.title h3{
	font-weight: normal;
}
.catch{
	text-align: center;
	font-size: 1.2em;
	line-height: 1.8em;
	margin-bottom: 60px;
}
.flex{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flex .imglist{
	font-size: 0;
}
.flex .imglist img{
	width: calc( 100% / 3 );
	vertical-align: top;
}

@media screen and (max-width: 768px) {
	body{
		font-size: 14px;
		overflow-x: hidden;
	}
	.sp{
		display: block;
	}
	.pc{
		display: none;
	}
	.flex .imglist img{
		width: 50%;
	}
	.title{
		margin: 0 0 40px;
	}
	.title h2{
		font-size: 1.6em;
	}
	.catch{
		margin-bottom: 40px;
	}
}
/* common end */

/* header */
#mainvisual{
	margin: 0;
	background-image: url(../img/mv_pc.jpg);
	background-size: cover;
	background-position: center;
	position: relative;
	height: 90vh;
}
#mainvisual #head_logo{
	position: absolute;
	left: 3%;
	top: 0%;
	width: 250px;
}
#mainvisual #head_tel{
	position: absolute;
	right: 5%;
	top: 3%;
	width: 300px;
}
#menu{
	padding: 30px 0;
	background-color: #ed7e94;
}
#menu ul {
    display: flex;
    list-style: none;
    justify-content: center;
    margin: 0;
    padding: 0;
}
#menu li {
    border-left: 1px solid #fff;
    padding: 0 12px;
}
#menu li:first-child {
    border-left: none;
}
#menu li:last-child {
    border-right: none;
}
#hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1100;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}
#hamburger span {
    display: block;
    height: 4px;
    width: 100%;
    background: #646464;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}
#hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}
#hamburger.active span:nth-child(2) {
    opacity: 0;
}
#hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}
#splogo{
	display: none;
}

#menu.fixed{
	position: fixed;
	width: 100%;
	top: 0;
	padding: 0;
	background-color: #fff;
	color: #646464;
	border-bottom: 1px solid #646464;
	z-index: 5;
}
#menu.fixed .fixs{
	display: block;
}
#menu.fixed ul{
	justify-content: flex-end;
	align-items: center;
}
#menu.fixed li{
	border: 0;
	text-align: center;
	font-size: 0.9em;
	line-height: 1.4em;
	padding: 12px 10px;
}
#menu.fixed a{
	color: #646464;
}
#menu.fixed #fixlogo{
	position: absolute;
	height: 50px;
	left: 5%;
	top: 6px;
}
#menu.fixed #fixtel{
	background-color: #ed7e94;
}
#menu.fixed #fixtel a{
	color: #fff;	
}


@media screen and (max-width: 1142px) {
	#menu li{
		padding: 0 6px;
		font-size: 0.9em;
	}
	#menu.fixed li{
		padding: 10px 6px;
		font-size: 0.8em;
	}
	#menu.fixed #fixlogo{
		height: 40px;
		top: 5px;
	}
}
@media screen and (max-width: 950px) {
    #hamburger {
        display: flex;
    }
    #menu {
    	opacity: 0;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #F6AD2E;
        transform: translateY(-100%);
        transition: transform 0.4s ease;
        z-index: 1000;
        padding-top: 100px;
    }
	#menu li{
		padding: 0 6px;
		font-size: 1.1em;
	}
    .active span{
    	background: #fff !important;
    }
    #menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    #menu ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        font-weight: bold;
    }
    #menu li {
        border: none;
        padding: 0;
    }
    #mainvisual #head_logo,
    #mainvisual #head_tel{
    	display: none;
    }
    #spmenu{
    	position: fixed;
    	background-color: #fff;
    	height: 60px;
    	top: 0;
    	width: 100%;
    	border-bottom: 1px solid #646464;
    	z-index: 2;
    }
	#splogo{
		display: block;
		height: 50px;
		margin: 5px 0 0 10px;
	}
	#menu.fixed .fixs{
		display: none;
	}
}
@media screen and (max-width: 768px) {
	#mainvisual{
		background-image: none;
		height: auto;
		margin-top: 60px;
	}
}
/* header end */

/* main */
section{
	padding: 80px 0 100px;
}
#about{
	text-align: center;
}
#about h1{
	font-size: 1.6em;
	line-height: 1.8em;
	font-weight: normal;
	margin-bottom: 40px;
}
#about #emphasis{
	display: inline-block;
	background-color: #ed7e94;
	color: #fff;
	font-size: 1.3em;
	border-radius: 30px;
	padding: 10px 40px;
	margin: 40px auto 30px;
	box-sizing: border-box;
}
#office .contents,
#staff .contents,
#voice .contents{
	width: 800px;
}
#service .contents{
	width: 900px;
}
#office,
#process,
#staff{
	background-color: #faf5f0;
}
#faq,
#voice{
	background-color: #fdf3f5;
}
#office .office_box{
	display: flex;
	background-color: #fff;
	color: #96684b;
	vertical-align: middle;
	align-items: center;
	font-size: 1.5em;
	font-weight: bold;
	padding: 20px 30px;
	border-radius: 20px;
	margin: 30px 0;
}
#office .office_box img{
	width: 50px;
	margin-right: 30px;
}
#office .office_box .office_link{
	margin-left: auto;
	background-color: #f6ac2d;
	font-weight: normal;
	border-radius: 10px;
	text-align: center;
}
#office .office_box .office_link a{
	display: block;
	padding: 5px 5px;
	font-size: 0.8em;
	width: 250px;
}
#service{
	text-align: center;
}
#service h4{
	font-size: 1.2em;
	border: 1px solid #ccc;
	border-radius: 10px;
	padding: 15px 5px;
	margin: 30px 0;
}
#service h5{
	font-size: 1.1em;
	margin: 0 0 50px;
}
#service .flex{
	border: 1px solid #ed7e94;
	background-color: #ed7e94;
	width: calc( 100% - 2px);
	border-radius: 10px;
	font-weight: bold;
}
#service .service_left{
	width: 25%;
	color: #fff;
	padding: 15px 5px;
}
#service .service_right{
	width: 75%;
	background-color: #fff;
	border-radius: 0 10px 10px 0;
	padding: 15px 5px;
}
.flex .dl_box{
	background-color: #f6ac2d;
	width: calc( 33.3% - 10px );
	text-align: center;
	border-radius: 20px;
}
.flex .dl_box a{
	display: block;
	padding: 15px 10px;
	box-sizing: border-box;
	font-size: 1.2em;
	font-weight: bold;
}
.pinkbk{
	background-color: #ed7e94 !important;
}
#recruit{
	padding: 140px 0;
}
.recruit_box{
	width: 48%;
}

#staff .flex,
#voice .flex{
    align-items: flex-start;
    margin-bottom: 80px;
}
#staff .flex:last-child,
#voice .flex:last-child {
    margin-bottom: 0;
}
.voice_icon{
	width: 20%;
	text-align: center;
}
.voice_icon img{
	width: 80%;
	display: block;
	margin: auto;
}
.voice_comment {
	width: 80%;
    position: relative;
    background: #fff;
    padding: 20px 30px 15px;
    border-radius: 12px;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
    margin-left: 25px;
}
.voice_comment::before,
.voice_comment::after {
    content: "";
    position: absolute;
    top: 55px;
    left: -25px;
    width: 0;
    height: 0;
    border-style: solid;
}
.voice_comment::before {
    border-width: 0 25px 15px 0;
    border-color: transparent rgba(0, 0, 0, 0.3) transparent transparent;
    /*filter: blur(1px);*/
    left: -27px;
}
.voice_comment::after {
    border-width: 0 25px 15px 0;
    border-color: transparent #fff transparent transparent;
}
.voice_comment h4{
	margin: 0 0 10px;
}

.toggle-item {
	margin: 30px 0;
	padding: 0px;
    background-color: #fff;
    border-radius: 15px;
}
.toggle-title {
	font-family: "M PLUS Rounded 1c";
    width: 100%;
    background: none;
    border: none;
    font-size: 1.2em;
    color: #646464;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    font-weight: bold;
}
.toggle-title .step {
    color: #f26b84;
}
.toggle-title .icon {
    width: 25px;
    height: auto;
    position: absolute;
    right: 2%;
}
.toggle-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0px 40px 0px;
    font-weight: bold;
}
.toggle-content .criteria{
	margin: 10px 0;
}
.toggle-content .criteria_title,
.toggle-content .criteria_text{
	display: inline-block;
	vertical-align: middle;
}
.toggle-content .criteria_title{
	background-color: #ed7e94;
	color: #fff;
	padding: 3px 10px;
	border-radius: 20px;
	margin-right: 5px;
}
.toggle-content .criteria_text{
	color: #ed7e94;
	font-size: 1.1em;
}
.toggle-content span.border{
	border-bottom: 2px solid #ed7e94;
}
.toggle-content span.emp{
	color: #ed7e94;
	font-size: 1.1em;
}
.toggle-item.open .toggle-content {
    max-height: 500px;
    padding: 20px 40px 20px;
    border-top: 2px solid #f6ac2d;
}
@media screen and (max-width: 768px) {
	section{
		padding: 40px 0;
	}
	#about h1{
		font-size: 1.2em;
		margin: 0 0 30px;
	}
	#about #emphasis{
		font-size: 1.2em;
		border-radius: 40px;
	}
	#office .office_box{
		padding: 15px 20px;
		margin: 15px 0;
	}
	#office .office_box img{
		width: 40px;
		margin-right: 15px;
	}
	#office .office_box .office_link a{
		width: 150px;
	}
	#service h4{
		font-size: 1em;
		margin: 30px 0 15px;
	}
	#service h5{
		font-size: 0.9em;
		margin: 0 0 30px;
	}
	#service .flex,
	#service .service_right{
		border-radius: 0;
	}
	#service .service_right{
		text-align: left;
		font-size: 0.9em;
		padding: 15px 10px;
		line-height: 1.4em;
	}
	#recruit .flex,
	#download .flex{
		display: block;
	}
	#download .flex .dl_box{
		width: 100%;
		border-radius: 5px;
		margin: 15px 0;
	}
	#download .flex .dl_box a{
		padding: 10px;
	}
	#recruit{
		padding: 40px 30px;
	}
	#recruit .recruit_box{
		width: 100%;
		margin: 15px 0;
	}
	#staff .flex, #voice .flex{
		margin-bottom: 30px;
	}

	.voice_icon{
		width: 30%;
	}
	.voice_comment{
		width: 70%;
		padding: 15px 15px 5px;
		margin-left: 20px;
	}
	.voice_comment::before,
	.voice_comment::after{
		top: 30px;
		left: -20px;
	}
	.voice_comment::before{
		border-width: 0 20px 15px 0;
		top: 31px;
	}
	.voice_comment::after{
		border-width: 0 20px 15px 0;
	}
	.toggle-item{
		margin: 15px 0;
	}
	.toggle-title{
		padding: 15px 45px 15px 20px;
		font-size: 1.1em;
		text-align: left;
	}
	.toggle-content{
		padding: 0 20px 0;
	}
	.toggle-content .criteria_text{
		display: block;
	}
	.toggle-item.open .toggle-content{
		padding: 15px 20px 5px;
	}
}
/* main end */

/* footer */
footer{
	text-align: center;
	padding: 80px 0;
}
footer img{
	width: 300px;
	margin-bottom: 40px;
}
footer p#operation{
	font-weight: bold;
	margin-bottom: 60px;
	font-size: 1.1em;
}
@media screen and (max-width: 768px) {
	footer{
		padding: 40px 0;
	}
	footer img{
		width: 200px;
		margin-bottom: 20px;
	}
	footer p#operation{
		font-size: 0.9em;
		margin-bottom: 30px;
	}
	footer p#copyright{
		font-size: 0.8em;
	}
}
/* footer end */