@charset "utf-8";


/*--------------------------------------------------------------------------
   html
---------------------------------------------------------------------------*/

html{
	overflow-y: scroll;
	font-size: 62.5%;
}


/*--------------------------------------------------------------------------
   body
---------------------------------------------------------------------------*/

body{
	color: #010101;
	background: #FFF;
	font-family:"Noto Sans JP","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","游ゴシック体", "Yu Gothic", YuGothic,"メイリオ",Meiryo ,"ＭＳ Ｐゴシック" ,"MS P Gothic" ,sans-serif;
	font-size: 1.6rem;
	line-height: 1.8;
	-webkit-text-size-adjust: 100%;	
}

/* fonts */
.serif{
	font-family: "Noto Serif JP","YuMincho","Yu Mincho","HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.en{
	font-family: "Times New Roman", Times, Georgia, serif;	
}


/*--------------------------------------------------------------------------
   base link
---------------------------------------------------------------------------*/

a{
	outline: none;
}
a:link,
a:visited{
	text-decoration: none;
	color: #010101;
}


/* リンク・ボタン hover
-----------------------------------------------------------------*/
.ophover{
	transition: opacity ease .3s;	
}
.ophover:hover{
	opacity: .7;
}


/* 画像 hover
-----------------------------------------------------------------*/
.hoverscale{
  overflow:hidden;
}
.hoverscale img{
  transition: 1s;  
}
a:hover .hoverscale img{
  transform: translate(1.08,1.08);
}



/*--------------------------------------------------------------------------
   img
---------------------------------------------------------------------------*/
img{
	max-width: 100%;
	height: auto;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;		
}

/*--------------------------------------------------------------------------
   Animation
---------------------------------------------------------------------------*/

.fade,.fade01,.fade02,.fade03,.fade04,.blur,.zoom,
.delay01,.delay02,.delay03,.delay04,.delay05 {
	transition: 1.3s;
}
.fade {
	opacity: 0;
	transform: translate(0,0); 
}
.fade01{
	opacity: 0;
	transform: translate(0,50px); 
}
 .fade02 {
	opacity: 0;
	transform: translate(0,-50px); 
}
.fade03 {
	opacity: 0;
	transform: translate(-50px,0); 
}
.fade04 {
	opacity: 0;
	transform: translate(50px,0); 
}
.blur {
  -webkit-filter: blur(14px);
	filter: blur(14px);  
}
.zoom{
  transform: scale(1.1,1.1); 
}
.delay01{
	transition-delay: 0.3s;		
}
.delay02{
	transition-delay: 0.6s;		
}
.delay03{
	transition-delay: 0.9s;		
}
.delay04{
	transition-delay: 1.2s;		
}
.delay05{
	transition-delay: 1.5s;		
}

 .mv {
	opacity: 1;
  -webkit-filter: blur(0);
	filter: blur(0);
	transform: translate(0,0) scale(1,1); 
}


/*--------------------------------------------------------------------------
   PC
---------------------------------------------------------------------------*/
.sp{
	display: none;	
}
/* box-sizing ---*/	
header, footer, section, div, h1, h2, h3, h4, h5, p, ul, ol, li, dl, dt, dd, th, td, a, span {
	box-sizing: border-box;
}

/* clearfix
-----------------------------------------------------------------*/
.cf:after{
	clear :both;
	content: "";
	display: block;
	height: 0;
}



/*--------------------------------------------------------------------------
   Container
---------------------------------------------------------------------------*/
#Page{
	overflow: hidden;	
}
.inner{
	max-width: 1240px;
	padding: 0 20px;
	margin: 0 auto;
}
.layout-box{
  display: flex;
  justify-content: space-between;  
}



/*--------------------------------------------------------------------------
   header
---------------------------------------------------------------------------*/
.header{
	position: fixed;
	left: 0;
	top: 0;
	z-index: 5000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	background: #fff;
}
.header .hd-logo{
	position: relative;
	z-index: 8000;
	margin-left: 30px;
}

.header .nav-area{
	display: flex;
	align-items: center;
}
.header .nav-area .btn-trigger-box{
	position: relative;
	z-index: 8000;
}
.header .nav-area .btn-trigger{
	position: relative;
	width: 30px;
	height: 26px;
	margin-left: 30px;
	cursor: pointer;
  transition: .3s;
}
.header .nav-area .btn-trigger span{
	position: absolute;
	left: 0;
	width: 30px;
	height: 2px;
	background: #010101;
  transition: .3s; 
}
.header .nav-area .btn-trigger span:nth-child(1){
	top: 0;
}
.header .nav-area .btn-trigger span:nth-child(2){
	top: 12px;
}
.header .nav-area .btn-trigger span:nth-child(3){
	bottom: 0;
}
.header .nav-area .btn-trigger.on{
  transform: rotate(360deg);
}
.header .nav-area .btn-trigger.on span:nth-child(1){
	transform: translateY(12px) rotate(45deg);
}
.header .nav-area .btn-trigger.on span:nth-child(2){
	opacity: 0;
}
.header .nav-area .btn-trigger.on span:nth-child(3){
	transform: translateY(-12px) rotate(-45deg);
}

.header .nav-area .group-logo{
	position: relative;
	z-index: 8000;
	margin: 0 20px 0 30px;
}

/* ---------------------------------------------------------------------------
			#Gnav	
				グローバルナビゲーション
--------------------------------------------------------------------------- */
#HdGnav .hd-gnav{
	display: flex;
}
#HdGnav .hd-gnav > li{
  display: flex;
  align-items: center;
  height: 80px;
	margin: 0 15px;
}
#HdGnav .hd-gnav > li > p > a{
	position: relative;
	display: inline-block;
}
#HdGnav .hd-gnav > li > p > a::after{
	position: absolute;
	left: 0;
	bottom: -2px;
	display: block;
	width: 100%;
	height: 1px;
	content: "";
	background: #010101;
	transform: scale(0,1);
	transition: .3s;
}
#HdGnav .hd-gnav > li.current > p > a::after,
#HdGnav .hd-gnav > li > p > a:hover::after{
	transform: scale(1,1);
}
#HdGnav .hd-gnav > li > p > a[target="_blank"]{
	margin-right: 24px;
}
#HdGnav .hd-gnav > li > p > a[target="_blank"]::before{
	position: absolute;
	right: -8px;
	top: 50%;
	transform: translate(100%,-50%);
	display: block;
	width: 16px;
	height: 16px;
	content: "";
	background:url(../../img/common/ico_blank.svg) no-repeat;
}

#HdGnav .hd-gnav .nav-middle{
	position: absolute;
	left: 0;
	top: 80px;
	display: none;
	width: 100%;
	padding: 60px 20px;
	background: #f5f5f5;	
}
#HdGnav .hd-gnav  > li:hover .nav-middle{
	display: block;
	animation: .5s ease 0s 1 normal none running fadein;
}
#HdGnav .hd-gnav .nav-middle ul{
	display: flex;
	flex-wrap:wrap;
	align-items: flex-start;
	max-width: 980px;
	margin: 0 auto;
	font-family: "Noto Serif JP","YuMincho","Yu Mincho","HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
#HdGnav .hd-gnav .nav-middle ul li{
	width: calc((100% - 40px)/3);
	margin-left: 20px;
	background: #fff;
}
#HdGnav .hd-gnav .nav-middle ul li:nth-child(3n+1){
	margin-left: 0;
}
#HdGnav .hd-gnav .nav-middle ul li:nth-child(n+4){
	margin-top: 20px;
}
#HdGnav .hd-gnav .nav-middle ul li a{
	display: flex;
	align-items: center;	
}
#HdGnav .hd-gnav .nav-middle ul .thumb{
	flex-shrink: 0;
	width: 120px;
	transition: .3s;
}
#HdGnav .hd-gnav .nav-middle ul a:hover .thumb{
	opacity: .7;
}
#HdGnav .hd-gnav .nav-middle ul .ttl{
	line-height: 1.4;
	font-size: 1.8rem;
	margin-left: 1.5vw;
}
#HdGnav .hd-gnav .nav-middle ul a .ttl::after{
	display: block;
	margin-top: 5px;
	content: "";
	height: 6px;
	background:url(../../img/common/arw_btn.svg) no-repeat;
	background-size: 30px auto;
	transition: .2s;
}
#HdGnav .hd-gnav .nav-middle ul .ttl-sub{
	font-size: 1.2rem;
	margin-left: 1.5vw;
}
#HdGnav .hd-gnav .nav-middle ul a .ttl-sub::after{
	display: inline-block;
	margin: 0 0 4px 10px;
	content: "";
	width: 20px;
	height: 4px;
	background:url(../../img/common/arw_btn.svg) no-repeat;
	background-size: 20px auto;
	transition: .2s;
}
#HdGnav .hd-gnav .nav-middle ul a:hover .ttl::after,
#HdGnav .hd-gnav .nav-middle ul a:hover .ttl-sub::after{
	transform: translateX(4px);	
}

#HdGnav .hd-gnav .nav03 .nav-middle ul li:nth-child(1),
#HdGnav .hd-gnav .nav03 .nav-middle ul li:nth-child(3){
	display: flex;
	align-items: center;
}
#HdGnav .hd-gnav .nav03 .nav-middle ul li:nth-child(1) a,
#HdGnav .hd-gnav .nav03 .nav-middle ul li:nth-child(3) a{
	display: inline-block;
	padding:5px 0;
}
#HdGnav .hd-gnav .nav03 .nav-middle ul li:nth-child(1) .ttl::after,
#HdGnav .hd-gnav .nav03 .nav-middle ul li:nth-child(3) .ttl::after{
	display: inline-block;
	width: 30px;
	margin: 0 0 6px 15px;
}

@media screen and (max-width: 1140px) {
	.header{
    padding: 15px 0; 
  }
	#HdGnav{
		display: none;
	}
}


#Gnav{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	z-index: 7000;
	display: none;
	padding-top: 80px;
	background: #fff;
}
#Gnav .gnav-container{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	overflow: auto;
}
#Gnav .gnav{
	display: flex;
	justify-content: space-between;
	max-width: 1240px;
	width: 100%;
	padding: 20px;
}
#Gnav .gnav > li{
	max-width: 240px;
	width:calc((100% - 45px)/4);
}
#Gnav .gnav > li > p{
	margin-bottom: 20px;
	padding-bottom: 5px;
	border-bottom: 1px solid #e9e9e9;
	font-size: 1.8rem;
	font-weight: 500;
}
#Gnav .gnav > li > p:nth-child(n+2){
	margin-top: 40px;
}
#Gnav .gnav > li > p .blank{
  padding-right: 26px;
  background: url(../../img/common/ico_blank.svg) no-repeat right center;
  background-size: 16px auto;  
}
#Gnav .gnav .nav-middle li > span,
#Gnav .gnav .nav-middle a{
	display: inline-block;
	padding: 10px 0;
	font-size: 1.4rem;
}
#Gnav .gnav .nav-middle .middle{
	position: relative;
	margin-left: 1em;
}
#Gnav .gnav .nav-middle .middle a{
	position: relative;
	padding-left: 12px;
}
#Gnav .gnav .nav-middle .middle a::before{
	position: absolute;
	left: 0px;
	top: 18px;
	display: block;
	width: 8px;
	height: 1px;
	content: "";
	background: #010101;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}



/*--------------------------------------------------------------------------
   Content
---------------------------------------------------------------------------*/
.content {
	margin-top: 80px;
}

@media screen and (max-width: 1140px) {
	.content {
		margin-top: 70px;
	}	
}

/* kv
-----------------------------------------------------------------*/
.kv{
  position: relative;
  margin: 35px 0 60px;  
}
.kv::before{
  position:absolute;
  left: 0;
  top: 0;
  transform: translateY(60px);
  display: block;
  content: "";
  width: calc(100% - ((100% - 1200px)/2));
  height: 100%;
  background: #094;  
}
.kv p{
  position: relative;
  z-index: 10;
  margin-left: 6.25vw;  
}

@media screen and (max-width: 1200px) {
  .kv::before{
    width: 90%; 
  }
}


/* 見出し
-----------------------------------------------------------------*/
/* page-ttl */
.page-ttl{
  padding: 150px 20px 0;  
}
.page-ttl .inner{
  padding: 0 0 30px;
  border-bottom: 1px solid #e9e9e9;  
}
.page-ttl._noborder .inner{
  padding-bottom: 0;  
  border-bottom: none; 
}
.page-ttl h1{
  line-height: 1;  
}
.page-ttl h1 .en{
  display:block;
  margin-bottom: 15px;
  font-size: 2rem;
  letter-spacing: .06em;
  color: #094; 
  font-weight: 500;  
}
.page-ttl h1 .ja{
  font-size: 6rem;
  letter-spacing: .08em;   
}
.breadcrumb{
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
  color: #094;
  font-size: 1.4rem;
  line-height: 1.4;  
}
.breadcrumb li:nth-child(n+2)::before{
  display: inline-block;
  content: "/";
  margin: 0 .5em;
  color: #000;  
}
.breadcrumb a{
  color: #000;   
}

/* ttl-hd */
.ttl-hd{
  display: flex;
  align-items: flex-end;  
}
.ttl-hd h2{
  flex-shrink: 0;
  margin-right: 8%;
  line-height: 1;  
}
.ttl-hd h2 .ja{
  display: block;
  margin-bottom: 10px;
  font-size: 4.5rem;
  letter-spacing: .08em;   
}
.ttl-hd h2 .en{
  font-size: 1.6rem;
  letter-spacing: .06em;
  color: #094; 
  font-weight: 500;    
}

/* ttl-mid-sec */
.ttl-mid-sec{
  line-height: 1; 
}
.ttl-mid-sec .ja{
  display: block;
  margin-bottom: 10px;
  font-size: 4.5rem;
  letter-spacing: .08em;   
}
.ttl-mid-sec .en{
  font-size: 1.6rem;
  letter-spacing: .06em;
  color: #094; 
  font-weight: 500;    
}
.txt-sec-lead{
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.6; 
}
.txt-sec-lead + .txt{
  margin-top: 20px;  
}

/* middle-cont-hd */
.middle-cont-hd{
	padding-bottom: 45px;
}
.middle-cont-hd .ttl-area{
	position: relative;	
}
.middle-cont-hd .ttl-area .ttl{
	position: absolute;
	left: 0;
	bottom: 0;
	transform: translateY(50%);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 200px;
	pointer-events: none;	
}
.middle-cont-hd .ttl-area .ttl::before{
	position: absolute;
	left: 0px;
	top: 0px;
	display: block;
	width: 65vw;
	height: 100%;
	content: "";
}
.middle-cont-hd .ttl-area .ttl h1{
	position: relative;
	z-index: 10;
	max-width: 1240px;
	width: 100%;
	padding: 20px;
	color: #fff;
	line-height: 1;
	font-weight: normal; 
}
.middle-cont-hd .ttl-area .ttl h1 .en{
	display: block;
	margin-bottom: 10px;
	font-size: 2rem;
	letter-spacing: .08em;	
}
.middle-cont-hd .ttl-area .ttl h1 .ja{
	font-size: 5.5rem;	
}



/* ttl-cat */
.ttl-cat{
  padding: 0 0 2px 20px;
  border-left: 4px solid #094;
  font-size: 3.5rem;
  line-height: 1.6;  
}
.ttl-cat._middle{
	padding: 0 0 2px 10px;
	font-size: 3rem;
	line-height: 1.4;  
}
.ttl-cat._small{
	padding: 0 0 2px 10px;
	font-size: 2.2rem;
  line-height: 1.4; 
}
.ttl-cat._medium{
	padding: 0 0 2px 10px;
	font-size: 3rem;
}



/* ボタン
-----------------------------------------------------------------*/
.btn-base a,
.btn-base > span{
  position: relative;
  display: flex;
  justify-content:center;
  align-items: center;
  max-width: 280px;
  width: 100%;
  height: 60px;
  background: #000;
  color: #fff;
  font-size: 1.6rem;
	cursor: pointer;  
}
.btn-base a::after,
.btn-base > span::after{
  position:absolute;
  right: 10px;
  top: 45%;
  transform: translateY(-50%);
  display: block;
  content: "";
  width: 36px;
  height: 8px;
  background:url(../../img/common/arw_btn_w.svg) no-repeat right center;
  background-size: auto 100%;
  transition: .2s; 
}
.btn-base a:hover::after,
a:hover .btn-base > span::after{
  right: 7px;
}

/* btn-base white */
.btn-base._w a,
.btn-base._w > span{
  background: #fff;
  color: #010101;
}
.btn-base._w a::after,
.btn-base._w > span::after{
  background-image:url(../../img/common/arw_btn.svg);
}

/* btn-base down */
.btn-base._down a,
.btn-base._down > span{
  background-image: url(../../img/business/btn_arw_down.svg);
  background-position: right 20px center;
  background-repeat: no-repeat;
  transition: .3s;   
}
.btn-base._down a:hover,
a:hover .btn-base._down > span,
.btn-base._down > span:hover{
  opacity: .7;
}
.btn-base._down a::after,
.btn-base._down > span::after{
  display: none;  
}

/* btn-base pdf */
.btn-base._pdf a,
.btn-base._pdf > span{
	background-image: url(../../img/business/ico_pdf.svg);
	background-repeat: no-repeat;
	background-position: right 18px center;
	transition: .3s;
}
.btn-base._pdf a:hover,
a:hover .btn-base._pdf > span{
	opacity: .7;
}
.btn-base._pdf a::after,
.btn-base._pdf > span::after{
  display: none;
}

/* btn-base blank */ 
.btn-base._blank a,
.btn-base._blank > span{
	background-image:url(../../img/common/ico_blank_w.svg);
	background-repeat: no-repeat;
	background-position: right 18px center;
	transition: .3s;
}
.btn-base._blank a:hover,
a:hover .btn-base._blank > span{
	opacity: .7;
}
.btn-base._blank a::after,
.btn-base._blank > span::after{
  display: none;
} 





/*--------------------------------------------------------------------------
   middle-cont-list
---------------------------------------------------------------------------*/
.middle-cont-list li{
  display: flex;
  align-items: center;  
}
.middle-cont-list li:nth-child(odd){
  flex-direction: row-reverse;  
}
.middle-cont-list li:nth-child(n+2){
  margin-top: 150px;  
}
.middle-cont-list .pic{
  width: 55%;
}
.middle-cont-list .pic img{
  max-width: none;
  width: calc(100% + ((100vw - 1200px)/2));
	margin-left: calc(((100vw - 1200px)/2)*-1);  
}
.middle-cont-list li:nth-child(odd) .pic img{
	margin-left: 0;
  margin-right: calc(((100vw - 1200px)/2)*-1);
}
.middle-cont-list .txt-area{
  width: 45%; 
	padding: 0 6% 0 0;  
}
.middle-cont-list li:nth-child(even) .txt-area{
  padding: 0 0 0 6%; 
}
.middle-cont-list .txt-area h3{
  margin-bottom: 30px;
  line-height: 1;  
}
.middle-cont-list .txt-area h3 .ja{
  display: block;
  margin-bottom: 10px;
  font-size: 4.5rem;
  letter-spacing: .06;  
}
.middle-cont-list .txt-area h3 .en{
  font-size: 1.6rem;
  letter-spacing: .08em;
  font-weight: 500;
  color: #094;  
}
.middle-cont-list .txt-area .btn{
  margin-top: 60px;  
}


@media screen and (max-width: 1240px) {
  .middle-cont-list .pic img{
    max-width: none;
    width: calc(100% + 20px);
		margin-left: -20px;  
  }  
  .middle-cont-list li:nth-child(odd) .pic img{
    margin-right: -20px;
  }  
}


/*--------------------------------------------------------------------------
   cat-cont-list
---------------------------------------------------------------------------*/
.cat-cont-list{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;	
}
.cat-cont-list li{
	position: relative;
	max-width: 585px;
	width: calc(50% - 5px);
	padding-bottom: 90px;
}
.cat-cont-list li:nth-child(n+3){
	margin-top: 140px;
}
.cat-cont-list h3{
	margin: 30px 0 5px;
	font-size: 3.2rem;
	line-height: 1.5;
}
.cat-cont-list .btn{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}



/*--------------------------------------------------------------------------
   page-nav
---------------------------------------------------------------------------*/
.page-nav{
	display: flex;
	justify-content: space-between;
}
.page-nav li{
	max-width: 220px;
	border-bottom: 1px solid #000;
}
.page-nav li:hover{
	border-color: #094;
}
.page-nav li a{
	display: block;
	padding:  30px 10px;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1;
	text-align: center;
	transition: .3s;
}
.page-nav li a:hover{
	color: #094;
}
.page-nav li a span{
	padding-right: 30px;
	background: url(../../img/business/btn_arw_down_green.svg) no-repeat right center;
	background-size: 19px auto;
}



/*--------------------------------------------------------------------------
   tab-nav
---------------------------------------------------------------------------*/
.tab-nav{
	display: flex;
	border-bottom: 1px solid #000;
}
.tab-nav li {
    position: relative;
    max-width: 235px;
		width: calc((100% - 32px)/5);
    height: 70px;
    margin-bottom: -1px;
    padding-top: 17px;
    border: solid #010101;
    border-width: 1px;
    background: #010101;
    cursor: pointer;
		font-weight: 500;
    text-align: center;
    font-size: 1.8rem;
    color: #fff;
}
.tab-nav li:nth-child(n+2){
	margin-left: 8px;
}
.tab-nav li:hover,
.tab-nav li.current {
    background: transparent;
    color: #010101;	
}
.tab-nav li.current{
	border-bottom-color: #fff;
}
.tab-nav li::after{
	position: absolute;
	right: 15px;
	top: 28px;
	display: block;
	content: "";
	width: 8px;
	height: 8px;
	border: solid #fff;
	border-width: 2px 2px 0 0;
	transform: rotate(45deg);	
}
.tab-nav li:hover::after,
.tab-nav li.current::after{
	border-color: #010101; 
}
.tab-nav li.current::after{
	transform: rotate(135deg);
}


/*--------------------------------------------------------------------------
   other-works-list
---------------------------------------------------------------------------*/
.other-works-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.other-works-list li{
	display: flex;
  max-width: 570px;
  width: calc(50% - 10px);
  padding: 25px 0;
  border-bottom: 1px solid #d8d8d8;
  font-size: 1.8rem;
  line-height: 1.5; 
}
.other-works-list li span:nth-child(1){
  margin-right: 5px;
  color: #094;  
}





/*--------------------------------------------------------------------------
   cont-nav
---------------------------------------------------------------------------*/
.cont-nav{
  padding: 60px 0;  
}
.cont-nav h2{
  margin-bottom: 25px;
  line-height: 1;  
}
.cont-nav h2 .ja{
  display: block;
  margin-bottom: 7px;
  font-size: 2.4rem;
  letter-spacing: .06em;  
}
.cont-nav h2 .en{
  font-size: 1.4rem;
  letter-spacing: .08em;
  font-weight: normal;
  color: #094;  
}
.cont-nav .cont-nav-list{
  display: flex;
  flex-wrap:wrap;  
}
.cont-nav .cont-nav-list li{
  margin-left: 18px;
  width: calc((100% - 36px)/3);  
}
.cont-nav .cont-nav-list li:nth-child(3n+1){
  margin-left: 0;
}
.cont-nav .cont-nav-list li:nth-child(n+4){
  margin-top: 20px;  
}
.cont-nav .cont-nav-list li a{
  display: flex;
  align-items: center;
  width: 100%;
  background: #f5f5f5;
  transition: .3s;  
}
.cont-nav .cont-nav-list .thumb{
	flex-shrink: 0;
	width: 120px;
	transition: .3s;
}
.cont-nav .cont-nav-list a:hover .thumb{
	opacity: .7;
}
.cont-nav .cont-nav-list .ttl{
	line-height: 1.4;
	font-size: 1.8rem;
	margin-left: 1.5vw;
}
.cont-nav .cont-nav-list a .ttl::after{
	display: block;
	margin-top: 5px;
	content: "";
	height: 6px;
	background:url(../../img/common/arw_btn.svg) no-repeat;
	background-size: 30px auto;
	transition: .2s;
}
.cont-nav .cont-nav-list a:hover .ttl::after{
  transform: translateX(4px);	
}



/*--------------------------------------------------------------------------
   .not-found
---------------------------------------------------------------------------*/
.not-found{
	padding: 200px 0 150px;
	text-align: center;
}
.not-found h2{
	margin-bottom: 50px;
}
.not-found h2 span{
	display: block;
	margin-bottom: 15px;
	font-size: 4rem;
  letter-spacing: .08em;
}
.not-found h2 small{
	display: inline-block;
	padding-bottom: 35px;
	border-bottom: 4px solid #094;
	font-size: 1.8rem;
	letter-spacing: .06em;
	color: #094;
	font-weight: 500;
}
.not-found .txt{
	line-height: 2.2;	
}


/*--------------------------------------------------------------------------
   Footer
---------------------------------------------------------------------------*/
.footer{
  padding: 90px 0 80px;
}
.footer h2{
  display: flex;
  align-items: center;
  margin-bottom: 50px;  
}
.footer h2 .ttl{
  margin-left: 35px;
  font-size: 1.4rem;
  font-weight: normal;  
}

.ft-tab-nav{
  display: flex;
  border-bottom: 1px solid #010101;  
}
.ft-tab-nav li{
  position: relative;
  width: 200px;
  height: 50px;
  margin-bottom: -1px;
  padding-top: 12px;
  border: solid #010101;
  border-width: 1px 1px 0 1px;
  background: #010101;
  cursor: pointer;
  text-align: center;
  font-size: 1.4rem;
	color: #fff;  
}
.ft-tab-nav li:nth-child(2){
  border-width: 1px 1px 0 0;
}
.ft-tab-nav li::after{
  position:absolute;
  right: 15px;
  top: 21px;
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border: solid #fff;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
}

.ft-tab-nav li:hover,
.ft-tab-nav li.current{
  background: #fff;
  color: #010101;
}
.ft-tab-nav li:hover{
	border-bottom: 1px solid #010101;
}
.ft-tab-nav li.current:hover{
	border-bottom: 1px solid #fff;
}
.ft-tab-nav li:hover::after{
  border-color: #010101;
}
.ft-tab-nav li.current::after{
  border-color: #010101;
  transform: rotate(135deg) translate(-2px,2px);  
}

.ft-tab-cont{
  padding: 35px 0 90px; 
}
.ft-tab-cont + .ft-tab-cont{
  display:none; 
}
.ft-tab-cont h3{
  margin-bottom: 20px;
	font-size: 1.8rem;
	font-weight: 500;
}
.ft-tab-img{
  width: 300px;
  padding-bottom: 10px;
}

.ft-gnav{
  display: flex;
	justify-content: space-between;
}
.ft-gnav > li{
  max-width: 240px;
	width:calc((100% - 45px)/4);
}
.ft-gnav > li > p{
	margin-bottom: 20px;
	font-size: 1.8rem;
	font-weight: 500;
}
.ft-gnav > li > p:nth-child(n+2){
	margin-top: 25px;
}
.ft-gnav > li > p .blank{
  padding-right: 26px;
  background: url(../../img/common/ico_blank.svg) no-repeat right center;
  background-size: 16px auto;  
}
.ft-gnav > li > p .pdf{
	padding-right: 26px;
	background: url(../../img/common/ico_pdf.svg) no-repeat right center;
	background-size: 16px auto;  
  }
.ft-gnav .nav-middle a,
.ft-gnav .nav-middle li > span{
	display: inline-block;
	padding: 6px 0;
	font-size: 1.4rem;
}
.ft-gnav .nav-middle .middle{
	position: relative;
	margin-left: 1em;
}
.ft-gnav .nav-middle .middle a{
	position: relative;
	padding-left: 12px;
}
.ft-gnav .nav-middle .middle a::before{
	position: absolute;
	left: 0px;
	top: 18px;
	display: block;
	width: 8px;
	height: 1px;
	content: "";
	background: #010101;
}
.ft-tab-cont .group-list{
  display: flex;
  justify-content: space-between;
}
.ft-tab-cont .group-list p{
	font-size: 1.4rem; 
}
.ft-tab-cont .group-list a,
.ft-tab-cont .group-list li > span{
  display: inline-block;
  padding: 8px 20px 8px 0;
  font-size: 1.4rem;  
}
.ft-tab-cont .group-list a[target="_blank"]{
  background: url(../../img/common/ico_blank.svg) no-repeat right center;
  background-size: 12px auto;    
}

.ft-btm-area{
  display: flex;
  justify-content: space-between;    
}
.ft-btm-area .ft-util-list{
  display: flex;
  font-size: 1.3rem;
}
.ft-btm-area .ft-util-list li{
  margin-right: 30px; 
}
.ft-btm-area .copyright{
  font-size: 1.3rem;
  letter-spacing: .08em;
}





























/*--------------------------------------------------------------------------
   mobile
---------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  body{
		font-size: 1.4rem;
	}
  #Page {
    min-width: 320px;	
  }
  
  img{
    width: 100%;
    height: auto;
  }
  
  .pc{
    display: none;	
  }
  .sp{
    display: block;	
  }
  img.sp,
  br.sp{
    display: inline;
  }


/* リンク・ボタン hover
-----------------------------------------------------------------*/
  .ophover:hover{
    opacity: 1;
  }

/* 画像 hover
-----------------------------------------------------------------*/
  a:hover .hoverscale img{
    transform: none;
  }



/*--------------------------------------------------------------------------
   Container
---------------------------------------------------------------------------*/
  .inner{
    max-width: initial;	
  }


/*--------------------------------------------------------------------------
   header
---------------------------------------------------------------------------*/
  .header{
    padding: 15px 20px;	
  }
  .header .hd-logo{
    width: 176px;
    margin:  2px 0 0;
  }
  
  .header .nav-area{
    display: block;
		padding-right: 30px;
  }
	.header .nav-area .btn-trigger-box{
		position: absolute;
		right: 0;
		top: 0;
	}  
  .header .nav-area .btn-trigger{
    width: 70px;
    height:60px;
    margin: 0;
  }
	.header .nav-area .btn-trigger span{
		left: 20px;
	}
	.header .nav-area .btn-trigger span:nth-child(1){
		top: 17px;
	}
	.header .nav-area .btn-trigger span:nth-child(2){
		top: 27px;
	}
	.header .nav-area .btn-trigger span:nth-child(3){
		bottom: auto;
		top: 37px;
	}
.header .nav-area .btn-trigger.on{
  transform: rotate(360deg);
}
.header .nav-area .btn-trigger.on span:nth-child(1){
	transform: translateY(10px) rotate(45deg);
}
.header .nav-area .btn-trigger.on span:nth-child(2){
	opacity: 0;
}
.header .nav-area .btn-trigger.on span:nth-child(3){
	transform: translateY(-10px) rotate(-45deg);
}	
  
  .header .nav-area .group-logo{
    width: 45px;
    margin: 0 20px;
  }

/* ---------------------------------------------------------------------------
			#Gnav	
				グローバルナビゲーション
--------------------------------------------------------------------------- */
  #HdGnav{
    display: none;
  }
  
  #Gnav{
    padding-top: 60px;
  }
  #Gnav .gnav-container{
    display: block;
  }
  #Gnav .gnav{
    display: block;
  }
  #Gnav .gnav > li{
    max-width: none;
    width: 100%;
  }
  #Gnav .gnav > li > p{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 1px solid #e9e9e9;
  }
  #Gnav .gnav > li > p > a,
  #Gnav .gnav > li > p > span{
    display: block;
    padding: 10px 0; 
  }
  #Gnav .gnav > li > p.has-middle a{
    display: none; 
  }
  #Gnav .gnav > li > p.has-middle span{
    position: relative;
    cursor: pointer;  
  }
  #Gnav .gnav > li > p.has-middle span::after{
    position:absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 15px;
    height: 15px;
    background:url(../../img/common/ico_plus.svg) no-repeat;
    background-size: 100% auto;
  }
  #Gnav .gnav > li > p.has-middle.open span::after{
    background-image:url(../../img/common/ico_minus.svg);
  }
  #Gnav .gnav > li > p:nth-child(n+2){
    margin-top: 0;
  }
  #Gnav .gnav > li > p .blank{
    padding-right: 22px;
    background-size: 14px auto;  
  }
  #Gnav .gnav .nav-middle{
    display: none; 
  }
  #Gnav .gnav .nav-middle a{
    display: block;
    padding: 10px 0;
  }
	#Gnav .gnav .nav-middle .middle{
	margin-left: 0.6em;
}


/*--------------------------------------------------------------------------
   Content
---------------------------------------------------------------------------*/
  .content {
    margin-top: 60px;
  }

/* kv
-----------------------------------------------------------------*/
.kv{
  position: relative;
  margin: 15px 0 40px;  
}
.kv::before{
  transform: translateY(40px);
  width: 100%;
}
.kv p{
  margin-left: 20px;  
}


/* 見出し
-----------------------------------------------------------------*/
/* page-ttl */
	.page-ttl{
		padding: 80px 20px 0;  
	}
	.page-ttl .inner{
		padding-bottom: 25px; 
	}
	.page-ttl._noborder .inner{
		padding-bottom: 0;  
		border-bottom: none; 
	}
	.page-ttl h1{
		line-height: 1;  
	}
	.page-ttl h1 .en{
		margin-bottom: 7px;
		font-size: 1.2rem;
	}
	.page-ttl h1 .ja{
		font-size: 3.4rem;
	}
	.breadcrumb{
		display: none;
	}

/* ttl-hd */
	.ttl-hd{
		display: block;
	}
	.ttl-hd h2{
		margin: 0 0 15px;  
	}
	.ttl-hd h2 .ja{
		margin-bottom: 7px;
		font-size: 2.8rem;
	}
	.ttl-hd h2 .en{
		font-size: 1.2rem;
	}

/* ttl-mid-sec */
	.ttl-mid-sec .ja{
		margin-bottom: 7px;
		font-size: 2.8rem; 
	}
	.ttl-mid-sec .en{
		font-size: 1.2rem; 
	}
	.txt-sec-lead{
		font-size: 1.6rem;
	}


/* middle-cont-hd */
	.middle-cont-hd{
		padding-bottom: 65px;
	}
	.middle-cont-hd .ttl-area{
		position: relative;	
	}
	.middle-cont-hd .ttl-area .ttl{
		height: 130px;	
	}
	.middle-cont-hd .ttl-area .ttl::before{
		width: 80vw;
	}
	.middle-cont-hd .ttl-area .ttl h1 .en{
		font-size: 1.2rem;
	}
	.middle-cont-hd .ttl-area .ttl h1 .ja{
		font-size: 3rem;	
	}


/* ttl-cat */
  .ttl-cat{
    padding: 0 0 2px 10px;
    font-size: 2.4rem;
		line-height: 1.5;
  }
	.ttl-cat._middle{
		padding: 0 0 2px 5px;
		font-size: 2rem; 
	}
	.ttl-cat._small,
	.ttl-cat._medium{
		padding: 0 0 2px 5px;
		font-size: 2rem; 
	}



/* ボタン
-----------------------------------------------------------------*/
  .btn-base a,
  .btn-base > span{
    max-width: 280px;
  }
  .btn-base a:hover::after,
  a:hover .btn-base > span::after{
    right: 10px;
  }

	.btn-base._down a:hover,
	a:hover .btn-base._down > span,
	.btn-base._down > span:hover{
		opacity: 1;
	}
	
	
	.btn-base._pdf a:hover,
	a:hover .btn-base._pdf > span{
		opacity: 1;
	}
	
	
	.btn-base._blank a:hover,
	a:hover .btn-base._blank > span{
		opacity: 1;
	}


/* 画像 hover
-----------------------------------------------------------------*/
  a:hover .hoverscale img{
    transform: none;
  }
  

/*--------------------------------------------------------------------------
   middle-cont-list
---------------------------------------------------------------------------*/
	.middle-cont-list li{
		display: block;
	}
	.middle-cont-list li:nth-child(n+2){
		margin-top: 100px;  
	}
	.middle-cont-list .pic{
		width: 100%;
		margin-bottom: 25px;
	}
	.middle-cont-list .pic img{
		width: calc(100% + 20px);
		margin-left: 0;
		margin-right: -20px;  
	}
	.middle-cont-list li:nth-child(odd) .pic img{
		margin-right: 0;
		margin-left: -20px;
	}
	.middle-cont-list .txt-area{
		width: 100%; 
		padding: 0;  
	}
	.middle-cont-list li:nth-child(even) .txt-area{
		padding: 0; 
	}
	.middle-cont-list .txt-area h3{
		margin-bottom: 15px;
	}
	.middle-cont-list .txt-area h3 .ja{
		margin-bottom: 7px;
		font-size: 2.8rem;
	}
	.middle-cont-list .txt-area h3 .en{
		font-size: 1.2rem;  
	}
	.middle-cont-list .txt-area .btn{
		margin-top: 20px;  
	}
	.middle-cont-list .txt-area .btn a{
		max-width: 380px;
		margin: 0 auto;
	}


/*--------------------------------------------------------------------------
   cat-cont-list
---------------------------------------------------------------------------*/
	.cat-cont-list{
		display: block;
	}
	.cat-cont-list li{
		max-width: 585px;
		width: 100%;
		margin: 0 auto;
	}
	.cat-cont-list li:nth-child(n+2){
		margin-top: 90px;
	}
	.cat-cont-list h3{
		margin: 20px 0 5px;
		font-size: 2.8rem;
	}
	.cat-cont-list .btn{
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
	}
	.cat-cont-list .btn a{
		max-width: 380px;
		width: 100%;
		margin: 0 auto;
	}



/*--------------------------------------------------------------------------
   page-nav
---------------------------------------------------------------------------*/
	.page-nav li:hover{
		border-color: #000;
	}
	.page-nav li a{
		padding:  12px 0;
		font-size: 1.2rem;
	}
	.page-nav li a:hover{
		color: #000;
	}
	.page-nav li a span{
		display: block;
		padding: 0 0 18px;
		background-position: center bottom;
		background-size: 13px auto;
	}
	

/*--------------------------------------------------------------------------
   tab-nav
---------------------------------------------------------------------------*/
	.tab-nav-area{
		width: calc(100% + 20px);
		overflow:auto;
		padding-bottom: 15px;
	}
	.tab-nav{
		width: 648px;
	}
	.tab-nav li {
			max-width: 128px;
			width: calc((100% - 8px)/5);
			height: 60px;
			padding-top: 10px;
			font-size: 1.2rem;
	}
	.tab-nav li:nth-child(n+2){
		margin-left: 2px;
	}
	.tab-nav li:hover{
		background: #010101;
		color: #fff;	
	}
	.tab-nav li.current {
			background: transparent;
			color: #010101;
			border-bottom-color: #fff;	
	}
	.tab-nav li::after{
		right: 50%;
		top: auto;
		bottom: 22px;
		transform: rotate(45deg) translate(100%,50%);	
	}
	.tab-nav li:hover::after{
		border-color: #fff;
    transform: rotate(45deg) translate(100%,50%);	
	}
	.tab-nav li.current::after{
		border-color: #010101;
    transform: rotate(135deg) translate(0,-100%); 
	}
  .tab-nav li.current:hover::after{
    transform: rotate(135deg) translate(0,-100%);  
  }



/*--------------------------------------------------------------------------
   other-works-list
---------------------------------------------------------------------------*/	
	.other-works-list{
		display: block;
	}
	.other-works-list li{
		width: 100%;
		margin: 0 auto;
		padding: 15px 0;
		font-size: 1.4rem;
	}



/*--------------------------------------------------------------------------
   cont-nav
---------------------------------------------------------------------------*/
	.cont-nav{
		padding: 30px 0;  
	}
	.cont-nav h2{
		margin-bottom: 20px;
	}
	.cont-nav h2 .ja{
		margin-bottom: 7px;
		font-size: 2.2rem;
	}
	.cont-nav h2 .en{
		font-size: 1.2rem;
	}
	.cont-nav .cont-nav-list{
		display: block;
	}
	.cont-nav .cont-nav-list li{
		margin-left: 0;
		width: 100%;  
	}
	.cont-nav .cont-nav-list li:nth-child(n+2){
		margin-top: 15px;  
	}
	.cont-nav .cont-nav-list a:hover .thumb{
		opacity: 1;
	}
	.cont-nav .cont-nav-list .ttl{
		font-size: 1.7rem;
		margin-left: 15px;
	}
	.cont-nav .cont-nav-list a:hover .ttl::after{
		transform: none;	
	}
	



/*--------------------------------------------------------------------------
   .not-found
---------------------------------------------------------------------------*/
.not-found{
	padding: 50px 0;
}
.not-found h2{
	margin-bottom: 35px;
}
.not-found h2 span{
	margin-bottom: 15px;
	font-size: 2.2rem;
	line-height: 1.5;
}
.not-found h2 small{
	padding-bottom: 20px;
	border-bottom: 2px solid #094;
	font-size: 1.3rem;
}
.not-found .txt{
	line-height: 2;	
}




/*--------------------------------------------------------------------------
   Footer
---------------------------------------------------------------------------*/
  .footer{
    padding: 60px 0 45px;
  }
  .footer h2{
    display: block;
    margin-bottom: 35px;
    text-align: center;
    line-height: 1.4;  
  }
  .footer h2 .ft-logo{
    display: block;
    width: 250px;
    margin: 0 auto 15px;
  }
  .footer h2 .ttl{
    margin: 0;
    font-size: 1.2rem; 
  }
  
  .ft-tab-cont{
    padding: 30px 0 50px; 
  }
  /*.ft-tab-cont h3{
    display: none;
  }*/
    .ft-tab-img{
    width: 80%;
	padding: 0;
  }
  
  .ft-gnav{
    flex-wrap: wrap;
  }
  .ft-gnav > li{
    max-width: none;
    width:calc(50% - 5px);
  }
  .ft-gnav > li:nth-child(n+3){
    margin-top: 20px;  
  }
  .ft-gnav > li > p{
    margin-bottom: 5px;
  }
  .ft-gnav > li > p:nth-child(n+2){
    margin-top: 20px;
  }
  .ft-gnav > li > p .blank{
    padding-right: 22px;
    background-size: 14px auto;  
  }
  .ft-gnav .nav-middle a,
	.ft-gnav .nav-middle li > span{
    display: inline-block;
    padding: 8px 0;
    line-height: 1.5;
  }
	.ft-gnav .nav-middle .middle{
		margin-left: 0.6em;
	}
  
  .ft-tab-cont .group-list{
    display: block;
  }
  .ft-tab-cont .group-list a,
  .ft-tab-cont .group-list li > span{
    display: inline-block;
    padding: 8px 20px 8px 0;
    font-size: 1.4rem;  
  }
  .ft-tab-cont .group-list a[target="_blank"]{
    background: url(../../img/common/ico_blank.svg) no-repeat right top 1.1em;
    background-size: 12px auto;    
  }
	.ft-tab-cont .group-list a.lines{
		display: inline;
		background-position: right top 0.9em;
		font-size: 1.3rem;
	}
  
  .ft-btm-area{
    display: block; 
  }
  .ft-btm-area .ft-util-list{
    display: block;
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-align: center;
  }
  .ft-btm-area .ft-util-list li{
    margin: 0 0 3px 0; 
  }
  .ft-btm-area .copyright{
    font-size: 1rem;
    text-align: center;
  }



  
}

