@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #333333; /* RGB */
  font-family: "Noto Serif JP", "Noto Serif CJK JP", "Yu mintyou", "游明朝体", "Roboto", "Hiragino Sans", "メイリオ", "sans-serif";
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}
.slider {
  display: none;
}
.slider.slick-initialized {
  display: block;
}
#denju {
  width: 150px;
}
a {
  text-decoration: none;
  color: #FFFFFF;
}
a:hover {
  opacity: 0.5;
}
img {
  max-width: 100%;
  height: auto;
}
.none {
  display: none;
}
*, *:before, *:after {
  box-sizing: border-box;
}
.bold {
  font-weight: 500;
}
.header_content_wrapper {
  display: flex;
  max-width: 1165px;
  margin: 0 auto;
  transform: translateX(-50%);
  left: 50%;
  padding-top: 27px;
  box-sizing: border-box;
  justify-content: space-between;
  position: absolute;
  z-index: 999999;
  top: 0;
  width: 100%;
}
#denju {
  width: 150px;
  margin-left: 30px;
  margin-right: 30px;
}
.header_nav {
  transition: 0.5s;
}
.header_nav.active {
  display: block;
}
.header_nav ul {
  display: flex;
  }
.header nav ul li {
  font-weight: bold;
  box-shadow: rgba(0, 0, 0, 0.5);
  margin-left: 40px;
}
.close-button {
  display: none;
}
.footer {
  background: #fff;
}
.footer h1 {
  width: 120px;
}
.footer_content_wrapper {
  display: block;
  max-width: 1165px;
  margin: 0 auto;
  margin-bottom: 60px;
  padding-top: 27px;
  box-sizing: border-box;
  justify-content: space-between;
}
.footer_nav ul {
  display: flex;
  gap: 40px;
  justify-content: center;
}
.footer_nav li {}
.footer h2 {
  position: absolute;
  top: 0;
  bottom: 0px;
  margin: auto;
  display: block;
  height: 74px;
  left: 0;
  right: 0;
}
.footer a {
  color: #333;
}
.footer .copy_right {
  display: block;
  padding: 20px 0;
  background-color: #EBE9E9;
}
/* navigation */
.open-button, close-button {
  display: none;
}
@media(max-width:1160px) {
  #denju {
    width: 120px;
    padding: 0 20px 0 20px;
  }
  .open-button {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }
  .open-button span, .open-button span:before, .open-button span:after {
    position: absolute;
    height: 3px;
    width: 25px;
    border-radius: 5px;
    background: #fff;
    display: block;
    content: "";
  }
  .open-button span:before {
    bottom: -9px;
  }
  .open-button span:after {
    bottom: -18px;
  }
  .close-button {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 26px;
    padding: 20px;
    font-style: Roboto;
    font-family: medium500;
    color: #fff;
    cursor: pointer;
  }
  .header nav {
    display: none;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    background-image: url("../images/common/nav_back.jpg");
    background-size: cover;
    padding: 30px;
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.5);
    transition: .2s ease-in-out;
  }
  .header nav ul li {
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    margin-left:  0px;
  }
  .header nav ul {
    display: block;
  }
  .header nav ul li a {
    font-weight: 600px;
    vertical-align: middle;
    text-decoration: none;
    color: #fff;
    font-size: 1.4rem;
    line-height: 55px;
  }
  .footer h1 {
    padding: 0 20px 10px 20px;
  }
  .footer_nav ul {
    display: inline-block;
    gap: 40px;
    justify-content: center;
  }
  .footer_nav ul li {
    margin-bottom: 20px;
  }
  #scroll-top {
    background-color: #1C78FB;
    opacity: 0.6;
    bottom: 80px;
    padding: 20px;
    position: fixed;
    right: 30px;
    font-size: 35px;
  }
  #scroll-top a {
    text-decoration: none;
    color: #fff;
  }
}
/*スクロールダウン全体の場所*/
.scrolldown4 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: 1%;
  right: 50%;
  /*矢印の動き1秒かけて永遠にループ*/
  animation: arrowmove 1s ease-in-out infinite;
}
/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove {
  0% {
    bottom: 1%;
  }
  50% {
    bottom: 3%;
  }
  100% {
    bottom: 1%;
  }
}
/*Scrollテキストの描写*/
.scrolldown4 span {
  /*描画位置*/
  position: absolute;
  left: -20px;
  bottom: 10px;
  /*テキストの形状*/
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
/* 矢印の描写 */
.scrolldown4:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  right: -6px;
  /*矢印の形状*/
  width: 1px;
  height: 20px;
  background: #eee;
  transform: skewX(-31deg);
}
.scrolldown4:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  right: 0;
  /*矢印の形状*/
  width: 1px;
  height: 50px;
  background: #eee;
}
/* Preload images */
body:after {
  content: url(../img/close.png) url(../img/loading.gif) url(../img/prev.png) url(../img/next.png);
  display: none;
}
.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}
.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
}
.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.lightbox a img {
  border: none;
}
.lb-outerContainer {
  position: relative;
  background-color: white;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}
.lb-container {
  padding: 4px;
}
.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}
.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../img/loading.gif) no-repeat;
}
.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}
.lb-container > .nav {
  left: 0;
}
.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}
.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}
.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../img/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../img/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}
.lb-data {
  padding: 0 4px;
  color: #ccc;
}
.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}
.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}
.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}
.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../img/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}