@charset "utf-8";
/*
=======================================
  Reset CSS
=======================================
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, main, menu, nav, section, summary,
time, mark, audio, video{
  margin:0;
  padding:0;
}

article,aside,details,figcaption,figure,
footer,header,main,menu,nav,section{
  display:block;
}

html{
  -webkit-text-size-adjust: 100%;
}

body{
  color: #000;
  line-height: 2;
  font-size: 15px;
  font-family: 'Noto Sans JP', sans-serif;
}
@media screen and (max-width: 600px) {
body{
  font-size: 14px;
}
}


main{}

img{
  border: 0;
  max-width: 100%;
  height: auto;
	/* じわっと画像が表示される */
 	animation: fadeIn 3s ease 0s 1 normal;
    -webkit-animation: fadeIn 3s ease 0s 1 normal;
}



ul,ol{
  list-style-type: none;
}

table {
  border-collapse: collapse; 
  border-spacing: 0;
}

img, input, select, textarea { 
  vertical-align: middle;
}

a {
  color: #111;
  transition: 0.5s;
  text-decoration: none;
}
a:hover {
  color: #333;
}


p{
	line-height:2;
}

h1{
	top: 30px;
	left:30px;
	width:250px;
	position:absolute;
	z-index:10;
}
.fixed h1{
	display:none;
}
@media screen and (max-width: 1160px) {
h1{
	top: 10px;
	left:20px;
	width:200px;
}
}
@media screen and (max-width: 600px) {
h1{
	top: 5px;
	width:170px;
}
}
h2{
	font-size: 150%;
}
@media screen and (max-width: 600px) {
h2{
	font-size: 130%;
}
}


h2.h2_tl {
  font-weight: bold;
  color: #222;
  text-align: center;
  display: flex;
  align-items: center; /* 垂直中心 */
  justify-content: center; /* 水平中心 */
}
h2.h2_tl::before, 
h2.h2_tl::after {
  border-top: 1px solid;
  content: "";
  width: 3em; /* 線の長さ */
}
h2.h2_tl::before {
  margin-right: 1em; /* 文字の右隣 */
}
h2.h2_tl::after {
  margin-left: 1em; /* 文字の左隣 */
}
h2.h2_stl span,
h3.h3_en,
#gallery .gallery_cont h3.h3_en{
	display:block;
	font-size: 0.8em;
	font-weight: normal;
	letter-spacing: 0.2em;
	text-align: center;
	padding:0.5rem 0 2rem;
}

h2.h2_stl{
	text-align: center;
}
h2.h2_stl strong{
	padding:8px 30px;
	letter-spacing:0.2em;
	border:2px solid #bfc0c0;
	border-radius:30px;
	display:inline-block;
}

h3{

}
h4{

}


@media screen and (max-width: 900px) {

}

@media screen and (max-width: 600px) {
h2.h2_stl span,
h3.h3_en,
#gallery .gallery_cont h3.h3_en{
	padding:0.5rem 0 1.5rem;
}
h2.h2_tl::before, 
h2.h2_tl::after {
  width: 2em; /* 線の長さ */
}
}


/*矢印が右に移動する*/
.arrow_bk{
    /*矢印と下線の基点とするためrelativeを指定*/
    position: relative;
    /*形状*/
    display: inline-block;
    padding: 0 40px 0 50px;
    color: #222;
    text-decoration: none;
    outline: none;
	z-index:10;
}

/*矢印と下線の形状*/
.arrow_bk::before{
    content: '';
    /*絶対配置で下線の位置を決める*/
    position: absolute;
    bottom:-8px;
    left: 20%;
    /*下線の形状*/
    width: 80%;
    height: 1px;
    background:#222;
    /*アニメーションの指定*/
    transition: all .3s;
}

.arrow_bk::after{
    content: '';
    /*絶対配置で矢印の位置を決める*/
    position: absolute;
    bottom:-3px;
    right:0;
    /*矢印の形状*/
    width: 15px;
    height:1px;
    background:#222;
    transform: rotate(35deg);
    /*アニメーションの指定*/
    transition: all .3s;
}

/*hoverした際の移動*/
.arrow_bk:hover::before{
    left:30%;
}

.arrow_bk:hover::after{
    right:-10%;
}


.next_page{
	text-align:center;
	padding-top:2rem;
	padding-bottom: 0.5rem;
}

/*
=========================================
  Base Layout
=========================================
*/

.inner{
	margin: 0 auto;
	max-width: 1500px;
	padding: 0;
	position:relative;
}
.inner_m{
	margin: 0 auto;
	max-width: 1200px;
	padding: 0;
	position:relative;
}
.inner_s{
	margin: 0 auto;
	max-width: 900px;
	padding: 0;
	position:relative;
}
.inner_ss{
	margin: 0 auto;
	max-width: 700px;
	padding: 0;
	position:relative;
}
.inner:after {
	  content: "";
	  clear: both;
	  display: block;
}

.bg_diagonal{
	background-image:url(../lib_img/bg_diagonal.svg);
	background-repeat:no-repeat;
	background-position:top;
	background-size: cover;
	width:100%;
}

@media screen and (max-width:1600px) {
.inner{
	margin: 0 8%;
}
}


@media screen and (max-width:900px) {
.inner,
.inner_m,
.inner_s,
.inner_ss{
	margin: 0 5%;
	max-width: 90%;
}

}
@media screen and (max-width:600px) {
.inner{

}

}



.nomal_tl{
	background:#f8f8f8;
	padding-top:2rem;
}







/*
=========================================
  header
=========================================
*/

header{
	height:110px;
}
header.fixed{
	height:90px;
}

#global-nav{
	  float:right;
	  width:53%;
} 
@media screen and (max-width: 1500px) { 
#global-nav{
	  width:70%;
} 
}
@media screen and (max-width: 1160px) { 
header{
	height:75px;
}
}
@media screen and (max-width: 600px) { 
header{
	height:60px;
}
}


.main_img img{
	width:100%;
}

/*
=========================================
  Toggle Button
=========================================
*/


#nav-toggle {
	  display: none;
	  position: absolute;
	  right: 22px;
	  top: 25px;
	  width: 34px;
	  height: 36px;
	  cursor: pointer;
	  z-index: 102;
	 }

@media screen and (max-width: 600px) {
  #nav-toggle {
	  right: 12px;
	  top: 18px;
	 }
}
  #nav-toggle div {
	  position: relative;
  }

  #nav-toggle span {
	  display: block;
	  position: absolute;
	  height: 2px;
	  width: 100%;
	  background: #222;
	  left: 0;
	  -webkit-transition: .35s ease-in-out;
	  -moz-transition: .35s ease-in-out;
	  transition: .35s ease-in-out;
	 }
  #nav-toggle span:nth-child(1) {
	  top: 0;
  }
  #nav-toggle span:nth-child(2) {
	  top: 11px;
  }
  #nav-toggle span:nth-child(3) {
	  top: 22px;
  }
  
 @media screen and (max-width: 900px) {
  #global-nav ul li {
	  margin-right:0;
	 }  

	  #top-head .logo {
	  	position:absolute;
	  	left: 20px;
	  	top: 22px;
	  	font-size: large;
	  	width:250px;
	  	z-index: 5;
	  }
  }

 @media screen and (max-width: 1160px) {
	  
	  #mobile-head {
		  width: 100%;
		  z-index: 5;
		  right:0;
		  top:0;
		  background:#fff;
		 }  
	  
	  #global-nav {
		  position: absolute;
		  /* 開いてないときは画面外に配置 */
		  top: -627px;
		  width: 100%;
		  text-align: center;
		  padding: 100px 0 0;
		  margin:0;
		  -webkit-transition: .5s ease-in-out;
		  -moz-transition: .5s ease-in-out;
		  transition: .5s ease-in-out;
		  border-right: none;
		  z-index: 2;

		 }
	  #global-nav ul {
		  list-style: none;
		  position: static;
		  right: 0;
		  bottom: 0;
	  }
	  #global-nav ul li {
		  float: none;
		  position: static;
		  width:100%;
	  }
	  #top-head #global-nav ul li a {
		  width:auto;
		  display: block;
		  padding: 25px 0 25px 50px;
		  border-top: 0;
		  text-align:left;
		 }
	  #global-nav ul li span{
		  display:inline !important;
		  padding-left:20px;
	  }
  

		#global-nav .btn a{
			margin-top:0;
		}
	  #nav-toggle {
		  display: block;
		 }
	  /* #nav-toggle 切り替えアニメーション */
	  .open #nav-toggle span:nth-child(1) {
		  top: 11px;
		  -webkit-transform: rotate(315deg);
		  -moz-transform: rotate(315deg);
		  transform: rotate(315deg);
	  }
	  .open #nav-toggle span:nth-child(2) {
		  width: 0;
		  left: 50%;
	  }
	  .open #nav-toggle span:nth-child(3) {
		  top: 11px;
		  -webkit-transform: rotate(-315deg);
		  -moz-transform: rotate(-315deg);
		  transform: rotate(-315deg);
	  }
	  /* #global-nav スライドアニメーション */
	  .open #global-nav {
		  /* #global-nav top + #mobile-head height */
		  -moz-transform: translateY(556px);
		  -webkit-transform: translateY(556px);
		  transform: translateY(556px);
		  margin-top:70px;
		  border-top:1px solid #ccc;
		  z-index: 101;
	  }  
}

@media screen and (max-width: 600px) {
#global-nav {
		  position: absolute;
		  /* 開いてないときは画面外に配置 */
		  top: -617px;
}
#top-head #global-nav ul li a {
		  padding: 18px 0 18px 50px;
}
.open #global-nav {
		  margin-top:60px;
}  
}


/*
=========================================
  固定バナー
=========================================
*/

.fix_bana {
	position: -webkit-fixed;
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
	display:block;
    z-index: 100;
}
_::-webkit-full-page-media, _:future, :root .fix_bana {
	width:50px;
}

.fix_bana_txt {
    line-height: 1;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl
}

.fix_bana a {
    padding: 2rem 20px;
    margin-bottom:4px;
    color: #fff;
    font-size: 90%;
    font-weight: 500;
    display: block;
    text-align: center;
    letter-spacing: 0.1em;
}

.fix_bana a:hover {
    opacity: 1
}

.fix_bana_no1 a{
    background: #56941f;
}
.fix_bana_no2 a{
    background: #a68032;
}
.fix_bana_no3 a{
    background: #e39300;
}

.fix_bana a:hover {
    background: #222;
}

.fix_bana_no:last-child a {
    border: none
}

@media screen and (max-width: 1200px) {
    .fix_bana a {
        padding:2rem 1rem
    }
}

@media screen and (max-width: 900px) {
    .fix_bana {
        width:100%;
        height: 3.5rem;
        border-top: 1px solid #efefef;
        top: inherit;
        right: inherit;
        left: 0;
        bottom: 0;
        transform: none;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        flex-direction: row-reverse
    }
_::-webkit-full-page-media, _:future, :root .fix_bana {
        width:100%;
}

    .fix_bana_no1,.fix_bana_no2,.fix_bana_no3 {
        width: 100%;
        border-right: 1px solid #fff;
    }

    .fix_bana_no:first-child {
        border: none
    }

    .fix_bana_txt {
        -ms-writing-mode: inherit;
        writing-mode: inherit
    }

    .fix_bana a {
        height: 3.5rem;
        line-height: 3.5rem;
        padding: 0;
        border-bottom: none
    }
}



/* transition */
#top-head,
#top-head h1,
#global-nav ul li,
#global-nav ul li.has-child,
#global-nav ul li a,
#global-nav ul li a span,
  #top-head.fixed{
   /* transition: all 0.3s ease;
    -webkit-transition: all 03s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;*/
}

  /* Fixed */
  #top-head.fixed {
  	background: #fff;
  	z-index:10;
  	margin-top: 0;
  	top: 0;
  	position: fixed;
  	opacity: 0.9;
  	width: 100%;
  	transition: top 0.65s ease-in;
  	-webkit-transition: top 0.65s ease-in;
  	-moz-transition: top 0.65s ease-in;
  }

 
@media screen and (max-width: 1160px) { 
  #top-head.fixed {
	  opacity: 1;
	  background:none;
  }
}




/*
=========================================
  article
=========================================
*/
article{
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, .1);
	padding:3rem 5%;
	position:relative;
	text-align:center;
	margin:7rem 0 3rem;
}
article h3{
	letter-spacing:0.2em;
  display: flex;
  align-items: center; /* 垂直中心 */
  justify-content: center; /* 水平中心 */
}
article h3::before, 
article h3::after {
  border-top: 1px solid;
  content: "";
  width: 3em; /* 線の長さ */
}
article h3::before {
  margin-right: 1em; /* 文字の右隣 */
}
article h3::after {
  margin-left: 1em; /* 文字の左隣 */
}
@media screen and (max-width: 600px) {
article h3::before, 
article h3::after {
  width: 1.5em; /* 線の長さ */
}
article h3::before {
  margin-right: 0.5em; /* 文字の右隣 */
}
article h3::after {
  margin-left: 0.5em; /* 文字の左隣 */
}
}

article h4{
	font-size:140%;
	letter-spacing:0.2em;
	line-height:2;
}
article img{
	position:absolute;
	top:20px;
	right:20px;
}
article ul{
	width:100%;
	padding:2rem 0;
	overflow:hidden;
}
article li{
	width:21%;
    height: 130px;
    margin: 0 2%;
    padding-top: 2.5rem;
	float:left;
	background-image:url(../lib_img/bg_maru_g.png) ;
	background-size:100%;
	background-repeat: no-repeat;
}
@media screen and (max-width: 900px) {
article li{
	padding-top: 1.5rem;
}
}
@media screen and (max-width: 800px) {
article{
	padding:5.5rem 5% 2rem;
	margin:3rem 0 1rem;
}
article h4{
	line-height:1.5;
	margin-top:1rem;
}
article ul{
	padding:1rem 0 2rem;
}
article li{
	width:46%;
    height: 140px;
    margin: 1rem 2% 0 2%;
    padding-top: 3rem;
	background-size:180px;
	background-position:center;
}
}
@media screen and (max-width: 500px) {
article li{
    height: 120px;
    padding-top: 2.5rem;
    background-size: 100%;
}
}
@media screen and (max-width: 400px) {
article li{
    height: 110px;
    padding-top: 1.5rem;
}
}



/*
=======================================
  lnavi
=======================================
*/


#lnav nav{
	background:#f1f3f6;
	padding:20px;
	width:150px;
	position: sticky;
	top:0;
	left: 0;
	display:block;
	z-index: 50;
	margin-bottom: 60px;
}

#lnav ul li a{
	position: relative;
  display: inline-block;
  padding:5px 0 5px 20px;
  color: #333;
  text-decoration: none;
}
#lnav ul li a:before {
  content:"";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -4px;
  transform: rotate(45deg);
}
#lnav ul li ul li a{
	font-size:80%;
}
#lnav ul li ul li a:before{
  border-top:none;
  border-right:none;
}

#lnav img{
	margin:0 0 20px 20px;
	width:100px;
	position: absolute;
	bottom: 0;
}
#lnav h3{
	font-size:80%;
	font-weight:normal;
	letter-spacing:0.2em;
	border-bottom:1px solid #000;
	padding-bottom:5px;
	margin-bottom:1rem;
}


@media screen and (max-width: 900px) {
#lnav{
	display:none;
}	
#lnav nav{
	padding:20px 5%;
	width:90%;
	margin-bottom: 0;
}
#lnav nav ul{
	overflow:hidden;		
}
#lnav nav li{
	float:left;
	margin-right:20px;
}
#lnav img{
	display:none;
}	
}




/*
=======================================
  modal
=======================================
*/


.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}
.modal__bg{
    background: rgba(0,0,0,0.5);
    height: 100vh;
    position: absolute;
    width: 100%;
}

.modal h2{
	font-family: 'Noto Serif JP', serif;
    font-weight: normal;
    letter-spacing: 0.1em;
	text-align:center;
	padding-bottom:0.5rem;
	position: relative;
	margin-bottom:1.5rem;
}
.modal h2:after {
  content:"";
  width: 100px;
  height: 1px;
  display: inline-block;
  background-color: #9fa0a0;
  position: absolute;
  bottom: 0;
  left: calc(50% - 50px);
}
.modal h3{
    padding-bottom:0.5rem;
    display: flex;
    align-items: center;
}
.modal h3::before{
    content:"■";
	color:#bdb4ab;
    margin-right:5px;
}
.modal p{
	padding-bottom:1.5rem;
}
.modal p span{
	color: #158028;
	padding-right:5px;
	font-weight:bold;
}

.modal__content{
    background: #fff;
    left: 50%;
    padding: 3rem 0 2rem;
    position: absolute;
    top: 50%;
    border-radius:20px;
    transform: translate(-50%,-50%);
    max-width: 500px;
    width: 90%;
}
.modal__content .scroll{
    overflow-y:scroll; 
    max-height: 80vh; 
    padding: 0 10%;
}
@media screen and (max-width: 900px) {
.modal__content .scroll{
    max-height: 70vh; 
	padding: 0 5%;
}
}
@media screen and (max-width: 600px) {
.modal__content .scroll{
    overflow-y:scroll; 
    max-height: 60vh; 
}
}
@media screen and (max-width: 500px) {
.modal__content{
    max-width: 350px;
	padding: 3rem 0 1rem;
}
}
@media screen and (max-width: 415px) {
.modal__content{
    max-width: 300px;
}
}
@media screen and (max-width: 380px) {
.modal__content{
    max-width: 270px;
}
}
.modal__content img{
	margin-bottom:1.5rem;
	width:100%;
}

.modal__content .batsu_bottom{
	background:#000;
	color:#fff;
	padding: 5px 15px;
	text-align:center;
	display:block;
	width: 100px;
	margin: 2rem auto 0;
}
@media screen and (max-width: 600px) {
.modal__content .batsu_bottom{
	margin-top:1rem;
}
}

.modal__content .batsu {
  display: block;
  position: absolute;
	top:0;
	right:0;
  width: 30px;
  height: 30px;
	margin:15px;
}
 
.modal__content .batsu::before, .batsu::after { /* 共通設定 */
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  width: 1px; /* 棒の幅（太さ） */
  height: 30px; /* 棒の高さ */
  background: #000;
}
 
.modal__content .batsu::before {
  transform: translate(-50%,-50%) rotate(45deg);
}
.modal__content .batsu::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}


/*
=========================================
  Footer
=========================================
*/

footer{
	margin-top: 7rem;
}

#footer-nav{
	overflow:hidden;
	padding:2rem 0;
	background:#f1f3f6;
}
#footer-nav .nav_bl{
	width:13%;
	float:left;
	margin-right:1.2%;
}


#footer-nav h4{
	border-bottom:3px solid #9fa0a0;
	padding:0 0 10px;
}
#footer-nav ul{
	padding:0;
	margin-top:1rem;
	min-height:100px;
}
#footer-nav li{
	padding:5px 0;
	line-height:1.2;
	font-size:90%;
}
@media screen and (max-width: 1200px) {
#footer-nav ul{
	margin-bottom:2rem;
	min-height:10px;
	min-height:120px;
}
#footer-nav .nav_bl{
	width:23%;
	margin-right:2%;
}
}
@media screen and (max-width: 650px) {
footer{
	margin-top: 4rem;
}
#footer-nav ul{
	margin:1rem 0;
	min-height:10px;
	min-height:0;
}
#footer-nav .nav_bl{
	width:47%;
	margin-right:3%;
}

}




footer .footer_txt{
	padding: 3.5rem 0 3rem;
	overflow:hidden;
}
footer .footer_txt img{
	float:left;
}

footer .footer_txt p{
	float:right;
	width: 75%;
	font-size: 80%;
}
footer .copyright{
	font-size:80%;
	text-align:center;
	padding-bottom: 2rem;
}

@media screen and (max-width: 1300px) {
footer .footer_txt img{
	width:180px;
}
}
@media screen and (max-width: 900px) {
footer .footer_txt img{
	float:none;
}
footer .footer_txt p{
	float:none;
	width: 100%;
	padding-top:1.5rem;
}
footer .copyright{
	padding-bottom: 5rem;
	text-align:left;
}
}

@media screen and (max-width: 600px) {
footer .footer_txt {
    padding: 2rem 0 1.5rem;
}

}





/*
=========================================
  ページ上部へ
=========================================
*/

#pageTop {
      position: fixed;
      bottom: 20px;
      right: 20px;
}

#pageTop a {
      display: block;
      z-index: 999;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      color: #fff;
      font-weight: bold;
      text-decoration: none;
      text-align: center;
      background: url(../lib_img/page_top.svg) no-repeat center #777;
}

#pageTop a:hover {
      text-decoration: none;
      background: url(../lib_img/page_top.svg) no-repeat center #ccc;
}


  .pc,.pc2,.pc3{

  }
  .sp,  .sp2,.sp3{
	  display:none;
  }
@media screen and (max-width: 1200px) {
  .sp3{
	  display:block;
  }
  .pc3{
	  display:none;
  }
}
@media screen and (max-width: 900px) {
  .sp2{
	  display:block;
  }
  .pc2{
	  display:none;
  }
}
@media screen and (max-width: 900px) {
#pageTop {
      position: fixed;
      bottom: 65px;
      right: 8px;
}
#pageTop a {
      width: 50px;
      height: 50px;
}
}
@media screen and (max-width: 600px) {



  .pc{
	  display:none;
  }
  .sp{
	  display:block;
  }
#spec p.txt  .sp{
	  display:inline-block;
  }

}


#anc{
	margin-top:-30px;
	padding-top:30px;
}





/*
=========================================
  ローカルナビ
=========================================
*/


/*背景グレイ天地　ロゴ下に固定*/

.spec_d{
	display: flex;
}
.spec_d aside{
	background:#f1f3f6;
	position: relative;
}
.spec_d article{
	margin-left:5%;
	margin-right:5%;
}
@media screen and (max-width: 900px) {
.spec_d{
	display:block;
}
.spec_d aside{
	background:none;
}
.spec_d article{
	margin-left:0;
	margin-right:0;
}	
}


/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 100%;
    max-width: 900px;
    margin:0 auto;
	border-bottom: 1px solid #ccc;
	overflow: hidden;
    background: #f1f3f6;
}

.accordion-area li{
    border-top: 1px solid #ccc;
	overflow: hidden;
}



/*アコーディオンタイトル*/
.accordion-area .accordion-title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1rem;
    font-weight: normal;
    padding:12px 3% 12px 35px;
    transition: all .5s ease;
	background: #f1f3f6;
}

/*アイコンの＋と×*/
.accordion-area .accordion-title::before{
  content:'';
  position: absolute;
  bottom: -10px;
  width:6px;
  height:6px;
  border-top: 2px solid #999;
  border-right:2px solid #999;
  transform: rotate(135deg);    
    top:40%;
    left: 15px;
}

/*　closeというクラスがついたら形状変化　*/

.accordion-area .accordion-title.close::before{
	transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.accordion-area .accordion-box {
    display: none;/*はじめは非表示*/
    background: #fff;
    padding: 3%;
	overflow:hidden;
}  
 
.accordion-area .accordion-box p a{
    width: 48%;
    position: relative;
    display: inline-block;
    padding: 5px 0 5px 2%;
    float: left;
}

#standard .accordion-area li {
    width: 50%;
    float: left;
}
