@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@300;400;500&display=swap');

/* .m-plus-rounded-1c-light {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.m-plus-rounded-1c-regular {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.m-plus-rounded-1c-medium {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  font-style: normal;
} */



@media screen and (max-width:1024px) {
}
@media screen and (max-width:599px) {
}


/* ******************************************
	General
****************************************** */

html,
body {
	margin: 0;
	padding: 0;
	font-family: "M PLUS Rounded 1c", メイリオ, sans-serif;
	font-weight: 300;
	font-size: 16px;
	line-height: 1.75em;
	color: #000000;
	position: relative;
}
html {
	padding-top: 200px;
	scroll-behavior: smooth;
}

main {
	width: 100%;
	margin: 0 auto;
	padding: 0;
}

section {
	width: 100%;
	margin: 0 auto;
	padding: 60px 0;
	text-align: center;
}

h1 {
	margin: 0;
	padding: 0;
	text-align: center;
	font-size: 48px;
	line-height: 1.2em;
	letter-spacing: 1px;
	color: #fff;

  font-weight: 400;
  font-style: normal;
}
h2 {
	margin: 0 0 40px;
	padding: 0;
	font-size: 46px;
  font-weight: 400;
	line-height: 1.46em;
	letter-spacing: 1px;
}
h3 {
	margin: 0 0 45px;
	padding: 0;
	text-align: center;
	font-size: 24px;
	/* line-height: 1.2em; */
	font-weight: normal;
	letter-spacing: 1px;
}
h4 {
	margin: 0;
	margin-bottom: 10px;
	padding: 0;
	text-align: left;
	font-size: 18px;
	font-weight: normal;
	letter-spacing: 1px;
}

p {
	padding: 0;
	margin: 0;
}

a {
	text-decoration: none;
	color: #000;
}
a:hover {
	border-bottom: 1px solid #AFC275;
}


img {
	width: 100%;
	height: auto;
	border: none;
}
picture {
	width: 100%;
	display: block;
	padding: 0;
	margin: 0 auto;
	line-height: 0.1em;
}
picture a:hover {
	border-bottom: none;
}
picture img {
	width: 100%;
}

i, address {
	font-style: normal;
}

@media screen and (max-width:1024px) {
}
@media screen and (max-width:768px) {
	html {
		padding-top: 80px;
	}
	h1 {
		font-size: 40px;
	}
	h2 {
		margin: 0 0 25px;
		font-size: 35px;
	}
}
@media screen and (max-width:600px) {
	section {
		padding: 50px 0;
	}
	h1 {
		font-size: 30px;
	}
	h2 {
		font-size: 30px;
	}
	h3 {
		margin: 0 0 30px;
		font-size: 21px;
	}
}



/* ******************************************
	class
****************************************** */
.wrap {
	width: 90%;
	max-width: 1450px;
	margin: 0 auto;
	position: relative;
}
.wrap.min {
	max-width: 1050px;
}

/* 余白 */
.pr30 { padding-right: 30px; }
.pr40 { padding-right: 40px; }
.pr75 { padding-right: 75px; }
.pr100 { padding-right: 100px; }

.pl30 { padding-left: 30px; }
.pl40 { padding-left: 40px; }
.pl75 { padding-left: 75px; }
.pl100 { padding-left: 100px; }

.pb7 { padding-bottom: 7px; }

.mt15 { margin-top: 15px; }
.mt25 { margin-top: 25px; }
.mt50 { margin-top: 50px; }

.mb15 { margin-bottom: 15px; }
.mb25 { margin-bottom: 25px; }
.mb40 { margin-bottom: 40px; }
.mb50 { margin-bottom: 50px; }


/* 文字カラー */
.f_color_wh { color: #fff; }
.f_color_gr { color: #8DB521; }
.f_color_pk { color: #DE7E7B; }


/* 背景カラー */
.bg_color_gr { background-color: #ECECEC; }
.bg_color_lgr { background-color: #F6F6F6; }
.bg_color_wh { background-color: #fff; }
.bg_color_gre { background-color: #E8EDD8; }


/* 縦書き */
.vertical {
	writing-mode: vertical-rl;
	text-orientation: upright;
}

/* 文字揃え */
.talign_l {
	text-align: left;
}
.talign_r {
	text-align: right;
}
.talign_c {
	text-align: center;
}

/* 下線 */
.b_g_u {
	border-bottom: 1px solid #8DB521;
}

/* 改行 */
.wbr {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}
.wbr.center {
  justify-content: center;
}
.wbr i {
	display: inline-block;
	font-style: normal;
	white-space: nowrap;
}


/* ボタン */
.btn_more {
	display: block;
	margin-top: 25px;
}
.btn_more a {
	display: inline-block;
	background-color: #fff;
	border: 1px solid #000;
	color: #000;
	font-size: 21px;
	line-height: 1em;
	padding: 12px 20px;
	min-width: 180px;
	text-align: center;
	transition: 0.5s;
	position: relative;
}
.btn_more a::after {
	content: '→';
	display: inline-block;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 1px solid #000;
	background-color: #fff;
	line-height: 28px;
	position: absolute;
	right: 10px;
	top: 7px;
	transition: 0.5s;
}
.btn_more a:hover {
	background-color: #000;
}
.btn_more a:hover::after {
	background-color: #000;
	border: 1px solid #fff;
	color: #fff;
	transition: 0.5s;
}
.btn_more.nb a {
	border: unset;
}
.btn_more.nb a:hover {
 	color: #fff;
}

.btn_more_u {
	display: block;
	margin-top: 25px;
}
.btn_more_u a {
	display: inline-block;
	background-color: #fff;
	border: 1px solid #8DB521;
	color: #000;
	font-size: 18px;
	line-height: 1em;
	padding: 12px 30px;
	text-align: center;
	position: relative;
	transition: 0.5s;
}
.btn_more_u a::after {
	content: '';
	display: inline-block;
	width: 0;
	height: 0;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	border-left: 12px solid #8DB521;
	transform: rotate(45deg);
	position: absolute;
	right: 2px;
	bottom: -4px;
}
.btn_more_u a:hover {
	background-color: #8DB521;
	color: #fff;
}
.btn_more_u a:hover::after {
	border-left: 12px solid #fff;
}

.btn_g {
	background-color: #fff;
	border: 2px solid #8DB521;
	color: #000;
	font-size: 27px;
	padding: 20px 0;
	padding-left: 100px;
	margin: 10px 0;
	line-height: 1em;
	position: relative;
	display: block;
	transition: 0.5s;
}
.btn_g::before {
	content: '';
	display: inline-block;
	width: 55px;
	height: 55px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
	position: absolute;
	left: 20px;
	top: 6px;
}
.btn_g.reserv::before {
	background-image: url(../images/common/ico_cal.svg);
}
.btn_g.contact::before {
	background-image: url(../images/common/ico_contact.svg);
}
.btn_g:hover {
	border: 2px dotted #8DB521;
	color: #8DB521;
}
@media screen and (max-width:768px) {
	.btn_g {
		font-size: 18px;
		padding: 12px 0;
		padding-left: 60px;
	}
	.btn_g::before {
		width: 30px;
		height: 30px;
		/* left: 20px; */
		/* top: 6px; */
	}
}


/* フレックス */
.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
.flex .item {}

@media screen and (max-width:600px) {
}
@media screen and (max-width:500px) {
}



/* ******************************************
	header
****************************************** */
header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;

	background-color: rgba(255,255,255,0);
	transition: 0.5s;
}
header.bg {
	background-color: rgba(255,255,255,0.7);
	transition: 0.5s;
}

header nav {
	width: 95%;
	height: 200px;
	/* max-width: 1450px; */
	margin: 0 auto;

	display: flex;
	justify-content: space-between;
	align-items: center;
}
header nav h1 {
	width: 350px;
	max-width: 30%;
	opacity: 0;
	animation: fadeIn 1.5s cubic-bezier(0.33, 1, 0.68, 1) 1s forwards;
	}
	@keyframes fadeIn {
		0% {
			opacity: 0;
		}
		100% {
			opacity: 1;
		}
	}
header nav h1 a {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	height: 105px;
}
header nav h1 a:hover {
	border-bottom: none;
}

header nav .contact {
	display: inline-block;
	border-left: 1px solid #000;
	padding-left: 25px;
	margin-right: 100px;
	opacity: 0;
	animation: fadeIn 1.5s cubic-bezier(0.33, 1, 0.68, 1) 1s forwards;
	}
	@keyframes fadeIn {
		0% {
			opacity: 0;
		}
		100% {
			opacity: 1;
		}
	}
header nav .contact .tel {
	font-size: 38px;
	font-weight: 400;
	line-height: 1em;
}
header nav .contact .tel::before {
	content: '';
	display: inline-block;
	width: 30px;
	height: 30px;
	background-image: url(../images/common/ico_tel_li.svg);
	background-position: center center;
	background-size: contain;
	margin-right: 5px;
}


@media screen and (max-width:1024px) {
}
@media screen and (max-width:768px) {
	header nav {
		height: 80px;
	}
	header nav h1 {
		width: 150px;
		max-width: 45%;
	}
	header nav h1 a {
		height: 60px;
	}
	header nav .contact {
		display: none;
	}
}
@media screen and (max-width:600px) {
}



/* ******************************************
	footer
****************************************** */
footer {
	width: 100%;
	padding: 0;
	margin: 0;
	background-color: #80A225;
}

footer .foot_reserve {
	aspect-ratio: 2880/943;
	background-image: url(../images/common/f_reserve_bk.png?);
	background-position: center bottom;
	background-size: 100% auto;
	background-repeat: no-repeat;

	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
footer .foot_reserve .reserve_box {
	display: inline-block;
	background-color: #fff;
	border: 1px solid #80A225;
	margin: 0 auto;
	padding: 8px 20px;
	text-align: center;
}
footer .foot_reserve .reserve_box h2 {
	font-size: 78px;
	line-height: 1em;
	margin-bottom: 10px;
}
footer .foot_reserve .reserve_box h3 {
	font-size: 29px;
	line-height: 1em;
	margin-bottom: 10px;
}
footer .foot_reserve .reserve_box .btn_reserve a {
	display: inline-block;
	margin: 0 auto;
	background-color: #80A225;
	border: 1px solid  #80A225;
	color: #fff;
	padding: 4px 15px;
	width: 80%;
	max-width: 220px;
	line-height: 1.3em;
	transition: 0.5s;
}
footer .foot_reserve .reserve_box .btn_reserve a:hover {
	background-color: #fff;
	color: #80A225;
	transition: 0.5s;
}

footer .wrap {
	padding: 55px 0;
	margin: 0 auto;
	color: #fff;
}
footer .wrap a {
	color: #fff;
}
footer .wrap .company {
	width: calc(100% - 350px);
}
footer .wrap .company h1 {
	width: 145px;
}
footer .wrap .company h1 a:hover {
	border-bottom: none;
}
footer .wrap .company address {
	font-size: 16px;
	padding-top: 15px;
}
footer .wrap .company .sns {
	margin-top: 25px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}
footer .wrap .company .sns a {
	width: 40px;
	margin-right: 8px;
}

footer .wrap nav {
	width: 300px;

	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: flex-start;
}
footer .wrap nav ul {
	padding: 0;
	margin: 0;
	margin-left: 45px;
	list-style: none;
	display: inline-block;
}
footer .wrap nav ul li {
	padding: 0;
	margin: 0;
	margin-bottom: 15px;
}
footer .wrap nav ul li a {
	display: block;
	padding-bottom: 2px;
	border-bottom: 1px solid rgba(255,255,255,0);
	transition: 0.5s;
}
footer .wrap nav ul li a:hover {
	border-bottom: 1px solid rgba(255,255,255,1);
	transition: 0.5s;
}

footer .copyright {
	display: block;
	width: 100%;
	margin: 0;
	padding: 7px 0;
	text-align: center;
	background-color: #fff;
	font-size: 14px;
	color: #000;
}
.contact_footer {
	display: none;
	}

@media screen and (max-width:1024px) {
}
@media screen and (max-width:768px) {
	footer .foot_reserve {
		height: 300px;
		aspect-ratio: unset;
		background-size: auto 100%;
	}
	footer .wrap .company {
		width: 100%;
	}
	footer .wrap .company h1 {
		margin-left: auto;
		margin-right: auto;
	}
	footer .wrap .company address.wbr {
		justify-content: center;
	}
	footer .wrap .company .sns {
		justify-content: center;
	}
	footer .wrap nav {
		display: none;
	}
}
@media screen and (max-width:600px) {
	footer .foot_reserve .reserve_box h2 {
		font-size: 55px;
	}
	footer .foot_reserve .reserve_box h3 {
		font-size: 24px;
	}
	.contact_footer {
		position: fixed;
		bottom: 0;
		left: 0;
		display: flex;
		width: 100%;
		z-index: 999999;
		}
		.contact_footer a {
			display: flex;
			justify-content: center;
			align-items: center;
			width: 50%;
			padding: 15px 10px;
			background-color: #80A225;
			border: 1px solid #fff;
			border-bottom: none;
			color: #fff;
			text-align: center;
			font-size: 21px;
			}
			.contact_footer a img {
				width: auto;
				height: 20px;
				margin-right: 10px;
				}



	.contact_side {
		display: none;
		}
	.copyright {
		padding: 7px 0 65px !important;
		}
}





/* ******************************************
	page_title
****************************************** */
#page_title {
	padding: 0;
}
#page_title picture {
	width: 100%;
	height: unset;
	aspect-ratio: 1440/433;
	overflow: hidden;
}
#page_title picture img.fade-in-animation {
	width: 100%;
	height: 100%;
	object-fit: cover;
	animation: fade-in 3s;
	animation-fill-mode: forwards;
	}
@keyframes fade-in {
	from {
		opacity: 0;
		}
	to {
		opacity: 1;
		}
	}


#page_title h1 {
	margin-top: 100px;
}

@media screen and (min-width:1501px) {
	#page_title picture img {
		object-position: 50% 0%;
	}
}
@media screen and (max-width:768px) {
}
@media screen and (max-width:600px) {
}
@media screen and (max-width:450px) {
	#page_title picture {
		aspect-ratio: 6/4;
	}
}



/* ******************************************
	breadcrumb
****************************************** */
.breadcrumb {
	width: 95%;
	padding: 0;
	margin: 20px auto;
	text-align: left;
	font-size: 21px;
}
.breadcrumb a {
	margin-right: 20px;
	display: inline-block;
	line-height: 1em;
}
.breadcrumb a::after {
	content: '';
	display: inline-block;
	width: 4px;
	height: 4px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	transform: rotate(45deg);
	margin-left: 15px;
	margin-bottom: 5px;
}

@media screen and (max-width:768px) {
}
@media screen and (max-width:600px) {
}
@media screen and (max-width:425px) {
}


/* ******************************************
	photo_list
****************************************** */
.photo_list,
.photo_list_2 {
  padding: 0;
  margin: 0;
  list-style: none;

  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.photo_list li,
.photo_list_2 li {
  padding: 0;
  margin: 0;
  margin-right: 2%;
  margin-bottom: 33px;
}
.photo_list li {
  width: 32%;
}
.photo_list_2 li {
  width: 49%;
}
.photo_list li:nth-child(3n) {
  margin-right: 0;
}
.photo_list_2 li:nth-child(2n) {
  margin-right: 0;
}
.photo_list li a:hover,
.photo_list_2 li a:hover {
	opacity: 1;
}
.photo_list li picture,
.photo_list_2 li picture {
	overflow: hidden;
	position: relative;
  margin-bottom: 10px;
}
.photo_list li img,
.photo_list_2 li img {
  width: 100%;
	transition: all 0.5s ease-in-out;
}
.photo_list li img:hover,
.photo_list_2 li img:hover {
	transform: scale(1.1);
}
.photo_list li p,
.photo_list_2 li p {
  padding: 0;
  margin: 0;
  text-align: left;
  font-size: 12px;
  line-height: 1.2em;
}
#woodwall_works .photo_list li p {
  font-size: 16px;
}
#woodwall_works .photo_list li p span {
  display: block;
  font-size: 12px;
  margin-top: 10px;
}



@media screen and (max-width:768px) {
}
@media screen and (max-width:600px) {
	.photo_list li {
    margin-right: 2%;
    width: 49%;
  }
  .photo_list li:nth-child(3n) {
    margin-right: 2%;
  }
  .photo_list li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width:425px) {
  .photo_list_2 li {
    margin-right: 0;
    width: 100%;
  }
}




/* ******************************************
	page_link
****************************************** */
#page_link {}
#page_link .btn_more {
	margin-top: 0;
}




/* ******************************************
	pagetop
****************************************** */
.pagetop {
	position: fixed;
	right: 0;
	bottom: 0;
	width: 48px;
	height: 48px;
	font-size: 0;
	background-color: rgba(0,0,0,0.7);

	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;

}
.pagetop::before {
	content: '';
	display: block;
	width: 16px;
	height: 16px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(-45deg);
	position: absolute;
	margin-top: 15px;
}



/* トップへ戻る */
.gotop {
	display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  overflow:hidden;
	cursor: pointer;
	-webkit-transition: all 0.7s linear;
	-o-transition: all 0.7s linear;
	transition: all 0.7s linear;
  z-index:9000;
}
#top {
	background-color: rgba(0,0,0,0.7);
  width: 48px;
  height: 48px;
  text-align:center;
  position: relative;

	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
#top::before {
	content: '';
	display: block;
	width: 16px;
	height: 16px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(-45deg);
	position: absolute;
	margin-top: 15px;
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
}
@media only screen and (max-width: 600px){
.gotop {
	bottom: 65px;
	}
}







/* 下から上のフェードイン */
.fadeInUp {
	opacity: 0;
	transform: translateY(65px);
}
/* フェードインアニメーション */
@keyframes fadeIn {
	0% {
	}
	100% {
			opacity: 1;
			transform: translate(0);
	}
}
/* フェードインさせるクラス */
.fadeIn {
	animation-name: fadeIn;
	animation-duration: 0.8s;
	animation-fill-mode: forwards;
}


/* ******************************************
	colorbox
****************************************** */
.gallery {
	margin:0 20px 20px 0;
}
#cboxOverlay {
	background: #000;
}
#cboxLoadedContent {
	background: #fff;
}
#inline-content {
	/* margin: 20px; */
}
#ajax-wrap {
	/* margin: 20px; */
}
#cboxLoadedContent {
	padding: 0;
	overflow: auto;
-moz-box-shadow: 0px 1px 10px #000000;
-webkit-box-shadow: 0px 1px 10px #000000;
box-shadow: 0px 1px 10px #000000;
}
#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose , #cboxTitle {
	top: -30px;
}
#colorbox, #cboxOverlay, #cboxWrapper {
	overflow: visible;
}
#cboxTitle {
	color: #fff;
}




/* ******************************************
	contact_side
****************************************** */
.contact_side {
	position: fixed;
	top: 230px;
	right: -150px;
	transition: 1s;
}
.contact_side.contact_side_bk {
	right: 0;
}
.contact_side a {
	color: #fff;
	background-color: #000;

	width: 40px;
	height: 140px;
	position: relative;
	display: block;
	transition: 0.8s;
}
.contact_side a::before {
	content: '';
	background-image: url(../images/common/ico_shop.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	display: block;
	width: 100%;
	height: 25px;
	position: absolute;
	top: 15px;
}
.contact_side a span {
	display: block;
	width: 100%;
	margin-top: 5px;
	position: relative;
	font-size: 15px;
	line-height: 1.25em;
	text-align: center;
	top: 45px;
}
.contact_side a:hover {
	background-color: #8DB521;
}
