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

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

/* all */
body{
	color: #333;
	font-family: 'Klee One', cursive;
	background:#fff;
}
p{
	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;
}
.w1300{
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
}
.w960{
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
}
/* 余白調整　*/
.h30{
	height: 30px;
}
.h50{
	height: 50px;
}
.h100{
	height: 100px;
}
/* 背景　*/
.bg_w{
	background-color: #fff;
}

.bg_light{
	background: #f5f5f5;
}
.bg_green{
	background: #c7dc68;
}
.bg_w_inner{
	background-color: rgba(255,255,255,1.0);
	padding: 20px;
	border-radius: 15px;
}
.bg_img01{
	background: url("../img/bg_img01.jpg") no-repeat;
	background-size: cover;
}
.bg_img02{
	background: url("../img/bg_img02.jpg") no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

.bg_img03{
	background: url("../img/bg_img03.jpg") no-repeat;
	background-size: cover;
	background-attachment: fixed;
}
.iphone .bg_img02,.ipad .bg_img02{
	background-attachment:local;
}
.iphone .bg_img03,.ipad .bg_img03{
	background-attachment:local;
}


/* 見出し　テキスト　*/
.txt_lv02{
	font-family: 'Noto Serif JP', serif;
	font-size: 1.5em;
	color: #333;
	margin-bottom: 15px;
	line-height: 120%;
	text-align: center;
}
.txt_lv02 span{
	font-size: 200%;
	background-image: linear-gradient(120deg, #d4fc79 0%, #7acc52 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
	padding-bottom: 5px;
}
.txt_lv02_w{
	font-family: 'Noto Serif JP', serif;
	font-size: 1.5em;
	color: #fff;
	margin-bottom: 15px;
	line-height: 120%;
	text-align: center;
}
.txt_lv02_w span{
	font-size: 200%;
	background-image: linear-gradient(120deg, #d4fc79 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
	padding-bottom: 5px;
}
.txt_lv03{
	font-family: 'Noto Serif JP', serif;
	border-bottom: solid 3px #527acc;
	margin-bottom: 1rem;
	font-size: 1.2rem
}
.txt_lv04{
	color: #333;
	display: block;
	position: relative;
	max-width: 960px;
	margin: 0 auto 10px;
	vertical-align: middle;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	padding: 10px 0;
	font-size: 1.5em;
	border-bottom: solid #7acc52 3px;
	border-image: linear-gradient(to right, #7acc52, #0fc9ff) 1/0 0 5px;
}
.txt_copy01{
	font-size: 1.4em;
	font-family: 'Noto Serif JP', serif;
	vertical-align:middle;
}
.txt_copy01::first-letter{
	font-size: 200%;
	color: #527acc;
}
.txt_copy02{
	font-family: 'Noto Serif JP', serif;
	font-size: 1.5rem;
	color: #527acc;
}
.txt_copy03{
	font-family: 'Noto Serif JP', serif;
	font-size: 1.2rem;
	color: #333;
}
.txt_copy03 span{
	color: #7acc52;
	font-weight: 600;
	border-bottom: dashed 1px #ccc;
	display: inline-block;
}

span.bold{
	font-size: 1.2em;
	font-weight: 700;
}


span.line{
	background:linear-gradient(transparent 60%, #b3e2ff 60%);
	font-size: 1.2em;
	display: inline-block;
}
.txt_w600{
	font-weight: 600;
}

/* 写真調整*/
.img_round{
	border-radius: 30px;
	box-shadow: 10px 10px #b5dfff;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}


/* 写真横並び基本　*/
.photo_flex{
	display: flex;
	align-items:flex-start;
	justify-content: space-between;
}
.photo_flex div{
	width: 100%;
	padding: 5px;
}
.photo_flex img{
	width: 100%;
}
/* ボタン　*/

header{
	position: relative;
	width: 100%;
	z-index: 9000;
}
.site-header{
	background:linear-gradient(to bottom ,rgba(255,255,255,0.5),rgba(255,255,255,1.0));
    display: flex;
    position: fixed;
    flex-direction: column;
	justify-content: center;
	align-items:center;
    transition: .5s;
    width: 100%;
	height: 150px;
	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;
}
.site-header h1 img{
	width: auto;
	height: 65px;
	margin-top: 5px;
}
.site-header h1 a{
	color: #1a1a1a;
}
.site-header .header_phone{
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
}
.header_phone h2{
	font-family: 'Quicksand', sans-serif;
	text-align: right;
	display: inline-block;
	font-size: 2rem;
	line-height: 100%;
	margin-right: 30px;
	padding: 0.5em 0;
	color:#1a1a1a;
}
.header_phone h2 a{
	display: inline-block;
	color: #1a1a1a;
	width: 100%;
	height: 100%;
	transition:all .5s;
}
.header_phone h2 :hover{
	color: #7acc52;
}
.header_phone h3{
	display: inline-block;
	width: 200px;
	text-align: center;
	font-size: 1.2em;
	line-height: 100%;
	margin-right: 30px;
	transition:all .5s;
	border-radius: 0 0 30px 30px;
	text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}
.header_phone h3 a{
	display: inline-block;
	width: 100%;
	padding: 1em 0;
	border-radius: 0 0 30px 30px;
	background:#7acc52;
	color: #fff;
	transition:all .5s;
}
.header_phone h3 :hover{
	background: #c7dc68;
}
.nav_wrap{
}

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

header nav ul{
	list-style: none;
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin: auto;
}
header nav ul li{
	margin: auto;
	padding: 0 2rem;
	line-height: 150%;
	font-size:1.3rem;
	text-align: center;
	position: relative;
	overflow: hidden;
	border-right: dashed 1px #ccc;
}
header nav ul li:first-child{
	border-left:dashed 1px #ccc;
}
header nav ul li a{
	display: block;
	width: 100%;
	height: 100%;
	color:#7acc52;
	text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	opacity: 1.0;
}
header nav ul li a:hover{
	opacity: 0.6;
}

/* スライダー　==================== */
.slide_wrap{
	width: 100%;
	height: 100vh;
	position: relative;
}
.slide_wrap::after{
	content: "";
	position: absolute;
	background:rgba(0,0,0,0.0);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity:1.0;
}
.top_slider{
	position: relative;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	overflow: hidden;
}
.top_slider .slider li{
	position: relative;
	width: 100%;
	height: 100vh;
	background:#fff;
	background-size: cover;
	background-position: center center;
}
.top_slider .slider li.top01{
	background:url("../img/slide04.jpg") no-repeat;
	background-size: cover;
	background-position: center;
}
.top_slider .slider li.top02{
	background:url("../img/slide05.jpg") no-repeat;
	background-size: cover;
	background-position: center;
}
.top_slider .slider li.top03{
	background:url("../img/slide06.jpg") no-repeat;
	background-size: cover;
	background-position: center;
}

@keyframes fadezoom{
	0%{
		transform: scale(1.2);
	}
	100%{
		transform: scale(1);
	}
}
.add-animation{
	animation: fadezoom 5s 0s forwards;
}

.top_slider .slider li .catch{
	position: absolute;
	top: 90%;
	right: 10%;
	width: 80%;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	text-align:center;
	color: #fff;
	font-size: 2.5rem;
	text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
	opacity: 0;
	transition: 2s;
	z-index: 10;
}
.top_slider .slider li.slick-active .catch{
	top: 50%;
	transform: translateY(-50%);
	opacity: 1;
	animation-name: appear;
	animation-duration:5.5s;
	transition-timing-function:ease-in-out;
}
.top_slider .slider li .slide_img01{
	position: absolute;
	top: 110%;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	transition: 2.5s;
	animation-delay:.5s;
	width: 90%;
	width: 300px;
}
.top_slider .slider li.slick-active .slide_img01{
	top: 60%;
	opacity: 1;
	animation-name: appear;
	animation-duration:5.5s;
	transition-timing-function:ease-in-out;
}


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

.contents{
	padding: 50px 0;
}

.contents_in{
	padding: 0 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;
}
.card001{
	display: flex;
	align-content: flex-start;
	justify-content: flex-start;
}
.card001 figure{
	width: calc(100% - 20px);
	margin: 10px;
	padding: 20px;
	background:rgba(255,255,255,1.0);
	border-radius: 5px;
}
.card001 figure img{
	width: 100%;
	border-radius: 15px;
}
.card001 figure figcaption{
	width: 100%;
}

.card001 figure h4{
	font-family: 'Noto Serif JP', serif;
	text-align: center;
	font-size: 1.2em;
}
.card001 figure h4 span{
	font-family: 'Quicksand', sans-serif;
	font-size: 250%;
	color: #7acc52;
}
.card001 .photo_round{
	width: calc(100% - 30px);
	margin: 15px;
	text-align: center;
	
}
.card001 .photo_round img{
	width: 100%;
	max-width: 350px;
	margin: auto;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	object-fit: cover;
}

.card002{
	display: flex;
	justify-content: center;
	align-items: center;
}
.card002 .img {
	width: 100%;
	padding: 10px;
}
.card002 .img img{
	width: 100%;
}
.card002 .txt{
	width: 100%;
	padding: 15px;
	align-self: center;
}
.card002 .txt p{
	margin-bottom: 1em;
}
.card002 .img_services {
	width: 100%;
	padding: 10px;
}
.card002 .img_services img{
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: contain;
	padding: 10px;
	background:#f5f5f5;
}
.card003{
	display: flex;
	justify-content: center;
	align-content: center;
}
.card003 div{
	padding: 10px;
}
.card003 .img{
	width: 300px;
}
.card003 .img img{
	width: 100%;
}
.card003 .txt{
	flex: 1;
}
.card003 .txt_g{
	flex: 1;
}
.card003 .txt_g p{
	padding-bottom: 1rem;
	text-indent: 1em;
}
.icon_flex{
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
.icon_flex li{
	width: calc(100% / 5 - 20px);
	text-align: center;
	margin: 10px;
}
.icon_flex li img{
	width: 100%;
	padding: 10px;
	background: #8eceea;
	border-radius: 50%;
}
.icon_flex li h3{
	font-size: 1rem;
}

.line02 table {
    border-spacing:0;
    margin: 0 auto;
    padding: 0;
    width:100%;
}
.line02 table th{
	border-bottom: solid 2px #527acc;
	padding: 0.5em 1em;
	width: 25%;
	min-width: 9em;
}
.line02 table td{
	border-bottom: solid 2px #ccc;
	padding: 0.5em 1em;
}
.line02 table td i{
	color: #527acc;
	padding-left: 1em;
}
.line02 dl{
	margin-bottom: 1em;
	display: flex;
}
.line02 dl dt{
	font-weight: 700;
}
.line02 dl dd{
	
}

.line02 ul li{
	padding-left: 1em;
	text-indent: -1em;
	margin-bottom: 0.5em;
}

.area_map{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.area_map img{
	border-radius: 50%;
	width: 90%;
	max-width: 350px;
}
.area_map ul{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.area_map ul li{
	font-size: 1.5rem;
	padding: 15px;
	display: inline-block;
}
.area_map ul li i{
	color:#7acc52;
}

.map iframe{
	width: 100%;
	height: 350px;
	vertical-align: middle;
}
.tel_contact{
	text-align: center;
	font-size: 2.5rem;
	font-family: 'Quicksand', sans-serif;
}
.tel_contact i{
	font-size: 80%;
}
.tel_contact a{
	color: #527acc;
}

.txt_contact{
	width: 100%;
	padding: 15px;
}
.img_contact{
	width: 100%;
	padding: 15px;
}
.img_contact img{
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

ul.border01{
	padding-left: 1em;
	font-size: 1.2em;
}
ul.border01 li{
	border-bottom: dotted 3px #527acc;
	margin-bottom: 1rem;
}

/* リンクコンテンツ　==================== */
.contents_link {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin: auto;
	overflow: hidden;
}
figure.effect-chico{
	display: block;
	position: relative;
	width: calc(100% / 3 - 20px);
	margin: 10px;
	aspect-ratio: 1 / 1;
	border-radius: 20px;
	background: #fff;
	overflow: hidden;
}
figure.effect-chico img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	object-fit: cover;
	opacity: 0.8;
	-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);
}

figure.effect-chico:hover img {
	opacity: 0.3;
	-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 p {
	font-family: 'Noto Sans JP', sans-serif;
	color: #333;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}
figure.effect-chico h3{
	font-family: 'Noto Serif JP', serif;
	color: #527acc;
	font-size: 1.5em;
	text-shadow: 2px 2px #fff,-2px 2px #fff,2px -2px #fff,-2px -2px #fff,0 2px #fff,2px 0 #fff,0 -2px #fff,-2px 0 #fff;
}
figure.effect-chico h4 {
	position: absolute;
	bottom: 30px;
	right: 30px;
	font-size: 1em;
	color: #527acc;
	background:#fff;
	padding: 0.5em 1em;
	border-radius: 30px;
	
}

figure.effect-chico p {
	font-size: 0.9em;
	margin: 10px auto;
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
}

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%;
}
/* カルーセルスライダー ======================================== */
.carousel {
	padding: 0 30px;
}
.carousel div {
	margin: 10px;
	width: 100%;
	height: 100%;
}
.carousel img {
	display: block;
	margin: 0 auto;
	width: 100%;
	padding: 10px;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	position: relative;
	background: url("../img/bg_carousel.png") no-repeat;
	background-size: 100% 100%;
}
.carousel .slick-next {
	right: 0;
	z-index: 50;
}
.carousel .slick-prev {
	left: 0;
	z-index: 50;
}

/* フッター部分　================================================== */
footer{
	margin-bottom: 0;
	padding: 50px 0 0;
	background:#c7dc68;
	background-position: center;
	background-size: cover;
}
/*コンタクトボタン*/
.footer_contact{
	width: calc(100% - 30px);
	max-width: 960px;
	margin: auto;
	display: flex;
	align-items: center;
	background: #527acc;
	border-radius: 5px;
	padding: 10px;
}
.footer_contact .f_contact_in{
	width: 100%;
	height: 100px;
	text-align: center;
	position: relative;
}
.footer_contact .border{
	border-left: dashed 1px #ccc;
}
.footer_contact .f_contact_in p{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50% ,-50%);
	color: #ffffff;
	font-size: 1.3em;
	line-height: 150%;
	width: 90%;
	font-family: 'Noto Serif JP', serif;
	transition: .5s;
}
.footer_contact .f_contact_in p i{
	font-size: 150%;
	color: #ffec47;
}
.footer_contact .f_contact_in a{
	position: absolute;
	top:0;
	left: 0;
	right: 0;
	bottom: 0;
}
.footer_contact .f_contact_in:hover p{
	color: #ffec47;
}

footer h2 img{
	width: 300px;
	padding: 10px;
}
.footer_wrap{
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
	max-width: 960px;
	padding: 0 10px;
	margin:auto;
}
.footer_in{
	width: 100%;
	max-width: 960px;
	margin: auto;
	display: flex;
	flex-direction: column;
	justify-content:center;
	align-items: center;
	padding-top: 20px;
}
.footer_in .phone{
	font-size: 1.5em;
	text-align: center;
}
.footer_in .phone span{
	display: inline-block;
}

.footer_in p{
	color: #333;
	line-height: 120%;
}

.footer_in p.phone_buttom{
	text-align: center;
	font-size:2em;
	font-weight: 700;
	padding: 20px 0;
}
.footer_in p.phone_buttom a{
	color: #527acc;
}
.footer_in p.phone_buttom a:hover{
	color: #1f6499 ;
	transition:all .5s ease-in;
}
.link_area{
	border-top: solid 1px #7acc52;
	border-bottom: solid 1px #7acc52;
	margin: 30px auto;
	max-width: 1300px;
}

.link_area ul.footer_nav{
	display: flex;
    justify-content: center;
    align-items: center;
	margin: 0px auto;
	max-width: 700px;
}
.link_area ul.footer_nav li{
	font-size: 0.9em;
    font-weight: 700;
    padding: 1em;
    text-align: center;
	width: 100%;
}
.link_area ul.footer_nav li a{
	color: #1a1a1a;
}
.link_area ul.footer_nav li :hover{
	color:#fff;
}
footer small p{
	color: #fff;
	text-align: center;
	padding: 15px;
	background: #7acc52;
}

p.catch_footer{
	font-size: 1.5em;
	padding: 0.5em 0;
	font-family: 'Noto Serif JP', serif;
}

/* ボタン　================================================== */
.button_wrap{
	width: 250px;
	margin: 0 0 0 auto;
}
.button_wrap_center{
	width: 250px;
	margin: 15px auto;
}


.button_01{
	display: inline-block;
	text-align: center;
	width: 100%;
	background-color:#7acc52;
	color: #fff;
	padding: 0.5em;
	position: relative;
	font-size: 1.1em;
	border-radius: 30px;
	font-family: 'Klee One', cursive;
	font-weight: 600;
}
.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:#c7dc68 ;
	color: #1a1a1a;
	transition: .5s;
}
.button_01:hover::after{
	right: 10px;
	transition: .5s;
}

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

/* サブページタイトル 
   ========================================================================== */
.subtitle{
	display: block;
	width: 100%;
	height: 350px;
	background-size: cover;
	background-color: #ccc;
	position: relative;
}
.subtitle h2{
	font-family: 'Noto Serif JP', serif;
	font-size: 1.5em;
	margin-bottom: 15px;
	line-height: 150%;
	text-align: center;
	position: absolute;
	bottom: 70px;
	left: 50%;
	transform: translateX(-50%);
	padding-left: 10px;
	padding-bottom: 5px;
}
.subtitle h2 span{
	font-size: 200%;
	background-image: linear-gradient(120deg, #d4fc79 0%, #7acc52 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
	padding-bottom: 5px;
}
.sub_bg{
	background: url("../img/bg_img03.jpg") no-repeat;
	background-position: center;
	background-size: cover;
	background-color: #ccc;
}

/*パンくずリスト
==========================================================================*/
.breadcrumb-box{
	width: 80%;
	display: inline-block;
	margin: 0 auto;
	padding-top: 10px;
	position: absolute;
	bottom: 20px;
	left: 20px;
}
.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: #7acc52;
}
/* サブページコンテンツ
   ========================================================================== */

.sub h2{
	color: #527acc;
	display: block;
	position: relative;
	max-width: 960px;
	margin: 0 auto 20px;
	vertical-align: middle;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	padding: 10px 0;
	font-size: 2em;
	border-bottom: solid #527acc 3px;
}
.sub h2::after{
	position: absolute;
	content: " ";
	display: block;
	border-bottom: solid #004875 3px;
	bottom: -3px;
	left: 0;
	width: 50px;
}


.company_sho{
	text-align: center;
	margin: 50px 0;
}

.company_sho img{
	width: 100%;
	max-width: 700px;
	padding: 10px;
}

.company_table{
	width: 100%;
	font-size: 1em;
	border-collapse: collapse;
	border-spacing: 0;
	margin: 30px 0;
	background: #fff;
}
.company_table tr:nth-child(odd){
	background:#f5f5f5;
}
.company_table th{
	background: #004875;
	color: #fff;
	text-align: left;
	padding: 10px;
	border-bottom: solid 1px #527acc;
}
.company_table td{
	padding: 10px;
	border-bottom: solid 1px #08699c;
}
.company_table td strong{
	color: #527acc;
}
.company .company_table th{
	width: 6.5em;
}
.company .company_table ul {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 0.5em;
}
.company .company_table ul li{
	margin-left: 1em;
	display: inline-block;
	vertical-align: middle;
}
.company .company_table span{
	display: inline-block;
}
.works tr th,.works tr td{
	font-size: 95%;
}
.works tr td:first-child{
	font-family: 'Noto Serif JP', serif;
	color: #527acc;
	font-size: 1em;
	padding-right: 0;
}
.works tr td:last-child{
	text-align: right;
	padding-left: 0.5em;
	position: relative;
}
.works tr td:last-child::before{
	position: absolute;
	left: -0.5em;
	top:50%;
	transform: translateY(-50%);
	content: '〜';
	font-size: 1em;
}

.f_navy{
	font-family: 'Noto Serif JP', serif;
	color: #527acc;
	font-size: 1.1em;
}
.about .map{
	margin: 30px 0;
}
/* 事業内容 ================================================== */
.point_wrap{
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}
.point_wrap .p01{
	text-align: center;
	width: 280px;
	height: 280px;
	border-radius: 20px;;
	background: #004875;
}
.point_wrap .p01 img{
	padding: 15px;
	width: 100%;
}
.point_wrap .p02{
	flex: 1;
}
.point_wrap .p02 h3{
	color: #527acc;
	font-size: 1.5em;
	margin-left: 16px;
	border-bottom: solid 3px #004875;
}


/* ご依頼までの流れ ================================================== */
.flow_wrap02,.flow_wrap03{
	width: 95%;
	max-width: 900px;
	border:#ccc solid 1px;
	padding: 20px;
	margin: 30px auto;
	border-radius: 10px;
	position: relative;
	background:rgba(255,255,255,0.85);
}
.flow_wrap02::after{
	content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-top: 15px solid #7acc52; 
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
}
.flow_wrap02 dl,.flow_wrap03 dl{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.flow_wrap02 dt,.flow_wrap03 dt{
	font-family: 'Quicksand', sans-serif;
	font-size: 1.5rem;
	width: 150px;
	padding: 0.25em;
	text-align: center;
	background: #7acc52;
	color: #fff;
	border-radius: 5px;
}
.flow_wrap02 dt img,.flow_wrap03 dt img{
	width: 80px;
}

.flow_wrap02 dd,.flow_wrap03 dd{
	width: 100%;
	padding: 0.25em 2em;
}
.flow_wrap02 dd h4,.flow_wrap03 dd h4{
	font-family: 'Noto Serif JP', serif;
	color: #527acc;
	font-size:1.1em;
	font-weight: 600;
	border-bottom: solid 3px #527acc;
	margin-bottom: 0.5em;
	
}
.flow_wrap02 dd p,.flow_wrap03 dd p{
	font-size:1em;
}
.button_flow{
	display: inline-block;
	text-align: center;
	background-color:#527acc;
	color: #fff;
	padding: 0.25em 2.5em 0.25em 0.5em;
	position: relative;
	border-radius: 5px;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 0.9em;
}
.button_flow::after{
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: "\f105";
	position: absolute;
	top: calc(50% - 0.5em);
	right: 15px;
	transition: .5s;
}
.button_flow:hover{
	color: #fff;
	background:#004875;
	transition: .5s;
}
.button_flow:hover::after{
	right: 10px;
	transition: .5s;
}

.voice{
	width: calc(100% - 20px);
	margin: 10px;
	background: #fff;
}
.voice h4{
	background: #c7dc68;
	padding: 0.5rem;
}
.voice p{
	padding: 1rem;
}

.qa_inner{
	width: 100%;
	padding: 10px;
	border:solid 1px #ccc;
	border-radius: 10px;
	align-self: stretch;
	background: #fff;
	margin-bottom: 30px;
}
.qa_q{
	text-align: center;
	position: relative;
	background:rgba(176,224,230,0.45);
	margin-bottom: 20px;
	padding: 15px;
}
.qa_q::after {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(176,224,230,0);
	border-top-color: rgba(176,224,230,0.45);
	border-width: 20px;
	margin-left: -20px;
}
.qa_q p{
	padding: 0;
}
.h_number{
	display: inline-block;
	font-family: 'Noto Serif JP', serif;
	line-height: 50px;
	vertical-align: middle;
	width: 50px;
	background:url("../img/dot_b.png") no-repeat;
	background-position: center;
	background-size: 50px;
	margin-bottom: 10px;
	color: #fff;
	font-size: 1.5em;
	text-align: center;
}
.qa_a{
	padding: 10px 0;
	font-size: 1em;
	text-align: center;
}
.qa_a p{
	color: #527acc;
}

.catch_services{
	font-size: 1.8em;
	color: #527acc;
	font-family: 'Noto Serif JP', serif;
}



/* 採用情報============================================================ */

.wrap_blur{
	width: 100%;
	position: relative;
}
.wrap_blur::after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(255, 255, 255, 0.75);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	pointer-events: none;
	z-index: 1;
}
p.disabled_text{
	position: absolute;
	top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    z-index: 2;
    font-size: 1.8rem;
	color: #333;
}

/* メールフォーム==================== */
.contents_mail{
	max-width: 960px;
	padding: 10px 10px 30px;
	margin: auto;
}
.tel_button{
    position: relative;
	overflow: hidden;
	text-decoration: none;
	display: block;
    width: 100%;
	max-width: 500px;
    background:#7acc52;
	font-family: 'Klee One', cursive;
	font-weight: 600;
	color:#ccc;
	border-radius: 50px;
    padding: 10px;
    text-align: center;
	margin: 16px auto;
    outline: none;
    transition: ease .2s;
	cursor: pointer;
	font-size: 1.3em;
}
/*ボタン内spanの形状*/
.tel_button span {
	position: relative;
	z-index: 3;
	color:#333;
}
/*== 背景が流れる*/
.bgleft:before {
 	content: '';
 	position: absolute;
 	top: 0;
 	left: 0;
 	z-index: 2;
 	background:#c7dc68;
 	width: 100%;
	height: 100%;
	border-radius: 50px;
    /*アニメーション*/
 	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);
}
.contact_fax ul{
	padding: 1em;
	max-width: 700px;
	margin: auto;
}
.contact_fax ul li{
	padding: 0.5rem;
	font-size: 1.2rem;
	border-bottom: dashed 1px #ccc;
}
.contact_fax ul li i{
	color: #7acc52;
}
#mailform{
	width: 100%;
	padding: 20px;
	background: rgba(255,255,255,0.49);
}
#mailform table{
	width: 100%;
	font-size: 1rem;
	border-collapse: collapse;
	border-spacing: 0;
}
#mailform table tr{
	border-top: 1px solid #ccc;
}
#mailform table tr:first-child{
	border-top:none;
}

#mailform table th{
	width: 220px;
	text-align: left;
	padding: 1em;
	vertical-align: middle;
	line-height: 120%;
}
#mailform table td{
	width: calc(100% - 210px);
	padding: 1em;
}
.flex_btn{
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	width: 100%;
}
#mailform .radio{
	padding: 0 1rem;
}
#mailform .checkbox{
	padding: 0 1rem;
}
#mailform .form_input,#mailform textarea{
	background:#f5f5f5;
	width: 100% !important;
	padding: 5px 10px;
	border-radius: 5px;

}
#mailform span.form_required{
	font-size: 60%;
	font-weight: normal;
	color: #fff;
	background:#7acc52;
	padding: 3px 8px;
	margin-left: 0.5rem;
	border-radius: 5px;
}
input[type='submit']{
	display: block;
	width: 100%;
	max-width: 300px;
	padding: 5px;
	font-weight: 400;
	background:#7acc52;
	color:#333 ;
	border-radius: 20px;
	margin: 0 auto;
}
input[type='submit']:hover{
	background:#c7dc68;
}
.infobox{
	margin-bottom: 30px;
}
.infobox h4{
	text-align: center;
	color: #333 !important;
	font-size: 1em !important;
	padding-bottom: 1em;
}
.infobox h5{
	color: #333;
}
.infobox h5 i{
	color: #666;
}
.infobox p{
	font-size: 0.8em !important;
	color: #333;
	padding: 0.5em;
}
.postcord{
	width:150px !important;
	margin-bottom: 5px;
	padding: 5px 10px;
	background:#f5f5f5;
	border-radius: 5px;
}
.postcord_btn{
	font-size: 0.7em;
	font-weight: 700;
	border-radius: 30px;
	background:#7acc52;
	padding: 0.25em 1em;
	color: #fff;
}
summary{
	cursor: pointer;
	display: block;
	list-style: none;
}
summary::-webkit-details-marker {
	color: transparent;
	display: none;
}
details::before{
	display: none;
}
details[open]{
	animation: fadeIn 1s ease;
}
@keyframes fadeIn {
  0% {
    opacity: 0; /* 透明 */
    transform: translateY(-10px); /* 上から表示 */
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
details summary h4::before{
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f067';
	padding-right: 15px;
}
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: #7acc52;
	opacity: 0;
	height: 14px;
	width: 14px;
	left: 8px;
	transition: ease .2s;
}

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

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

label.check-label:before {
  content: "";
  display: block;
  position: absolute;
  left: 5px;
  width: 20px;
  height: 20px;
  top: 3px;
  border: solid 2px #ccc;
  border-radius: 3px;
  transition: all ease-in-out.5s;
}

label.check-label:after {
  content: "";
  position: absolute;
  top: 12px;
  left: 11px;
  transform: rotate(-45deg) scaleX(0);
  transform-origin: left;
  width: 12px;
  height: 6px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transition: transform 0.125s ease-in-out;
}

input:checked + label.check-label:before {
  background-color: #7acc52;
  border-color: #7acc52;
}

input:checked + label.check-label:after {
  transform: rotate(-45deg) scaleX(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);
	}


