@charset "UTF-8";
body,
div,
p,
a,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
dl,
dt,
dd,
img,
span,
table,
th,
td,
section,
header,
footer,
iframe {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; 
  margin: 0;
  padding: 0;
  border: 0;
}

iframe {
  overflow: hidden;
}

body {
  opacity: 0;
}

a {
  color: #282828;
  text-decoration: none;
}

ul {
  list-style: none;
}

.clearfix::after {
  display: block;
  clear: both; 
  content: "";
}

.pc_visible {
  display: block;
}

.pc_visible_inline {
  display: inline-block;
}

.sp_visible {
  display: none;
}

.sp_visible-2 {
  display: none !important;
}

.sp_visible_inline {
  display: none;
}

/* 非表示 */
.is-hide {
  display: none;
}

/* LOADING */
#loader-bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000; 
  width: 100%;
  height: 100%;
  background: #fff;
}

#loader {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -60px;
  margin-left: -60px;
  width: 120px; 
  height: 120px;
}

#loader p {
  color: #454545;
  text-align: center; 
  font-size: 10px;
  line-height: 1.4;
}

#loader p img {
  display: inline-block;
}

.link {
  margin: 1.5em 0; 
  font-size: 1.5vw;
}

.link a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.link a::after {
  position: absolute;
  bottom: -35px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #333;
  content: "";
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s; 
  -webkit-transform: scale(0, 1); 
      -ms-transform: scale(0, 1); 
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
      -ms-transform-origin: right top;
          transform-origin: right top;
}

.link a:hover::after {
  -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
          transform: scale(1, 1); 
  -webkit-transform-origin: left top; 
      -ms-transform-origin: left top; 
          transform-origin: left top;
}

.arrow {
  position: relative;
  display: inline-block;
  padding: 0 0 0 24px;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
}

.arrow::before,
.arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

/* 三角アイコン*/
.arrow-sankaku::before {
  top: 2px;
  left: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 10px;
  height: 6px;
  border: 6px solid transparent;
  border-left: 8px solid #00264d;
}

/* header */
.header {
  position: fixed;
  z-index: 5000;
  padding-top: 26px;
  width: 100%;
  height: 100px;
  text-align: right;
  pointer-events: none;
}

.header .navi_wrap {
  -webkit-transition: 1s all;
  transition: 1s all;
  pointer-events: all;
}

.header .navi_wrap_active {
  width: 100% !important;
}

.header .navi_wrap_active .hamburger-menu {
  position: fixed;
  top: -5px; 
  right: -10px;
  background: none;
}

.header div.navi {
  position: relative;
  display: block;
  float: right;
  margin-right: 2px;
  width: 90px;
  height: 90px;
  background-color: rgba(255, 255, 255, .75);
  text-align: center;
  opacity: 1;
  cursor: pointer;
  -webkit-transition: 1s all;
  transition: 1s all;
}

.header div.navi:first-child {
  margin-right: 0;
}

.header div.navi:hover {
  opacity: .8;
}

.navi-hide {
  opacity: 0 !important;
  pointer-events: none;
}

.popup-menu {
  position: fixed;
  top: -101%;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5000;
  -webkit-transition: 1s all;
  transition: 1s all;
}

.popup-menu-active {
  top: 0; 
  display: block;
}

/*=============================
.btn-trigger
=============================*/
.hamburger-menu {
  z-index: 5000;
}

.hamburger-menu .menu {
  position: absolute;
  bottom: 15px;
  left: 25px;
  z-index: 1000; 
  width: 40px;
  color: #595857;
  text-align: center;
  font-size: 10px;
  font-family: "Noto Serif JP", serif;
}

.hamburger-menu .menu:before {
  content: "Menu";
}

.hamburger-menu .close:before {
  content: "CLOSE";
}

.btn-trigger {
  position: absolute;
  top: 15px;
  left: 25px;
  z-index: 5000;
  display: block; 
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.btn-trigger span {
  position: absolute;
  left: 0;
  width: 40px;
  height: 2px;
  border-radius: 2px; 
  background-color: #000;
}

.btn-trigger,
.btn-trigger span {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; 
  -webkit-transition: all .5s; 
  transition: all .5s;
}

.btn-trigger span:nth-of-type(1) {
  top: 0;
}

.btn-trigger span:nth-of-type(2) {
  top: 19px;
}

.btn-trigger span:nth-of-type(3) {
  bottom: 0;
}

/*=============================
#btn07
=============================*/
#btn07 span:nth-of-type(1) {
  -webkit-animation: btn07-bar01 .75s forwards;
  animation: btn07-bar01 .75s forwards;
}

@-webkit-keyframes btn07-bar01 {
  0% {
    -webkit-transform: translateY(19px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(19px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}

@keyframes btn07-bar01 {
  0% {
    -webkit-transform: translateY(19px) rotate(45deg);
            transform: translateY(19px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(19px) rotate(0);
            transform: translateY(19px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}

#btn07 span:nth-of-type(2) {
  opacity: 1; 
  -webkit-transition: all .25s .25s; 
  transition: all .25s .25s;
}

#btn07 span:nth-of-type(3) {
  -webkit-animation: btn07-bar03 .75s forwards;
  animation: btn07-bar03 .75s forwards;
}

@-webkit-keyframes btn07-bar03 {
  0% {
    -webkit-transform: translateY(-19px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-19px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}

@keyframes btn07-bar03 {
  0% {
    -webkit-transform: translateY(-19px) rotate(-45deg);
            transform: translateY(-19px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-19px) rotate(0);
            transform: translateY(-19px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}

#btn07.active span:nth-of-type(1) {
  -webkit-animation: active-btn07-bar01 .75s forwards;
  animation: active-btn07-bar01 .75s forwards;
}

@-webkit-keyframes active-btn07-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(19px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(19px) rotate(45deg);
  }
}

@keyframes active-btn07-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(19px) rotate(0);
            transform: translateY(19px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(19px) rotate(45deg);
            transform: translateY(19px) rotate(45deg);
  }
}

#btn07.active span:nth-of-type(2) {
  opacity: 0;
}

#btn07.active span:nth-of-type(3) {
  -webkit-animation: active-btn07-bar03 .75s forwards;
  animation: active-btn07-bar03 .75s forwards;
}

@-webkit-keyframes active-btn07-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-19px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-19px) rotate(-45deg);
  }
}

@keyframes active-btn07-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-19px) rotate(0);
            transform: translateY(-19px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-19px) rotate(-45deg);
            transform: translateY(-19px) rotate(-45deg);
  }
}

/* footer */
.footer {
  margin: 0 auto;
  padding-top: 46px;
  width: 76.5%;
  border-top: 1px solid #808080;
  text-align: center;
}

.footer .address {
  margin: 0 auto;
  text-align: left; 
  font-style: normal;
}

.footer .address .left {
  float: left;
  width: 30.0%;
  text-align: center;
}

.footer .address .left img {
  margin: 0 auto; 
  width: 75.0%;
  height: auto;
}

.footer .address .center {
  float: left;
  width: 40.0%;
  text-align: center;
}

.footer .address .center p {
  margin-bottom: .5em; 
  font-size: .9vw;
  line-height: 2.5em;
}

.footer .address .center .company {
  font-size: 1.1vw;
}

.footer .address .right {
  float: right;
  width: 30.0%;
  text-align: center;
}

.footer .address .right img {
  margin: 0 auto; 
  width: 35.0%;
  height: auto;
}

.footer .contact {
  margin: 3.5em auto 3.0em; 
  text-align: center;
  font-size: 1.0vw;
}

.footer .sitemap a {
  margin-bottom: 3.0em;
  text-decoration: underline;
  font-weight: 100;
  font-weight: bold; 
  font-size: 1.0vw;
  font-family: "Noto Serif JP", serif;
}

.footer .copyright {
  margin: 1.5em 0;
  color: #000;
  text-align: center;
  font-size: .9vw;
}

/* Movie Pop Up */
/**
 * Simple fade transition,
 */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all .15s ease-out;
  transition: all .15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: .8;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all .15s ease-out;
  transition: all .15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

/* Page Top */
#page-top {
  position: fixed;
  right: 2%;
  bottom: 2%;
  z-index: 1000; 
  width: 2%;
}
@media screen and (max-width: 640px) {
  .popup-menu {
    overflow-y: scroll;
  }
  .pc_visible {
    display: none;
  }
  .pc_visible_inline {
    display: none;
  }
  .sp_visible {
    display: block;
  }
  .sp_visible_inline {
    display: inline-block;
  }
  .link {
    margin: 1.5em 0; 
    text-align: center;
    font-size: 4.5vw;
  }
  .link a {
    border-bottom: 2px solid #000;
  }
  .link a::after {
    display: none;
  }
  .link a:hover::after {
    display: none;
  }
  .arrow {
    position: relative;
    display: inline-block;
    padding: 0 0 0 20px;
    color: #000;
    vertical-align: middle;
    text-decoration: none;
  }
  .arrow::before,
  .arrow::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
  }
  /* 三角アイコン*/
  .arrow-sankaku::before {
    top: 2px;
    left: 2px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 10px;
    height: 6px;
    border: 6px solid transparent;
    border-left: 8px solid #00264d;
  }
  .scroll-wrap {
    padding-top: 80px; 
    width: 100%;
  }
  .header {
    padding-top: 0;
    height: 80px;
  }
  .header .navi_wrap {
    width: 100%;
  }
  .header .navi_wrap .navi {
    width: 80px;
    height: 80px;
  }
  .btn-trigger {
    left: 20px; 
    height: 34px;
  }
  .hamburger-menu .menu {
    top: 52px; 
    bottom: auto;
    left: 20px;
  }
  .btn-trigger span:nth-of-type(1) {
    top: 0;
  }
  .btn-trigger span:nth-of-type(2) {
    top: 16px;
  }
  .btn-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  /*=============================
    #btn07
    =============================*/
  @-webkit-keyframes btn07-bar01 {
    0% {
      -webkit-transform: translateY(16px) rotate(45deg);
    }
    50% {
      -webkit-transform: translateY(16px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
    }
  }
  @keyframes btn07-bar01 {
    0% {
      -webkit-transform: translateY(16px) rotate(45deg);
              transform: translateY(16px) rotate(45deg);
    }
    50% {
      -webkit-transform: translateY(16px) rotate(0);
              transform: translateY(16px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
  }
  @-webkit-keyframes btn07-bar03 {
    0% {
      -webkit-transform: translateY(-16px) rotate(-45deg);
    }
    50% {
      -webkit-transform: translateY(-16px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
    }
  }
  @keyframes btn07-bar03 {
    0% {
      -webkit-transform: translateY(-16px) rotate(-45deg);
              transform: translateY(-16px) rotate(-45deg);
    }
    50% {
      -webkit-transform: translateY(-16px) rotate(0);
              transform: translateY(-16px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
  }
  @-webkit-keyframes active-btn07-bar01 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(16px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(16px) rotate(45deg);
    }
  }
  @keyframes active-btn07-bar01 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(16px) rotate(0);
              transform: translateY(16px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(16px) rotate(45deg);
              transform: translateY(16px) rotate(45deg);
    }
  }
  @-webkit-keyframes active-btn07-bar03 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(-16px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(-16px) rotate(-45deg);
    }
  }
  @keyframes active-btn07-bar03 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(-16px) rotate(0);
              transform: translateY(-16px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(-16px) rotate(-45deg);
              transform: translateY(-16px) rotate(-45deg);
    }
  }
  .footer {
    margin: 2em auto 0; 
    width: 86.2%;
  }
  .footer .address {
    margin: 0 auto;
    width: 100%;
    text-align: left;
    font-style: normal;
    font-size: 1.5vw;
  }
  .footer .address .left {
    float: none;
    margin: 0 auto 5em; 
    width: 65%;
  }
  .footer .address .center {
    float: none;
    margin-bottom: 5em; 
    width: 100%;
  }
  .footer .address .center p {
    margin-bottom: .5em; 
    font-size: 3.2vw;
  }
  .footer .address .center .company {
    font-size: 3.7vw;
  }
  .footer .address .right {
    float: none;
    margin: 0 auto;
    padding: 0; 
    width: 80%;
    text-align: center;
  }
  .footer .contact {
    text-align: center; 
    font-size: 4.5vw;
  }
  .footer .sitemap a {
    margin-bottom: 3.0em; 
    font-size: 4.5vw;
  }
  .footer .copyright {
    color: #000;
    text-align: center;
    font-size: 3.5vw;
  }
  /* Page Top */
  #page-top {
    position: fixed;
    right: 2%;
    bottom: 2%;
    z-index: 1000; 
    width: 5.4%;
  }
}