@charset "utf-8";
/* CSS Document */





/* ---------- 基本設定 ---------- */

html {
	font-size: 62.5%;
}
p,a {
	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;
}
a:hover {
	opacity: 0.9;
}
h2 {
	font-family: "Helvetica Neue","Arial","Hiragino Kaku Gothic ProN","Hiragino Sans","Meiryo","sans-serif";
	font-size: 20px;
	margin-bottom: 20px;
	position: relative;
	color: #333;
	text-shadow: 0 0 2px white;
	display: inline-block;
}
h2:after {
	content: "";
	display: block;
	height: 4px;
	background: -webkit-linear-gradient(to right, rgb(196, 232, 4), rgb(196, 232, 4));
	background: linear-gradient(to right, rgb(196, 232, 4), rgb(196, 232, 4));
  }
h3,h4,h5 {
	font-family: 'Kumbh Sans';
	color: #333;
}
.section_gap {
	width: 90vw;
	margin: 0 auto;
}





/* ---------- ナビゲーション部ここから ---------- */

#header_fixed { 
	position: fixed;
	width: 100%;
	/* height: 0px; */
	top: 0px;
	z-index: 1;
	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;
    background-color: #fff;
    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;
    z-index: 999;
    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: #666;
  	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%;
}


/* 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) {
	#header_fixed {height: 70px;}
	#header_fixed h1 {width: 180px;}
	.hamburger {top: 15px;}
	h2 {
		font-size: 18px;
	}
	.hamburger {
		display: block;
	}
	.globalMenuSp nav{
		display: none
	}
	.globalMenuSp {
		padding: 20px 15px;
		background-color: transparent;
		z-index: 1;
	}
	.globalMenuSp img {
        width: 20%;
    }
}

/* Small devices (landscape phones, 576px and up) */
/*iPhone6.7.8Plus横 / iPhone6.7.8横*/
@media screen and (max-width: 767px) {
	#header_fixed {height: 60px;}
	#header_fixed h1 {width: 150px; margin-left: 10px;}
	.hamburger {top: 10px; right: 10px;}
}

/* Extra small devices (portrait phones, less than 576px) */
@media screen and (max-width: 575px) {
	p,a {
		font-size: 14px;
	}
}

/* ---------- ナビゲーション部ここまで ---------- */





main {
	width: 70%;
	margin: 0 auto;
}




/* メインビジュアルここから */

#works_block {
	padding: 150px 0 50px;
	margin: 0 auto;
	text-align: center;
} 
  /* General Styling */
  #head_pic img{
	width: 80%;
	border-radius: 7px;
  }
  .works_title {
	margin-top: 50px;
  }
  .works_title p:first-of-type{
	font-size: 24px;
	margin-bottom: 15px;
  }
  .works_title p:last-of-type{
	font-size: 14px;
	color: #9c9c9c;
  }
 

  
/* 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) {
	.works_title p:first-of-type {
		font-size: 20px;
		margin-bottom: 10px;
	}
	.works_title {
		margin-top: 30px;
	}
	#works_block {
		padding: 100px 0 50px;
		margin: 0 auto;
		text-align: center;
	}
}

/* Small devices (landscape phones, 576px and up) */
/*iPhone6.7.8Plus横 / iPhone6.7.8横*/
@media screen and (max-width: 767px) {
	.works_title p:first-of-type {
		font-size: 20px;
	}
	main {
		width: 80%;
	}
}

/* Extra small devices (portrait phones, less than 576px) */
@media screen and (max-width: 575px) {
	#head_pic img{
		width: 100%;
	  }
}

/* メインビジュアルここまで */





/* コンテンツここから */
.works_info, .works_detail {
	margin-bottom: 70px;
}
.works_info p{
	margin-bottom: 10px;
	line-height: 2rem;
}
.works_img_box p{
	text-align: center;
}
.works_detail p{
	line-height: 2.8rem;
}
.site_link a{
	border-bottom: #333333 1px solid;
	color: inherit;
	display: inline-block;
}
.works_img_box div img{
	filter: drop-shadow(0px 10px 10px rgba(19, 19, 19, 0.18));
	width: 100%;
}
.works_img_box {
	display: flex;
	justify-content: space-between;
}
.works_site_box_1 {
	width: 60%;
}
.works_site_box_2 {
	width: 30%;
}



.pic-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    background-color: #fefefe;
    gap: 1rem;
}


.pagenation {
    display: flex;
    gap: 0.5rem;
	justify-content: center;
	margin-top: 100px;
	margin-bottom: 100px;
}
.pagenation a {
    display: inline-block;
    border-bottom: 3px solid #dedede;
    text-decoration: none;
    width: 35px;
    height: 40px;
    line-height: 40px;
    text-align: center;
	margin-right: 5px;
}
.pagenation i {
    line-height: 40px;
}
.pagenation .active a {
    border-bottom: 3px solid #555;
}
.pagenation a:hover {
    border-bottom: 3px solid #3DAD58;
}
.pagenation .disabled a {
    pointer-events: none;
    color: #ccc;
}
.pagenation .disabled a:hover {
    background-color: initial;
    color: #ccc;
}
.pagenation .dots {
	border-bottom: none;
}





  /*アニメーション*/
  .animation{
	transition: all .3s ease;
  }





/* 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) {
	.works_detail h2 {
		margin-bottom: 20px;
	}
	.pagenation a {
		width: 30px;
		font-size: 14px;
	}
}

/* Small devices (landscape phones, 576px and up) */
/*iPhoine6.7.8Plus横 / iPhoine6.7.8横*/
@media screen and (max-width: 767px) {
	.works_img_box {
		display: none;
	}
	#works_img_box_sp {
		display: block;
	}
	#works_img_box_sp h2:nth-of-type(n+2){
		margin-top: 50px;
	}
	.works_img_box {
		display: block;
	}
	.works_site_box_1, .works_site_box_2 {
		width: 100%;
	}
	.works_site_box_2 h2{
		margin-top: 50px;
	}
}

/* Extra small devices (portrait phones, less than 576px) */
/*iPhoneX縦 / iPhoine6.7.8Plus縦 / iPhoine6.7.8縦 / iPhone5.SE縦横*/
@media screen and (max-width: 575px) {
	.pagenation a {
		width: 26px;
	}
	.pagenation {
		margin-top: 80px;
	}
	.works_info, .works_detail {
		margin-bottom: 50px;
	}
}

/* ---------- 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;
    }
}

/* ---------- フッター：コピーライト部ここまで ---------- */




