@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #333; /* RGB */
  font-family: "ヒラギノ角ゴ ProN",  'Hiragino Kaku Gothic ProN','Hiragino Sans', Meiryo, 'sans-serif';
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: left;
}
section h2 {
  font-size: 2.4rem;
}
a:hover {
  opacity: 0.5;
}
a{
  text-decoration: none;
  color: #333;
}
*, *:before, *:after { /*全てのhtml要素に適応させる*/
  box-sizing: border-box;
}
  .header {
    position: fixed;
    width: 100%;
    height: 65px;
    z-index: 2000;
    padding: 5px;
  }
.header-inner{
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
  .header_logo {
    width: 50px;
    height: auto;
  }

@media(min-width:760px){
   .header_logo{
    width: 80px;
  }
  .header{
    height: 130px;
    padding: 24px;
  }
}

@media(min-width:960px){
  .header{
    height: 130px;
    padding: 40px 60px 0
  }
  .header-inner{
    max-width: 1800px;
    margin: 0 auto;
  }
  .header_logo{
    width: 100px;
  }
}
.footer{
  position: relative;
  background-color: #3d4d3c;
  width: 100%;
  height: 627px;
}
.footer:after{
  position: absolute;
  content: "";
  display: block;
  height: 627px;
  width: 100%;
   background-image: url("../image/about/bg-texturemobile.png");
  mix-blend-mode:multiply;
  z-index: 1;
  top:0;
  left: 0;
}
.footer-content-wrapper{
  position: relative;
  z-index: 2;
  padding: 60px 24px 0px;
}
.site-map__main-links{
  list-style: none;
  font-family: AB-tsubaki;
  color: #fff;
  margin-bottom: 60px;
 
}
.site-map__main-links li{
  padding-bottom: 30px;
}
.site-map__main-links a{
  text-decoration: none;
  color: #fff;
}
.logo{
display: flex;
}
.logo img{
  display: block;
  width: 50px;
  padding: 10px;
}
.footer small{
  color: #fff;
  position: relative;
  z-index: 2;
  margin-top: 60px;
  display: flex;
}
.footer span{
  font-size:2.4rem;
}
@media(min-width:960px){
  .site-map{
    writing-mode:vertical-rl;
  }
  .site-map__main-links{
  font-size: 2.4rem;
  line-height: 100px;
  }
  .footer-inner{
    max-width: 1340px;
    margin: 0 auto;
  }
  .footer-content-wrapper{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .footer small{
      writing-mode:vertical-rl;
    margin:0;
  }
  .footer-logo-wrapper{
    display: flex;
    flex-direction: row-reverse;
  }
  .logo{
    flex-direction: column;
    width: 50px;
  }
  .logo img{
    width: 100%;
  }
}
/*謎の白い線を消すため*/
svg{
  display: block;
}
/*ストーリーのキャプションのフォント設定*/
.wp-element-caption{
  font-size: 1.6rem;
  font-family: fot-tsukubrdgothic-std, sans-serif;
}