@charset "utf-8";
/* CSS Document */


/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
 
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/* style */



body {
	
	
    font-family: tbudmincho-std,sans-serif;
    font-weight: 500;
    font-style: normal;
	
	line-height: 1.8;
	font-size: 16px;
}

.font1 {
    
}

.font2 {
    
}


main {
	background-image: url(../img/bg.jpg);
	background-color: #EDF4F7;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}


header {
    width: 100%;
    background: rgba(255,255,255,0.9);
    
    position: fixed;
    z-index: 9999;
}

header .inner {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	
	padding: 0.5rem 1.5rem;
}

header .inner .header_logo {
    width: 250px;
}
header .inner .header_logo img {
    width: 100%;
}

@media screen and (max-width: 768px) {
	header .inner {
		padding: 0.2rem 1rem;
	}
	header .inner .header_logo {
		width: 50vw;
	}
	
	
}


.openbtn2{
  position: relative;/*ボタン内側の基点となるためrelativeを指定*/
  width: 50px;
    height:50px;
  cursor: pointer;
  
}
  
/*ボタン内側*/

.openbtn2 span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 13px;
    height: 2px;
  background-color: #333;
  }


.openbtn2 span:nth-of-type(1) {
  top:22px; 
    width: 50%;
}

.openbtn2 span:nth-of-type(2) {
  top:29px;
    width:30%;
}

/*activeクラスが付与されると線が回転して×に*/

.openbtn2.active span:nth-of-type(1) {
    top: 20px;
    left: 16px;
    transform: translateY(6px) rotate(-45deg);
    width: 35%;
}

.openbtn2.active span:nth-of-type(2) {
    top: 32px;
    left: 16px;
    transform: translateY(-6px) rotate(45deg);
    width: 35%;
}


#g-nav{
	/*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
	position:fixed;
	z-index: -1;
	opacity: 0;/*はじめは透過0*/
	/*ナビの位置と形状*/
	top:0;
	width:100%;
	height: 100vh;/*ナビの高さ*/
	background:rgba(255,255,255,0.5);/*背景を少し透過させる*/
	/*動き*/
	transition: all 0.5s;
	
	font-family: source-han-sans-cjk-ja, sans-serif;
	font-weight: 300;
	font-style: normal;
	
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
	opacity: 1;
	z-index:999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
	
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	
}

/*ナビゲーション*/
#g-nav #g-nav-list ul {
    display: none;/*はじめは非表示*/
    /*ナビゲーション天地中央揃え*/
    
    z-index: 999;
    
	
	
}

#g-nav.panelactive #g-nav-list ul {
    display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	
	margin-bottom: 5rem;
}
/*リストのレイアウト設定*/

#g-nav #g-nav-list ul li {
  list-style: none;
    text-align: center;
	
	width: 24%;
}

#g-nav #g-nav-list ul li a{
  color: #333;
  text-decoration: none;
  padding:1.5rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  
}


#g-nav .contact_btn {
    background: #333;
    border-radius: 0;
    color: #fff;
    font-size: 1.0rem;
    
    padding: 0.5rem 3rem;
    text-decoration: none;
	display: inline-block;
}


/* ブラー用クラス */

.mainblur{
  filter: blur(15px);
}


@media screen and (max-width: 768px) {
	#g-nav #g-nav-list ul li {
		width: 100%;
	}
	#g-nav.panelactive #g-nav-list ul {
		margin-bottom: 1.5rem;
	}
	#g-nav #g-nav-list ul li a{
		padding: 0.2rem;
	}
}
#page-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    font-size: 1.0rem;
    
    z-index: 10;
}
 
#page-top a {
    display: block;
     width: 20px;
     height: 20px;
     border-top: solid 1px #333;
     border-right: solid 1px #333;
    -webkit-transform: rotate(-45deg);
     transform: rotate(-45deg);
     
}



#kv {
	/*
	background-image: url(../img/kv.png);
	background-color: #FFF;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	*/
	
	
	width: 100%;
	
	overflow: hidden;
}



#kv .wrap {
	width: 1100px;
	height: 700px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	
	position: relative;
}

#kv .wrap .logo100 {
	width: 500px;
	/*width: 400px;
	margin-left: 3rem;*/
}

@media screen and (max-width: 768px) {
	/*
	#kv {
		background-image: url(../img/kv_sp.png);
	}
	*/
	#kv .wrap {
		width: 100%;
		height: 80vh;
		
		/*
		justify-content: flex-start;
		*/
	}
	#kv .wrap .logo100 {
		width: 80vw;
		/*width: 55vw;
		margin-left: 0;*/
	}
	
}


.isPlay {
  animation-name: play;
  animation-duration: .8s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  position: relative;
  opacity: 1 !important;
}
  
.isPlay:before {
	animation-name: maskOut;
	animation-duration: .5s;
	animation-delay: .5s;
	animation-fill-mode: forwards;
	animation-timing-function: cubic-bezier(.8,0,.5,1);
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	/*background-image: linear-gradient( 109.6deg,  rgba(156,252,248,1) 11.2%, rgba(110,123,251,1) 91.1% );*/
	background: rgba(194, 222, 233, 1);
}

@keyframes play {
  from {
    transform: translateX(-100%);
  }
  
  to {
    transform: translateX(0);
  }
}

@keyframes maskOut {
  from {
    transform: translateX(0);
  }
  
  to {
    transform: translateX(100%);
  }
}




/* slide */




#contents {
	
	/*background-attachment: fixed;*/
	
	padding-top: 7rem;
	
	
	overflow: hidden;
}


#contents .subcontents {
	margin-bottom: 9rem;
	
}
#contents .subcontents#sub4 {
	margin-bottom: 11rem;
}

#contents .subcontents#sub4 {
	
}

#contents .subcontents ul {
	display: flex;
	justify-content: center;
	align-items: center;
}

#contents .subcontents ul .text {
	text-align: center;
	margin: 0 5rem;
	font-size: 1.0rem;
	line-height: 2.5;
	
	color: #111;
}


#contents .subcontents ul .img {
	width: 550px;
}
#contents .subcontents ul .img figure {
	filter:drop-shadow(25px 25px 0 rgba(194, 222, 233, 0.5));
	/*filter:drop-shadow(30px 30px 0 rgba(255, 255, 255, 0.5));*/
	
	/*
	width: 550px;
	height: 364px;
	*/
	width: 100%;
    height: 0;
    padding-top: 67.27%;
	
}

#contents .subcontents ul .img figure span {
	display: block;
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	
	background-repeat: no-repeat;
	background-size: 120%;
	background-position: center top;
	transition-property: background-position;
	transition-duration: 0.7s;
	transition-delay: 0.001s;
	
}
#contents .subcontents#sub1 ul .img figure span {
	background-image: url("../img/contents_img1.jpg");
}
#contents .subcontents#sub2 ul .img figure span {
	background-image: url("../img/contents_img2.jpg");
}
#contents .subcontents#sub3 ul .img figure span {
	background-image: url("../img/contents_img3.jpg");
}
#contents .subcontents#sub4 ul .img figure span {
	background-image: url("../img/contents_img4.jpg");
}


#contents .subcontents ul .img figure img {
	
	
}


@media screen and (max-width: 768px) {
	#contents {
		padding-top: 7rem;
	}
	#contents .subcontents {
		padding-bottom: 0;
		margin-bottom: 7rem;
	}
	#contents .subcontents#sub4 {
		margin-bottom: 9rem;
	}
	
	
	#contents .subcontents ul {
		flex-direction: column;
		
	}
	#contents .subcontents ul .img {
		width: 90vw;
		margin: auto;
		order: 2;
	}
	#contents .subcontents#sub1 ul .img figure span {
		background-size: 120%;
	}
	
	#contents .subcontents ul .text {
		margin: 0;
		/*margin-bottom: 3rem;*/
		order: 1;
		
		font-size: 4vw;
	}
	
}




footer {
	color: #333;
	background: #EAEBEC;
	padding: 3rem 0;
	text-align: center;
	
	position: relative;
}
footer .footer_inner {
	width: 1100px;
	margin: 0 auto;
	
	
	font-size: 0.7rem;
	
	font-family: source-han-sans-cjk-ja, sans-serif;
	font-weight: 300;
	font-style: normal;
	
}
footer .footer_inner .footer_logo {
	width: 250px;
	margin: auto;
	margin-bottom: 3rem;
}

footer .footer_inner .wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

@media screen and (max-width: 768px) {
	footer .footer_inner {
		width: 90%;
		
	}
	footer .footer_inner .wrap {
		flex-direction: column;
	}
	
	footer .footer_inner .footer_logo {
		width: 50vw;
	}
	
}

footer .footer_inner ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
footer .footer_inner ul li {
	margin-right: 1.5rem;
}
footer .footer_inner ul li a {
	width: 20px;
}
footer .footer_inner ul li:first-of-type a {
	width: 30px;
}
footer .footer_inner ul li a .footer_icon path {
	fill: #333;
	stroke: none;
}
@media screen and (max-width: 768px) {
	footer .footer_inner p {
		
		font-size: 2.5vw;
		
		order: 2;
		margin-bottom: 10vh;
	}
	footer .footer_inner ul {
		width: 100%;
		justify-content: space-around;
		
		margin-bottom: 3.0rem;
		order: 1;
	}
	footer .footer_inner ul li {
		margin-right: 0;
	}
	footer .footer_inner ul li a {
		width: 7vw;
	}
	footer .footer_inner ul li:first-of-type a {
		width: 11vw;
	}
}



/* スクロールバー */

.scroll_down {
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 10;
  
  overflow: hidden;
  color: #fff;
	
	padding: 2px 2px 100px;
	
	font-family: interstate, sans-serif;
	font-weight: 400;
	letter-spacing: .1rem;
	font-size: 0.8rem;
	writing-mode: vertical-lr;
	
	
  
}

.scroll_down::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 100px;
  background: #0B0B0B;
}
.scroll_down::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 100px;
  /*background: rgba(255, 255, 255, 1);*/
	background: #ccc;
}
.scroll_down::after {
  height: 30px;
  animation: sdl 2.0s ease infinite;
}
@keyframes sdl {
  0% {
    transform: translateY(-90px);
  }
  50%, 100% {
    transform: translateY(30px);
  }
}

@media screen and (max-width: 768px) {
	.scroll_down {
		left: 50%;
		bottom: 0;
		padding: 2px 2px 100px;
	}
	.scroll_down::after {
		height: 100px;
	}
	.scroll_down::before {
		height: 100px;
	}
	.scroll_down::after {
		height: 30px;
	}
	
}





