@charset "utf-8";


*, *::before, *::after {
  box-sizing: border-box;
}

/*cssのリセット*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,
blockquote,pre,abbr,address,cite,code,del,dfn,em,img,
ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,
ol,ul,li,fieldset,form,label,legend,table,caption,
tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,
figcaption,figure,footer,header,hgroup,menu,nav,section,
summary,time,mark,audio,video {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    border: 0;
    outline: 0;
    background: transparent;
}
html{
	margin-top: 0!important;
}
 
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
     display: block;
}
 
ul,ol {
    list-style: none;
}
 
blockquote,
q {
    quotes: none;
}
 
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}
 
a{
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
    transition: all .5s;
}

ins {
    text-decoration: none;
    color: #000;
    background-color: #ff9;
}
 
mark {
    font-weight: bold;
    font-style: italic;
    color: #000;
    background-color: #ff9;
}
 

abbr[title],
dfn[title] {
    cursor: help;
    border-bottom: 1px dotted;
}
 
table {
    border-spacing: 0;
    border-collapse: collapse;
}
 
hr {
    display: block;
    height: 1px;
    margin: 1em 0;
    padding: 0;
    border: 0;
    border-top: 1px solid #ccc;
}
input[type="submit"],input[type="text"],input[type="email"],input[type="tel"],input[type="button"], input[type="reset"] {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
  }
  button{
    outline: none;
    padding: 0;
    appearance: none;
    background-color: transparent;
    border: none;

  }
html {
    font-size: 62.5%;
}
 
body {
    font-family: "Noto Sans JP", sans-serif;
	margin: 0;
    padding: 0;
    font-size:1.6rem;/* 16px*/
    color: #000000;
    line-height: 1.5;
}

img{
    width: 100%;
    image-rendering: -webkit-optimize-contrast;
    vertical-align: bottom;
}

.inner{
    width: 95%;
    max-width: 1310px;
    margin: 0 auto;
}
article{
    overflow: hidden;
}
@media screen and (max-width: 768px) {

	.inner{
	    width: 90%;
	}
}

.fadeIn {
  opacity: 0;
  transition: 2s;
}
.fadeIn.is-show {
  opacity: 1;
}
.fadeup {
  animation: fadeup 2.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
	display: block;
}
 
@keyframes fadeup {
  0% {
    transform: translateY(80px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*-----------------------
         header
-------------------------*/
header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999999;
}
header.change-color {
    background-color: #fff;
    transition: all .3s;
}

.header_inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
	column-gap: 20px;
	width: 95%;
	max-width: 1394px;
	margin: 0 auto;
	height: 100%;
	margin-top: 30px;
}
.header_logo{
	width: 31%;
	max-width: 410px;
}
.header_logo a{
	display: flex;
	align-items: center;
	color: #4B544A;
	font-weight: bold;
}

.header_logo p{
	font-size: clamp(12px, 1.39vw, 20px);
}
.header_logo p span{
	color: #fff;
	background-color: #AFC75C;
	padding: 5px 10px;
	display: inline-block;
}
.header_nav {
    width: 62%;
    display: flex;
    align-items: center;
    max-width: 808px;
    margin-left: auto;
    justify-content: center;
    column-gap: 45px;
    border-radius: 50px;
    background-color: #fff;
    padding: 20px 0;
}

.header_nav > ul{
	width: 56%;
	max-width: 438px;
	display: flex;
	column-gap: 20px;
	justify-content: space-between;
	align-items: center;
	text-align: center;
}
.header_nav > ul li a{
    font-size: clamp(12px, 1.39vw, 20px);
    color: #000000;
    font-weight: bold;
    text-align: center;
}
.nav_menu li{
	font-size: clamp(12px, 1.39vw, 20px);
    color: #000000;
	font-weight: bold;
    text-align: center;
	cursor: pointer;
	position: relative;
}
.nav_menu li:hover .drop-menu-list {
  opacity: 1; /* 不透明度を最大に */
  transition: opacity .3s, visibility .3s; /* アニメーション設定 */
  visibility: visible; /* 下層メニューを表示 */
}

/* ドロップダウンメニュー */
.drop-menu {
  position: relative;
}
.drop-menu-list {
  background-color: #fff; /* ドロップダウンメニューの背景色 */
  left: 0;
  opacity: 0; /* 不透明度を最小に */
  position: absolute;
  top: 100%;
  transition: opacity .3s, visibility .3s; /* アニメーション設定 */
  visibility: hidden; /* 下層メニューを非表示 */
  width: max-content;
  z-index: 1;
  border-radius: 15px;
  padding-top: 20px;
  padding-bottom: 5px;
}
.drop-menu-item {
  padding: 0 15px 5px 15px;
}
.sp_menu{
	display: none;
}
.btn{
	display: block;
	width: 30%;
	max-width: 206px;
	text-align: center;
	color: #fff;
	background-color: #EE8532;
	font-size:clamp(12px, 1.39vw, 20px);
	font-weight: bold;
	padding: 30px 0;
	cursor: pointer;
	position: relative;
	border-radius: 50px;
}
.btn img{
	width: 16%;
	max-width: 44px;
}

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

	.header_nav {
	    padding: 10px 0;
	}
	.btn{
		padding: 20px 0;
	}
}

@media screen and (max-width: 768px) {
    
	
	.header_inner {
	    margin-top: 0;
	}
	.header_logo {
        width: 100%;
        max-width: 200px;
	}
    header{
		height: 80px;
	}
    
    .header_nav {
    	display: none;
    }
    
    .sp_menu{
        display: block;
    }
 
    .nav-menu {
        position: fixed;
        overflow-y: scroll;
        z-index: 99;
        width: 100%;
        top: 0;
        height: 100vh;
        display: none;
        background-color: #fff;
    }

	.g-menu{
		width: 80%;
		margin: 0 auto;
		margin-top: 110px;
	}
 	.sp_logo {
	    display: block;
        width: 100%;
        max-width: 200px;
        margin-top: 25px;
        margin-left: 20px;
	}
     .g-menu .g-menu_list > li{
		 font-size: clamp(16px, 2.072vw, 18px);
        font-weight: bold;
        color: #000000;
		  border-bottom: 1px dotted #4B544A;
        margin-bottom: 20px;
        padding-bottom: 15px;
	 }
    .g-menu .g-menu_list > li > a{
        display: block;
        font-size: clamp(16px, 2.072vw, 18px);
        font-weight: bold;
        color: #000000;
        position: relative;
    }
	.sp-menu-list a{
		display: block;
		color: #000000;
		padding-left: 4%;
		padding-bottom: 15px;
	}
	.sp-menu-list{
		padding-top: 10px;
	}
	.g-menu .btn{
		width: 90%;
		margin: 40px auto 0;
		max-width: 230px;
		font-size:18px;
		padding: 20px 0;
	}
	
}



@media screen and (max-width: 768px) {
/* hamburger */
    .toggle {
        position: fixed;
        right: 15px;
        top: 24px;
        width: 36px;
        height: 36px;
        cursor: pointer;
        z-index: 999;
        display: block;
    }

    .toggle span {
        display: block;
        position: absolute;
        width: 30px;
        border-bottom: solid 2px  #000000;
        -webkit-transition: .35s ease-in-out;
        -o-transition: .35s ease-in-out;
        transition: .35s ease-in-out;
        left: 50%;
        transform: translateX(-50%);
    }

    .toggle span:nth-child(1) {
        top: 9.3px;
    }
    .toggle span:nth-child(2) {
        top: 16px;
    }
    .toggle span:nth-child(3) {
        top: 23px;
    }
   
    .toggle.active span:nth-child(1) {
        top: 10%;
        left: 45%;
        -webkit-transform: rotate(-45deg) translate(-50%,-50%);
        -ms-transform: rotate(-45deg) translate(-50%,-50%);
        transform: rotate(-45deg) translate(-50%,-50%);
        border-bottom: solid 2px  #000000;
    }
    .toggle.active span:nth-child(2),
    .toggle.active span:nth-child(3) {
        top: 72%;
        left: 41%;
        -webkit-transform: rotate(45deg) translate(-50%,-50%);
        -ms-transform: rotate(45deg) translate(-50%,-50%);
        transform: rotate(45deg) translate(-50%,-50%);
        border-bottom: solid 2px  #000000;
    }
}

.sec_ttl{
	text-align: center;
}
.sec_ttl h2 {
    font-size: clamp(20px, 2.778vw, 40px);
    font-weight: bold;
    padding-bottom: 15px;
    position: relative;
	line-height: 1.2;
}
.sec_ttl h2:before {
    content: "";
	display: inline-block;
	width: 114px;
	height: 2px;
	background-color: #EE8532;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
}

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

	.sec_ttl h2{
    	        font-size: 19px;
	}
}

.sp_br,.sp_img{
    display: none;
}

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

    .sp_br,.sp_img{
        display: block;
    }
    .pc_br,.pc_img{
        display: none;
    }
}

/*-----------------------
         top
-------------------------*/
#maintop{
	position: relative;
	background-image: url('../img/mv.jpg');
	background-size: cover;
	padding-top: 59%;
	z-index: 0;
}

.fv_txtbox{
	position: absolute;
	top: 50%;
	left: 50.5%;
	width: 90%;
	max-width: 446px;
	transform: translate(-50%, -50%);
}



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

	#maintop{
		position: relative;
		background-image: url('../img/mv.jpg');
		background-size: cover;
		padding-top: 130%;
		z-index: 0;
	}
	.fv_txtbox{
		position: absolute;
		top: 50%;
		left: 50%;
		width: 85%;
	}

}

.banner{
	margin-top: -6%;
}
.banner_slider li .banner_box{
	max-width: 468px;
	margin: 0 auto;
}
.slick-slide{
	margin: 0 13px !important;
}
@media screen and (max-width: 768px) {
	.banner{
		margin-top: -12%;
	}
}
/*-----------------------
         about
-------------------------*/

#about{
	padding: 175px 0 0;
	position: relative;
}
.en_txt{
	width: 90%;
	max-width: 796px;
	position: absolute;
	top: 85px;
	left: 0;
	z-index:  -1;
}

.about_box{
	display: flex;
	position: relative;
}
.about_col{
	display: flex;
	justify-content: flex-end;
	column-gap: 30px;
	width: 67%;
	max-width: 853px;
	margin-left: auto;
}
.about_col a{
	color: #000000;
}
.about_col li{
	width: 50%;
	max-width: 412px;
	background-color: #FAE5D5;
	border-radius: 20px;
	padding: 30px 10px 25px;
	box-shadow: 0 4px 4px rgba(0,0,0,.25);
}
.about_col li:last-child{
	background-color: #FDEBBF;
}
.about_txt{
	text-align:center; 
}
.about_txt h3{
	font-size:clamp(18px, 1.67vw, 24px);
}
.about_txt p{
	font-weight: bold;
	font-size: clamp(16px, 1.67vw, 24px);
}
.marubtn{
	max-width: 116px;
	margin: 2px auto 0;
}
.about_img{
	max-width: 323px;
	margin: 0 auto;
	margin-bottom: 28px;
}

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

	#about{
		padding: 80px 0 0;
	}
	.about_col{
		flex-direction: column;

        align-items: center;
		row-gap: 30px;
		width: 90%;
		max-width: 550px;
		margin: 0 auto;
	}
	.about_col li{
		width: 100%;
		max-width: 330px;
		padding: 30px 10px 25px;
	}
	.marubtn{
		max-width: 90px;
		margin: 6px auto 0;
	}
	.en_txt{
		width: 150%;
		max-width: 796px;
		position: absolute;
		top: auto;
		bottom: 0;
		left: -17px;
		z-index:  -1;
	}
	
}
/*-----------------------
         service
-------------------------*/
#service{
	padding: 327px 0 100px;
}
#service .inner{
	width: 98%;
	max-width: 1404px;
}
.service_box{
	margin-top:78px;
	border-radius: 30px;
	padding: 56px 25px 27px;
	background-color: rgba(242, 191, 150, .4);
}
.service_box:last-child{
	margin-top:34px;
	padding: 21px 25px 59px;
	background-color: rgba(251, 204, 96, .4);
}
.service_contents{
	display: flex;
	width: 100%;
	max-width: 1265px;
	margin-left: auto;
}
.service_contents > h3{
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	display: block;
	width: 3%;
	font-size: clamp(18px, 2.084vw, 30px);
	letter-spacing: 0.5em;
}

.service_box ul{
	width: 95%;
	display: flex;
	justify-content: space-between;
	max-width: 1200px;
	margin-left: auto;
	column-gap: 15px;
}
.service_box:last-child ul{
	flex-wrap: wrap;
	row-gap: 66px;
}
.service_box ul li{
	width: 48%;
	max-width: 573px;
	border-radius: 20px;
	background-color: #fff;
	padding: 30px 0 43px;
	text-align: center;
	    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
}
.service_box ul li a{
	color: #000000;
}
.service_box ul li h3{
	font-size:clamp(18px, 1.67vw, 24px);
}
.service_img{
	width: 90%;
	max-width: 494px;
	margin: 0 auto 40px;
}
.service_txt{
	position: relative;
}
.service_txt .marubtn{
	position: absolute;
	width: 13%;
	max-width: 73px;
	top: 50%;
	right: 30px;
	transform:translateY(-50%);
}

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

	#service{
		padding: 100px 0 0;
	}
	#service .inner{
		width: 90%;
		max-width: 1404px;
	}
	.service_box {
	    margin-top: 60px;
	    padding: 40px 25px 50px;
	}
	.service_contents{
		flex-direction: column;
	}
	.service_contents > h3 {
	    -ms-writing-mode: inherit;
	    writing-mode: initial;
	    display: block;
	    width: 100%;
	    font-size: clamp(18px, 2.084vw, 30px);
	    letter-spacing: 0.5em;
	    margin-bottom: 20px;
	    text-align: center;
	}
	.service_box ul{
		width: 100%;
		flex-direction: column;
		align-items: center;
		max-width: 1200px;
		margin: 0 auto;
		row-gap: 30px;
	}
	.service_box ul li{
		width: 100%;
		max-width: 573px;
		padding: 30px 0 43px;
	}
	.service_box:last-child ul{
		row-gap: 30px;
	}
	.service_txt .marubtn {
	    width: 13%;
	    max-width: 30px;
	    top: 50%;
	    right: 15px;
	    margin: 0;
	}
}

/*-----------------------
         circle
-------------------------*/
#circle{
	padding-top: 440px;
}
.circle_txtbox{
	width: 83%;
	max-width: 1084px;
	margin-left: auto;
	margin-right: -19%;
	border: 10px solid #F4A261;
	border-radius: 50%;
	position: relative;
}
.circle_inner{
	position: relative;
	padding-top: 100%;
	height: 0;
}
.circle_txt{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
	width: 100%;
}
.circle_txt h2{
	color: #EE8532;
	margin-bottom: 60px;
	font-size: clamp(20px, 2.778vw, 40px);
}
.circle_txt h2 span{
	color: #F4A261;
	display: inline-block;
	padding: 0 10px;
	font-size:clamp(18px, 1.67vw, 24px);
}
.circle_txt p {
	font-weight: bold;
	line-height: 2;
    font-size: clamp(18px, 1.67vw, 24px);
}
.circle_txt p:last-child{
	margin-top: 40px;
}
@media screen and (max-width: 900px) {

	.circle_txt h2 {
		margin-bottom: 17px;
	}
}
@media screen and (max-width: 768px) {

	#circle{
		padding-top: 160px;
	}
	.circle_txtbox{
		width: 130%;
		max-width: 490px;
		border: 5px solid #F4A261;
	}
	.circle_txt h2{
		margin-bottom: 20px;
		font-size: 18px;
	}
	.circle_txt h2 span{
		padding: 0 5px;
		font-size:clamp(18px, 1.67vw, 24px);
	}
	.circle_txt p {
		font-weight: bold;
		line-height: 1.6;
		font-size: 13px;
	}
	.circle_txt p:last-child{
		margin-top: 15px;
	}

}

.circle_img{
	position: absolute;
}
.circle_img01{
	width: 104%;
	max-width: 1100px;
	top: -14%;
	left: 29%;
	transform: translate(-50%,-50%);
}
.circle_img02{
	width: 80%;
	max-width: 843px;
	top: 57%;
	left: -16%;
	transform: translate(-50%,-50%);
}
@media screen and (max-width: 900px) {

	.circle_img01{
		width: 90%;
		max-width: 1100px;
		top: -14%;
		left: 29%;
		transform: translate(-50%,-50%);
	}
	.circle_img02{
		width: 55%;
		max-width: 843px;
		top: 57%;
		left: -22%;
		transform: translate(-50%,-50%);
	}
	
}
@media screen and (max-width: 768px) {

	.circle_img01{
		width: 104%;
		max-width: 290px;
		top: -6%;
		left: 32%;
	}
	.circle_img02{
		width: 80%;
		max-width: 200px;
		top: 110%;
		left: 22%;
	}
}
/*-----------------------
         message
-------------------------*/
#message{
	padding-top: 225px;
}
.message_img{
	width: 85%;
	max-width: 1133px;
	margin-left: auto;
	position: relative;
}
.message_txt{
	position: absolute;
	background-color: #fff;
	z-index: 1;
	top: 50%;
	left: 4%;
	transform: translate(-50%,-50%);
	max-width: 618px;
	width: 55%;
	display: flex;
	justify-content: center;
	/* padding: 10.45% 20px; */
	border-radius: 30px;
	box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
}
.message_txt a{
	display: block;
	width: 100%;
	text-align: center;
	padding: 19% 20px;
	color: #000000;
}
.message_txt h2{
	font-size: clamp(18px, 1.99vw, 28px);
}
.message_txt .marubtn {
    position: absolute;
    width: 13%;
    max-width: 73px;
    top: 80%;
    right: 30px;
    transform: translateY(-50%);
}
@media screen and (max-width: 768px) {

	#message{
		padding-top: 220px;
	}
	.message_img{
		width: 90%;
		max-width: 1133px;
		margin-left: auto;
		position: relative;
	}
	.message_txt{
		top: 110%;
		left: -8%;
		transform: translate(0,-50%);
		max-width: 618px;
		width: 80%;
		border-radius: 20px;
	}
	.message_txt a{
		padding: 40px 20px;
	}
	.message_txt .marubtn {
	    width: 11%;
	    max-width: 73px;
	    top: 70%;
	    right: 13px;
	    transform: translateY(-50%);
	}
}
/*-----------------------
         recruit
-------------------------*/
#recruit{
	padding: 265px 0;
	position: relative;
}
.bg_cor{
	background: linear-gradient(190deg, rgba(255,255,255,1) 0%, rgba(250,229,213,1) 100%);
	position: absolute;
	width: 100%;
	height: 4078px;
	bottom: 0;
	z-index: -1;
}
.recruit_box{
	background-image: url(../img/en_bg.jpg);
	background-size: cover;
	padding: 180px 0 130px;
	text-align: center;
	margin-top: 65px;
}
.recruit_box h3{
	color: #fff;
	margin-bottom: 30px;
	font-size: clamp(25px, 4.433vw, 64px);
}
.recruit_link{
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1280px;
	margin: 0 auto;
	column-gap: 44px;
}
.recruit_link .cta{
	display: block;
	color: #fff;
	background-color: #F4A261;
	width: 49%;
	max-width: 618px;
	border-radius: 30px;
	font-weight: bold;
	padding: 75px 15px;
	font-size: clamp(18px, 2.8vw, 40px);
	box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
}
@media screen and (max-width: 768px) {
	
	#recruit{
		padding: 180px 0 90px;
		position: relative;
	}
	.bg_cor{
		background: linear-gradient(190deg, rgba(255,255,255,1) 0%, rgba(250,229,213,1) 100%);
		position: absolute;
		width: 100%;
		height: 4078px;
		bottom: 0;
		z-index: -1;
	}
	.recruit_box{
		background-position: center;
		padding: 60px 0 60px;
		text-align: center;
		margin-top: 40px;
	}
	
	.recruit_link{
		flex-direction: column;
		max-width: 550px;
		margin: 0 auto;
		row-gap: 20px;
	}
	.recruit_link .cta{
		width: 90%;
		border-radius: 20px;
		padding: 25px 15px;
	}
}

/*-----------------------
         footer
-------------------------*/
.f_cta{
	max-width: 816px;
	margin: 0 auto;
	position: relative;
	/* box-shadow: 0 4px 4px rgba(0, 0, 0, .25); */
	border-radius: 30px;
}

.f_cta_txt{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	text-align: center;
}
.f_cta_txt p{
	    font-weight: bold;
	    line-height: 1.8;
	    font-size: clamp(18px, 1.67vw, 24px);
	    color: #fff;
}
.f_cta_txt a{
	    font-weight: bold;
	    line-height: 2;
	    font-size: clamp(25px, 3.34vw, 48px);
	    color: #fff;
	    margin-top: 17px;
}
@media screen and (max-width: 768px) {

	.f_cta{
		max-width: 816px;
		height: 180px;
		border-radius: 30px;
	}
	.f_cta img{
		width: 100%;
		height: 100%;
		object-fit: cover;
		border-radius: 30px;
	}
	
	.f_cta_txt p{
		font-size: 16px;
	}
}

footer{
	padding: 82px 0 115px;
}
.footer_nav{
	max-width: 1198px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	column-gap: 65px;
	row-gap: 25px;
	margin-top: 60px;
}
.footer_nav li img{
	width: 23px;
}
.footer_nav li{
	position: relative;
}

.footer_nav li:hover .drop-menu-list {
  opacity: 1; /* 不透明度を最大に */
  transition: opacity .3s, visibility .3s; /* アニメーション設定 */
  visibility: visible; /* 下層メニューを表示 */
}
.footer_nav li .drop-menu-list{
	left: 19%;
}
.footer_nav li:nth-of-type(1){
	font-size: clamp(14px, 1.39vw, 22px);
	color: #000000;
    font-weight: bold;
	cursor: pointer;
	font-family: "Zen Maru Gothic", serif;
}
.footer_nav li:nth-of-type(1) img{
	margin-right: 14px;
}
.footer_nav li a{
	font-family: "Zen Maru Gothic", serif;
    display: flex;
	column-gap: 14px;
	align-items: center;
    font-size: clamp(14px, 1.39vw, 22px);
	color: #000000;
    font-weight: bold;
}
.f_contents{
	display: flex;
	justify-content: space-between;
	column-gap: 25px;
	margin-top: 100px;
	max-width: 840px;
}
.f_banner{
	width: 44%;
	max-width: 351px;
}
.sns_link{
	display: flex;
	justify-content: center;
	column-gap: 63px;
	margin-top: 40px;
}
.f_banner a{
	display: block;
}
.f_banner a.banner04{
	margin-bottom: 20px;
}
.sns_link img{
	max-width: 62px;
}
.f_txt{
	font-family: "Zen Maru Gothic", serif;
	width: 43%;
	max-width: 345px;
	text-align: center;
	margin-top: 43px;
}
.f_txt img{
	max-width: 104px;
	margin-bottom: 20px;
}
.f_txt p ,.f_txt h2{
	line-height: 1.8;
	font-weight: bold;
	font-size: clamp(14px, 1.39vw, 20px);
}
.f_txt p{
	line-height: 1.4;
	margin-top: 15px;
}
@media screen and (max-width: 768px) {

	footer{
		padding: 60px 0 33px;
	}
	.footer_nav {
	    max-width: max-content;
	    justify-content: space-between;
	    flex-wrap: wrap;
	    flex-direction: column;
	    column-gap: 0;
	    row-gap: 25px;
	    margin: 0 auto;
	    margin-top: 40px;
	}
	.footer_nav > li{
		/* width: 50%; */
	}
	.footer_nav li:nth-of-type(1){
		font-size: 13px;
	}
	.footer_nav li a{
		font-size: 13px;
	}
	.footer_nav .drop-menu-list {
	    opacity: 1;
	    visibility: visible;
	    position: static;
	    padding-left: 22px;
	}
	.f_contents {
	    flex-direction: column-reverse;
		align-items: center;
	    row-gap: 25px;
	    margin-top: 50px;
	    max-width: 840px;
	}
	.f_txt {
	    width: 100%;
	    margin-top: 0px;
	}
	.f_banner{
		width: 90%;
		max-width: 351px;
	}
	.sns_link {
	    margin-top: 20px;
		column-gap: 30px;
	}
	.sns_link img{
		width: 40px;
	}
}

/*-----------------------
    下層ページ common
-------------------------*/

.page_fvbox{
	position: relative;
}
.page_fvbox{
	height: 538px;
}
.page_fvbox img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media screen and (max-width: 1000px) {

	.page_fvbox{
		height: 450px;
	}
}
@media screen and (max-width: 768px) {

	.page_fvbox{
		height: 280px;
	}
}

.basic_page_txt{
	text-align: center;
	position: absolute;
	left: 50%;
	top: 65%;
	transform: translate(-50%,-50%);
	z-index: 1;
	width: 100%;
	color: #fff;
	font-family: "Zen Maru Gothic", serif;
}
.basic_page_txt2{
	top: 60%;
}
.basic_page_txt h1{
	font-size: clamp(22px, 2.499999vw, 36px);
	font-weight: bold;
}
.basic_page_txt p{
	font-weight: bold;
    font-size: clamp(18px, 1.67vw, 24px);
}
@media screen and (max-width: 1000px) {

	.basic_page_txt{
		left: 50%;
		top: 55%;
	}
	.basic_page_txt2{
		top: 50%;
	}

}

/*-----------------------
    提供サービス
-------------------------*/
.service_page{
	padding-top: 180px;
	background-color: rgba(253, 235, 191, .6);
}
.service_sec{
	font-family: "Zen Maru Gothic", serif;
	text-align: center;
}
.service_sec h2{
	font-size: clamp(22px, 2.499999vw, 36px);
	font-weight: bold;
	color: #F19489;
	margin-bottom: 120px;
}
.service_read01{
	position: relative;
	z-index: 0;
}
.service_read01:before{
	content: "";
	display: inline-block;
	position: absolute;
	left: 50%;
	top: 65%;
	transform: translate(-50%,-50%);
	width: 100%;
	max-width: 1050px;
	height: 260px;
	background-color: #fff;
	border-radius: 50%;
	z-index: -1;
}
.service_read h3,.service_read p{
	font-size: clamp(14px, 1.39vw, 20px);
	font-weight: bold;
	letter-spacing: .1em;
	line-height: 2;
}
.service_read h3 span{
	font-size: clamp(20px, 2.23vw, 32px);
}
@media screen and (max-width: 768px) {

	.service_page{
		padding-top: 80px;
	}
	.service_sec h2{
		font-size: clamp(22px, 2.499999vw, 36px);
		margin-bottom: 90px;
	}
	
	.service_read01:before{
		top: 50%;
		height: 280px;
	}
}
.service_link{
	margin-top: 225px;
}
.service_link ul{
	display: flex;
	justify-content: center;
	column-gap: 50px;
}
.service_link ul li{
	text-align: center;
	width: 43%;
	max-width: 560px;
	background-color: #F19489;
	border-radius: 30px;
}
.service_link li:nth-of-type(2){
	background-color: #F9CEC9;
}
.service_link ul li a{
	display: block;
	font-size: clamp(18px, 2.23vw, 32px);
	font-weight: bold;
	color: #fff;
	padding: 28px 0;
}
@media screen and (max-width: 768px) {

	.service_link{
		margin-top: 150px;
	}
	.service_link ul{
		column-gap: 15px;
	}
	.service_link ul li{
		width: 50%;
		max-width: 560px;
		border-radius: 15px;
	}
	.service_link ul li a{
		padding: 20px 0;
	}
}


/* service_area */

.service_area{
	padding-top: 115px;
	padding-bottom: 220px;
}
.service_area h2{
	font-family: "Zen Maru Gothic", serif;
	padding: 20px 0 20px 50px;
	border-left: 37px solid #F19489;
	font-size: clamp(22px, 2.499999vw, 36px);
	font-weight: bold;
	background: linear-gradient(94deg, rgba(255,255,255,1) 50%, rgba(251,239,210,1) 100%);
}

.service_areaimg{
	padding-top: 84px;
	text-align: center;
	font-family: "Zen Maru Gothic", serif;
}
.service_areaimg img{
	max-width: 212px;
	display: block;
	margin: 0 auto 95px;
}
.service_areaimg p{
	font-size: 16px;
	font-weight: bold;
	letter-spacing: .1em;
	line-height: 2;
}
.service_areaimg dl{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	column-gap: 40px;
	max-width: 1065px;
	margin: 108px auto 0;
}
.service_areaimg dt{
	width: 11%;
	max-width: 126px;
	background-color: #F19489;
	border-radius: 20px;
	font-size: clamp(20px, 2.23vw, 32px);
	font-weight: bold;
	letter-spacing: .1em;
	line-height: 1;
	color: #fff;
	padding: 14px 2px;
}
.service_areaimg dd{
	width: 83%;
	text-align: left;
	font-weight: bold;
	margin-bottom: 70px;
}

.service_areaimg dd:last-child{
	margin-bottom: 0;
}
.service_areaimg dd h3{
	display: block;
	width: fit-content;
    font-size: clamp(18px, 1.67vw, 24px);
	border-bottom: 1px solid;
	letter-spacing: .1em;
}
.service_areaimg dd p{
	letter-spacing: .1em;
	font-size: 16px;
	line-height: 2;
	margin-top: 3px;
}
.faqbtn{
	display:block;
	background-color:#fff;
	width: 80%;
	margin: 95px auto 0;
	max-width: 420px;
	border: 5px solid #F19489;
	border-radius: 20px;
	padding: 24px 0;
	 font-size: clamp(18px, 1.67vw, 24px);
	font-weight: bold;
	color: #000000;
}
@media screen and (max-width: 768px) {

	.service_area{
		padding-top: 100px;
		padding-bottom: 50px;
	}
	.service_area h2{
		padding: 15px 0 15px 20px;
		border-left: 15px solid #F19489;
		font-size: clamp(22px, 2.499999vw, 36px);
	}
	
	.service_areaimg{
		padding-top: 60px;
	}
	.service_areaimg img {
	    margin: 0 auto 60px;
	}
	.service_areaimg p {
	    font-size: 14px;
	}
	.service_areaimg dl {
	    flex-direction: column;
	    row-gap: 30px;
	    max-width: 600px;
	    margin: 90px auto 0;
	}
	.service_areaimg dt {
	    width: 100%;
	    max-width: 126px;
		margin: 0 auto;
	}
	.service_areaimg dd {
	    width: 95%;
		margin: 0 auto;
	    text-align: left;
	    font-weight: bold;
	    margin-bottom: 50px;
	}
	.service_areaimg dd h3{
		margin:0 auto 10px;
	}
	.service_areaimg dd p {
	    font-size: 14px;
	}
	.faqbtn {
	    margin: 60px auto 0;
	    max-width: 420px;
	    border: 3px solid #F19489;
	    padding: 24px 0;
	}
}
/* facility */

.facility{
	max-width: 1295px;
	margin: 0 auto;
	padding-top: 136px;
}
.facility h3{
	position: relative;
	font-size: clamp(18px, 1.95vw, 28px);
	font-weight: bold;
}
.facility h3:not(:first-child){
	margin-top: 55px;
}
.facility h3:before{
	content: "";
	display: inline-block;
	width: 23px;
	height: 23px;
	background-color: #F19489;
	border-radius: 50%;
	vertical-align: middle;
	margin-right: 23px;
} 

.facility_col{
	margin-top: 30px;
	display: flex;
	justify-content: space-between;
	column-gap: 20px;
}
.facility_img{
	width: 31%;
	max-width: 393px;
}
.facility_txt{
	width: 67%;
	max-width: 862px;
	height: 371px;
	background-color: #fff;
	border-radius: 30px;
	padding: 30px 42px 15px 53px;
	position: relative;
}
@media screen and (max-width: 1000px) {

	.facility_txt{
		height: auto;
		padding: 30px 42px 30px 53px;
	}
}
@media screen and (max-width: 768px) {

	.facility {
	    max-width: 600px;
	    margin: 0 auto;
	    padding-top: 100px;
	}
	.facility_col{
		margin-top: 30px;
		flex-direction: column;
		align-items: center;
		row-gap: 30px;
	}
	.facility_img{
		width: 100%;
		max-width: 300px;
	}
	.facility_txt{
		width: 100%;
		max-width: 600px;
		height: auto;
		border-radius: 30px;
		padding: 30px 25px ;
	}


}

.facility_txt h4{
	font-size: clamp(16px, 1.39vw, 20px);
    font-weight: bold;
	margin-bottom: 10px;
	letter-spacing: .05em;
}
.facility_txt p{
	font-size: clamp(14px, 1.12vw, 16px);
	margin-bottom: 20px;
	letter-spacing: .1em;
}
.facility_txt dl{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 63px;
}
.facility_txt dt{
	width: 14%;
	max-width: 85px;
	font-weight: bold;
	letter-spacing: .05em;
	font-size: clamp(16px, 1.39vw, 20px);
	margin-bottom: 15px;
}
.facility_txt dd,.facility_txt dd a{
	color: #000000;
	margin-bottom: 15px;
	letter-spacing: .05em;
	width: 62%;
	font-size: clamp(14px, 1.12vw, 16px);
}
.facility_txt dd a{
	text-decoration: underline;
	display: block;
}
.facility_txt dt:last-child,
.facility_txt dd:last-child{
	margin-bottom: 0;
}

.pdf{
	display: block;
	background-color: #F19489;
	color: #fff;
	text-align: center;
	max-width: 197px;
	width: 80%;
	border-radius: 30px;
	letter-spacing: .1em;
	font-weight: bold;
	padding: 17px 0;
	font-size: clamp(14px, 1.12vw, 16px);
	position: absolute;
	right: 45px;
	bottom: 25px;
}
@media screen and (max-width: 1000px) {

	.facility_txt dl{
		column-gap: 15px;
	}
	.facility_txt dt{
		width: 18%;
	}
	.pdf{
		position: absolute;
		right: 25px;
		bottom: 15px;
	}
}
@media screen and (max-width: 768px) {

	.facility_txt dl{
		row-gap: 10px;
	}
	.facility_txt dt{
		width: 100%;
		max-width: none;
		font-weight: bold;
		letter-spacing: .05em;
		font-size: clamp(16px, 1.39vw, 20px);
		margin-bottom: 0;
	}
	.facility_txt dd,.facility_txt dd a{
		margin-bottom: 0;
		width: 100%;
		font-size: clamp(14px, 1.12vw, 16px);
	}
	.pdf{
		max-width: 197px;
		width: 80%;
		padding: 17px 0;
		position: static;
		margin: 30px auto 0;
	}
}
.service_area02 .service_areaimg img {
    max-width: 333px;
    display: block;
    margin: 0 auto 55px;
}


/*-----------------------
	  障害福祉サービス
-------------------------*/
.service_page02{
	padding-bottom: 200px;
}
.service_page02 .service_sec h2{
	color: #EE8532;
	margin-bottom: 57px;
}
.service_page02 .service_link {
    margin-top: 140px;
}
.service_page02 .service_link ul {
    column-gap: 28px;
}
.service_page02 .service_link ul li {
    width: 25%;
	background-color: #EE8532;
}
.service_page02 .service_link li:nth-of-type(2) {
    background-color: #F4A261;
}
.service_page02 .service_link li:nth-of-type(3) {
    background-color: #FF8B2F;
}
.service_page02 .service_link li:nth-of-type(4) {
    background-color: #EF6E08;
}
.service_page02 .service_area h2 {
    border-left: 37px solid #F4A261;
    background: linear-gradient(94deg, rgba(255, 255, 255, 1) 50%, rgba(251, 239, 210, 1) 100%);
}
.service_page02 .faqbtn {
    border: 5px solid #EE8532;
}
.service_page02 .facility h3:before {
    background-color: #EE8532;
}
.service_page02 .pdf {
    display: block;
    background-color: #EE8532;
}
@media screen and (max-width: 768px) {

	.service_page02 .service_link {
	    margin-top: 150px;
	}
	.service_page02 .service_link ul {
	    column-gap: 15px;
		row-gap: 15px;
		flex-wrap: wrap;
	}
	.service_page02 .service_link ul li {
        width: 45%;
        max-width: 560px;
        border-radius: 15px;
        padding: 20px 0;
    }
	.service_page02 .faqbtn {
	    border: 3px solid #EE8532;
	}
	.service_page02 .service_area h2 {
        padding: 15px 0 15px 20px;
        border-left: 15px solid #EE8532;
        font-size: clamp(22px, 2.499999vw, 36px);
    }
}

.service_area03 {
    padding-top: 236px;
    padding-bottom: 180px;
}
.service_area03 .service_areaimg img {
    max-width: 282px;
    display: block;
    margin: 0 auto 55px;
}
.service_area04 .service_areaimg img {
    max-width: 450px;
    display: block;
    margin: 0 auto 125px;
}
@media screen and (max-width: 768px) {

	.service_area03 {
	    padding-top: 100px;
	    padding-bottom: 150px;
	}
}
.support{
	position: relative;
}
.support h4{
	text-align: center;
	position: absolute;
	left: 50%;
	top: 51%;
	transform: translate(-50%, -50%);
	background-color: #F4A261;
	border-radius: 30px;
	color: #fff;
	font-size: clamp(18px, 1.67vw, 24px);
	letter-spacing: .1em;
	font-weight: bold;
	padding: 30px 46px;
}
.support ul{
	display: flex;
	justify-content: space-between;
	max-width: 1300px;
	margin: 0 auto;
	flex-wrap: wrap;
	column-gap: 32px;
	row-gap: 37px;
}
.support ul li{
	width: 48.1%;
	max-width: 634px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	border-radius: 50px;
	padding: 48px 5px;
	height: 327px;
}
.support ul li h3{
	font-size: clamp(18px, 1.67vw, 24px);
    letter-spacing: .1em;
}
.support ul li p{
	font-size: clamp(14px, 1.12vw, 16px);
    letter-spacing: .1em;
	line-height: 2;
}
@media screen and (max-width: 900px) {

	.support ul li{
		width: 47%;
		height: 350px;
	}
}

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

	.service_area04 .service_areaimg img {
	    max-width: 450px;
	    display: block;
	    margin: 0 auto 80px;
	}
	.support h4{
		position: static;
		transform: none;
		padding: 20px 10px;
		margin-bottom: 30px;
	}
	.support ul{
		flex-direction: column;
		max-width: 1300px;
		margin: 0 auto;
		flex-wrap: wrap;
		column-gap: 32px;
		row-gap: 37px;
	}
	.support ul li{
		width: 95%;
		margin: 0 auto;
		max-width: 634px;
		padding: 48px 25px;
		height: auto;
	}
	.support ul li h3{
		margin-bottom: 15px;
	}
}

.service_area04 .faqbtn{
	margin-top: 118px;
}
.service_area04{
	padding-bottom: 150px;
}
.service_area05 .service_areaimg img {
    max-width: 302px;
    display: block;
    margin: 0 auto 93px;
}
.service_area05 .service_areaimg dl{
	margin-top: 135px;
	max-width: 1090px;
}
.service_area05 .service_areaimg dt {
    background-color: #FF8B2F;
}
.service_area05 .faqbtn {
    margin-top: 140px;
}
.l_read{
	margin-top: 164px;
}
.service_area05 .facility {
    padding-top: 160px;
}
.service_area06 .service_areaimg img {
    max-width: 225px;
    display: block;
    margin: 0 auto 98px;
}
.service_area06 .faqbtn {
    margin-top: 68px;
}

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

	.service_area04 .faqbtn{
		margin-top: 60px;
	}
	.service_area04{
		padding-bottom: 50px;
	}
	.service_area05 .service_areaimg dl {
	    margin-top: 60px;
	}
	.l_read {
	    margin-top: 64px;
	}
	.service_area05 .faqbtn {
	    margin-top: 60px;
	}
	.service_area05 .facility {
	    padding-top: 100px;
	}
	.service_area06 .faqbtn {
	    margin-top: 60px;
	}
	.service_page02 {
	    padding-bottom: 100px;
	}
}
/*-----------------------
	    basic
-------------------------*/

.basic_contents {
    padding-top: 230px;
    background-color: rgba(253, 235, 191, .6);
}
.policy_area {
    font-family: "Zen Maru Gothic", serif;
	padding-bottom: 230px;
}
.policy_area h2 {
    font-size: 16px;
	margin-bottom: 26px;
	font-weight: bold;
}
.policy_area h2:not(:first-child) {
	margin-top: 120px;
}
.policy_area p {
    font-size: 16px;
	margin-bottom: 33px;
	font-weight: bold;
	line-height: 1.8;
	padding-left: 35px;
}
@media screen and (max-width: 768px){

	.basic_contents {
	    padding-top: 150px;
	    background-color: rgba(253, 235, 191, .6);
	}
	.policy_area h2:not(:first-child) {
		margin-top: 60px;
	}
	.policy_area p {
	    font-size: 14px;
		margin-bottom: 20px;
		padding-left: 20px;
	}
	.policy_area {
	    padding-bottom: 130px;
	}
}

/*-----------------------
	    お問い合わせ
-------------------------*/
.contact_area{
	padding-bottom: 375px;
}
.contact_area p{
	font-size: clamp(13px, 1.666666vw, 24px);
	font-weight: bold;
	font-family: "Zen Maru Gothic", serif;
	line-height: 1.8;
	letter-spacing: .1em;
}
.contact_area p a{
	color: #000000;
	text-decoration: underline;
}
.flee-form{
	width: 95%;
	max-width: 1120px;
	margin: 0 auto;
	margin-top: 130px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.required{
	display: inline-block;
	color: #FF8E9B;
	line-height: 1;
	font-size: clamp(14px, 1.666666vw, 24px);
	font-weight: bold;
}

.flee-form dt{
	font-weight: bold;
	font-size: clamp(16px, 1.666666vw, 24px);
	padding-bottom: 35px;
	text-align: left;
	width: 23%;
	max-width: 270px;
	border-bottom: 3px solid #000000;
	padding: 60px 0;
	display: flex;
	align-items: center;
	background-color: #F19489;
	word-break: keep-all;
	padding-left: 30px;
	color: #fff;
	font-family: "Zen Maru Gothic", serif;
}
.flee-form dt:nth-of-type(9),
.flee-form dt:nth-of-type(14){
	align-items: flex-start;
}
.flee-form dd{
	width: 77%;
	padding: 30px 0;
	border-bottom: 3px solid #000000;
	font-family: "Zen Maru Gothic", serif;
	
}
.flee-form dd:not(:last-child){
	display: flex;
	justify-content: center;
	align-items: center;
}
.flee-form textarea{
	height: 228px;
}
.flee-form dd:last-child{
	padding: 60px 0;
}
@media screen and (max-width: 768px) {

	.contact_area {
	    padding-bottom: 200px;
	}
	.flee-form{
		width:100%;
		max-width: 1150px;
		margin-top: 50px;
	}
	.flee-form dt{
		font-size: 16px;
        width: 100%;
        max-width: none;
        border-bottom: none;
        padding: 15px 15px;
        justify-content: flex-start;
	}
	.flee-form dd{
		width: 100%;
        max-width: none;
        margin-bottom: 20px;
        padding: 20px 0;
        border-bottom: none;
	}
	.flee-form dd:last-child {
		padding: 30px 0;
	}
	.flee-form textarea{
		height: 150px;
	}
	
}


input[type="text"],
input[type="email"],
input[type="tel"],
textarea,select{
	font-size:  clamp(14px, 1.666666vw, 24px);
	padding: 15px 16px 15px 20px;
	width: 95%;
	max-width: 700px;
	border: 1px solid #000000;
	display: block;
	margin: auto;
}
.fxbox{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	column-gap: 30px;
}
.fxbox > div{
	width: 45%;
	max-width: 334px;
}
.fxbox > div input{
	width: 100%;
}

.wpcf7-submit {
	font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(16px, 1.666666vw, 24px);
    display: block;
    margin: 0 auto;
    margin-top: 135px;
    width: 90%;
    max-width: 700px;
    color: #fff;
    font-weight: bold;
    border: none;
    padding: 32px 0;
    background-color: #F19489;
    transition: all .5s;
    cursor: pointer;
    border-radius: 50px !important;
}
.wpcf7-form-control-wrap {
    position: relative;
    width: 100%;
}
.wpcf7-submit:hover{
	color: #F19489;
	background-color: #fff;
}

.wpcf7-spinner{
	display: none !important;
}

.checkarea{
    max-width: 700px;
	margin: 0 auto;
}
span.wpcf7-list-item-label {
    font-weight: bold;
    font-size: 16px;
}
.checkarea .policy_check{
	display: block;
	padding-left: 6%;
	margin-top: 20px;
	color: #F19489;
	text-decoration: underline;
	font-size: 16px;
	font-weight: bold;
	    font-family: "Noto Sans JP", sans-serif;
}
.checkarea input[type="checkbox"] {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    margin: 0;
    margin-top: -2px;
    margin-right: 10px;
}
@media screen and (max-width: 768px) {
	
	input[type="text"],
	input[type="email"],
	input[type="tel"],
	textarea,select{
		font-size: 14px;
		padding: 12px 16px;
	}
	.fxbox {
		column-gap: 10px;
	}
	.checkarea input[type="checkbox"] {
	    width: 15px;
	    height: 15px;
	    vertical-align: middle;
	    margin: 0;
	    margin-top: -4px;
	    margin-right: 0;
	}
	.checkarea .policy_check{
		font-size: 14px;
	}
	.wpcf7-submit {
	    margin-top: 40px;
	    padding: 20px 0;
	}
	
}

input[type="text"]::placeholder ,
input[type="email"]::placeholder ,
input[type="tel"]::placeholder ,
textarea::placeholder{
	font-size:  clamp(14px, 1.666666vw, 24px);
	font-weight:bold; 
  color: #858585;
}
/* Microsoft Edge */
input[type="text"]::-ms-input-placeholder ,
input[type="email"]::-ms-input-placeholder ,
input[type="tel"]::-ms-input-placeholder ,
textarea::-ms-input-placeholder {
	font-size:  clamp(14px, 1.666666vw, 24px);
	font-weight:bold; 
  color: #858585;
}

/* Internet Explorer */
input[type="text"]:-ms-input-placeholder ,
input[type="email"]:-ms-input-placeholder ,
input[type="tel"]:-ms-input-placeholder ,
textarea:-ms-input-placeholder {
	font-size:  clamp(14px, 1.666666vw, 24px);
	font-weight:bold; 
  color: #858585;
}

@media screen and (max-width: 768px) {
	input[type="text"]::placeholder ,
	input[type="email"]::placeholder ,
	input[type="tel"]::placeholder ,
	textarea::placeholder{
		font-size: 13px;
	}
	/* Microsoft Edge */
	input[type="text"]::-ms-input-placeholder ,
	input[type="email"]::-ms-input-placeholder ,
	input[type="tel"]::-ms-input-placeholder ,
	textarea::-ms-input-placeholder {
		font-size: 13px;
	}

	/* Internet Explorer */
	input[type="text"]:-ms-input-placeholder ,
	input[type="email"]:-ms-input-placeholder ,
	input[type="tel"]:-ms-input-placeholder ,
	textarea:-ms-input-placeholder {
		font-size: 13px;
	}
	
}




/*-----------------------
    会社概要
-------------------------*/
.corporate_page{
	padding-top: 177px;
	    padding-bottom: 495px;
}
.messe_ttl{
	width: 95%;
	max-width: 1204px;
	margin: 0 auto;
	border-radius: 50px;
}
.messe_ttl img{
	border-radius: 50px 50px 0 0 ;
}
.messe_ttl h2{
	font-family: "Zen Maru Gothic", serif;
	text-align: center; 
	font-size: clamp(18px, 1.67vw, 24px);
	background-color: #fff;
	border-radius: 0 0 50px 50px ;
	padding: 54px 0 72px;
}

.messe_txt{
	margin-top: 76px;
}
.messe_txt p{
	font-size: 16px;
	font-weight: bold;
	font-family: "Zen Maru Gothic", serif;
	line-height: 1.9;
}
.messe_txt_r{
	text-align: right;
	font-size: 20px;
	margin-top: 27px;
}


.corporate_messe2{
	width: 98%;
	padding-top: 197px;
	max-width: 1395px;
	margin: 0 auto;
}

.corporate_messe2 h3 {
    font-family: "Zen Maru Gothic", serif;
	margin-top: 102px;
	margin-bottom: 100px;
    padding: 20px 0 20px 50px;
    font-size: clamp(18px, 1.67vw, 24px);
    font-weight: bold;
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(251,239,210,1) 100%);
}
.corporate_messe2 dl{
	width: 90%;
	max-width: 814px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	font-family: "Zen Maru Gothic", serif;
}
.corporate_messe2 dt{
	text-align: center;
	font-weight: bold;
	width: 28%;
	max-width: 225px;
	padding-top:30px;
	padding-bottom:30px;
	border-bottom: 1px solid #959595;
	color: #959595;
	font-size: clamp(14px, 1.67vw, 24px);
	display: flex;
	justify-content: center;
	align-items: center;
}
.corporate_messe2 dd{
	font-size: 16px;
	width: 72%;
	padding-top:30px;
	padding-bottom:30px;
	border-bottom: 1px solid #959595;
	padding-left: 50px;
	display: flex;
	align-items: center;
}

@media screen and (max-width: 768px) {
	.corporate_page {
	    padding-top: 130px;
	    padding-bottom: 150px;
	}

	.messe_txt {
	    margin-top: 40px;
	}
	.messe_ttl img {
	    border-radius: 20px 20px 0 0;
	}
	.messe_ttl h2 {
	    font-size: clamp(18px, 1.67vw, 24px);
	    background-color: #fff;
	    border-radius: 0 0 20px 20px;
	    padding: 20px 0 25px;
	}
	.corporate_messe2 {
	    width: 95%;
	    padding-top: 120px;
	    max-width: 1395px;
	    margin: 0 auto;
	}
	.corporate_messe2 h3 {
	    margin-top: 70px;
	    margin-bottom: 70px;
	    padding: 20px 0 20px 15px;
	    font-size: clamp(18px, 1.67vw, 24px);
	    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(251,239,210,1) 100%);
	}
	.corporate_messe2 dl{
		width: 95%;
		max-width: 814px;
		border-top: 1px solid #959595;
	}
	.corporate_messe2 dt{
		width: 100;
		max-width: none;
		justify-content: flex-start;
		padding-top:30px;
		padding-bottom:0;
		border-bottom: none;
		font-size: 16px;
		padding-left: 10px;
	}
	.corporate_messe2 dd{
		font-size: 16px;
		width: 100%;
		padding-top:15px;
		padding-bottom:30px;
		padding-left: 10px;
	}
}


.corporate_cta{
	width: 90%;
	background-image: url(../img/com_03.png);
	background-size: cover;
	max-width: 1320px;
	margin: 220px auto 0;
	border-radius: 30px;
	text-align: center;
	padding: 90px 0 76px;
	font-family: "Zen Maru Gothic", serif;
}
.corporate_link{
	display: flex;
	justify-content: space-between;
	width: 90%;
	max-width: 1238px;
	margin:45px auto 0;
	column-gap: 15px;
}
.corporate_cta h2{
	font-size: clamp(20px, 2.47vw, 36px);
	font-weight: bold;
}
.link_l,.link_r{
	width: 48%;
	max-width: 588px;
}
.link_l h3,.link_r h3{
	background-color: #FAE5D5;
	border-radius: 30px;
	font-size: clamp(20px, 2.47vw, 36px);
	font-weight: bold;
	padding: 63px 15px;
}
.link_r h3{
	background-color: #FDEBBF;
}
.corporate_link ul{
	margin-top: 53px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	column-gap: 23px;
	row-gap: 17px;
}
.corporate_link ul li{
	width: 45%;
	max-width: 258px;
	background-color: #F19489;
	border-radius: 20px;
	padding: 20px 10px;
}
.corporate_link ul li a{
	display: block;
	color: #fff;
	font-size: clamp(14px, 1.67vw, 24px);
}
@media screen and (max-width: 768px) {

	.corporate_cta{
		margin-top: 90px;
		padding-top: 70px;
		border-radius: 15px;
		background-position: 70%;
	}
	.corporate_cta img{
		border-radius: 15px;
	}
	.corporate_link{
		flex-direction: column;
		align-items: center;
		width: 100%;
		max-width: 1238px;
		margin:45px auto 0;
		row-gap: 70px;
	}
	.link_l h3, .link_r h3 {
	    font-size: 18px;
	    border-radius: 15px;
	    padding: 30px 15px;
	}
	.link_l,.link_r{
		width: 85%;
		max-width: 400px;
	}
	.corporate_link ul{
		margin-top: 20px;
		flex-direction: column;
		align-items: center;
		row-gap: 17px;
	}
	.corporate_link ul li{
		width: 90%;
		max-width: 200px;
		padding: 20px 10px;
	}
}
.corporate_link .link_l li:nth-of-type(2){
	background-color: #F9CEC9;
}
.corporate_link .link_r li{
	background-color: #EE8532;
}
.corporate_link .link_r li:nth-of-type(2){
	background-color: #F4A261;
}
.corporate_link .link_r li:nth-of-type(3){
	background-color: #FF8B2F;
}
.corporate_link .link_r li:nth-of-type(4){
	background-color: #EF6E08;
}
/*-----------------------
    よくある質問
-------------------------*/
.qa_area{
	font-family: "Zen Maru Gothic", serif;
}
.qa_page{
	padding-top: 80px;
	padding-bottom: 250px;
}
#faq01{
	padding-top: 100px;
}
.qa_page .corporate_cta{
	margin-top: 410px;
}
/* .qa_area:not(:first-child){
	padding-top: 100px;
} */
.qa_area h2{
	    font-size: clamp(20px, 2.778vw, 40px);
    font-weight: bold;
}
.accordion{
	max-width: 1250px;
	margin: 63px auto 150px;
}
.accordion-title {
  color: #fff;
  cursor: pointer;
  text-align: center;
  font-size: clamp(16px, 1.67vw, 24px);
  padding: 37px 20px;
  background-color: #F19489;
  margin-bottom: 23px;
}
.qa_area03 .accordion-title,
.qa_area04 .accordion-title,
.qa_area05 .accordion-title,
.qa_area06 .accordion-title {
  background-color: #EE8532;
}
.accordion-content {
  display: none;
  padding: 30px 20px 107px;
}
.accordion-content p {
  font-size: 16px;
      line-height: 2;
    font-weight: bold;
    max-width: 950px;
	width: fit-content;
	margin: 0 auto;
	padding-bottom: 20px;
}
.accordion-content p:last-child{
	padding-bottom: 0;
}

/* 矢印 */
.accordion-title {
  position: relative;
}
.accordion-title::after {
  border: 18px solid transparent;
  border-top: 30px solid #fff;
  content: "";
  display: block;
  height: 8px;
  position: absolute;
  right: 25px;
  top: 60%;
	transform: translateY(-50%);
  transition: transform .3s ease-in-out, top .3s ease-in-out;
  width: 8px;
}
/* .accordion-title.open::after {
  top: 45%;
  transform: rotate(-45deg);
} */
@media screen and (max-width: 768px) {

	.qa_page{
		padding-top: 80px;
		padding-bottom: 150px;
	}
	#faq01{
		padding-top: 50px;
	}
	.qa_page .corporate_cta{
		margin-top: 90px;
	}
	.qa_area:not(:first-child){
		padding-top: 50px;
	}

	.accordion{
		max-width: 1250px;
		margin: 40px auto 50px;
	}
	.accordion-title {
	  text-align: left;
	  font-size: clamp(16px, 1.67vw, 24px);
	  padding: 15px 34px 15px 13px;
	  margin-bottom: 23px;
	}
	.accordion-content {
	  display: none;
	  padding: 0 20px 40px;
	}
	.accordion-content p {
	  font-size: 14px;
	}
	
	/* 矢印 */
	.accordion-title::after {
	  border: 8px solid transparent;
	  border-top: 12px solid #fff;
	  content: "";
	  display: block;
	  height: 8px;
	  position: absolute;
	  right: 10px;
	  top: 60%;
		transform: translateY(-50%);
	  transition: transform .3s ease-in-out, top .3s ease-in-out;
	  width: 8px;
	}
}


/* フェードイン(初期値) */
.js-fadeUp {
  opacity: 0; /* 最初は非表示 */
  transform: translateY(30px); /* 下に30pxの位置から */
  transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
}
/* フェードイン(スクロールした後) */
.js-fadeUp.is-show {
  opacity: 1; /* 表示領域に入ったら表示 */
  transform: translateY(0); /* 30px上に移動する */
  transition-delay: .5s; /* フェード開始を0.5秒遅らせる */
}



