@charset "utf-8";
/* CSS Document */





/* ---------- 基本設定 ---------- */

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}
p,a,h5 {
	font-family: "Noto Sans JP","Helvetica Neue","Arial","Hiragino Kaku Gothic ProN","Hiragino Sans","Meiryo","sans-serif";
	font-size: 16px;
	color: #333;
}
#wrapper {
	overflow: hidden;
	background-color: #f8f7f3;
}
img {
	max-width: 100%;
	height: auto;
	border: none;
	line-height: 0;
	vertical-align: bottom;
}
a {
	text-decoration: none;
}
h3,h4 {
	font-family: 'Kumbh Sans';
	color: #333;
}
.section_gap {
	margin: 0 auto;
	max-width: 1440px;
}





/* ---------- ナビゲーション部ここから ---------- */

#header_fixed { 
	position: fixed;
	width: 100%;
	top: 0px;
	z-index: 1;
	background-color: #fff;
	justify-content: space-between;
    align-items: center;
	color: #000;
	margin: 0 auto;
}
#header_fixed h1 {
	width: 200px;
	margin-left: 20px;
}
#global_navi ul {
	display: flex;
}
.globalMenuSp img{
	width: 30%;
}
.globalMenuSp ul {
	display: flex;
	justify-content: flex-end;
	text-align: center;
}
.globalMenuSp ul li a{
	margin-left: 30px;
	font-size: 13px;
	line-height: 2.5rem;
}
.hamburger {
	display: none;
}
.globalMenuSp {
	display: flex;
	padding: 20px 40px;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	z-index: 999;
	left: 0;
	right: 0;
	background-color: #f8f7f3;
}
.globalMenuSp img{
	text-align: left;
}




.pagetop {
	height: 50px;
	width: 50px;
	position: fixed;
	right: 10px;
	bottom: 30px;
	background: #fff;
	border: solid 2px #0C6D5B;
	border-radius: 50%;
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 2;
	cursor: pointer;
  }
  .pagetop__arrow {
	display: block;
	height: 10px;
	width: 10px;
	border-top: 3px solid #0C6D5B;
	border-right: 3px solid #0C6D5B;
	transform: translateY(20%) rotate(-45deg);
  }





/*========= ナビゲーションのためのCSS ===============*/

/*アクティブになったエリア*/
#g-nav.panelactive{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
	top: 0;
	width:100%;
    height: 100vh;
	background-color: #f8f7f3;
}

/*丸の拡大*/
.circle-bg{
    position: fixed;
	z-index:3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #F9F9F9;
    /*丸のスタート位置と形状*/
	transform: scale(0);/*scaleをはじめは0に*/
    right:-50px;
    top:calc(50% - 50px);/*50%から円の半径を引いた値*/
    transition: all .6s;/*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive{
	transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list{
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list{
     display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
	opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
    opacity:1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.2s;/*0.2 秒遅らせて出現*/
animation-fill-mode:forwards;
opacity:0;
}
@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}


/*リストのレイアウト設定*/
#g-nav li{
	text-align: center; 
	list-style: none;
}
#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:15px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}


/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
	top:10px;
	right: 10px;
	z-index: 9999;/*ボタンを最前面に*/
	cursor: pointer;
    width: 50px;
    height:50px;
}
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #555;
  	width: 45%;
  }
.openbtn span:nth-of-type(1) {
	top:15px;	
}
.openbtn span:nth-of-type(2) {
	top:23px;
}
.openbtn span:nth-of-type(3) {
	top:31px;
}
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}





.scroll-up {
	opacity: 0; 
	visibility: hidden;
	transform: translateY(50px);
	transition: all 1s;
  }
  .scroll-up.is-show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0px);
  }





/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateY(0%);
}
/* 自動的に閉じる機能追加 */
nav.globalMenuSp.close {
  transform: translateY(-100%);
}


/* Large devices (desktops, 992px and up) */
/*iPadPro縦 / iPad横*/
@media screen and (max-width: 1199px) {
}

/* Medium devices (tablets, 768px and up) */
/*iPad縦 / iPhoneX横*/
@media screen and (max-width: 991px) {
	.hamburger {
		display: block;
	}
	.globalMenuSp nav{
		display: none;
	}
	.globalMenuSp img {
		width: 20%;
	}
	.globalMenuSp {
		padding: 20px 15px;
		background-color: transparent;
		z-index: 1;
	}
}

/* Small devices (landscape phones, 576px and up) */
/*iPhone6.7.8Plus横 / iPhone6.7.8横*/
@media screen and (max-width: 767px) {
}
/* Extra small devices (portrait phones, less than 576px) */
@media screen and (max-width: 575px) {
	a {
		font-size: 14px;
	}
	body p {
		font-size: 14px;
	}
}

/* ---------- ナビゲーション部ここまで ---------- */





/* メインビジュアルここから */

#concept {
	width: 85%;
	margin: 0 auto;
	padding-top: 85px;
	max-width: 1440px;
}
.Main_box {
	display: flex;
	justify-content: space-around;
	margin: 40px auto 20px;
	align-items: center;
	width: 80%;
	z-index: 999;
}
.Main_box div:first-of-type h1{
	width: auto;
	height: auto;
}
.Main_box div:first-of-type p{
	margin-top: 20px;
	line-height: 3rem;
	color: #fff;
	text-shadow: 0px 0px 5px rgba(44, 88, 18, 0.4);
}
.Main_box div:last-of-type{
	width: 40%;
	height: auto;
	margin-left: 30px;
}
.Main_box div:last-of-type img{
	height: auto;
}

  /* General Styling */
  #head_pic {
	margin: 0 auto;
	background-image: url(../images/Mian_img.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 60%;
	border-radius: 15px;
	padding: 60px 0 70px;
  }
  #concept h1 {
	font-size: 72px;
	color: #fff;
	text-align: left;
	font-family: "Josefin Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0.1em;
    line-height: 9rem;
	margin-right: 30px;
	text-shadow: 0px 0px 6px rgba(60, 100, 36, 0.4);
  }





/* Large devices (desktops, 992px and up) */
/*iPadPro縦 / iPad横*/
@media screen and (max-width: 1199px) {
	#concept h1 {
		font-size: 64px;
		line-height: 8rem;
	}
	.Main_box div:last-of-type {
		width: 45%;
	}
	.Main_box {
		width: 85%;
	}
}
/* Medium devices (tablets, 768px and up) */
/*iPad縦 / iPhoneX横*/
@media screen and (max-width: 991px) {
	#concept h1 {
		top: 20%;
		left: 10%;
		font-size: 64px;
		line-height: 8.5rem;
		margin-right: 0;
	}
	#concept {
		margin: 0 auto;
		padding-top: 70px;
	}
	.Main_box {
		display: block;
	}
	.Main_box div:last-of-type {
		margin: 70px 0 0 auto;
		width: 68%;
	}
	#head_pic {
		padding: 40px 0 40px;
	}
	.Main_box div:first-of-type p {
		margin-top: 10px;
	}
}

/* Small devices (landscape phones, 576px and up) */
/*iPhone6.7.8Plus横 / iPhone6.7.8横*/
@media screen and (max-width: 767px) {
}

/* Extra small devices (portrait phones, less than 576px) */
@media screen and (max-width: 575px) {
	#concept {
		width: 85%;
		padding-top: 70px;
	}
	#concept h1 {
        font-size: 42px;
        line-height: 5rem;
		width: 100%;
    }
	#head_pic {
        padding: 20px 0 20px;
    }
	.Main_box {
        margin: 20px auto 20px;
    }
	.Main_box div:last-of-type {
        width: 90%;
		margin: 40px 0 0 auto;
    }
	.Main_box div:first-of-type p br:last-of-type{
		display: none;
	}
	.Main_box div:first-of-type p {
        line-height: 2.5rem;
    }
}

/* メインビジュアルここまで */





/* ---------- works記事部ここから ---------- */ 

#works_header {
	background-size: cover;
}
#works_header ul {
	display: flex;
	justify-content: center;
	font-size: 16px;
}
#works_header ul li{
	border-left: #333 1px solid;
	padding-left: 15px;
	padding-right: 15px;
	transition: 0.5s;
}
#works_header ul li:first-of-type{
	border-left: none;
}
#works_header ul li:hover{
	opacity: 0.5;
}
#works_header h3, #about h3 {
	font-size: 48px;
	font-weight: 200;
	text-align: center;
	padding-top: 120px;
	margin-bottom: 30px;
}
#works_header h3::before, #about h3::before {
	content: "";
	background-image: url(../images/title_before.png);
	display: inline-block;
	width: 18px;/*画像の幅*/
	height: 18px;/*画像の高さ*/
	background-size: contain;
	margin-right: 40px;
	vertical-align: 5px;
}
#works_header h3::after, #about h3::after {
	content: "";
	background-image: url(../images/title_after.png);
	display: inline-block;
	width: 18px;/*画像の幅*/
	height: 18px;/*画像の高さ*/
	background-size: contain;
	margin-left: 40px;
	vertical-align: 5px;
}
#works_header p {
	font-size: 1.4rem;
	line-height: 3.0rem;
	text-align: center;
}
.section_gap h4, .section_title h4 {
	padding: 100px 0 10px;
	font-size: 24px;
	font-weight: 400;
	text-align: left;
	border-bottom: solid 1px #999;
}
#works h6 {
	text-align: center;
	font-size: 1.4rem;
	line-height: 2.5rem;
	margin-bottom: 50px;
}
.hidden_br {
	display: none;
}
.works_list {
	width: 85%;
	margin: 0 auto;
}
.works_spec {
	position: relative;
	margin-bottom: 80px;
	display: flex;
}
.works_spec h5 {
	margin: 50px;
	font-size: 2rem;
}
.works_spec p {
	font-size: 1.2rem;
	line-height: 1.8rem;
	width: 40vw;
	margin: 50px 0 50px 50px;
}
.works_text {
	display: block;
}



.contents_block {
	width: 330px;
	margin: 0 auto;
}
.web_box, .thumbnail_box, .banner_box {
	cursor: pointer;
	max-width: 500px;
	height: auto;
	text-align: center;
	overflow: hidden;
	margin-top: 50px;
	border-radius: 7px;
  }
  .web_box img, .thumbnail_box img, .banner_box img{
	height: auto;
	transition: all 0.5s ease-in-out;
  }
  .web_box:hover img {
	transform: scale(1.1); /* 拡大 */
  }
  .thumbnail_box:hover img {
	transform: scale(1.1); /* 拡大 */
  }
  .banner_box:hover img {
	transform: scale(1.1); /* 拡大 */
  }
  #contents_block_sp_none {
	margin: 0
  }



#thumbnail_list, #web_list, #banner_list {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#thumbnail_list li {
	width: 330px;
	border: solid 1px #999;
	margin-bottom: 50px;
	position: relative;  /* 帯の表示位置の基準とする */
}
.contents_block p{
	margin-top: 20px;
}
.contents_block .size_small{
	font-size: 12px;
	color: #9c9c9c;
	margin-top: 10px;
}



/* Large devices (desktops, 992px and up) */
/*iPadPro縦 / iPad横*/
@media screen and (max-width: 1199px) {
	#contents_block_sp_none {
		display: none;
	}
}

/* Medium devices (tablets, 768px and up) */
/*iPad縦 / iPhoneX横*/
@media screen and (max-width: 991px) {
	.contents_block {
		width: 300px;
		margin: 0 auto;
	}
}

/* Small devices (landscape phones, 576px and up) */
/*iPhoine6.7.8Plus横 / iPhoine6.7.8横*/
@media screen and (max-width: 767px) {
	#thumbnail_list, #web_list, #banner_list {
		display: block;
		justify-content: center;
	}
	.contents_block {
		margin: 0 auto;
	}
	#works_header h3, #about h3 {
		padding-top: 100px;
	}
}

/* Extra small devices (portrait phones, less than 576px) */
/*iPhoneX縦 / iPhoine6.7.8Plus縦 / iPhoine6.7.8縦 / iPhone5.SE縦横*/
@media screen and (max-width: 575px) {
	#works_header h3, #about h3 {
		font-size: 35px;
		margin-bottom: 20px;
	}
	.section_gap h4, .section_title h4 {
		padding: 80px 0 10px;
		font-size: 20px;
		font-weight: 400;
		text-align: left;
		border-bottom: solid 1px #999;
	}
	.contents_block {
        width: auto;
        margin: 0 auto;
    }
}

/* ---------- works記事部ここまで ---------- */ 





/* Aboutここから */
#about_profile {
	width: 85%;
    margin: 0 auto;
    text-align: left;
}
#profile_box h3 {
	font-size: 7.0rem;
	font-weight: 200;
	text-align: center;
	margin-bottom: 50px;
	color: rgb(0, 0, 0);
}
#profile1{
	display: inline-block;
	width: 150px;
}
#profile1 img{
	width: 100%;
}
#profile2{
	width: 65%;
}
.profile_txt{
	line-height: 3rem;
}
.profile_txt h5{
	font-style: normal;
	font-size: 20px;
	margin-bottom: 1em;
}
.profile_txt p{
	font-size: 16px;
}
.profile_txt li{
	font-size: 1.3rem;
}
#profile_box{
	display: flex;
	align-items: center;
	justify-content: space-around;
	align-items: center;
	padding-bottom: 150px;
	padding-top: 50px;
}
#about {
	width: 85%;
	margin: 0 auto;
	text-align: left;
}
.button-13 a {
	font-size: 14px;
	letter-spacing: 0.1em;
	color: #333;
	font-weight: 400;
	display: block;
	position: relative;
	box-sizing: border-box;
	max-width: 180px;
	text-align: center; 
	padding: 4px 16px 4px 0;
	margin: 40px 0 0 auto;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s;
  }
  .button-13 a::before {
	content: "";
	display: block;
	position: absolute;
	width: 180px;
	height: 1px;
	background: #333;
	bottom: 0;
	transition: all 0.3s;
  }
  .button-13 a::after {
	content: "";
	display: block;
	position: absolute;
	width: 30px;
	height: 1px;
	background: #333;
	rotate: 40deg;
	right: -3px;
	bottom: 10px;
	transition: all 0.3s;
  }
  .button-13 a:hover::after,
  .button-13 a:hover::before {
	translate: 20px 0;
	transition: all 0.3s;
  }


/* Large devices (desktops, 992px and up) */
/*iPadPro縦 / iPad横*/
@media screen and (max-width: 1199px) {
	#profile_box{
		align-items: flex-start;
	}
}

/* Medium devices (tablets, 768px and up) */
/*iPad縦 / iPhoneX横*/
@media screen and (max-width: 991px) {
	#profile_box {
		margin: 0 auto;
	}
	#profile2 {
		width: 60%;
	}
	#profile1 {
		width: 40%;
	}
	#profile1 img{
		margin-bottom: 50px;
		width: 60%;
	}
}

/* Small devices (landscape phones, 576px and up) */
/*iPhone6.7.8Plus横 / iPhone6.7.8横*/
@media screen and (max-width: 767px) {
	#profile_box {
        display: block;
    }
	#profile1 {
		text-align: center;
        width: 100%;
    }
	.profile_txt h5 {
		text-align: center;
	}
	#profile1 img {
        margin-bottom: 50px;
        width: 40%;
    }
	#profile2 {
		width: 100%;
	}
}

/* Extra small devices (portrait phones, less than 576px) */
@media screen and (max-width: 575px) {
	#profile1 img{
		width: 70%;
	}
	#profile_box {
        padding-top: 30px;
		padding-bottom: 100px;
    }
	.profile_txt p {
		font-size: 14px;
		line-height: 2.5rem;
	}
}

/* Aboutここまで */





/* ---------- contact記事部ここから ---------- */

#contact_header {
	height: 200px;
	background-size: cover;
}
#contact div {
	text-align: center;
	margin-top: 8rem;
}
#contact_header h3 {
	font-size: 7.0rem;
	font-weight: 200;
	text-align: center;
	padding-top: 120px;
	margin-bottom: 50px;
	color: rgb(2, 2, 2);
}



/* Large devices (desktops, 992px and up) */
/*iPadPro縦 / iPad横*/
@media screen and (max-width: 1199px) {
}

/* Medium devices (tablets, 768px and up) */
/*iPad縦 / iPhoneX横*/
@media screen and (max-width: 991px) {
	
}

/* Small devices (landscape phones, 576px and up) */
/*iPhoine6.7.8Plus横 / iPhoine6.7.8横*/
@media screen and (max-width: 767px) {
	
}

/* Extra small devices (portrait phones, less than 576px) */
/*iPhoneX縦 / iPhoine6.7.8Plus縦 / iPhoine6.7.8縦 / iPhone5.SE縦横*/
@media screen and (max-width: 575px) {
}

/* ---------- contact記事部ここまで ---------- */





/* ---------- フッター：コピーライト部ここから ---------- */

footer {
	background-color: #0C6D5B;
}
footer .copyright{
	font-size: 12px;
	font-weight: 300;
	padding: 30px;
	text-align: center;
	color: #fff;
}
.footer_contents {
	display: flex;
	justify-content: space-between;
	padding: 80px 0;
	width: 80%;
	margin: 0 auto;
}
.footer_contents .footer_logo p {
	font-weight: 400;
	color: #fff;
}
.footer_logo {
	position: relative;
}
.footer_contents .footer_logo a::before{
	content: url(../images/logo_img_footer.png);
    position: absolute;
    transform: scale(0.23);
    top: -70px;
    left: -105px;
}
.footer_nav ul li {
	font-size: 16px;
	margin-bottom: 20px;
	text-align: left;
}
.footer_nav ul li a{
	color: #fff;
}
.footer_nav a:hover {
    opacity: 0.8;
}

/* Large devices (desktops, 992px and up) */
/*iPadPro縦 / iPad横*/
@media screen and (max-width: 1199px) {
}

/* Medium devices (tablets, 768px and up) */
/*iPad縦 / iPhoneX横*/
@media screen and (max-width: 991px) {
	.footer_nav {
		display: none;
	}
	.footer_contents {
		justify-content: center;
	}
	.footer_contents .footer_logo p {
		padding-left: 32px;
	}
	.footer_contents .footer_logo a::before{
		transform: scale(0.2);
        top: -70px;
        left: -72px;
	}
}

/* Small devices (landscape phones, 576px and up) */
/*iPhoine6.7.8Plus横 / iPhoine6.7.8横*/
@media screen and (max-width: 767px) {
}

/* Extra small devices (portrait phones, less than 576px) */
/*iPhoneX縦 / iPhoine6.7.8Plus縦 / iPhoine6.7.8縦 / iPhone5.SE縦横*/
@media screen and (max-width: 575px) {
	footer h3 {width: 80vw;}
	.footer_contents .footer_logo p {
        font-size: 16px;
    }
}

/* ---------- フッター：コピーライト部ここまで ---------- */




