@charset "utf-8";

/*===========
reset_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;
    border: 0;
    outline: 0;
/*    font-size: 100%;*/
/*    font-style: normal;*/
/*    font-weight: normal;*/
    vertical-align: baseline;
    background: transparent;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section,p {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
     list-style-type: none!important;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
img {
    max-width: 100%;
    height: auto;
    border: none;
    vertical-align: middle;
}
b,
strong,
.strong {
font-weight: bold!important;
}

/*======================
basic_setting
======================*/
html {
	font-size: 62.5%;
	font-size: .625vw;
	letter-spacing: 0.07em;
}
body{
	font-family: 'Noto Sans JP',  "メイリオ","Meiryo","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","MS Pゴシック","MS PGothic",sans-serif;
	color: #000000;
	background-color: #FDFBF2;
	line-height: 1.6;
	letter-spacing: 0.07em;
	font-weight: 400;
}
p{
	color: #000000;
	line-height: 1.6;
}
a {
	color: #000000;
	text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    border: none;
    vertical-align: middle;
}
iframe {
    vertical-align: bottom;
}



/*======================
link_hover色々
======================*/

/*透過する*/
.deco a{
/*	transition: 0.5s ease;*/
}
.deco a:hover{
	opacity: 0.8;
}

/*下線がついている→消える*/
.deco01 a{
	text-decoration: underline;
}
.deco01 a:hover{
	text-decoration: none;
}

/*ゆっくり透過する*/
.deco02 a{
	transition: all .3s;
}
.deco02 a:hover{
	opacity: 0.6;
}

/*下線が無い→下線がつく*/
.deco03 a:hover{
	text-decoration-line: underline;
}

/*ふわっと浮き上がる（ドロップシャドウ）*/
.deco-shadow a{
	transition: all .3s;
}
.deco-shadow a:hover{
	box-shadow: 0px 6px 22px 0px rgba(185,185,185,0.6);
	transform: translateY(-6px);
}

/*ゆっくり色がつく*/
.deco-color a{
	transition: all .2s;
}
.deco-color a:hover{
	color: #E55A77;
}

/*青文字下線つき→下線が消える*/
.fo-link a {
    color: #2F53E5;
	text-decoration: underline;
}
.fo-link a:hover{
	text-decoration: none;
}

.link a{
	position: relative;
	padding-right: 24px;
}



/*======================
#header_fixed
======================*/
#header_fixed {
    position: fixed;
    width: 100%;
    left: 50%;
    top: 0;
    transform: translate(-50%);
	z-index: 999;
		
}


/*======================
header_top
======================*/
.header{
	border-top: 6px solid #7BAE78;
	width: 100%;
	height: 160px;
	position: relative;
	z-index: 999;
	display: block;
	background-color: #fff;
	box-shadow: 0px 3px 12px -6px rgba(198,198,198,0.6);
}

.header_top{
	max-width: 1366px;
	margin: 0 auto;
	padding: 10px 35px;
	display: flex;
	justify-content: space-between;
}

.header_top .header_logo a{
	display: block;
}
.header_top .header_logo img{
	width:275px;
	height: auto;
}

.header_cta{
	display: flex;
	align-items: center;
}

.header_cta .header_btn_tel{
	margin-right: 20px;
}
.header_cta .header_btn_tel a{
	display: block;
	font-size: 30px;
	color: #307340;
	font-weight: 400;
	line-height: 1.2;
}
.header_cta .header_btn_tel a img{
	padding-bottom: 6px;
	margin-right: 5px;
}

.header_cta .header_btn_mail a{
	display: block;
	font-size: 14px;
	color: #fff;
	background-color: #A4BF74;
	border-radius: 50px;
	padding: 15px 30px;
}
.header_cta .header_btn_mail a img{
	padding-bottom: 3px;
	margin-right: 5px;
}

@media only screen and (max-width: 1200px) {
	.header_top{
	padding: 10px 20px;
}
}

@media only screen and (max-width: 940px) {
	.header{
	width: 100%;
	z-index: 999;
	display: none;
}
}


/*======================
g_nav
======================*/
.g_nav{
	max-width: 1200px;
	margin: 0 auto;
}

.header_menu_list{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header_menu_list > li{
	position: relative;
	width: 100%;
	border-right: 1px solid #C2C2C2;
}
.header_menu_list > li:first-child{
	border-left: 1px solid #C2C2C2;
}

.header_menu_list li a{
	display: block;
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	transition: .3s;
}
.header_menu_list li a:hover{
	color: #307340;
}


@media only screen and (max-width: 1200px) {
.g_nav{
	padding-left: 20px;
	padding-right: 20px;
}

}





/*======================
ドロップダウンメニュー
======================*/
.pc_submenu {
	position: relative;
}
.pc_submenu > a > span{
	font-family: "Zen Maru Gothic", sans-serif;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	color: #494949;
	transition: .3s;
	position: relative;
	padding-right: 20px;
}
.pc_submenu > a > span::after{
	content: "";
	background-image: url( "images/icon/arrow_btm_black.svg");
	background-repeat: no-repeat;
	background-size: contain;
	width: 12px;
	height: 8px;
	position: absolute;
	top: 55%;
	right: 0;
	transform: translateY(-50%);
}
.pc_submenu > a > span:hover{
	color: #E55A77;
}


.pc_submenu .pc_inner{
	visibility: hidden;
	opacity: 0;
	transition: .3s;
}
.pc_submenu:hover .pc_inner{
	visibility: visible;
	display:block;
	opacity: 1;
}

.pc_inner {
	width: 260px;
	height: auto;
position: absolute;
  top: 100%;
    left: 50%;
	transform: translateX(-50%);
    z-index: 9;
	padding-top: 50px;
}
.pc_inner .hukidasi{
	width: 100%;
	background-color: #fff;
	  box-shadow: 0px 0px 20px -6px rgba(254,162,181,0.3);
	  padding: 20px 25px;
	border-radius: 6px;
	position: relative;
  display: inline-block;
  max-width: 100%;
}

.pc_inner li{
	border-bottom: 1px solid #B6B6B6;
	padding-bottom: 14px;
	margin-bottom: 14px;
}
.pc_inner li:last-child{
	margin-bottom: 0;
	border-bottom: none;
	padding-bottom: 0;
}
.pc_inner li a{
	width: 100%;
	display: block;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 600;
	color: #494949;
	text-align: left;
	font-size: 15px!important;
	line-height: 1.6;
	position: relative;
}
.pc_inner li a:hover{
	color: #E55A77;
}

@media only screen and (max-width: 1355px) {
	.pc_submenu > a > span{
	font-size: 14px;
}
}
@media only screen and (max-width: 1280px) {

}



/*TOPヘッダー背景変更*/
.header .header_logo .logo_black{
	display: none;
}
.header.invert .header_logo .logo_black{
	display: block;
}
.header.invert .header_logo .logo_w{
	display: none;
}


.header_sp .header_logo_sp .logo_black{
	display: none;
}
.header_sp.invert .header_logo_sp .logo_black{
	display: block;
}
.header_sp.invert .header_logo_sp .logo_w{
	display: none;
}


/*======================
sticky-header
======================*/
#fixed-header {
  position: fixed;
  top: -132px;  
  box-sizing: border-box;
  transition: .5s;
	z-index: 999;
	width: 100%;
  overflow: hidden;
	display: flex;
	justify-content: space-between;
	padding-left: 15px;
}
#fixed-header.is-show {
  top: 0;
}


@media only screen and (min-width: 768px) and (max-width: 1200px) {
	#fixed-header-sp {
  position: fixed;
  top: -132px;  
  box-sizing: border-box;
  transition: .5s;
	z-index: 999;
	width: 100%;
		height: 80px;
		background-color: rgba(255,255,255,0.80);
  overflow: hidden;
	display: flex;
	justify-content: space-between;
}
#fixed-header-sp.is-show {
  top: 0;
}
}


.sticky-header{
  position: fixed;
  width: 100%;
  z-index: 999;
  transition: 0.5s;
 background-color: rgba(255,255,255,0.80);
}
.sticky-header .header_top{
	border-bottom: none;
}
.sticky-header .g_nav {
	width: 100%;
  overflow: hidden;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 0;
	padding-bottom: 0;
}
.sticky-header .g_nav .header_logo{
	border-bottom: none;
	padding: 0;
}
.sticky-header .g_nav .header_logo img{
	width: 82px;
	height: auto;
}

.sticky-header .g_nav .header_menu_list > li::after{
	background-color: #4E4E4E;
}

.sticky-header .g_nav .header_menu_list li a{
	font-weight: 600;
	color: #4E4E4E;
	transition: .3s;
}



/*======================
hamberger_menu
======================*/

#header_fixed_sp {
    position: fixed;
    width: 100%;
    bottom: 0;
	z-index: 999;
		
}


/*===========
上に設置
===========*/
.header_sp{
	display: none;
}

@media only screen and (max-width: 940px) {
	.header_sp{
		display: inherit;
	width: 100%;
		height: 80px;
		background-color: #fff;
		border-top: 6px solid #7BAE78;
		box-shadow: 0px 0px 20px -6px rgba(169,169,169,0.3);
		position: relative;
		z-index: 1;
	}
/*	.header_sp_nav{
		width: 100%;
		height: 80px;
		background-color: #fff;
		box-shadow: 0px 3px 12px 0px rgba(202,202,202,0.3);
		padding-top: 7px;
		padding-left: 15px;
	}*/
	
	.header_logo_sp{
		width: 223px;
		position: relative;
		z-index: 990;
		padding-left: 15px;
		line-height: 74px;
	}
	.header_logo_sp img{
		width: 100%;
		height: auto;
	}
	
}

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

}


/*======================
ham style
======================*/
.fixed_sp_nav{
	width: 100%;
	display: flex;
	position: relative;
	z-index: 1000;
}

.fixed_sp_nav ul{
	display: flex;
	width: 100%;
}
.fixed_sp_nav li{
	display: block;
	width: 100%;
	height: 65px;
	background-color: #A4BF74;
	position: relative;
	border-right: 1px solid #fff;
}
.fixed_sp_nav li:last-child{
	border-right: none;
}

.fixed_sp_nav li a{
	width: 100%;
	 height: 100%;
    font-size: 14px;
	padding-top: 5px;
	padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	color: #fff;
}

.fixed_sp_nav li a img{
	margin-top: auto;
}
.fixed_sp_nav li a span{
	margin-top: auto;
}

.sp-ham{
    cursor: pointer;
    width: 100%;
    height: 65px;
    position: absolute;
    top: -2px;
    left: 0;
    z-index: 999;
}

.ham span{
	position: absolute;
	left: 15px;
	width: 30px;
	height: 1px;
	background-color: #fff;
	transition: all 0.3s;
	z-index: 999;
}

.ham span:nth-of-type(1){
	top: 45%;
	left: 50%;
	transform: translate(-50%,-9px);
}
.ham span:nth-of-type(2){
	top: 45%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.ham span:nth-of-type(3){
	top: 45%;
	left:50%;
	transform: translate(-50%,7px);
}
.sp-ham .menu{
position: absolute;
    top:62%;
    left: 50%;
    transform: translate(-50%,0);
	color: #fff;
	font-size: 12px;
	font-weight: 400;
}

@media only screen and (max-width: 767px) {
.fixed_sp_nav li a{
    font-size: 12px;
}
	
}

.clicked .ham span:nth-of-type(1) {
	transform: translate(-45%,0) rotate(45deg);
	background-color: #fff;
}
.clicked .ham span:nth-of-type(2) {
	opacity: 0;
}
.clicked .ham span:nth-of-type(3){
transform: translate(-45%,0) rotate(-45deg);
    background-color: #fff;
}


.header_top_sp .sp-ham{
    width:74px;
    height: 74px;
    top: -2px;
    right: 0;
	left: inherit;
	z-index: 9999;
}
.header_top_sp .sp-ham span{
	left: 36px;
	background-color: #7BAE78;
	z-index: 9999;
}

.header_top_sp .menu{
	color: #7BAE78!important;
}

.header_top_sp .clicked .ham span:nth-of-type(1) {
	background-color: #7BAE78;
}
.header_top_sp .clicked .ham span:nth-of-type(2) {
	opacity: 0;
}
.header_top_sp .clicked .ham span:nth-of-type(3){
    background-color: #7BAE78;
}

.header_top_sp .clicked.sp_nav_item {
	position: fixed;
}


/*===========
ham menu style
===========*/
.ham_menu{
	position: fixed;
	width: 100%;
	height: 100vh;
    top: 0;
	right: 0;
	background-color:#fff;
	z-index:990;
	display: none;
	padding: 60px 35px 120px 35px;
	overflow-y: scroll;
}

.clicked .ham_menu {
	display: block;
}


.header_logo_ham {
	width: 275px;
	margin: 0 auto;
	padding-bottom: 35px;
}

.ham_inner{
	max-width: 700px;
	margin:  0 auto;
}

.ham_menu .ham_menu_list{
	margin-bottom: 50px;
}


.ham_menu .ham_menu_list > li{
	position: relative;
	border-bottom: 1px solid #D3D3D3;
}
.ham_menu .ham_menu_list > li:first-child{
	border-top: 1px solid #D3D3D3;
}

.ham_menu .ham_menu_list a{
	display: block;
	width: 100%;
	font-size: 16px;
	font-weight: 500;
		position: relative;
	padding-top: 16px;
	padding-bottom: 16px;
}
.ham_menu .ham_menu_list a::after{
	content: "";
	background-image: url( "images/icon/arrow_right_green.svg");
	background-repeat: no-repeat;
	background-size: contain;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}


/*accordion_wrap*/
.accordion_wrap{
	 width: 100%;
}
.accordion_area{
    width: 100%;
}
.accordion_area .title {
	width: 100%;
	padding-top: 20px;
	padding-bottom: 20px;
	display: table;
    position: relative;
    cursor: pointer;
    transition: all .5s ease;
}
.accordion_area .title p{
	display: table-cell;
	vertical-align: middle;
	font-size: 18px;
	color: #E55A77;
	font-weight: 600;
	transition: .3s;
}
.accordion_area .title p:hover{
	color: #E55A77;
}

.accordion_area .title::after{
    position: absolute;
    content:'';
	background-image: url( "../images/plus.svg");
	background-size: contain;
	background-repeat: no-repeat;
        width: 16px;
    height: 16px;
    top: 50%;
    right: 8px;
	transform: translateY(-50%);
}
.title.close::after{
	 top: 60%;
background-image: url( "../images/minus.svg");
}

.accordion_inner {
    display: none;/*はじめは非表示*/
    background: #fff;
	padding-bottom: 20px;
}


.accordion_ham_list li {
	padding-bottom: 10px;
}
.accordion_ham_list li:last-child {
	padding-bottom: 0;
}
.accordion_ham_list li a{
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 16px;
	margin-left: 15px;
	padding-left: 15px;
	position: relative;
}
.accordion_ham_list li a::before{
	content: "";
	background-image: url( "../images/icon/ham_arrow_right.svg");
	background-repeat: no-repeat;
	background-size: contain;
	width: 6px;
	height: 10px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.accordion_ham_list li a:hover{
	color: #48A6D4;
}


@media only screen and (max-width: 767px) {
.ham_inner{
	max-width: 310px;
	margin:  0 auto;
}
	.ham_menu .ham_menu_list .arrow a{
	font-size: 16px;
}
	.accordion_area .title p{
	font-size: 16px;
}
	.accordion_ham_list li a{
	font-size: 14px;
}
	
	.ham_menu .ham_menu_list .arrow a::after{
	width: 25px;
	height: 25px;
}

}



/*======================
more_btn
======================*/
/*.more_btn{
	min-width: 400px;
	margin: 0 auto;
}*/
.more_btn a{
	font-family: "Zen Maru Gothic", sans-serif;
	min-width: 300px;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 32px;
	padding-right: 120px;
	display: inline-block;
	color: #fff;
	text-align: left;
	font-size: 16px;
	font-weight: 500;
	transition: all .3s;
	border-radius: 6px;
	background-color: #EE778F;
	position: relative;
  z-index: 0;
	overflow: hidden;
	box-shadow: 3px 3px 12px -6px rgba(119,119,119,0.6);
}

.more_btn a::after{
content: "";
	background-image: url( "images/icon/arrow_right_white.svg");
	background-repeat: no-repeat;
	background-size: contain;
	width: 25px;
	height: 25px;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	transition: all .3s;
}

.more_btn a:hover::after{
right: 15px;
}


@media only screen and (max-width: 768px) {
.more_btn a{
	max-width: 345px;
	width: 100%;
	padding-left: 35px;
	padding-right: 65px;
	font-size: 16px;
	padding-top: 15px;
	padding-bottom: 15px;
}
}

@media only screen and (max-width: 767px) {
.more_btn a{
	min-width: 100%;
	max-width: 345px;
}

}


/*======================
pankuzu
======================*/
.pankuzu span{
	vertical-align: top;
	font-size: 14px;
}

@media only screen and (max-width: 767px) {
	.pankuzu .container{
		max-width: 100%;
	}
}


/*======================
list_dot 
======================*/
.list_dot li{
	position: relative;
	padding-left: 15px;
	margin-bottom: 8px;
	font-size: 16px;
	line-height: 1.4;
}
.list_dot li:last-child{
	margin-bottom: 0;
}
.list_dot li:before {
	content: "";
    border-radius: 50%;
    width: 7px;
    height: 7px; 
    display: block;
    position: absolute; 
    left: 0; 
    top: 0.55em; 
    background: #86AF26; 
    }

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

}
@media only screen and (max-width: 767px) {
.list_dot li{
	font-size: 14px;
	padding-left: 14px;
}
	.list_dot li:before {
    width: 7px;
    height: 7px; 
    }
}

/*======================
hukidasi
======================*/
.hukidasi_area{
	display: flex;
	align-items: center;
	justify-content: center;
}
 .hukidasi_area .img_area{
	margin-right: 30px;
}
.hukidasi_area .img_area img{
	 width: 146px;
	height: auto;
		 border-radius: 50%;
}

.hukidasi_area .img_area .name{
	margin-top: -16px;
}
 .hukidasi_area .img_area .name p{
	 position: relative;
	 border-radius: 50px;
	 font-size: 16px;
	 background-color: #EE778F;
	 padding: 2px;
	 width: 80%;
	 margin: 0 auto;
	 z-index: 1;
}

 .hukidasi_area .txt{
	position: relative;
  display: inline-block;
  padding: 20px 25px;
	 padding-left: 35px;
  font-size: 16px;
	 border-radius: 6px;
  background: #EFE9D9;
}
 .hukidasi_area .txt::before{
	  content: "";
  position: absolute;
  top: 50%;
  left: -26px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid #EFE9D9;
  z-index: 2;
}
/* .hukidasi_area .txt::after{
	  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -14px;
  border: 14px solid transparent;
  z-index: 1;
}*/


/*右むき*/
.hukidasi_area.hukidasi_right{
	flex-direction: row-reverse;
}
 .hukidasi_area.hukidasi_right .txt::before{
	content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -15px;
  border: 15px solid transparent;
  border-left: 15px solid #EFE9D9;
}
.hukidasi_area.hukidasi_right .img_area{
	margin-left: 30px;
	margin-right: 0;
}



/*hukidasi_area_blue*/
.hukidasi_area_blue .txt{
	background: #F2F6F8;
	    width: 600px;
    padding:  30px;
}
 .hukidasi_area_blue .txt::before{
  border-right: 15px solid #F2F6F8;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
	.hukidasi_area .txt{
		padding: 20px;
		font-size: 15px;
	}
/*	.hukidasi_area .img_area img{
	 width: 100%;
}*/
}


@media only screen and (max-width: 1040px) {
	.hukidasi_area{
	display: block;
}
	 .hukidasi_area .img_area{
	margin-right: 0;
		 margin: 0 auto;
		 margin-bottom: 25px;
}
	.hukidasi_area .img_area img{
	 width: 145px;
}
	 .hukidasi_area .txt{
	width: 100%;
  padding:  20px;
  font-size: 14px;
}
	 .hukidasi_area .txt:before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-bottom: 15px solid #EFE9D9;
}
	
	.hukidasi_area.hukidasi_right .img_area{
margin-right: 0;
		 margin: 0 auto;
		 margin-bottom: 35px;
}
	 .hukidasi_area.hukidasi_right .txt::before{
	content: "";
  position: absolute;
  top: -14px;
  left:50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-bottom: 15px solid #EFE9D9;
}
	
	.hukidasi_area_w .txt::before{
	border-bottom: 15px solid #EFE9D9;
}
	 .hukidasi_area_blue .txt::before{
  border-bottom: 15px solid #EFE9D9;
}
	
	
}


/*======================
table
======================*/
.table{
	width: 618px;
	margin: 0 auto;
}

.table th{
	font-family: 'Noto Sans JP', sans-serif;
	width: 178px;
	color: #fff;
	background-color: #1A346E;
	padding: 10px 32px;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.05em;
	text-align: center;
	border: 1px solid #1A346E;
}
.table td{
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	width: 178px; 
	padding: 10px 32px;
	vertical-align: middle;
	background-color: #fff;
	text-align: center;
	border: 1px solid #BEBEBE;
}



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

}
@media only screen and (max-width: 767px) {
.table{
	width: 100%;
	border-collapse: collapse;
}
.table th{
	display: block;
	width: 100%;
	padding: 16px;
}
	.table td{
		display: block;
	width: 100%; 
	padding: 20px 15px;
}

}


/*======================
form
======================*/

input[type=email], input[type=search], input[type=text], input[type=url],select, textarea,radio{
	-webkit-appearance: none;
}

input[type="submit"] {
  border-radius: 0;
	  border-radius: 10px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="radio"]{
	width: auto!important;
	position: relative;
	top: 2px;
}
input[type="checkbox"]{
	width: auto!important;
	position: relative;
	top: 2px;
	height: 15px!important;
	margin: 0!important;
	margin-right: 6px!important;
}

.form{
	padding: 45px;
	background-color: #fff;
	border-radius: 12px;
	box-shadow: 0px 0px 20px -6px rgba(183,191,163,0.3);
	margin-top: 45px;
}
.form dl{
	display: table;
	justify-content: center;
}
.form .border-none{
	padding:  0;
	border-top: none;
}
.form dl dt{
	font-size: 16px;
	width: 300px;
	background-color: #F5F5F5;
	border: 1px solid #C2C2C2;
	display: table-cell;
	vertical-align: middle;
	padding-left: 50px;
}

.form dl dd{
	width: 620px;
	background-color: #fff;
	border: 1px solid #C2C2C2;
	padding: 25px 40px;
}


@media only screen and (max-width: 1023px) {
	.form dl dt{
	padding-left: 30px;
}
}

@media only screen and (max-width: 940px) {
.form dl{
	width: 100%;
	display: block;
}
	.form dl dt{
	width: 100%;
	display:block;
	padding: 20px;
}
.form dl dd{
width: 100%;
	display:block;
	padding: 30px 20px;
}
}

@media only screen and (max-width: 767px) {
	.form{
	padding:  20px;
		padding-bottom: 40px;
	margin-top: 35px;
		border-radius: 6px;
}
	.form dl dd{
	padding: 25px 20px;
}
}


/*===========
必須・任意
===========*/
.hissu{
	display: inline-block;
	width:58px;
	height: 100%;
	padding: 2px 12px;
	padding-bottom: 3px;
	text-align: center;
	background-color: #E19393;
	color: #fff;
	font-weight: 400;
	font-size: 12px;
	margin-right: 12px;
	border-radius: 3px;
	line-height: 1.4;
}
.any{
	display: inline-block;
	width:58px;
	height: 100%;
	padding: 2px 12px;
	padding-bottom: 3px;
	text-align: center;
	background-color: #9B9B9B;
	color: #fff;
	font-weight: 400;
	font-size: 12px;
	margin-right: 12px;
	border-radius: 3px;
	line-height: 1.4;
}

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

}


/*===========
入力欄
===========*/
.form dl dd input{
	width: 100%;
	height: 45px;
	padding: 0 20px;
	background-color: #F1F1F1;
	border: none;
	font-size: 16px;
}
@media only screen and (max-width: 767px) {
.form dl dd input{
	padding: 0 15px;
}
}

/*===========
日付
===========*/
.form dl dd input[type="date"] {
	width: 360px;
}

/*===========
セレクト　icon変更
===========*/
.form dl dd select{
	cursor: pointer;
		width: 100%;
	padding: 15px 20px;
	background-color: #fff;
	border: 1px solid #aaaaaa;
	background-image: url( "images/icon/arrow_btm.svg");
	background-repeat: no-repeat;
	background-size: 15px 9px;
    background-position: right 3% top 50%;
}


/*===========
チェックボックス
===========*/
.form .check_wrap{
	width: 375px;
	margin-bottom: 20px;
}
.form .form_check label{
	font-size: 16px;
	cursor: pointer;
	margin-right: 20px;
}


.wpcf7-form-control-wrap {
  display: block;
}
span.wpcf7-list-item {
  margin: 0 30px 0 0; /* 項目右側の余白設定と、デフォルトの左側の余白を打ち消す */
  position: relative;
}
.wpcf7-list-item-label {
  cursor: pointer; /* labelにhoverした時にカーソルを表示させる */
  font-size: 16px; /* 項目のフォントサイズ */
}
input[type="checkbox"] {
  opacity: 0; /* デフォルトのチェックボックスを見えなくする */
  position: absolute;
}
.wpcf7-list-item-label::before {
  /* チェックボックスのデザイン */
  border: 1px solid #707070;
  content: "";
  display: inline-block;
	width: 16px;
  height: 16px;
  margin-right: 10px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  
}
input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  /* チェックアイコン */
  background: url( "images/icon/form_check.svg") no-repeat center;
  background-size: contain;
  content: "";
	    width: 8px;
    height: 6px;
    left: 4px;
    position: absolute;
    top: 10px;
 
}
input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
  /* チェックしたボックスの背景色を設定 */
  background-color: #345CCB;
}

	.form_check .wpcf7-list-item{
		display: block!important;
	}

@media only screen and (max-width: 767px) {
	.form .check_wrap{
		width: 280px;
	}
	.form .form_check label{
	margin-right: 10px;
		  font-size: 14px;
}
	
.form .form_check .wpcf7-list-item-label {
  font-size: 14px;
}
	.wpcf7-list-item-label::before {
	width: 16px;
  height: 16px;
}
input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
    top: 7px;
}

}
@media only screen and (max-width: 374px) {

}




/*===========
テキストエリア
===========*/
.form dl dd textarea{
	font-family: 'メイリオ', sans-serif;
	width:100%;
	height: 190px;
	padding:20px;
	background-color: #F1F1F1;
	border: none;
}

/*===========
送信ボタン
===========*/
.send-btn{
	width: 270px;
	height: 65px;
	margin: 0 auto;
	margin-top: 20px;
	position: relative;
	transition: .3s;
	cursor: pointer;
}

.form .send-btn input{
	font-family: "Noto Sans JP", sans-serif;
display: inline-block;
	width: 100%;
	height: 65px;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	position: relative;
	transition: .3s;
	cursor: pointer;
	border-radius: 50px;
	background-color: #A4BF74;
}

.form .send-btn input:hover{
	opacity: .6;
}


@media only screen and (max-width: 767px) {
.send-btn{
	height: 45px;
}
	.form .send-btn input{
	height: 45px;
	font-size: 14px;
}
}


::placeholder {
  color: #8B8B8B;
}
/* 旧Edge対応 */
::-ms-input-placeholder {
  color: #8B8B8B;
}
/* IE対応 */
:-ms-input-placeholder {
  color:#8B8B8B;
}

/*.send-btn{
	overflow: hidden;
}*/



/*======================
横にスクロールできる
======================*/
@media only screen and (max-width: 767px) {
/*	  .sp-sc::before {
        content: "※横にスクロールできます。";
        display: block;
        color: #DB4619;
        font-size: 12px;
        margin-bottom: 5px;
    }*/
    .sp-sc {
        width: 100%;
        overflow: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    .sp-sc table {
        width: 100%;
    }
	 .sp-sc img{
        max-width: 800px;
    }
}


/*------------------------------------------------------------
フッター入ったら消える
--------------------------------------------------------------*/
.is-hidden {
  visibility: hidden;
  opacity: 0;
	transition: .3s;
}




.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
	font-size: 14px;
}

.wpcf7-form-control.wpcf7-radio{
	display: flex;
	justify-content: center;
}
.wpcf7-radio .wpcf7-list-item label{
	width: auto;
}

.wpcf7-form-control.wpcf7-radio.entry_radio{
	flex-wrap: wrap;
	justify-content: flex-start;
}

.wpcf7-not-valid-tip{
	font-size: 14px!important;
}
