@charset "UTF-8";
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css);
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;600&display=swap");
.red {
  color: #C30D23;
}

.blue {
  color: #036EB8;
}

#site-header {
  background: #fff;
  text-align: center;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2;
}
#site-header #site-logo {
  display: block;
  margin: auto;
  height: 75px;
  background: url("../img/header_bg_img.jpg") no-repeat center;
  background-size: cover;
  padding: 18px 20px 0;
}
@media screen and (max-width: 767px) {
  #site-header #site-logo {
    height: 60px;
    padding: 12px 20px 0;
  }
}
#site-header #site-logo a {
  display: block;
  width: auto;
  height: 40px;
  margin: auto;
  position: relative;
  z-index: 1;
}
#site-header #site-logo a img {
  width: auto;
  height: 100%;
}
@media screen and (max-width: 767px) {
  #site-header #site-logo a {
    margin: 0;
    height: 34px;
  }
}
#site-header #global-nav {
  position: relative;
}
@media screen and (max-width: 767px) {
  #site-header #global-nav {
    position: fixed;
    width: 100%;
    height: 100%;
    right: -100%;
    top: 0;
    transition: 0.3s ease;
    padding-top: 60px;
    background: rgba(255, 255, 255, 0.9);
    overflow-y: scroll;
    /*IE, Edge*/
    -ms-overflow-style: none;
    /*Firefox*/
    scrollbar-width: none;
    /*Chrome, Safari*/
  }
  #site-header #global-nav::-webkit-scrollbar {
    display: none;
  }
}
#site-header #global-nav ul#lnav {
  display: flex;
  justify-content: center;
  margin: auto;
}
@media screen and (max-width: 767px) {
  #site-header #global-nav ul#lnav {
    display: block;
  }
}
@media screen and (max-width: 1100px) {
  #site-header #global-nav ul#lnav > li {
    font-size: 1.3vw;
  }
}
@media screen and (max-width: 767px) {
  #site-header #global-nav ul#lnav > li {
    font-size: 4vw;
  }
}
#site-header #global-nav ul#lnav > li a {
  color: #000;
  text-decoration: none;
}
#site-header #global-nav ul#lnav > li > a {
  display: block;
  padding: 0 1.5em;
  line-height: 64px;
  text-align: center;
  position: relative;
  text-align: center;
  cursor: pointer;
}
#site-header #global-nav ul#lnav > li > a::before {
  content: "";
  display: block;
  width: 1px;
  height: 1.5em;
  background: #000;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  #site-header #global-nav ul#lnav > li > a {
    padding: 1.5em;
    border-top: 1px solid #fff;
    background: hsl(209deg, 64%, 77%);
    color: #000;
    line-height: 1;
  }
  #site-header #global-nav ul#lnav > li > a::before, #site-header #global-nav ul#lnav > li > a::after {
    display: none !important;
  }
}
#site-header #global-nav ul#lnav > li > a:hover {
  color: #3A77DD;
}
@media screen and (max-width: 767px) {
  #site-header #global-nav ul#lnav > li > a:hover {
    color: #fff;
  }
}
#site-header #global-nav ul#lnav > li a.noevent {
  opacity: 1 !important;
  pointer-events: none;
}
#site-header #global-nav ul#lnav > li:nth-last-child(2) > a::after {
  content: "";
  display: block;
  width: 1px;
  height: 1.5em;
  background: #000;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
#site-header #global-nav ul#lnav > li.drop .sub {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  background: #00a0e9;
  background: rgba(0, 0, 0, 0.8);
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  #site-header #global-nav ul#lnav > li.drop .sub {
    display: none;
    position: relative;
    padding: 20px 10px;
  }
}
#site-header #global-nav ul#lnav > li.drop .sub ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}
#site-header #global-nav ul#lnav > li.drop .sub ul li {
  flex: 0 0 25%;
}
@media screen and (max-width: 767px) {
  #site-header #global-nav ul#lnav > li.drop .sub ul li {
    flex: 0 0 50%;
  }
}
#site-header #global-nav ul#lnav > li.drop .sub ul li a {
  color: #fff;
  display: block;
  margin: 20px 10px 20px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  #site-header #global-nav ul#lnav > li.drop .sub ul li a {
    margin: 10px;
  }
}
#site-header #global-nav ul#lnav > li.drop .sub ul li a figure {
  margin-bottom: 0.5em;
}
#site-header #global-nav ul#lnav > li.drop .sub ul li a span {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  #site-header #global-nav ul#lnav > li.drop .sub ul li a span {
    font-size: 12px;
  }
}
#site-header #global-nav ul#lnav li.drop.active > a {
  color: #3A77DD;
}
@media screen and (max-width: 767px) {
  #site-header #global-nav ul#lnav li.drop.active > a {
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  #site-header #global-nav.open {
    display: block;
    right: 0;
  }
}
#site-header .menu-btn {
  display: none;
}
@media screen and (max-width: 767px) {
  #site-header .menu-btn {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    color: #fff;
    text-align: center;
    cursor: pointer;
    z-index: 9999;
  }
  #site-header .menu-btn div {
    width: 30px;
    height: 20px;
    margin: 20px 15px;
    position: relative;
  }
  #site-header .menu-btn div span {
    position: absolute;
    display: block;
    height: 1px;
    width: 100%;
    background: #000;
    transition: 0.3s;
    transform-origin: left top;
  }
  #site-header .menu-btn div span:nth-of-type(1) {
    left: 0;
    top: 0;
  }
  #site-header .menu-btn div span:nth-of-type(2) {
    left: 0;
    top: 50%;
  }
  #site-header .menu-btn div span:nth-of-type(3) {
    left: 0;
    bottom: 0;
  }
  #site-header .menu-btn.active div span:nth-of-type(1) {
    left: 4px;
    top: 0;
    transform: rotate(41deg);
  }
  #site-header .menu-btn.active div span:nth-of-type(2) {
    width: 0;
  }
  #site-header .menu-btn.active div span:nth-of-type(3) {
    left: 4px;
    bottom: 0;
    transform: rotate(-41deg);
  }
}

#site-footer {
  border-top: 1px solid #000;
  position: relative;
  padding: 3em 20px;
  background: url("../img/footer_bg_img.jpg") no-repeat 0 bottom;
  background-size: 100% auto;
}
#site-footer a {
  text-decoration: none;
  color: #000;
}
#site-footer .ptop {
  text-align: right;
  display: block;
  display: none;
}
#site-footer footer {
  text-align: center;
  /*============================
  #footer-nav
  ============================*/
}
#site-footer footer nav#footer-nav {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  #site-footer footer nav#footer-nav {
    display: block;
  }
}
#site-footer footer nav#footer-nav > ul {
  flex: 0 0 31%;
}
#site-footer footer nav#footer-nav > ul > li {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-size: 12px;
  margin-top: -1px;
  text-align: left;
}
#site-footer footer nav#footer-nav > ul > li > a {
  display: block;
  padding: 1em;
}
#site-footer footer nav#footer-nav > ul > li .sub ul li a {
  display: block;
  padding: 0 0 0.5em 2em;
}
#site-footer footer nav#footer-nav > ul > li .sub ul li a::before {
  content: "─";
}
#site-footer footer dl {
  padding: 2em 0 0;
}
@media screen and (max-width: 767px) {
  #site-footer footer dl {
    font-size: 11px;
  }
}
#site-footer footer dl dt {
  font-weight: normal;
  margin-bottom: 0.5em;
}
#site-footer footer dl dd address {
  font-style: normal;
  display: inline-block;
}
#site-footer footer dl dd address span {
  position: relative;
  display: block;
}
#site-footer footer dl dd address span i {
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: calc(50% - 3em);
  height: 1px;
  background: #000;
}
#site-footer footer dl dd address span i:nth-of-type(2) {
  left: auto;
  right: 0;
}
#site-footer footer dl dd address span em {
  font-style: normal;
}

/*============================
#bigTtl
============================*/
#bigTtl {
  position: relative;
  height: 100vh;
  max-height: 700px;
  overflow: hidden;
  margin-bottom: 90px;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 1500px) {
  #bigTtl {
    max-height: 900px;
  }
}
@media screen and (max-width: 767px) {
  #bigTtl {
    height: 50vh;
    margin-bottom: 40px;
  }
}
#bigTtl a {
  display: block;
  cursor: pointer;
  height: 100%;
}
#bigTtl a:hover {
  background: rgba(0, 0, 0, 0.5);
}
#bigTtl h1 {
  color: #fff;
  width: 100%;
  text-align: center;
  position: absolute;
  left: 0;
  top: 48%;
  font-family: "Noto Serif JP", serif !important;
  font-weight: 400 !important;
  font-size: 2.8645833333vw;
}
@media screen and (max-width: 767px) {
  #bigTtl h1 {
    font-size: 20px;
    top: 35%;
  }
}
#bigTtl h1 small {
  display: block;
  font-size: 65%;
  padding-top: 1em;
  letter-spacing: 0.1em;
}
/*============================
#pageTtl
============================*/
#pageTtl {
  text-align: center;
  padding: 40px 20px 0px;
}
@media screen and (max-width: 767px) {
  #pageTtl {
    padding: 20px 20px 0px;
  }
}
#pageTtl h1 {
  font-size: 30px;
  font-family: "Noto Serif JP", serif !important;
  font-weight: 400 !important;
}
@media screen and (max-width: 767px) {
  #pageTtl h1 {
    font-size: 20px;
  }
}
#pageTtl h1::before {
  content: "";
  display: block;
  margin: auto;
  background: url("../img/page-ttl-icon.svg") no-repeat center 0;
  background-size: auto 100%;
  width: 36px;
  height: 54px;
}
@media screen and (max-width: 767px) {
  #pageTtl h1::before {
    width: 30px;
    height: 44px;
  }
}
#pageTtl.no-icon h1::before {
  display: none;
}

/*============================
.play-movie-icon
 for big-ttl
============================*/
.play-movie-icon {
  width: 120px;
  display: block;
  position: absolute;
  right: 2vw;
  bottom: 2vw;
}
@media screen and (max-width: 767px) {
  .play-movie-icon {
    width: 18vw;
  }
}
.play-movie-icon a {
  display: block;
  cursor: pointer;
}
.play-movie-icon a:hover {
  opacity: 0.5;
}

/*============================
.play-movie
 for toppage
============================*/
.play-movie {
  display: block;
  width: 4.53125vw;
  height: 4.7916666667vw;
  line-height: 1;
  position: absolute;
  left: 50%;
  bottom: 1vw;
  transform: translateX(-50%);
  background-image: url("../img/play_movie.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 767px) {
  .play-movie {
    width: 50px;
    height: 55px;
  }
}

/*============================
YouTube Responsive
============================*/
.yt {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.yt iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/*============================
.flex.home-flex
============================*/
.flex.home-flex {
  padding: 4em 0;
  align-items: center;
  max-width: 1800px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .flex.home-flex {
    display: block;
  }
}
.flex.home-flex figure {
  flex: 0 0 48%;
  text-align: center;
}
.flex.home-flex figure a {
  text-decoration: none;
  color: #000;
  display: block;
  position: relative;
  cursor: pointer;
}
.flex.home-flex figure a::before {
  content: "";
  transition: 0.3s;
  opacity: 0;
}
.flex.home-flex figure a:hover {
  opacity: 1;
}
.flex.home-flex figure a:hover::before {
  content: "";
  display: block;
  background: #000;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.2;
}
.flex.home-flex figure figcaption {
  font-size: 80%;
  text-align: center;
  padding: 1em;
}
.flex.home-flex figure {
  flex: 0 0 48%;
  text-align: center;
}
.flex.home-flex figure figcaption {
  font-size: 80%;
  text-align: center;
  padding: 1em;
}
.flex.home-flex div.body {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 4vw;
  font-family: "Noto Serif JP", serif !important;
  font-weight: 400 !important;
}
@media screen and (max-width: 767px) {
  .flex.home-flex div.body {
    max-width: none;
    padding-top: 1em;
  }
}
.flex.home-flex div.body h3 {
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .flex.home-flex div.body h3 {
    font-size: 18px;
  }
}
.flex.home-flex div.body p {
  line-height: 2;
  padding: 1.5em 0;
}
.flex.home-flex div.body a.more {
  text-decoration: none;
  color: #000;
  position: relative;
  padding-right: 110px;
  line-height: 1;
}
.flex.home-flex div.body a.more span {
  display: inline-block;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  padding: 0.2em 1em;
  margin-right: 1em;
}
.flex.home-flex div.body a.more i {
  display: inline-block;
  width: 6em;
  height: 1px;
  background: #000;
  position: absolute;
  right: 0;
  top: 51%;
  transition: 0.3s;
}
.flex.home-flex div.body a.more i::after {
  content: "";
  display: block;
  width: 1em;
  height: 1px;
  background: #000;
  transform-origin: right center;
  transform: rotate(35deg);
  position: absolute;
  right: 0;
}
.flex.home-flex div.body a.more:hover i {
  width: 3em;
}

.main_contents {
  padding-top: 4em;
  padding-bottom: 7em;
  padding: 4em 20px 7em;
}
@media screen and (max-width: 767px) {
  .main_contents {
    padding-bottom: 50px;
  }
}

.wrap1000 {
  width: 100%;
  max-width: 1000px;
}

@keyframes home-header {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes shutter {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@keyframes maincopy-anim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes maincopy-ob-anim {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
@keyframes scroll-anim {
  30% {
    transform-origin: 0 0;
    transform: scaleY(0);
  }
  65% {
    transform-origin: 0 0;
    transform: scaleY(1);
  }
  70% {
    transform-origin: left bottom;
    transform: scaleY(1);
  }
  100% {
    transform-origin: left bottom;
    transform: scaleY(0);
  }
}
@keyframes scroll-anim-cnv {
  0% {
    transform-origin: 0 0;
    transform: scaleY(0);
  }
  70% {
    transform-origin: 0 0;
    transform: scaleY(1);
  }
  80% {
    transform-origin: left bottom;
    transform: scaleY(1);
  }
  100% {
    transform-origin: left bottom;
    transform: scaleY(0);
  }
}
/**
 * ----------------------------------------
 * animation pulsate-fwd
 * ----------------------------------------
 */
@keyframes pulsate-fwd {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
a[href*="1978"] {
  pointer-events: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

body {
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400 !important;
  color: #000;
  font-size: 15px;
  line-height: 1.733;
  position: relative;
  padding-top: 139px;
}
@media screen and (max-width: 767px) {
  body {
    padding-top: 60px;
    font-size: 13px;
  }
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

/*============================
commingsoon
============================*/
.comingsoon {
  opacity: 0.3;
  pointer-events: none;
}

/*============================
#main
============================*/
article#main {
  overflow: hidden;
}

/*============================
Responsive
============================*/
.sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

/*============================
BOX Models
============================*/
.w1000 {
  max-width: 1000px;
  margin: auto;
}

/*============================
.flex
============================*/
.flex {
  display: flex;
  justify-content: space-between;
}

/*============================
.sec
============================*/
.sec {
  padding: 100px 30px;
}
@media screen and (max-width: 767px) {
  .sec {
    padding: 50px 20px;
  }
}

/*============================
a
============================*/
a {
  transition: 0.3s;
  color: #036EB8;
}

a:hover {
  opacity: 0.85;
}

a[href*="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: auto;
  }
}

/*============================
.btn
============================*/
/*============================
table
============================*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
table th, table td {
  border-left: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 0.5em 1em;
  line-height: 1.3;
  font-size: 90%;
}
table th {
  background: #F5F2E9;
}

/*============================
Headlines
============================*/
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

/*============================
list
============================*/
.maruList, .komeList {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.maruList *, .komeList * {
  margin: 0;
  padding: 0;
}
.maruList li, .komeList li {
  margin-left: 1em;
  list-style: none !important;
}
.maruList li::before, .komeList li::before {
  content: "●";
  margin-left: -1em;
}

.maruList li::before {
  content: "●";
}

.komeList li::before {
  content: "※";
}

/*============================
Swiper button
============================*/
div.swiper-button-prev, div.swiper-button-next {
  position: absolute;
  margin: 0;
  top: 0;
  width: 43px;
  height: 85px;
  background-size: 43px 85px;
  width: 2.986vw;
  height: 5.903vw;
  background-size: 2.986vw 5.903vw;
  outline: none;
}

div.swiper-button-prev {
  left: 0;
}

div.swiper-button-next {
  right: 0;
}

div.swiper-button-disabled {
  opacity: 0 !important;
}