@charset "UTF-8";
/* CSS Document */

/* width960px以下非表示*/
@media (min-width: 960px){
	.tbsp{
		display: none !important;}
}
@media (min-width: 768px){
	.sp_only{
		display: none!important;}
	}

/* all */
body{
	color: #1a1a1a;
	background-color: #fff;
	font-family: a-otf-ud-shin-go-pr6n, sans-serif;
}
p{
	font-size: 1em;
	line-height: 180%;
}
a{
	text-decoration-line: none;
}
a:link{
	text-decoration: none;
}
ul li{
	list-style: none;
}
/* 幅調整　*/
.w1800{
	width: 100%;
	max-width: 1800px;
	margin: 0 auto;
}
.w1200{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
.w960{
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
}
/* 余白調整　*/
.h30{
	height: 30px;
}
.h50{
	height: 50px;
}
.h100{
	height: 100px;
}
.p01{
	padding: 1em;
}
/* 背景　*/
.bg_w{
	background-color: rgba(255,255,255,0.75);
	padding: 20px;
}
.bg_w_in{
	background-color: rgba(255,255,255,0.75);
	padding: 20px;
	border-radius: 15px;
}
.bg_g{
	background-color: #f8f4e6;
}
.bg_g_in{
	background-color: #f8f4e6;
	padding: 20px;
	border-radius: 15px;
}
.bg_gr{
	background-color:rgba(180,217,93,0.5);
}
.bg_001{
	background:url("../img/bg_img03.png") ;
	background-repeat: no-repeat;
	background-size: 400px;
	background-position: top right;
}

/* 見出し==================== */
.txt_lv02{
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
	color: #1a1a1a;
	font-size: 1.8rem;
	padding-left: 1.8em;
	margin-bottom: 20px;
	background: url("../img/icon02.png") no-repeat;
	background-size: auto 1em;
	background-position: left top 0.4em;
}
.txt_lv03{
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
	font-size: 1.2em;
}
.txt_lv03 span{
	background:#b4d95d;
	padding: 0.5em;
}
.txt_lv04{
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
	font-size: 1.2em;
	border-bottom: solid 3px #b4d95d;
	margin-bottom: 15px;
}

/* 強調部分==================== */
.emphasis{
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
	background:linear-gradient(transparent 60%, #fff3b8 60%);
}
/* ボタン　================================================== */
.button_wrap{
	width: 250px;
	margin: 0 0 0 auto;
}

.button_01{
	display: inline-block;
	text-align: center;
	width: 100%;
	background: linear-gradient(90deg, rgba(180,217,93,1) 0%, rgba(90,192,92,1) 80%, rgba(0,167,91,1) 100%);
	color: #fff;
	padding: 0.5em;
	position: relative;
	font-size: 1.1em;
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
	border-radius: 50px;
	transition: .5s;
}
.button_01::after{
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: "\f105";
	position: absolute;
	top: calc(50% - 0.5em);
	right: 15px;
	transition: .5s;
}
.button_01:hover{
	background: linear-gradient(90deg, rgba(180,217,93,1) 0%, rgba(90,192,92,1) 20%, rgba(0,167,91,1) 100%);
	color: #fff;
}
.button_01:hover::after{
	right: 10px;
	transition: .5s;
}
.button_01 a{
	color: #fff;
}
.button_wrap_contact{
	max-width: 500px;
	margin: auto;
}

.button_wrap2{ /* */
	 width: 100%;
	padding: 15px;
}
.button_wrap2 .button_01{
	margin-bottom: 20px;
}

/* Loading背景画面設定　*/
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background:#f8f4e6;
	text-align:center;
}

/* Loading画像中央配置　*/
#splash_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
	width: 90%;
	max-width:300px;
}

header{
	position: relative;
	width: 100%;
	z-index: 9000;
}
.site-header{
	background-color:rgba(255,255,255,0.0);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(24px);
    display: flex;
    position: fixed;
    flex-direction: column;
	justify-content: center;
	align-items:center;
    transition: .5s;
    width: 100%;
	height: 140px;
	border-radius: 0 0 50px 50px;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}
.site-header.transform{
    background: rgba(255,255,255,1.0);
	height: 70px;

}
.site-header .title_wrap{
	display: flex;
	width: 100%;
	max-width: 1600px;
	justify-content: space-between;
	align-items: flex-start;
}
.site-header.transform .title_wrap{
	display: none;
}
.site-header h1{
	position: relative;
	transition: .5s;
	font-size: 2.5rem;
	vertical-align: middle;
	color: #1a1a1a;
	margin-left: 10px;
}

.site-header h1 img.logo{
	width: auto;
	height: 60px;
	margin-top: 5px;
}
.site-header h1 a{
	color: #1a1a1a;
}
.header_phone{
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
}
.header_phone h2{
	text-align: right;
	display: inline-block;
	font-size: 1.8em;
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
	line-height: 100%;
	margin-right: 30px;
	padding: 0.5em 0;
	text-shadow: 2px 2px #fff,2px -2px 1px #fff,-2px 2px 1px #fff,-2px -2px 1px #fff,2px 0 1px #fff, 0 2px 1px #fff,-2px 0 1px #fff, 0 -2px 1px #fff;
	color:#1a1a1a;
}
.header_phone h2 a{
	display: inline-block;
	color: #1a1a1a;
	width: 100%;
	height: 100%;
	transition:all .5s;
}
.header_phone h2 :hover{
	color: #00a75b;
}
.header_phone h3{
	display: inline-block;
	width: 200px;
	text-align: center;
	font-size: 1.2em;
	line-height: 100%;
	margin-right: 30px;
	transition:all .5s;
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
	border-radius: 0 0 30px 30px;
}
.header_phone h3 a{
	display: inline-block;
	width: 100%;
	padding: 1em 0;
	border-radius: 0 0 30px 30px;
	background: linear-gradient(90deg, rgba(180,217,93,1) 0%, rgba(90,192,92,1) 80%, rgba(0,167,91,1) 100%);
	color: #fff;
	transition:all .5s;
}
.header_phone h3 :hover{
	background: linear-gradient(90deg, rgba(180,217,93,1) 0%, rgba(90,192,92,1) 20%, rgba(0,167,91,1) 100%);
	color: #fff;
	transition:all .5s;
}
.nav_wrap{
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.site-header .top_nav{
	height: 70px;
}

header nav ul{
	list-style: none;
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 1200px;
	margin: auto;
}
header nav ul li{
	margin: auto;
	padding: 0 1em;
	margin-left: 15px;
	padding-top: 20px;
	line-height: 200%;
	font-size:1.3em;
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
	position: relative;
	overflow: hidden;
	text-shadow: 2px 2px #fff,2px -2px 1px #fff,-2px 2px 1px #fff,-2px -2px 1px #fff,2px 0 1px #fff, 0 2px 1px #fff,-2px 0 1px #fff, 0 -2px 1px #fff;
}
header nav ul li a{
	display: block;
	width: 100%;
	height: 100%;
	color: #1a1a1a;
}

header nav ul li ::before{
	content: '';
	position: absolute;
	top: 30px;
	left: 50%;
	transform: translateX(-50%);
	width: 30px;
	height: 30px;
	background: url("../img/icon01.png");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	transition: .5s;
	text-shadow: none;
}
header nav ul li a:hover{
	color: #85994d;
}
header nav ul li:hover ::before{
	top: 0;
	opacity: 1;
}


/* スライダー内 ======================================== */
.slide_txt{
	position: absolute;
	top: 70%;
	left: 50px;
	transform: translateY(-50%);
	width: calc(100% - 50px);
	z-index: 2;
}
.slide_txt h2{
	color: #fff;
	font-size: 2.5rem ;
	font-family: ibm-plex-sans-jp, sans-serif;
	text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}
img.sp-layer{

}
.slide_frame{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 1;
	background-color: rgba(0,0,0,0.05);
	background-image: url("../img/waku_lb.png"),url("../img/waku_rb.png");
	background-repeat: no-repeat;
	background-position: left bottom,right bottom;
	background-size: auto;
}

/* 新着情報　======================================== */
.contents_news{
	width: 100%;
	margin: auto;
	color: #1a1a1a;
}
.news{
	width: calc(100% - 40px);
	max-width: 1200px;
	margin: auto;
	padding: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 20px;
	
}
.news h3{
	color:#1a1a1a;
	font-size: 1.5em;
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
	line-height: 100%;
}
.news h3 span{
	color:#b4d95d;
	font-size: 80%;
}
.news_in{
	height: 80px;
	width: calc(100% - 150px);
	overflow: auto;
	padding-left: 20px;
}

/* コンテンツ
   ========================================================================== */

.border_line{
	width: 100%;
}
.border_line img{
	width: 100%;
	display: block;
}
.contents{

}

.contents_in{
	padding: 50px 10px;
}
.contents_half_l{
	width: 55%;
	margin:0 auto 0 0;
	padding: 20px;
}
.contents_half_r{
	width: 55%;
	margin:0 0 0 auto;
	padding: 20px;
}
.exp_wrap{
	margin-bottom: 30px;
}
.exp_wrap p{
	padding: 1em;
	border:solid 3px #b4d95d;
}



/* Greeting ======================================== */
/* 挨拶　==================== */
.greeting_wrap{
	width: 100%;
	padding: 50px 0;
	background: url("../img/bg_img01.png");
	background-position: bottom right;
	background-repeat: no-repeat;
	background-color: #fff;
}
.left_wrap{
	background: rgba(255,255,255,0.65);
	width: calc((100% - 1200px) / 2 + 1200px );
	min-width: 960px;
	margin-bottom: 50px;
	border-radius: 0 50px 50px 0;
}
.right960{
	width: calc(100% - 50px);
	max-width: 1150px;
	margin: 0 0 0 auto;
	padding: 50px 20px 50px 0;
}

.greeting h2{
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
	color: #1a1a1a;
	font-size: 1.8rem;
	margin-bottom: 20px;
	background: url("../img/icon01.png") no-repeat;
	background-size:auto 1em;
	background-position: left top 0.5em;
	padding-left: 2em;
}
.greeting p{
	line-height: 200%;
	margin-bottom: 1em;
}
.greeting p span{
	font-size: 120%;
	color: #00a75b;
}
.bg_img02{
	background: url("../img/slide02.jpg");
	background-repeat: no-repeat;
	background-position: left top;
	background-size: cover;
	border-radius:20px 0 0 20px ;
}


/*　コンテンツtype01 ======================================== */
.contents_type01{
	max-width: 1200px;
	margin: auto;
}
.flex_contents{
	width:100%;
	margin: 0 auto 30px;
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
}
.flex_contents .img{
	width: clamp(280px,30%,400px);
	padding: 10px;
}
.flex_contents .img img{
	width: 100%;
	height: 250px;
	object-fit:contain;
	align-self: center;
	border-radius: 15px;
}
.flex_contents .txt{
	align-self: stretch;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex: 1;
	padding: 10px;
	
}
.contents_type01 h3{
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
	color: #1a1a1a;
	border-top: solid 1px #1a1a1a;
	border-bottom: solid 1px #1a1a1a;
	font-size: 1.8em;
	margin-bottom: 15px;
	padding-left: 5px;
}
.contents_type01 p i{
	color: #ebae3d;
}
/*　コンテンツ02 ======================================== */
.flex_contents02{
	display: flex;
	margin: 30px auto;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
}
.flex_contents02 figure{
	width: calc(100% / 3 - 30px);
	margin: 15px;
	align-self: stretch;
}
.flex_contents02 figure h3{
	font-size: 1.3em;
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
	color: #1a1a1a;
	text-align: center;
}
.flex_contents02 figure img{
	width: 100%;
	border-radius: 20px;
}

.recruit_wrap{
	display: flex;
	align-items: center;
}
.recruit_wrap div{
	width: 100%;
	max-width: 600px;
	padding: 10px;
}
.recruit_wrap .img img{
	width: 100%;
	max-width: 450px;
	display: block;
	margin: auto;
}
.recruit_wrap .txt{
	padding: 0 15px;
}
.recruit_wrap .txt h3{
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
	font-size: 1.4em;
}

.rec_li{
	padding-left: 1em;
	font-size: 1.2em;
}
.rec_li li{
	margin-bottom: 0.5em;
	border-bottom: solid 3px #b4d95d;
}
.rec_li li i{
	color: #e065a9;
}
.catch_rec{
	color:#00a75b;
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
	font-size: 4rem;
}

/* リンクコンテンツ ======================================== */

.contents_link {
	max-width: 1000px;
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
	margin: auto;
	padding: 50px 0;
}
figure.effect-chico{
	display: block;
	position: relative;
	max-width: 480px;
	height: 250px;
	width: 48%;
	background: #000;
	overflow: hidden;
	border-radius: 20px;
	margin-bottom: 20px;
}
figure.effect-chico img {
	display: block;
	min-height: 100%;
	max-width: 100%;
	object-fit: cover;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(1.12);
	transform: scale(1.12);
	opacity: 0.9;
}

figure.effect-chico:hover img {
	opacity: 0.5;
	-webkit-transform: scale(1);
	transform: scale(1);
}

figure.effect-chico figcaption {
	width: 100%;
	padding: 3em;
	position: absolute;
	top:0;
	left: 0;
	bottom: 0;
	right: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

figure.effect-chico figcaption::before {
	position: absolute;
	top: 30px;
	right: 30px;
	bottom: 30px;
	left: 30px;
	border: 1px solid #fff;
	border-radius: 20px;
	content: '';
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

figure.effect-chico figcaption::before,
figure.effect-chico p {
	color: #fff;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}

figure.effect-chico h4 {
	position: absolute;
	left: 40px;
	top:20%;
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
	font-size: 2em;
	color: #fff;
	text-shadow: 2px 2px #1a1a1a;
}

figure.effect-chico h5{
	position: absolute;
	color: #fff;
	left: 40px;
	top:45%;
	font-size: 1rem;
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
}

figure.effect-chico p {
	position: absolute;
	bottom: 40px;
	right: 40px;
	font-size: 0.9em;
	margin: 0 auto;
	text-align: right;
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
}

figure.effect-chico:hover figcaption::before,
figure.effect-chico:hover p {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}
figure.effect-chico a{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



/* フッター部分　================================================== */
footer{
	background-image: url("../img/bg_img02.png");
	background-position: top left;
	background-size: 500px;
	margin: 0;
}
footer nav{
	max-width: 800px;
	margin: auto;
}
footer nav ul{
	display: flex;
	justify-content: center;
	align-items: center;
}
footer nav ul li{
	font-size: 1em;
	padding: 1em;
	text-align: center;
}
footer nav ul li a{
	color: #1a1a1a;
	padding-bottom: 10px;
	transition:all .5s ease-in;
}
footer nav ul li a::before{
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f0da';
	padding: 5px;
}
footer nav ul li a:hover{
	color: #0053a6;
	transition:all .5s ease-in;
}


footer h2{
	text-align: center;
	font-size: 3em;
}
footer h2 a{
	color: #1a1a1a;
}
footer h2 img{
	width: 250px;
	padding: 10px;
}
.footer_in{
	max-width: 960px;
	margin: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 30px 10px 50px;
}

.footer_in p{
	line-height: 200%;
}

.address{
	font-family: ibm-plex-sans-jp, sans-serif;
	Font-weit: 700;
	text-align: center;
	font-size:1.4em;
	padding: 10px 0;
}
.address a{
	color: #1a1a1a;
}
.address a:hover{
	color: #b4d95d;
	transition:all .5s ease-in;
}
.footer_btn{
	display: flex;
	align-items: flex-start;
	margin-bottom: 30px;
}
.footer_btn li{
	position: relative;
	background: #b4d95d;
	margin: 1em;
	width: 250px;
	line-height: 3em;
	vertical-align: middle;
	text-align: center;
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
}
.footer_btn li img{
	width: 1em;
	vertical-align: middle;
}
.footer_btn li a{
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 250px;
	height: 3em;
	color: #fff;
	background: linear-gradient(90deg, rgba(180,217,93,1) 0%, rgba(90,192,92,1) 80%, rgba(0,167,91,1) 100%);
	border-radius: 50px;
	transition: .5s;
}
.footer_btn li a:hover{
	background: linear-gradient(90deg, rgba(180,217,93,1) 0%, rgba(90,192,92,1) 20%, rgba(0,167,91,1) 100%);
}
footer small p{
	color: #fff;
	text-align: center;
	padding: 15px;
	background: #1a1a1a;
}
.line_gray{
	display: block;
	width: 100%;
}


/* サブページタイトル 
   ========================================================================== */
.subtitle{
	display: block;
	width: 100%;
	height: 350px;
	background-size: cover;
	background-color: #ccc;
	position: relative;
}
.subtitle h2{
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
	color:#333;
	line-height: 100%;
	position: absolute;
	top:60%;
	left: 0;
	width: 100%;
	text-align: center;
	font-size:2.5em;
	text-shadow: 2px 2px 5px rgba(255,255,255,0.3);
}

.sub_bg{
	background:linear-gradient(to right,rgba(196,237,195,0.5),rgba(109,213,250,0.5),rgba(255,255,255,0.5)),
		 url("../img/bg_img03.png");
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: center,top right;
	background-size:cover,auto 95%;
	border-radius: 0 0 50px 50px;
}

/*パンくずリスト
==========================================================================*/
.breadcrumb-box{
	width: 90%;
	display: inline-block;
	margin: 0 auto;
	padding-top: 10px;
	position: absolute;
	bottom: 30px;
	left: 100px;
}
.breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li {
  display: inline;/*横に並ぶように*/
  list-style: none;
}

.breadcrumb li:after {/* >を表示*/
  content: '>';
  padding: 0 0.2em;
  color: #333;
}

.breadcrumb li:last-child:after {
  content: '';
}

.breadcrumb li a {
  text-decoration: none;
  color: #333;
}

.breadcrumb li a:hover {
  color: #5e96eb;
}
/* サブページコンテンツ
   ========================================================================== */
/* 見出し　==================== */
.sub h2{
	font-size: 2rem;
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
	color: #1a1a1a;
}


/* table ============================== */
.line02{
	padding: 20px;
	font-size: 1.1rem;
}
.line02 table {
	border-collapse: collapse;
    border-spacing:0;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
.line02 table th{
	border-bottom: solid 2px #b4d95d;
	padding: 1em;
	width: 180px;
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
}
.line02 table td{
	border-bottom: solid 2px #ccc;
	padding: 1em;
}

/* Map ============================== */
.map{
	padding: 20px;
}
/* カード横並び ============================== */
.card01{
	padding: 30px;
}
.card01 ul{
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
}
.card01 ul li{
	width: calc(100% / 4 - 20px);
	padding: 40px 20px;
	text-align: center;
	vertical-align: middle;
	margin: 10px;
	background:#f8f4e6;
	border-radius: 50px;
	font-size: 1.1em;
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
}
.card01 ul li span{
	display: inline-block;
}
/* スタッフ ============================== */
.staff_wrap{
	display: flex;
	flex-wrap: wrap;
	background: url("../img/cut02.png") no-repeat;
	background-position: bottom right;
	padding-bottom: 100px;
}
.staff_wrap figure{
	width: calc(100% / 3 - 20px);
	padding: 15px;
	text-align: center;
	background:#fff;
	border-radius: 10px;
	margin:10px;
}
.staff_wrap figure img{
	width: 280px;
	height: 280px;
	object-fit: cover;
	border-radius: 50%;
	background:#bcd9eb;
}
.staff_wrap h4{
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
}
.staff_wrap dl dt{
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
	color:#5e96eb;
}
.staff_wrap dl.s_name{
	display: flex;
	justify-content: center;
	align-items: center;
}
.staff_wrap dl.s_name dt,.staff_wrap dl.s_name dd{
	padding: 0 10px;
}
.s_comment dd{
	text-align: left;
	font-size: 0.9em;
}
/* 関係者様へ ============================== */
.flex_list{
	display: flex;
	justify-content: space-around;
}
.flex_list li{
	background:#5e96eb;
	color: #fff;
	padding: 0.5em 1em;
	width: calc(100% / 2 - 50px);
	text-align: center;
	font-size: 1.2em;
}
.support h3{
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
	font-size: 1.4em;
	background:url("../img/icon_ring_y.png") no-repeat;
	background-position: left center;
	background-size: 1em;
	padding: 0 0 0 30px;
}
img.support_cut{
	display: block;
	margin: auto;
	width: 50%;
	max-width: 400px;
	min-width: 250px;
}
.support01 dl{
	font-size: 1.2em;
	margin-bottom: 30px;
	padding: 1em;
	background: #f8f4e6;
	border-radius: 15px;
}
.support01 dl dt span{
	background:#5e96eb;
	color: #fff;
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
	padding: 0.25em 1em;
	margin-bottom: 0.5em;
}
.support01 dl dd{
}

.areamap{
	display: flex;
	max-width: 900px;
	margin: auto;
	align-items: center;
}
.areamap div{
	flex:1;
}
.areamap img{
	width: auto;
	height: 400px;
}

.bg_cut01{
	background: url("../img/cut06.jpg") no-repeat;
	background-position: bottom right;
	background-size: 350px;
	padding-bottom: 150px;
	padding-right: 210px;
}
.bg_cut02{
	background: url("../img/cut07.png") no-repeat;
	background-position: bottom right;
	background-size: auto 100%;
	padding-bottom: 150px;
	padding-right: 210px;
}
.bg_img03{
	background:url("../img/bg_img04.jpg") no-repeat;
	background-position: bottom right;
	background-size: 100%;
}
.area_map{
	display: flex;
	max-width: 960px;
	margin: auto;
	justify-content: space-between;
	align-items: center;
}
.area_map div{
	width: 100%;
}
.area_map div img{
	width: 100%;
	max-width: 350px;
	display: block;
	margin: 0 auto 30px;;
	border-radius: 20px;
}
.area_map ul{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 30px;
}
.area_map ul li{
	font-size: 1.2em;
	color: #00a75b;
	margin-right: 1em;
}
.area_map ul li i{
	padding-right: 5px;
	color: #e065a9;
}
/* ご利用をお考えの方へ ================================================== */
.flex_kaigo ul{
	display: flex;
	flex-wrap: wrap;
}
.flex_kaigo ul li{
	padding: 0.5em;
	margin-right: 1em;
}
.flex_kaigo ul li i{
	color: #b4d95d;
}

.kaigo_cut img{
	max-width: 300px;
}

/* ご相談のながれ ================================================== */
.flow_wrap{
	padding: 50px 0;
}
.flow_inner{
	width:100%;
	max-width: 960px;
	margin: auto;
	padding: 10px;
	border-radius: 10px;
	background: #fff;
	display: flex;
	align-items: flex-start;
}

.flow_photo{
	width: 300px;
	text-align: center;
	background:rgba(152,199,41,0.25);
	padding: 15px;
	height: 220px;
	border-radius: 10px;
	position: relative;
}
.flow_photo img{
	position: absolute;
	top: 0;
	left: 0;
	width: 300px;
	height: 220px;
	border-radius: 10px;
	object-fit: cover;
}

.h_number{
	position: absolute;
	top:10px;
	left: -20px;
	display: inline-block;
	line-height: 60px;
	vertical-align: middle;
	width: 60px;
	background:url("../img/dot.png") no-repeat;
	background-position: center;
	background-size: contain;
	margin-bottom: 10px;
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weit: 700;
	color: #fff;
	font-size: 2em;
	z-index: 1;
}
.flow_txt{
	padding: 10px;
	font-size: 1em;
	flex:1;
}
.flow_txt p{
	font-family: a-otf-ud-shin-go-pr6n, sans-serif;
	font-weight: 300;
}
.flow_txt h4{
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
	font-size: 1.3em;
}
.flow_arrow{
	font-size: 2em;
	text-align: center;
}

/* アイコン横並び ============================== */
.pict{
	display: flex;
	justify-content: space-around;
	margin: 30px 0;
}
.pict li{
	width: 100%;
	padding: 20px;
}
.pict li img{
	width: 250px;
	height: 250px;
	border-radius: 50%;
	background: #b4d95d;
	padding: 10px;
}

.about .map{
	margin: 30px 0;
}

.photo_flex{
	display: flex;
	align-items: center;
	justify-content: center;
}
.photo_flex div{
	width: 100%;
	padding: 5px;
}
.photo_flex img{
	width: 100%;
}
.photo_flex .in_v{
	width: auto;
	height: 180px;
	padding: 10px;
}
.photo_flex .in_v img{
	width: auto;
	height: 100%;
}

.rinen dl{
	padding: 10px;
	background:#b4d95d;
	width: 90%;
	margin: 0 auto 30px;
	border-radius: 15px;
	text-align: center;
}
.rinen dl dt{
	background:#fff;
	padding: 10px;
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
	font-size: 1.5em;
	border-radius: 10px;
}
.rinen dl dd{
	color: #fff;
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
	padding: 10px 10px 0;
}
.company_greeting p{
	text-indent: 1em;
}
.midashi_rec{
	color: #fff;
	background: #b4d95d;
	padding: 0.25em 1em;
	border-radius: 30px;
}




/* メールフォーム==================== */
.contact{
	padding: 10px;
}
.contact h3{
	font-size: 1.3em;
	border-bottom: solid 3px #b4d95d;
	margin-bottom: 30px;
	font-family: ibm-plex-sans-jp, sans-serif;
}
.faxlist{
	padding-left: 30px;
}
.faxlist li{
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
	padding: 0.25em 0;
	margin-bottom: 0.25em;
	border-bottom:  dashed 1px #ccc;
}
.faxlist li i{
	color:#b4d95d;
}

.bg_contact{
	background:linear-gradient(to bottom,rgba(255,255,255,0.3) 80%,rgba(255,255,255,1.0)),
		url("../img/bg_003.png") ;
	background-repeat: no-repeat;
	background-position:center,bottom right ;
	background-size:cover,100%;
}


.tel_button{
    position: relative;
	overflow: hidden;
	text-decoration: none;
	display: block;
    width: 100%;
	max-width: 500px;
    background:#fff;
	border:solid 1px #333;
	border-radius: 5px;
    padding: 10px 30px;
    text-align: center;
	margin: 16px auto;
    outline: none;
    transition: ease .2s;
	cursor: pointer;
	font-size: 1.4em;
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
}
/*ボタン内spanの形状*/
.tel_button span {
	position: relative;
	z-index: 3;
	color:#333;
}
/*== 背景が流れる*/
.bgleft:before {
 	content: '';
 	position: absolute;
 	top: 0;
 	left: 0;
 	z-index: 2;
 	background:#ebc0bc;
 	width: 100%;
	height: 100%;
	border-radius: 5px;
    /*アニメーション*/
 	transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
 	transform: scale(0, 1);
	transform-origin: right top;
}
.bgleft:hover:before{
	transform-origin:left top;
	transform:scale(1, 1);
}
#mailform{
	width: 100%;
	padding: 20px;
	margin: 30px 0;
}
#mailform table{
	width: 100%;
	font-size: 1rem;
	border-collapse: collapse;
	border-spacing: 0;
}
#mailform table th{
	width: 200px;
	text-align: left;
	padding: 0.5em;
	vertical-align: top;
	line-height: 120%;
}
#mailform table td{
	width: calc(100% - 210px);
	padding: 0.5em 1em;
}
.flex_btn{
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}
#mailform .radio{
	padding: 0 1rem;
	margin-bottom: 0.5rem;
}
#mailform .form_input,#mailform textarea{
	background:#fff;
	width: 100% !important;
	padding: 5px 10px;
	border:solid 1px #ccc;
}
#mailform span.form_required{
	font-size: 60%;
	font-weight: normal;
	color: #fff;
	background:#b4d95d;
	padding: 3px 8px;
	margin-left: 0.5rem;
	border-radius: 5px;
}
input[type='submit']{
	display: block;
	width: 100%;
	max-width: 300px;
	padding: 0.5em;
	background: linear-gradient(90deg, rgba(180,217,93,1) 0%, rgba(90,192,92,1) 80%, rgba(0,167,91,1) 100%);
	color:#fff ;
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
	border-radius: 30px;
	margin: 0 auto;
	transition: 0.5s;
}
input[type='submit']:hover{
	background: linear-gradient(90deg, rgba(180,217,93,1) 0%, rgba(90,192,92,1) 20%, rgba(0,167,91,1) 100%);
}
.postcord{
	width:150px !important;
	margin-bottom: 5px;
	padding: 5px 10px;
	border:solid 1px #ccc;
	background:#fff;
}
.postcord_btn{
	font-size: 0.8em;
	border:solid 1px #ccc;
	background:#fff;
	padding: 0.25em;
}
.infobox{
	margin-bottom: 30px;
}
.infobox h4{
	text-align: center;
	color: #1a1a1a !important;
	font-size: 1em !important;
	padding: 1em 0;
}
.infobox h5{
	color: #1a1a1a;
}
.infobox p{
	font-size: 0.8em !important;
	color: #1a1a1a;
	padding: 0.5em;
}
#mailform summary{
	cursor: pointer;
	display: block;
	list-style: none;
}
#mailform summary::-webkit-details-marker {
	color: transparent;
	display: none;
}
#mailform details::before{
	display: none;
}
#mailform details[open]{
	animation: fadeIn 1s ease;
}
@keyframes fadeIn {
  0% {
    opacity: 0; /* 透明 */
    transform: translateY(-10px); /* 上から表示 */
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
#mailform details summary h4::before{
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f067';
	padding-right: 15px;
}
#mailform details[open] summary h4::before{
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f068';
	padding-right: 15px;
}
.visually-hidden { /* 元のボタンを非表示にする*/
	position: absolute;
	white-space: nowrap;
	width: 1px;
	height: 1px;
	overflow: hidden;
	border: 0;
	padding: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%); 
	margin: -1px;
}

label.radio-label {
	cursor: pointer;
	padding-left: 30px;
	position: relative;
}

label.radio-label::before,
label.radio-label::after {
	content: "";
	display: block;
	border-radius: 50%;
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
}

label.radio-label::before {
	background-color: #fff;
	border: 1px solid #ccc;
	height: 20px;
	width: 20px;
	left: 5px;
}

label.radio-label::after {
	background-color: #1a1a1a;
	opacity: 0;
	height: 12px;
	width: 12px;
	left: 9px;
	transition: ease .2s;
}

input:checked + label.radio-label::after {
  opacity: 1;
}

/* TOPへ戻るボタン==================== */
#page_top{
	width: 50px;
	height: 50px;
	position: fixed;
	right: 20px;
	bottom: 0;
	z-index: 999;
}
#page_top a{
	position: relative;
	display: block;
	width: 50px;
	height: 50px;
	text-decoration: none;
}
#page_top a::before{
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f077';
	font-size: 50px;
	color:#fff;
	position: absolute;
	width: 50px;
	height: 50px;
	top: -5px;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
}
/* スクロールフェードイン ================================================== */
.fadein {
	opacity : 0.2;
	transform : translate(0, 80px);
	transition : all 500ms;
	}

.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
	}


