@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;600&family=Noto+Sans+JP:wght@400;500;700&family=Shippori+Mincho:wght@500;600&display=swap');

/* font weight*/
/*EB+Garamond:weight*/
/*Regular:400*/
/*SemiBold:600*/

/*Noto+Sans+JP:wght*/
/*Regular:400*/
/*Medium:500*/
/*Bold:700*/


/*Shippori+Mincho:wght*/
/*Medium:500*/
/*SemiBold:600*/

/* CSS Document */

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html{
	font-feature-settings:"palt"; /* 文字間を自動調整 */
}

body{
	min-height: 100vh;
	-webkit-text-size-adjust: 100%;
	overflow-wrap: break-word;
	word-wrap: break-word;
	-webkit-touch-callout: none; /* 画像の長押しポップアップを抑止（iOSのみ）  */
	touch-action: manipulation; /* ダブルタップのズームを抑止 */
	color:#1A1A1A;
	background-color:#fff;
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}



input[type="text"], textarea{
	-webkit-user-select: auto; /* テキスト入力フォームでは許可する */
}

body,div,h1,h2,h3,h4,h5,h6,p,ol,ul,li,dl,dt,dd,small,strong,button,table{
	margin:0;
	font-size: 14px;
}

ul,ol{
	padding:0;
	list-style:none;
}
i,em,var,address{
	font-style:normal;
}
img {
	max-width: 100%;
}
a img{
	border:none;
	background:transparent;
}
input, button, textarea, select {
	font: inherit;
}
a{
	color:inherit;
	text-decoration:none;
}
.under {
	text-decoration: underline;
}

input[type="button"], input[type="number"], input[type="text"],
input[type="submit"], input[type="password"], input[type="image"],
input[type="email"],
 button{
	font-size:16px; /* iOSの拡大を抑止 */
	background-color: transparent;
	border: none;
	border-radius: 0;
	cursor: pointer;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}
/* 数字横のスピンボタンを非表示 */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
input[type="number"] {
	-moz-appearance:textfield;
}

table{
	border-collapse:collapse;
	border:none;
	border-spacing:0;
}
a,label,button{transition:opacity .1s; cursor:pointer}
label:hover,button:hover{opacity:.6}
a:hover{color:#550391}


/* common */
.center{
	text-align:center;
	margin:0 auto;
}
.left{
	text-align:left;
	margin:0 auto 0 0;
}
.right{
	text-align:right;
	margin:0 0 0 auto;
}
.reset{
	font-weight:normal;
	margin:0;
	padding:0;
}

.ff_EB {
	font-family: 'EB Garamond', serif;
}

.ff_NOTO {
	font-family: 'Noto Sans JP', sans-serif;
}

.ff_SM {
    font-family: 'Shippori Mincho', serif;
}


/* 文字色 */
.white {
	color: #FFFFFF;
}
.green {
	color: #1E4C24;
}



@media only screen and (min-width: 640px) {
	.sp_only{display:none !important;}
}

@media only screen and (max-width: 639px) {
	.pc_only{display:none !important;}
}

.container {
	display:block;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}

.base_wrapper {
	width: calc(335 / 375 * 100vw);
	min-width: 1200px;
	max-width: 1200px;
	margin: 0 auto;
}



/*-----------------------------
  MAIN-TOP
-----------------------------*/

.top_area_pc {
	width: 100vw;
	height: 100vh;
	background-image: url('../images/fv/pc_fv.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.header {
	width: 100vw;
	padding: 50px;
	display: flex;
	justify-content: space-between;
}

.logo_pc {
	width: calc(147 / 1920 * 100vw);
	max-width: 147px;
}

.navi_pc {
	margin-top: 30px;
}

.navi_pc ul{
	display: flex;
	justify-content: space-between;
}

.navi_pc li{
	font-size: 16px;
	font-weight: 500;
	color: #FFF;
	cursor: pointer;
}

.navi_pc li>a {
	color: #FFF;
}

.navi_pc li>a:hover {
	opacity: .6;
	color: #FFF;
}

.mr50 {
	margin-right: 50px;
}

.fix_header {
	position: absolute;
	width: 100vw;
	height: 80px;
	background: #FFF;
	padding-left: 50px;
	display: flex;
	justify-content: space-between;
	z-index: 3;
	top: -80px;
	align-items: center;
}

.fix_logo_pc {
	width: calc(54 / 1920 * 100vw);
	max-width: 54px;
}

.fix_navi_pc ul{
	display: flex;
	justify-content: center;
	width: calc(1316 / 1920 * 100vw);
}

.fix_navi_pc li{
	font-size: calc(16 / 1920 * 100vw);
	font-weight: 500;
	color: #000;
	cursor: pointer;
}

.fix_navi_pc li>a {
	color: #000;
}

.fix_navi_pc li>a:hover {
	opacity: .6;
	color: #000;
}

.fix_right_tel {
	width: calc(230 / 1920 * 100vw);
}

.fix_right_mail {
	width: calc(230 / 1920 * 100vw);
	height: 80px;
	background: #1E4C24;
}

.fix_inquiry_tel {
	font-size: calc(27 / 1920 * 100vw);
	font-weight: 600;
	line-height: 37px;
	text-align: center;
}

.fix_inquiry_tel span{
	display: inline-block;
	width: calc(34 / 1920 * 100vw);
	margin-right: 5px;
    vertical-align: middle;
}

.fix_inquiry_text {
	font-size: calc(12 / 1920 * 100vw);
	font-weight: 400;
	text-align: center;
	margin-left: calc(20 / 1920 * 100vw);
	margin-top: -7px;
}


.fix_inquiry_mail {
	font-size: calc(15 / 1920 * 100vw);
	font-weight: 500;
	margin-top: 29px;
	line-height: 21px;
	color: #FFF;
}

.fix_inquiry_mail span{
	display: inline-block;
	width: calc(27 / 1920 * 100vw);
	margin-left: calc(23 / 1920 * 100vw);
	margin-right: calc(7 / 1920 * 100vw);
	vertical-align: middle;
}

.fix_right_mail a{
	display: block;
}

.fix_right_mail a:hover{
	color: #FFF;
	opacity: .6;
}



.top_catch {
	position: absolute;
	width: 676px;
	top: calc(634 / 1080 * 100vh);
	left: calc(197 / 1920 * 100vw);
}

.top_catch h1{
	font-size: 30px;
	font-weight: 600;
	color: #FFF;
	line-height: 54px;
	margin-bottom: 10px;
}

.box_deco {
	display: inline;
	background: linear-gradient(transparent 0%, #1E4C24 0%);
	box-decoration-break: clone;
}

.top_arrow {
	position: absolute;
	width: 32px;
	bottom: 30px;
	left: 0;
	right: 0;
	margin: 0 auto;
	cursor: pointer;
}

.top_arrow:hover {
	opacity: .6;
}

.top_under_area {
	display: flex;
	padding: 160px 0px;
}

.top_under_left {
	width: 550px;
	font-weight: 600;
	font-size: 45px;
	line-height: 65px;
}

.top_under_right {
	width: 650px;
	font-weight: 500;
	font-size: 26px;
	line-height: 64px;
	margin-top: -10px;
}


@media only screen and (max-width: 640px) {

	.base_wrapper {
		max-width: calc(335 / 375 * 100vw);
		min-width: calc(335 / 375 * 100vw);
		margin: 0 auto;
	}

	.top_area_sp {
		width: 100vw;
		height: 600px;
		background-image: url('../images/fv/sp_fv.jpg');
		background-repeat: no-repeat;
		background-size: cover;
		position: relative;
	}

	.header_sp {
		width: 100vw;
		padding: 20px;
		display: flex;
		justify-content: space-between;
	}

	.logo_sp {
		width: calc(60 / 375 * 100vw);
		max-width: 60px;
	}

	.adj_sp {
		width: calc(181 / 375 * 100vw);
	}

	.btn_tel {
		width: calc(38 / 375 * 100vw);
		height: calc(38 / 375 * 100vw);
		background: #E1F0E3;
		border-radius: 19px;
		text-align: center;
		padding: 6px 9px;
		margin-right: 20px;
		position: fixed;
		right: calc((76 / 375 * 100vw) + 40px );
		z-index: 2;
	}

	.btn_mail {
		width: calc(38 / 375 * 100vw);
		height: calc(38 / 375 * 100vw);
		background: #E1F0E3;
		border-radius: 19px;
		text-align: center;
		padding: 11px 10px 12px;
		position: fixed;
		right: calc((38 / 375 * 100vw) + 40px );
		z-index: 2;
	}

	.btn_menu {
		width: calc(38 / 375 * 100vw);
		height: calc(38 / 375 * 100vw);
		position: fixed;
		right: 20px;
		z-index: 2;
	}

	.top_catch {
		position: absolute;
		width: calc(260 / 375 * 100vw);
		top: calc(125 / 375 * 100vw);
		left: 20px;
	}

	.top_catch h1{
		font-size: 17px;
		font-weight: 600;
		color: #FFF;
		line-height: 37px;
		padding: 2px 0px 3px;
		margin-bottom: 10px;
	}

	.top_under_area {
		display: block;
		padding: 70px 0px 180px;
	}

	.top_under_left {
		width: 100%;
		font-size: 33px;
		line-height: 47px;
	}

	.top_under_right {
		width: 100%;
		font-weight: 500;
		font-size: 22px;
		line-height: 48px;
		margin-top: 25px;
	}

}


/*-----------------------------
  MAIN
-----------------------------*/

.best3_area {
	margin: 0 auto;
	padding-bottom: 0px;
}

.area_title {
	margin: 0 auto;
	text-align: center;
	color: #1E4C24;
}

.area_title h2{
	font-size: 60px;
	font-weight: 600;
}

.area_title h2>span{
	font-size: 120px;
	font-weight: 600;
	color: #618D67;
}

.sub_title{
	font-size: 25px;
	font-weight: 400;
}

.mt-10 {
	margin-top: -10px;
}

.sub_title_hr {
	border-bottom: solid 5px #1E4C24;
	width: 100px;
	height: 45px;
	margin: 0 auto 65px;
}

@media only screen and (max-width: 640px) {

	.area_title h2{
		font-size: 35px;
		line-height: 55px;
	}

	.area_title h2>span{
		font-size: 65px;
	}

	.sub_title{
		font-size: 20px;
	}

	.mt-10 {
		margin-top: 5px;
	}

	.sub_title_hr {
		border-bottom: solid 5px #1E4C24;
		width: 70px;
		height: 30px;
		margin: 0 auto 40px;
	}

}


.point_block {
	display: flex;
	margin-bottom: 180px;
}

.point_image {
	width: 50%;
}

.point_box {
	width: 50%;
}

.number_box {
	width: 100px;
	height: 100px;
	background: #618D67;
	font-size: 80px;
	color: #FFF;
	line-height: 90px;
	text-align: center;
	margin-bottom: 35px;
}

.point_title {
	font-size: 35px;
	font-weight: 600;
	line-height: 51px;
	margin-bottom: 20px;
}

.point_text {
	font-size: 16px;
	font-weight: 400;
	line-height: 36px;
}

.pr50 {
	padding-right: 50px;
}

.pl50 {
	padding-left: 50px;
}

@media only screen and (max-width: 640px) {

	.best3_area {
		padding-bottom: 10px;
	}

	.point_block {
		flex-direction: column-reverse;
		margin-bottom: 90px;
	}

	.point_image {
		width: 100%;
		margin-top: 25px;
	}

	.point_box {
		width: 100%;
	}

	.number_box {
		width: 75px;
		height: 78px;
		font-size: 60px;
		line-height: 78px;
		margin-bottom: 25px;
	}

	.point_title {
		font-size: 28px;
		line-height: 40px;
		margin-bottom: 15px;
	}

	.point_text {
		font-size: 15px;
		line-height: 30px;
	}

	.pr50 {
		padding-right: 0px;
	}

	.pl50 {
		padding-left: 0px;
	}

}

.menu_wrapper {
	display:block;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	background: #E1F0E3;
	padding-top: 120px;
}


.menu_area {
	margin: 0 auto;
	margin-bottom: 140px;
}

.menu_block {
	display: flex;
	margin-bottom: 40px;
}

.menu_image {
	width: 675px;
	height: 370px;
	vertical-align: bottom;
}

.menu_box {
	width: 525px;
	height: 370px;
}

.menu_subtitle {
	font-size: 35px;
	font-weight: 600;
	line-height: 51px;
	margin-top: 56px;
	margin-bottom: 55px;
	text-align: center;
}

.menu_text {
	font-size: 16px;
	font-weight: 400;
	line-height: 36px;
	padding: 0 45px 40px;
}

.bgc01 {
	background: #F0CF74;
}

.bgc02 {
	background: #EBCCCA;
}

.bgc03 {
	background: #A3D7DB;
}


@media only screen and (max-width: 640px) {

	.menu_wrapper {
		padding-top: 70px;
	}

	.menu_area {
		margin: 0 auto;
		margin-bottom: 80px;
	}

	.menu_block {
		flex-direction: column-reverse;
	}

	.menu_image {
		width: 100%;
		height: calc(184 / 375 * 100vw);
	}

	.menu_image img{
		vertical-align: bottom;
	}

	.menu_box {
		width: 100%;
		height: 319px;
	}

	.menu_subtitle {
		font-size: 28px;
		line-height: 40px;
		margin-top: 26px;
		margin-bottom: 26px;
		text-align: center;
	}

	.menu_text {
		font-size: 15px;
		line-height: 30px;
		padding: 0px 26px 0px;
	}

}


.works_area {
	margin: 115px auto 180px;
}


.works_block {
	display: flex;
	margin-bottom: 50px;
	padding: 66px 50px;
	background: #FFEFC3;
}

.works_box {
	width: 250px;
	margin-right: 66px;
}

.works_image {
	width: 364px;
}


.works_title {
	font-size: 45px;
	font-weight: 500;
	margin-bottom: 25px;
}

.works_title span{
	font-size: 20px;
	font-weight: 500;
	text-align: left;
	display: block;
}

.works_text {
	width: 250px;
	background: #618D67;
	color: #FFF;
	font-size: 16px;
	font-weight: 400;
	line-height: 35px;
	border-radius: 30px;
	text-align: center;
}

.works_arrow {
	width: 30px;
	align-item: center;
	margin: 120px 18px;
}

.btn_open {
	width: 250px;
	background: #1E4C24;
	color: #FFF;
	font-size: 20px;
	font-weight: 400;
	line-height: 55px;
	border-radius: 10px;
	text-align: center;
	cursor: pointer;
	margin: 65px auto;
}

.hide_area {
	display: none;
}

.btn_close {
	width: 250px;
	background: #1E4C24;
	color: #FFF;
	font-size: 20px;
	font-weight: 400;
	line-height: 55px;
	border-radius: 10px;
	text-align: center;
	cursor: pointer;
	margin: 65px auto;
}


@media only screen and (max-width: 640px) {

	.works_area {
		margin: 70px auto 100px;
	}


	.works_block {
		display: block;
		margin-bottom: 40px;
		padding: 25px;
	}

	.works_box {
		width: 100%;
		margin: 0 auto;
	}

	.works_image {
		width: 100%;
		margin: 0 auto;
	}


	.works_title {
		font-size: 33px;
		margin-bottom: 20px;
		text-align: center;
		line-height: 48px;
	}

	.works_title span{
		font-size: 18px;
		line-height: 26px;
		display: block;
		text-align: center;
	}

	.works_text {
		margin: 20px auto 40px;
	}

	.works_arrow {
		width: 30px;
		margin: 0 auto;
		transform:rotate(90deg);
	}

	.btn_open {
		width: calc(230 / 375 * 100vw);
		font-size: 16px;
		line-height: 45px;
		margin: 45px auto;
	}


	.btn_close {
		width: calc(230 / 375 * 100vw);
		font-size: 16px;
		line-height: 45px;
		margin: 45px auto;
	}

}



.area_wrapper {
	display:block;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	background: #E1F0E3;
	padding-top: 120px;
}


.area_area {
	margin: 0 auto;
	margin-bottom: 140px;
}

.area_block {
	display: flex;
	margin-bottom: 40px;
}

.area_image {
	width: 493.5px;
	margin-right: 76.5px;
}

.area_box {
	width: 630px;
}

.area_subtitle {
	font-size: 35px;
	font-weight: 600;
	line-height: 51px;
	margin-bottom: 10px;
}

.area_text {
	font-size: 25px;
	font-weight: 600;
	line-height: 36px;
	margin-bottom: 49px;
}

.area_circle_block {
	display: flex;
	justify-content: center;
	margin: 0 auto;
}

.area_circle {
	min-width: 170px;
	height: 170px;
	background: #FFF;
	border: solid 3px #1E4C24;
	border-radius: 50%;
	text-align: center;
	line-height: 164px;
	font-size: 30px;
	font-weight: 400;
	margin: 0 30px;
}


@media only screen and (max-width: 640px) {

	.area_wrapper {
		padding: 70px 0px 80px;
	}

	.area_area {
		margin: 0 auto;
		margin-bottom: 0px;
	}

	.area_block {
		display: block;
		margin-bottom: 0px;
	}

	.area_image {
		width: calc(283 / 375 * 100vw);
		margin: 40px auto 25px;
	}

	.area_box {
		width: 100%;
	}

	.area_subtitle {
		font-size: 22px;
		line-height: 32px;
	}

	.area_text {
		font-size: 16px;
		line-height: 24px;
		margin-bottom: 25px;
	}

	.area_circle_block {
		display: flex;
		justify-content: space-between;
		margin: 0 auto;
	}

	.area_circle_block02 {
		display: flex;
		justify-content: center;
		margin: 0 auto;
	}

	.area_circle {
		min-width: 90px;
		height: 90px;
		line-height: 84px;
		font-size: 15px;
		margin: 0px;
	}

	.mr45 {
		margin-right: 36px;
	}

}


.company_area {
	margin: 120px auto 180px;
}

.company_block {
	display: flex;
	margin-bottom: 148px;
}

.company_map {
	width: 676px;
	height: 500px;
	margin-bottom: 0px;
}

.company_info {
	width: 450px;
	margin-left: 75px;
}

.company_title {
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 15px;
}

.company_text {
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 30px;
}

.company_table {
	width: 100%;
}

.company_table th {
	width: 98px;
	font-size: 16px;
	font-weight: 400 !important;
	padding: 20px 0;
	text-align: left;
	border-bottom: solid 1px #707070;
}

.company_table td {
	font-size: 16px;
	font-weight: 400;
	padding: 20px 0;
	text-align: left;
	border-bottom: solid 1px #707070;
}

.table_bt {
	border-top: solid 1px #707070;
}

@media only screen and (max-width: 640px) {

	.company_area {
		margin: 70px auto 100px;
	}

	.company_block {
		display: block;
		margin-bottom: 0px;
	}

	.company_map {
		width: calc(335 / 375 * 100vw);
		height: calc(248 / 375 * 100vw);
		margin-bottom: 40px;
	}

	.company_info {
		width: 100%;
		margin-left: 0px;
		margin-bottom: 80px;
	}

	.company_title {
		font-size: 18px;
	}

	.company_text {
		font-size: 15px;
		margin-bottom: 25px;
	}

	.company_table th {
		width: 69px;
		font-size: 15px;
	}

	.company_table td {
		font-size: 15px;
	}

}



.bottom_wrapper {
	display:block;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	padding: 95px 0px;
	background-image: url('../images/cta/pc_cta.jpg');
	background-repeat: no-repeat;
	background-size: cover;

}

.bottom_area {
	margin: 0 auto;
}

.bottom_title h2{
	font-size: 45px;
	font-weight: 600;
	margin-bottom: 40px;
}

.bottom_text {
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 65px;
}

.inquiry_block {
	display: flex;
}

.inquiry_block a{
	display: block;
}

.inquiry_block a:hover{
	color: #1A1A1A;
	opacity: .6;
}

.inquiry_box {
	width: 500px;
	height: 180px;
	padding: 25px 0;
	text-align: center;
	background: #FFF;
	border-radius: 15px;
}

.inquiry_text {
	font-size: 20px;
	font-weight: 400;
}

.inquiry_tel {
	font-size: 45px;
	font-weight: 600;
	margin-top: 17px;
	line-height: 67px;
}

.inquiry_tel span{
	display: inline-block;
	width: 54px;
	margin-right: 8px;
    vertical-align: middle;
}

.inquiry_mail {
	font-size: 35px;
	font-weight: 600;
	margin-top: 20px;
	line-height: 51px;
}

.inquiry_mail span{
	display: inline-block;
	width: 58px;
	margin-right: 9px;
	vertical-align: middle;
}

.mr35 {
	margin-right: 35px;
}

@media only screen and (max-width: 640px) {

	.bottom_wrapper {
		padding: 70px 0px;
		background-image: url('../images/cta/sp_cta.jpg');
		background-size: cover;
	}

	.bottom_title h2{
		font-size: 22px;
		margin-bottom: 20px;
		text-align: center;
	}

	.bottom_text {
		font-size: 16px;
		margin-bottom: 49px;
		text-align: center;
	}

	.inquiry_block {
		display: block;
	}

	.inquiry_box {
		width: 100%;
		height: 105px;
		padding: 16px 0;
	}

	.inquiry_text {
		font-size: 14px;
	}

	.inquiry_tel {
		font-size: 33px;
		margin-top: 5px;
		line-height: 48px;
	}

	.inquiry_tel span{
		display: inline-block;
		width: 36px;
		margin-right: 5px;
	    vertical-align: middle;
	}

	.inquiry_mail {
		font-size: 23px;
		margin-top: 14px;
		line-height: 34px;
	}

	.inquiry_mail span{
		display: inline-block;
		width: 38px;
		margin-right: 6px;
		vertical-align: middle;
	}

	.mb30 {
		margin-bottom: 30px;
	}

}


.footer_wrapper {
	display:block;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	padding: 70px 0px;
	background: #1E4C24;
}

.footer_logo {
	width: 100px;
	margin: 0 auto 40px;
}

.footer_text h2 {
	font-size: 16px;
	font-weight: 400;
	text-align: center;
	color: #FFF;
}

.footer_text h2>span {
	font-size: 14px;
	font-weight: 400;
	text-align: center;
	color: #FFF;
}

.footer_link {
	display: flex;
	justify-content: space-between;
	width: 496px;
	margin: 30px auto 0px;
	color: #FFF;
}

.footer_link a{
	color: #FFF;
}

.footer_link a:hover{
	opacity: .6;
}

.pp_link {
	margin-bottom: 0px;
}

.btn_top {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 30px;
	right: 50px;
	z-index: 2;
	cursor: pointer;
	display: none;
}

.btn_top:hover {
	opacity: .6;
}

@media only screen and (max-width: 640px) {

	.footer_wrapper {
		padding: 40px 0px;
	}

	.footer_logo {
		width: 73px;
		margin: 0 auto 30px;
	}

	.footer_text h2 {
		font-size: 15px;
	}

	.footer_link {
		display: block;
		width: 100%;
		margin: 40px auto 0px;
		text-align: center;
	}

	.pp_link {
		margin-bottom: 32px;
	}

	.btn_top {
		position: fixed;
		width: 38px;
		height: 38px;
		bottom: 40px;
		right: 20px;
	}

	.nav_menu {
		position: fixed;
		top: 0;
		left: 100vw;
		width: calc(285 / 375 * 100vw);
		background: #FFF;
		height: 100vh;
		padding-top: 125px;
		z-index: 11;
	}

	.nav_menu li {
		text-align: center;
		font-size: 20px;
		font-weight: 500;
		color: #1A1A1A;
		margin-bottom: 30px;
	}

	.nav_menu_bg {
		position: fixed;
		top: 0px;
		left: 0px;
		background: #1A1A1A;
		opacity: .8;
		width: 100vw;
		height: 100vh;
		z-index: 10;
		display: none;
	}

	.close_nav {
		position: fixed;
		top: 30px;
		left: calc(61 / 375 * 100vw);
		width: 19px;
		height: 19px;
		z-index: 11;
		display: none;
	}

}

/*-----------------------------
  お問い合わせ
-----------------------------*/

.static_top {
	width: 100vw;
	position: relative;
}

.header {
	width: 100vw;
	padding: 50px;
}

.static_logo_pc img{
	width: calc(147 / 1920 * 100vw);
	max-width: 147px;
}

.inquiry_area {
	margin: 0 auto;
	width: 980px;
}

.inquiry_title {
	margin: -65px auto 0px;
	text-align: center;
}

.inquiry_title h2{
	font-size: 45px;
	font-weight: 600;
}

.inquiry_sub_title{
	font-size: 20px;
	font-weight: 400;
	margin-top: 106px;
}

.inquiry_sub_title_hr {
	border-bottom: solid 2px #1A1A1A;
	width: 100%;
	height: 70px;
	margin: 0 auto 30px;
}

.form_area {
	width: 100%;
	font-family: 'Noto Sans JP', sans-serif;
	margin-bottom: 180px;
}

.form_area p{
	font-size: 20px;
	font-weight: 500;
	line-height: 35px;
	margin-bottom: 28px;
}

.need {
	display: inline-block;
	width: 70px;
	font-size: 16px;
	font-weight: 400;
	line-height: 35px;
	color: #FFF;
	background: #A31300;
	border-radius: 30px;
	margin-left: 20px;
	text-align: center;
}

.answer_line {
	display: flex;
	margin-bottom: 68px;
}

.form_area label{
	font-size: 16px;
	font-weight: 400;
}

.form_area input[type="text"] {
	border: solid 1px #707070;
	background: #F5F5F5;
	margin-bottom: 68px;
	border-radius: 10px;
	padding-left: 1em;
	height: 50px;
	font-size: 16px;
	font-weight: 400;
	line-height: 50px;
}

.short {
	width: 355px;
}

.long {
	width: 100%;
}

.form_area textarea {
	border: solid 1px #707070;
	background: #F5F5F5;
	margin-bottom: 68px;
	border-radius: 10px;
	padding: 1em;
	height: 150px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
}

.mb20 {
	margin-bottom: 20px !important;
}

.font_red {
	color: #A31300;
}

.check_block {
	margin-bottom: 70px;
}

.check_block a{
	font-size: 20px;
	font-weight: 500;
}

.check_block label{
	font-size: 20px;
	font-weight: 500;
}

.btn_confirm {
	width: 250px;
	background: #1E4C24;
	color: #FFF;
	font-size: 20px;
	font-weight: 400;
	line-height: 55px;
	border-radius: 10px;
	text-align: center;
	cursor: pointer;
	margin: 0 auto;
}

.btn_confirm:hover {
	opacity: .6;
}


.confirm_inquiry_area {
	margin: 0 auto;
	width: 980px;
	display: none;
}

.confirm_area {
	width: 100%;
	font-family: 'Noto Sans JP', sans-serif;
	margin-bottom: 180px;
}

.confirm_area p{
	font-size: 20px;
	font-weight: 500;
	line-height: 35px;
	margin-bottom: 28px;
}

.confirm_area p>span{
	display: inline-block;
	width: 70px;
	font-size: 16px;
	font-weight: 400;
	line-height: 35px;
	color: #FFF;
	background: #A31300;
	border-radius: 30px;
	margin-left: 20px;
	text-align: center;
}

.confirm_text{
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 68px;
}

.btn_area {
	display: flex;
	justify-content: center;
	margin: 30px auto 0;
}

.btn_back {
	width: 250px;
	background: #1E4C24;
	color: #FFF;
	font-size: 20px;
	font-weight: 400;
	line-height: 55px;
	border-radius: 10px;
	text-align: center;
	cursor: pointer;
	margin: 0 35px 0 0;
}

.btn_back:hover {
	opacity: .6;
}


.btn_submit {
	width: 250px;
	background: #A31300;
	color: #FFF;
	font-size: 20px;
	font-weight: 400;
	line-height: 55px;
	border-radius: 10px;
	text-align: center;
	cursor: pointer;
}

.btn_submit:hover {
	opacity: .6;
}


.error_text {
	font-size: 16px;
	font-weight: 400;
	color: #A31300;
	display: none;
	margin-left: 1em;
}

@media only screen and (max-width: 640px) {

	.static_top {
		width: 100vw;
		position: relative;
	}

	.header {
		width: 100vw;
		padding: 20px;
	}

	.static_logo_pc img{
		width: calc(60 / 375 * 100vw);
		max-width: 60px;
	}

	.inquiry_area {
		margin: 0 auto;
		width: 100%;
	}

	.inquiry_title {
		margin: 0px auto;
		text-align: center;
	}

	.inquiry_title h2{
		font-size: 28px;
	}

	.inquiry_sub_title{
		font-size: 16px;
		margin-top: 30px;
		line-height: 26px;
	}

	.inquiry_sub_title_hr {
		border-bottom: solid 2px #1A1A1A;
		width: 100%;
		height: 42px;
		margin: 0 auto 45px;
	}

	.form_area {
		width: 100%;
		font-family: 'Noto Sans JP', sans-serif;
		margin-bottom: 100px;
	}

	.form_area p{
		font-size: 18px;
		line-height: 30px;
		margin-bottom: 17px;
	}

	.need {
		display: inline-block;
		width: 60px;
		font-size: 14px;
		line-height: 30px;
		margin-left: 15px;
	}

	.answer_line {
		display: flex;
		margin-bottom: 40px;
		flex-wrap: wrap;
	}

	.form_area label{
		line-height: 2rem;
	}

	.form_area input[type="text"] {
		margin-bottom: 50px;
	}

	.short {
		width: 283px;
	}

	.long {
		width: 100%;
	}

	.form_area textarea {
		margin-bottom: 50px;
	}

	.check_block a{
		font-size: 18px;
	}

	.check_block label{
		font-size: 18px;
	}

	.btn_confirm {
		width: calc(230 / 375 * 100vw);
		font-size: 16px;
		line-height: 45px;
	}


	.confirm_inquiry_area {
		margin: 0 auto;
		width: 100%;
		display: none;
	}

	.confirm_area {
		margin-bottom: 100px;
	}

	.confirm_area p{
		font-size: 18px;
		line-height: 30px;
		margin-bottom: 15px;
	}

	.confirm_text{
		margin-bottom: 50px;
	}

	.btn_area {
		display: flex;
		justify-content: center;
		margin: 70px auto 0;
		flex-direction: column;
	}

	.btn_back {
		width: calc(230 / 375 * 100vw);
		font-size: 16px;
		line-height: 45px;
		margin: 0 auto 40px;
	}


	.btn_submit {
		width: calc(230 / 375 * 100vw);
		font-size: 16px;
		line-height: 45px;
		margin: 0 auto 40px;
	}

}


/*-----------------------------
  プライバシーポリシー
-----------------------------*/

.pp_area {
	margin: 0 auto;
	width: 980px;
}

.pp_title {
	margin: -65px auto 0px;
}

.pp_title h2{
	font-size: 45px;
	font-weight: 600;
	text-align: center;
}

.pp_sub_title{
	font-size: 16px;
	font-weight: 400;
	margin-top: 106px;
	margin-bottom: 56px;
}

.pp_block {
	width: 100%;
	font-family: 'Noto Sans JP', sans-serif;
	margin-bottom: 180px;
}

.pp_block h3{
	width: 100%;
	font-size: 20px;
	font-weight: 700;
	line-height: 29px;
	margin-bottom: 33px;
	border-bottom: solid 4px #1A1A1A;
}

.pp_block p{
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	margin-bottom: 70px;
}

.pp_table {
	width: 100%;
	margin-top: -20px;
	margin-bottom: 70px;
}

.pp_table th {
	width: 98px;
	font-size: 16px;
	font-weight: 400 !important;
	padding: 20px 0;
	text-align: left;
	border-bottom: solid 1px #707070;
}

.pp_table td {
	font-size: 16px;
	font-weight: 400;
	padding: 20px 0;
	text-align: left;
	border-bottom: solid 1px #707070;
}

.btn_pp_back {
	width: 250px;
	background: #1E4C24;
	color: #FFF;
	font-size: 20px;
	font-weight: 400;
	line-height: 55px;
	border-radius: 10px;
	text-align: center;
	cursor: pointer;
	margin: 0 auto;
}

.btn_pp_back:hover {
	opacity: .6;
}

@media only screen and (max-width: 640px) {

	.pp_area {
		margin: 0 auto;
		width: 100%;
	}

	.pp_title {
		margin: 0 auto;
	}

	.pp_title h2{
		font-size: 28px;
	}

	.pp_sub_title{
		font-size: 15px;
		line-height: 30px;
		margin-top: 30px;
		margin-bottom: 60px;
	}

	.pp_block {
		margin-bottom: 100px;
	}

	.pp_block h3{
		font-size: 16px;
		line-height: 24px;
		margin-bottom: 25px;
	}

	.pp_block p{
		font-size: 15px;
		line-height: 23px;
		margin-bottom: 50px;
	}

	.pp_table {
		width: 100%;
		margin-top: -20px;
		margin-bottom: 60px;
	}

	.pp_table th {
		width: 98px;
		font-size: 15px;
		padding: 20px 0;
	}

	.pp_table td {
		font-size: 15px;
		padding: 20px 0;
	}

	.btn_pp_back {
		width: calc(230 / 375 * 100vw);
		font-size: 16px;
		line-height: 45px;
	}

}


.thanks_area {
	margin: 300px auto;
	width: 980px;
}

.thanks_title {
	margin: 0 auto;
	text-align: center;
}

.thanks_title h2{
	font-size: 45px;
	font-weight: 600;
}

.thanks_sub_title{
	font-size: 20px;
	font-weight: 400;
	margin-top: 106px;
	margin-bottom: 106px;
}

.btn_thanks_back {
	width: 250px;
	background: #1E4C24;
	color: #FFF;
	font-size: 20px;
	font-weight: 400;
	line-height: 55px;
	border-radius: 10px;
	text-align: center;
	cursor: pointer;
	margin: 0 auto;
}

.btn_thanks_back:hover {
	opacity: .6;
}


@media only screen and (max-width: 640px) {

	.thanks_area {
		margin: 82px auto;
		width: 100%;
	}

	.thanks_title h2{
		font-size: 28px;
	}

	.thanks_sub_title{
		font-size: 16px;
		line-height: 26px;
		margin-top: 30px;
		margin-bottom: 50px;
	}

	.btn_thanks_back {
		width: calc(230 / 375 * 100vw);
		font-size: 16px;
		line-height: 45px;
	}

}


