@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');


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


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

html,
body {
	margin: 0;
	padding: 0;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	font-size: 18px;
	line-height: 1.75em;
	color: #000000;
	position: relative;
}
html {
	padding-top: 125px;
	scroll-behavior: smooth;
}

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

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

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

  font-style: normal;
}

h2 {
	margin: 0 0 40px;
	padding: 0;
	font-size: 36px;
	line-height: 1.46em;
	letter-spacing: 1px;
	/* color: #0033cc; */
	color: #000;

  font-style: normal;
}

h3 {
	margin: 0 0 45px;
	padding: 0;
	font-size: 28px;
	/* line-height: 1.2em; */
	font-weight: normal;
}

h4 {
	margin: 0;
	margin-bottom: 10px;
	padding: 0;
	font-size: 24px;
	font-weight: normal;
}

p {
	padding: 0;
	margin: 0;
}

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

a.more {
	display: block;
	width: 200px;
	padding: 15px 20px;
	text-align: center;
	color: #fff;
	background-color: #999;
}

img {
	width: 100%;
	height: auto;
	border: none;
}

picture {
	width: 100%;
	display: block;
	padding: 0;
	margin: 0 auto;
	line-height: 0.1em;
	overflow: hidden;
}
picture img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

i, address {
	font-style: normal;
}

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


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

/* 余白 */
.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; }

.mt15 { margin-top: 15px; }
.mt50 { margin-top: 50px; }
.mt80 { margin-top: 80px; }

.mb15 { margin-bottom: 15px; }
.mb25 { margin-bottom: 25px; }
.mb50 { margin-bottom: 50px; }
.mb80 { margin-bottom: 80px; }


/* 文字カラー */
.f_color_wh { color: #fff; }
.f_color_bl { color: #75BFD3; }
.f_color_pk { color: #DE7E7B; }


/* 背景カラー */
.bg_color_gr { background-color: #f4f4f4; }
.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;
}



/* 改行 */
.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;
}
.btn_more a {
	display: inline-block;
	background-color: #0033cc;
	border: 1px solid #0033cc;
	color: #fff;
	line-height: 1em;
	padding: 15px 40px 15px 20px;
	transition: 0.5s;
	position: relative;
	font-size: 16px;
}
.btn_more a::after {
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(45deg);
	position: absolute;
	right: 20px;
	top: 20px;
	transition: 0.5s;
}
.btn_more a:hover {
	background-color: #fff;
	color: #0033cc;
	transition: 0.5s;
}
.btn_more a:hover::after {
	border-top: 1px solid #0033cc;
	border-right: 1px solid #0033cc;
	transition: 0.5s;
}

.btn_more a.white {
	background-color: #fff;
	border: 1px solid #fff;
	color: #0033cc;
}
.btn_more a.white:hover {
	background-color: #fff;
}
.btn_more a.white::after {
	border-top: 1px solid #0033cc;
	border-right: 1px solid #0033cc;
}
.btn_more a.white:hover::after {
	right: 15px;
	transition: 0.5s;
}



/* フレックス */
.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.9);
	transition: 0.5s;
}

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

	display: flex;
	justify-content: space-between;
	align-items: center;
}
header nav h1 {
	width: 350px;
	font-weight: normal;
	text-align: left;
	margin-left: 5%;
}
header nav h1 a {
	display: block;
	line-height: 1em;
}
header nav h1 img {
	width: 100%;
}
header nav h1 small {
	display: block;
	line-height: 1em;
	font-size: 14px;
	margin-bottom: 2px;
}
header nav h1 a:hover {
	border-bottom: none;
}

header nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
	width: calc(95% - 350px);

	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
}
header nav ul li {
	padding: 0;
	margin: 0;
	/* margin-left: 30px; */
}
header nav ul li a {
	display: block;
	line-height: 1em;
	color: #000;
  font-style: normal;
	padding: 5px 12px;
	border-bottom: 2px solid rgba(0,0,0,0);
	transition: 0.5s;
}
header nav ul li a:hover {
	border-bottom: 2px solid rgba(32,105,167,1);
	transition: 0.5s;
}
header nav ul li a.contact {
	color: #fff;
	background-color: #0033cc;
	border-bottom: none;
	padding: 15px;
	margin-left: 5px;
}
header nav ul li a.contact:hover {
	background-color: #0033cc;
	border-bottom: none;
}

@media screen and (max-width:768px) {
	header nav ul {
		display: none;
	}
	header nav {
		height: 80px;
	}
	header nav h1 {
		width: 70%;
		max-width: 300px;
	}
	header nav h1 small {
		font-size: min(14px,1.4vw);
	}
}
@media screen and (max-width:600px) {
}



/* ******************************************
	footer
****************************************** */
footer {
	width: 100%;
	padding: 0;
	margin: 0;
	background-color: #0033cc;
}
footer iframe {
	width: 100%;
	height: 40vh;
}
footer .wrap {
	padding: 55px 0;
	margin: 0 auto;
	color: #fff;
}
footer .wrap a {
	color: #fff;
}
footer p {
	line-height: 2em;
}

footer .company {
	width: 330px;
}
footer .company h1 {
	width: 350px;
	font-weight: normal;
	text-align: left;
	color: #fff;
}
footer .company h1 a {
	display: block;
	line-height: 1em;
}
footer .company h1 img {
	width: 100%;
}
footer .company h1 small {
	display: block;
	line-height: 1em;
	font-size: 14px;
	margin-bottom: 2px;
}
footer .company address {
	font-size: 16px;
	padding-top: 15px;
}
footer .company address .wbr i {
	padding-right: 5px;
}

footer .wrap nav {
	width: calc(100% - 500px);
}
footer .wrap nav ul {
	padding: 0;
	margin: 0;
	list-style: none;

	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
}
footer .wrap nav ul li {
	padding: 0;
	margin: 0;
	margin-left: 30px;
	margin-bottom: 15px;
}
footer .wrap nav ul li a {
	display: block;
	padding-bottom: 2px;
	border-bottom: 1px dashed rgba(255,255,255,0);
	transition: 0.5s;
}
footer .wrap nav ul li a:hover {
	border-bottom: 1px dashed rgba(255,255,255,1);
	transition: 0.5s;
}

footer .wrap .copyright {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	padding-top: 25px;
	text-align: center;
	color: #fff;
	font-size: 14px;
}


@media screen and (max-width:1024px) {
	footer .wrap nav {
		width: calc(100% - 350px);
	}
}
@media screen and (max-width:768px) {
	footer .wrap nav {
		display: none;
	}
	footer .wrap .company {
		margin: 0 auto;
	}
	footer .wrap .company address .wbr {
		justify-content: center;
	}
}
@media screen and (max-width:600px) {
	footer .company h1 {
		width: 280px;
	}
}



/* ******************************************
	page_title
****************************************** */
#page_title {
	padding: 0;
	position: relative;

	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
#page_title picture {
	width: 100%;
	aspect-ratio: 4/1;
	background-color: #000;
}
#page_title picture img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.75;
}
#page_title h1 {
	position: absolute;
	left: 10%;
}

@media screen and (min-width:1501px) {
	#page_title picture {
		height: 300px;
	}
	#page_title picture::before {
		content: none;
	}
}
@media screen and (max-width:768px) {
}
@media screen and (max-width:600px) {
	#page_title picture {
		height: 150px;
	}
	#page_title picture::before {
		content: none;
	}
}
@media screen and (max-width:450px) {
	#page_title {
		margin-bottom: 60px;
	}
}



/* ******************************************
	breadcrumb
****************************************** */
#breadcrumb {
	padding: 0;
}
#breadcrumb .wrap {
	padding: 20px 0;
	position: relative;
	text-align: left;
}
#breadcrumb .wrap a {
	display: inline-block;
	margin-right: 20px;
}
#breadcrumb .wrap a::after {
	content: ' /';
}

@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;
  bottom: 10px;
  right: 10px;
	width: 48px;
	height: 48px;
	font-size: 0;
	background-color: rgba(255,255,255,0.9);
	border: 1px solid #0033cc;
	border-radius: 50%;

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

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


/* トップへ戻る */
.gotop {
	display: none;
  position: fixed;
  bottom: 10px;
  right: 10px;
  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(255,255,255,0.9);
	border: 1px solid #0033cc;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  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 #0033cc;
	border-right: 1px solid #0033cc;
	transform: rotate(-45deg);
	position: absolute;
	top: 20px;
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 600px){
}







/* 下から上のフェードイン */
.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;
}


/* ******************************************
	foot_contact
****************************************** */
#foot_contact {
	background-color: #F6F6F6;
}
#foot_contact .flex {
	align-items: stretch;
}
#foot_contact .btn_more {
	max-width: 800px;
	margin: 30px auto 0;
}
#foot_contact .btn_more .box {
	width: 47%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	padding: 20px 0;
}
#foot_contact .btn_more .box.white {
	font-size: 24px;
}
#foot_contact .btn_more .box.white small {
	font-size: 16px;
	margin-right: 5px;
}
#foot_contact .btn_more .box.white span {
	width: 100%;
	display: block;
	font-size: 16px;
	font-weight: 300;
}

@media screen and (max-width:600px) {
	#foot_contact .btn_more .box {
		width: 100%;
		margin-bottom: 12px;
	}
}



/* ******************************************
	foot_recruit
****************************************** */
#foot_recruit {}
#foot_recruit dl {
	padding: 0;
	margin: 0;
	border: 2px solid #75BFD3;
	text-align: center;
}
#foot_recruit dl dt {
	padding: 10px 0;
	margin: 0;
	background-color: #75BFD3;
	color: #fff;
	position: absolute;
	width: 250px;
}
#foot_recruit dl dd {
	padding: 10px 0;
	padding-left: 250px;
	margin: 0;
	position: relative;
	color: #231815;
}

@media screen and (max-width:1024px) {
	#foot_recruit dl dt {
		position: relative;
		width: 100%;
	}
	#foot_recruit dl dd {
		padding-left: 0;
	}
}

