/* ---------- common ---------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Oriya:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&display=swap');

html,
body {
	margin-top: 0;
	padding: 0;
}
body {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	background: #fffffe;
	color: #4F4033;
	font-family:'Kiwi Maru','Noto Sans Oriya', sans-serif, 
	serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.6;
	overflow-x: hidden;
	margin-top:100px;
}
body.no-scroll{
	overflow:hidden;
}
@media screen and (max-width: 834px) {
	html,
	body {
		margin:0;
	}
	body {
		font-size: 14px;
		font-weight: 300;
		line-height: 17px;
	}
}
img{
	width:100%;
}
.pc{
	display:block !important;
}
.sp{
	display:none !important;
}
@media screen and (max-width: 834px) {
	.pc{
		display:none !important;
	}
	.sp{
		display:block !important;
	}
}
/* ---------- /common ---------- */

/* ---------- section ---------- */
section{
	padding-top:45px;
	padding-bottom:45px;
}
.inner {
	margin: 0 auto;
	max-width: 1440px;
	width: 100%;
}
@media screen and (max-width: 834px) {
	section{
		padding-top:20px;
		padding-bottom:20px;
	}
}

/* ---------- header ---------- */
.header{
	width:100%;
	max-width:1440px;
	position:fixed;
	top:0;
	z-index:100;
}
.header-nav{
	position:absolute;
	width:85%;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	display: flex;
	justify-content: space-between;
}

.header-list-left, .header-list-right{
	display: flex;
	justify-content: space-between;
	width:35%;
}

.header-list-logo{
	width:15%;
}

.header-item{
	text-align: center;
	transition: all 0.3s;
}
.header-item:hover{
	opacity:0.7;
}

.header-item-img{
	height:70px;
}

.header-item-title{
	font-size:20px;
}

.header-item-img.facebook{
	height:90px;
}

@media screen and (max-width: 834px) {
	.header{
		display: none;
	}
}

/* ---------- /header ---------- */

/* ---------- drawer ---------- */
.drawer {
	display: none;
	position:fixed;
	top:0;
	z-index:100;
}
.drawer-bg{
	width:100%;
}
.drawer-icon {
	color: #E38137;
	cursor: pointer;
	font-size: 32px;
	position: absolute;
	right: 17px;
	text-align: center;
	top: 25px;
	z-index: 41;
}
.drawer-icon .drawer-close {
	color: #E38137;
}
.drawer-open {
	display: block;
}
.m_checked .drawer-open {
	display: none;
}
.drawer-close {
	display: none;
}
.m_checked .drawer-close {
	display: block;
}
.drawer-content {
	height: 100vh;
	top:0;
	left: 0;
	opacity: 0;
	overflow: auto;
	position: fixed;
	text-align: left;
	transition: all 0.3s ease 0s;
	visibility: hidden;
	width: 100%;
	z-index: -1;
	background-color: #FDF8F2;
}
.m_checked .drawer-content {
	opacity: 1;
	visibility: visible;
}
.drawer-list{
	padding-top:100px;
}
.drawer-item{
	display: flex;
	padding: 15px 0;
	border-bottom: 3px dotted #000;
	width:80%;
	margin:0 auto;
	position:relative;
}
.drawer-item:after{
	content: "";
	background-image: url(../img/drawer_btn.png);
	background-size: contain;
	position:absolute;
	top:24px;
	right:10px;
	width:36px;
	height:36px;
}
.drawer-item-img{
	width:60px;
	height:50px;
}
.drawer-item-img.facebook{
	width:55px;
}
.drawer-item-title{
	line-height:48px;
	font-size:24px;
	font-weight: 400;
	margin-left:40px;
}
.drawer-item-title.facebook{
	margin-left:45px;
}
.drawer-text{
	font-size:12px;
	line-height:12px;
}
@media screen and (max-width: 834px) {
	.drawer{
		display: block;
	}
}
/* ---------- /drawer ---------- */

/* ---------- footer ---------- */
footer{
	background-color: #E38137;
	padding:30px 0;
	width:100%;
	max-width:1440px;
	margin:0 auto;
}
footer > .inner > .text{
	color:#FFF;
	font-size:21px;
	text-align: center;
}
@media screen and (max-width: 834px) {
	footer{
		margin-top: 0;
		padding:15px 0;
	}
	footer > .inner > .text{
		font-size:12px;
	}
}
/* ---------- /footer ---------- */

/* ---------- component ---------- */
.section-title, .section-subtitle{
	margin:0 auto;
	width:15%;
	position:relative;
	z-index:10;
}
.section-subtitle{
	width:40%;
}
.googlemap{
	width:100%;
	height:100%;
}
@media screen and (max-width: 834px) {
	.section-title {
		width:30%;
	}
	.section-subtitle{
		width:60%;
	}

}
/* ---------- /component ---------- */

/* ---------- button ---------- */
.btn{
	display: block;
	text-align: center;
	color: #E38138;
	background-color: #FFF;
	border: 2px solid #E38138;
	border-radius: 100px;
	padding:5px 0;
	font-size:26px;
	transition:all 0.3s;
	width:30%;
	margin:0 auto;
}
.btn:hover{
	opacity:0.7;
}
.btn-kaisyagaiyou{
	margin:15px auto;
	width:60%;
	position:relative;
}
.btn-kaisyagaiyou:after{
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 0 8px 12px;
	border-color: transparent transparent transparent #FFF;
	position: absolute;
	top: 50%;
	right: 30px;
	margin-top: -8px;
}
@media screen and (max-width: 834px) {
	.btn{
		width:60%;
		font-size:18px;
		padding:10px 0;
	}
}
/* ---------- /button ---------- */

/* ---------- hero ---------- */
.hero{
	background-color: #FDF8F2;
	height:40vw;
	padding-top:150px;
}
.fade{
	position:relative;
}
.hero-img{
	position: absolute;
	width:95%;
	left:50%;
	transform: translate(-50%,0);
	-webkit-transform: translate(-50%,0);
	-ms-transform: translate(-50%,0);
}
@media screen and (max-width: 834px) {
	.hero{
		padding-top:80px;
	}
}
/* ---------- /hero ---------- */

/* ---------- table ---------- */
.table{
	width:80%;
	margin: 90px auto 0 auto;
	border-top:3px solid #4F4033;
	border-bottom:3px solid #4F4033;
}

.table tr{
	position:relative;
	margin:0 auto;
}

.table tr:after{
	border-bottom: 3px dotted #000;
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 95%;
}

.table tr:last-child:after{
	border-bottom: none;
}

.table td{
	padding:25px 0 25px 80px;
	vertical-align: top;
}

.table-key{
	width:30%;
}

.table-key p{
	font-size: 24px;
	font-weight: bold;
	line-height: 36px;
}

.table-value{
	width:70%;
	display:flex;
	vertical-align: middle;
	column-gap: 10px;
}

.table-value p{
	font-size: 24px;
	font-weight: bold;
	line-height: 36px;
	padding:0;
	white-space: nowrap;
}
@media screen and (max-width: 834px) {
	.table{
		width:90%;
		margin: 70px auto 0 auto;
	}
	.table td{
		padding:15px 0 15px 20px;
		vertical-align: top;
	}
	.table-key{
		width:35%;
	}
	.table-key p{
		font-size: 12px;
		line-height: 24px;
	}
	.table-value{
		width:90%;
	}
	.table-value p{
		font-size: 12px;
		line-height: 24px;
		white-space: normal;
	}
}