@charset "UTF-8";
/*------------------------
スタイルの初期化
------------------------*/
body,div,pre,p,blockquote,
form,fieldset,input,textarea,select,option,
dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,
table,th,td,embed,object,figure { margin:0; padding:0; }
html {
	font-size: 62.5%;
}
@media screen and (min-width:768px) and ( max-width:1620px) {
	html {
		font-size: calc(100vw / 162);
	}
}
body {
	width: 100%;
	min-width: 1200px;
	font-family: "Yu Gothic", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",'Zen Kaku Gothic New','メイリオ','Meiryo','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
	font-weight: 400;
	font-size: 18px;
	color: var(--txtcolor);
	letter-spacing: .08em;
	line-height: 1.6;
	text-autospace:ideograph-alpha;
	font-feature-settings: "palt";
	position: relative;
}
main {
	display: block;
}
a {
	text-decoration: none;
	color: var(--txtcolor);
	transition: all .3s ease 0s;
}
a img {
	border:0;
}
img{
	vertical-align:top;
	max-width: 100%;
}
ul, ol { list-style-type:none; }
sup { position: relative; vertical-align: baseline; top: -0.9em; font-size: 0.5em; }
hr { display: none; }
h1,h2,h3,h4,h5,h6 { font-size: 100%; font-weight: normal;}
th, caption{ text-align: left; font-weight: normal; }
th,td { empty-cells:show; }

input[type="text"] , 
input[type="email"] , 
input[type="tel"] , 
input[type="password"] { padding:0 2px; margin-right:0.4em; }
input[type="submit"] { display:inline; margin:0; }
textarea { padding:2px; }
optgroup { font-style:normal; }
option { padding-right:10px; }
input[name="mail"] {
	width: 90%!important;
}
*:focus {
outline: none;
}
*{
	box-sizing: border-box;
}
:root {
	--txtcolor: #141414;
	--btncolor: #07351a;
	--accentcolor: #d3dc4b;
	--visitcolor: #362911;
	--bgcolor: #f8f9e9;
	--mygray: #f4f4f4;
}
.flex-box {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.mf {
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	letter-spacing: .12em;
}
.pc {
	display: block!important;
}
.pcib {
	display: inline-block!important;
}
.sp {
	display: none!important;
}
.must {
	display: inline-block;
	background: var(--numcolor);
	padding: 6px;
	font-size: 1rem;
	color: #fff;
	line-height: 1;
	margin-left: .5em;
	vertical-align: 1px;
}
/*ボタンデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"],button {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
	font-family: "Yu Gothic", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",'Zen Kaku Gothic New','メイリオ','Meiryo','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
	outline-offset: -2px;
}
input[type="text"] , 
input[type="email"] , 
input[type="tel"] , 
input[type="password"] ,
input[type="url"],
textarea {
	-webkit-appearance: none;
	appearance: none;
	border-radius:0;
	padding:8px;
	border:1px solid var(--mygray);
	width: 90%;
	box-sizing: border-box;
}
area{
	border:none;
	outline:none;
}
input, select, textarea {
	font-size: 1.4rem;
}
textarea {
	width: 90%;
	height: 10em;
}
select {
	text-overflow: "";
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #fff url(/pc/img/common/arrow_d.svg) no-repeat right 10px center;
	background-size: auto 4px;
	padding: 8px 40px 8px 8px;
	border: 1px solid var(--mygray);
	max-width: 16em;
	color: var(--txtcolor);
}
select::-ms-expand {
	display: none;
}
::placeholder {
	color: var(--mygray);
}
/*チェックボックスのスタイル*/
input[type="checkbox"]{
	border: 1px solid var(--mygray);
	vertical-align: -6px;
	-webkit-appearance: none;
	position: relative;
	box-sizing: border-box;
	width: 22px;
	height: 22px;
	background: #fff;
	margin-right: 5px;
}
input[type="checkbox"]:checked {
	background: #fff;
	border: 1px solid var(--accentcolor);
}
input[type="checkbox"]:checked:before {
	content: '';
	position: absolute;
	left: 2px;
	top: 14px;
	display: block;
	width: 7px;
	height: 2px;
	background: var(--accentcolor);
	-webkit-transform: rotate(45deg);
	-webkit-transform-origin: right center;
}
input[type="checkbox"]:checked:after {
	content: '';
	display: block;
	position: absolute;
	left: 8px;
	top: 14px;
	width: 12px;
	height: 2px;
	background: var(--accentcolor);
	-webkit-transform: rotate(-53deg);
	-webkit-transform-origin: left center;
}
/*ラジオボタンのスタイル*/
input[type="radio"] {
	-webkit-appearance: none;
	appearance: none;
	width: 17px;
	height: 17px;
	border: 1px solid transparent;
	position: relative;
	margin-right: 5px;
}
input[type="radio"]::before {
	content: "";
	display: block;
	position: absolute;
	top: 1px;
	left: 0;
	width: 15px;
	height: 15px;
	border: 1px solid var(--mygray);
	border-radius: 50%;
}
input[type="radio"]::after {
	content: '';
	display: block;
	position: absolute;
	top: 5px;
	left: 4px;
	width: 9px;
	height: 9px;
	background: var(--mygray);
	border-radius: 50%;
}
input[type="radio"]:checked::before {
	border: 1px solid var(--accentcolor);
}
input[type="radio"]:checked::after {
	content: '';
	display: block;
	position: absolute;
	top: 5px;
	left: 4px;
	width: 9px;
	height: 9px;
	background: var(--accentcolor);
	border-radius: 50%;
}
input[type="submit"] {
	display: block;
	width: 46%;
	margin: auto;
	font-size: 1.8rem;
	color: #fff;
	line-height: 1;
	font-family: "Yu Gothic", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",'Zen Kaku Gothic New','メイリオ','Meiryo','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
	text-align: center;
	padding: 20px;
	background: var(--btncolor);
	border-radius: 50vw;
	transition: all .3s ease 0s;
}
input[type="submit"]:hover {
	background: var(--accentcolor);
}
table {
	width: 100%;
	border-collapse: collapse;
	box-sizing: border-box;
}
/*------------------------
header
------------------------*/
header {
	position: sticky;
	top: 0;
	background: #fff;
	z-index: 100;
}
header .inner {
	justify-content: space-between;
	align-items: center;
	padding-left: 5rem;
	transition: all .3s ease 0s;
}
header .inner .logo-area .desc {
	display: block;
	font-size: max(1.4rem,12px);
	font-weight: 500;
	line-height: 1;
	margin-bottom: 10px;
	transition: all .3s ease 0s;
}
header .inner .logo-area .logo {
	width: max(24.4rem,200px);
	transition: all .3s ease 0s;
}
header .inner .nav-area {
	align-items: stretch;
}
header .inner .nav-area .left {
	flex-direction: column;
	align-items: flex-end;
	margin-right: 30px;
}
header .inner .nav-area .tel-area {
	align-items: center;
	line-height: 1;
	margin: 20px 0 15px;
	transition: all .3s ease 0s;
}
header .inner .nav-area .tel-area .tel {
	background: url(../img/common/icn_tel.svg) no-repeat left center;
	background-size: 34px;
	padding-left: 44px;
	font-size: max(3.2rem,28px);
	font-weight: 500;
}
header .inner .nav-area .tel-area .time {
	font-size: max(1.3rem,12px);
	margin-left: 8px;
}
header .inner .nav-area .tel-area .time span {
	font-size: max(1.5rem,14px);
}
header .inner .nav-area ul li a {
	display: block;
	padding: 0 15px;
	font-size: max(1.6rem,14px);
	font-weight: 500;
	line-height: 1;
}
header .inner .nav-area ul li:last-of-type a {
	padding: 0 0 0 15px;
}
header .inner .nav-area ul li a::after {
	content: '';
	display: block;
	width: 0;
	transition: width 0.3s;
	border-bottom: 4px solid var(--accentcolor);
	margin: 10px auto 0;
	transition: all .3s ease 0s;
}
header .inner .nav-area ul li a:hover::after {
	width: 100%;
}
header .inner .btn-area .h-btn {
	width: max(13rem,100px);
	height: 100%;
	margin-left: 1px;
	transition: all .3s ease 0s;
}
header .inner .btn-area .h-btn a {
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	font-size: max(1.6rem,14px);
}
header .inner .btn-area .h-btn a:hover {
	opacity: .7;
}
.btn-area .visit a {
	background: var(--visitcolor);
	color: #fff;
}
.btn-area .materials a {
	background: var(--accentcolor);
}
.btn-area .contact a {
	background: var(--btncolor);
	color: #fff;
}
header .inner .btn-area .h-btn .icn {
	width: 46px;
	height: 28px;
	margin-bottom: 12px;
}
header .inner .btn-area .h-btn.contact .icn {
	width: 30px;
	height: 28px;
}
header .inner .btn-area .h-btn .icn img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
header .inner .btn-area .h-btn .txt {
	display: block;
	line-height: 1;
}
/*追従*/
header.sticky .inner {
	padding-left: 3rem;
}
header.sticky .inner .logo-area .desc {
	font-size: 12px;
	margin-bottom: 5px;
}
header.sticky .inner .logo {
	width: 140px;
}
header.sticky .inner .nav-area .tel-area {
	margin: 10px 0 8px;
}
header.sticky .inner .btn-area .h-btn {
	width: 100px;
}
header.sticky .inner .btn-area .h-btn a {
	font-size: 13px;
}
header.sticky .inner .nav-area ul li a::after {
	margin: 6px auto 0;
}
@media screen and (max-width:1300px) {
	header .inner .logo-area .desc {
		font-size: 12px;
	}
	header .inner .logo-area .logo {
		width: 200px;
	}
	header .inner .nav-area ul li a {
		font-size: 13px;
		padding: 0 10px;
	}
	header .inner .btn-area .h-btn {
		width: 100px;
	}
	header .inner .btn-area .h-btn a {
		font-size: 13px;
	}
} 
/*------------------------
お問い合わせ
------------------------*/
.bottom-contact {
	padding-bottom: 60px;
	margin-bottom: 100px;
	position: relative;
}
.bottom-contact::before {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 274px;
	background: var(--mygray) url(../img/common/bg_pat.jpg);
	z-index: -1;
}
.bottom-contact .inner {
	width: 1200px;
	margin: auto;
	background: #fff;
	padding: 60px;
	box-shadow: 1px 1px 20px rgba(4, 0, 0, .1);
}
.bottom-contact .inner .ttl-area {
	text-align: center;
	color: var(--btncolor);
	line-height: 1;
	margin-bottom: 30px;
}
.bottom-contact .inner .ttl-area h2 {
	font-size: 32px;
	font-weight: 500;
	margin-bottom: 20px;
}
.bottom-contact .inner .ttl-area span {
	display: block;
	font-size: 21px;
	font-weight: 500;
}
.bottom-contact .inner .tel-area {
	justify-content: center;
	align-items: center;
	margin-bottom: 40px;
}
.bottom-contact .inner .tel-area .tel {
	background: url(../img/common/icn_tel.svg) no-repeat left center;
	background-size: 64px;
	padding-left: 76px;
	font-size: 56px;
	font-weight: 500;
}
.bottom-contact .inner .tel-area .time {
	font-size: 16px;
	margin-left: 8px;
}
.bottom-contact .inner .tel-area .time span {
	font-size: 18px;
}
.bottom-contact .inner .btn-area {
	justify-content: center;
	gap: 0 16px;
}
.bottom-contact .inner .btn-area .h-btn {
	width: 336px;
}
.bottom-contact .inner .btn-area .h-btn a {
	display: flex;
	align-items: center;
	padding: 20px;
	font-size: 21px;
	font-weight: 500;
	line-height: 1;
}
.bottom-contact .inner .btn-area .h-btn a:hover {
	opacity: .6;
}
.bottom-contact .inner .btn-area .h-btn .icn {
	width: 46px;
	height: 28px;
	margin-right: 12px;
}
.bottom-contact .inner .btn-area .h-btn.contact .icn {
	width: 30px;
	height: 28px;
}
.bottom-contact .inner .btn-area .h-btn .icn img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
/*------------------------
page-top
------------------------*/
.page-top {
	text-align: right;
	width: 78px;
	height: 68px;
	position: sticky;
	bottom: 0;
	z-index: 100;
	opacity: 0;
	margin: 0 30px 0 auto;
}
.page-top a {
	display: block;
	width: 100%;
	height: 100%;
	background: var(--btncolor);
	position: relative;
}
.page-top a:hover {
	transform: translateY(-3px);
	box-shadow: 2px 2px 10px rgba(0,0,0,.14);
}
.page-top a::before {
	content: '';
	position: absolute;
	width: 8px;
	height: 8px;
	border-top: 3px solid #fff;
	border-left: 3px solid #fff;
	transform: translate(-50%,-50%) rotate(45deg);
	top: calc(50% - 2px);
	left: 50%;
}
.page-top a::after {
	content: '';
	position: absolute;
	width: 3px;
	height: 16px;
	background: #fff;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
/*------------------------
footer
------------------------*/
footer .f-top {
	background: var(--btncolor);
	padding: 60px 0;
}
footer .f-top .inner {
	width: 1200px;
	margin: auto;
	justify-content: space-between;
}
footer .f-top .inner .left nav {
	margin-bottom: 40px;
}
footer .f-top .inner .left nav ul li a {
	display: block;
	padding: 0 20px;
	font-size: 16px;
	color: #fff;
	line-height: 1;
}
footer .f-top .inner .left nav ul li:first-of-type a {
	padding: 0 20px 0 0;
}
footer .f-top .inner .left nav ul li a::after {
	content: '';
	display: block;
	width: 0;
	transition: width 0.3s;
	border-bottom: 2px solid var(--accentcolor);
	margin: 8px auto 0;
}
footer .f-top .inner .left nav ul li a:hover::after {
	width: 100%;
}
footer .f-top .inner .btn-area .h-btn {
	width: 180px;
}
footer .f-top .inner .btn-area .h-btn .icn {
	width: 30px;
	height: 20px;
	margin-right: 8px;
}
footer .f-top .inner .btn-area .h-btn.contact .icn {
	height: 16px;
}
footer .f-top .inner .btn-area .h-btn .icn img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
footer .f-top .inner .btn-area .h-btn:not(.first-of-type) {
	margin-top: -1px;
}
footer .f-top .inner .btn-area .h-btn a {
	display: flex;
	align-items: center;
	padding: 10px;
	min-height: 42px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	border: 1px solid #fff;
}
footer .f-top .inner .btn-area .h-btn a:hover {
	opacity: .6;
}
footer .corp {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	width: 1200px;
	margin: auto;
	padding: 16px 0;
}
footer .corp .company .logo {
	width: 180px;
	margin-bottom: 10px;
}
footer .corp span {
	display: block;
	line-height: 1;
}
footer .corp .right .logo {
	width: 247px;
	margin: 0 0 6px auto;
}
footer .corp .copy {
	font-size: 14px;
	line-height: 1;
}
@media screen and (max-width:1240px) {
	.bottom-contact .inner {
		width: 1160px;
	}
	.f-top .inner {
		padding: 0 20px;
	}
	footer .corp {
		padding: 16px 20px;
	}
}