@charset "utf-8";
/*
theme Name: オリジナルテーマ
Author: I's Creation
Description: original theme
version： 1.0.0
*/
/*サイト全体の基準となるCSSを記述*/
body {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  }

/*============================================================================
  ヘッダー
============================================================================*/
.header-inner {
  width: 100%;
  padding: 15px 0;
  z-index: 10;
  display: table;
  position: fixed;
  background-color: transparent;
  transition: 1.0s ;
}
.header-inner.transform {
  background-color: #fff;
}
.header-inner a {
  text-decoration: none;
}
.header-inner a h1 {
  font-size: 26px;
  color: #fff;
  font-weight: bold;
  line-height: 26px;
}
.header-inner.transform a h1 {
  color: #000;
}
.site-title-wrap {
  width: 55%;
  margin-left: 20px;
}

/*============================================================================
  ハンバーガーメニュー
============================================================================*/
#nav-toggle {
  position: fixed;
  top: 14px;
  right: 25px;
  height: 27px;
  cursor: pointer;
}
#nav-toggle > div {
  position: relative;
  width: 30px;
}
#nav-toggle span {
  width: 100%;
  height: 2px;
  left: 0;
  top: 0;
  display: block;
  background: #fff;
  position: absolute;
  transition: top .5s ease, -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out, top .5s ease;
  transition: transform .3s ease-in-out, top .5s ease, -webkit-transform .3s ease-in-out;
}
.header-inner.transform #nav-toggle span,
.header-inner2.transform #nav-toggle span {
  background-color: #000;
}
#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 11px;
}
#nav-toggle span:nth-child(3) {
  top: 22px;
}

.open #nav-toggle span:nth-child(1) {
  background: #fff;
  top: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  background: #fff;
  top: 15px;
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  background: #fff;
  top: 15px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#nav-toggle {
  z-index: 30;
}
#header-nav-wrap nav {
  z-index: 20;
}
#header-nav-wrap {
  width: 100%;
  height: 100vh;
  background-color: rgba(0,0,0,0.8);
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 15;
}
.open #header-nav-wrap {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  transition: -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#header-nav-wrap a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  padding: 15px 0 5px 0px;
  transition: color .6s ease;
  font-size: 18px;
  font-weight: bold;
}
#header-nav-wrap ul {
  list-style: none;
  margin: 10% 0 0 10%;
}
#header-nav-wrap ul li {
  list-style: none;
  -webkit-transform: translateX(-200px);
          transform: translateX(-200px);
  transition: -webkit-transform 1.3s ease;
  transition: transform 1.3s ease;
  transition: transform 1.3s ease, -webkit-transform 1.3s ease;
  position: relative;
  display: block;
}
.open #header-nav-wrap li {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/*============================================================================
  メインビジュアル
============================================================================*/
 #mv-slide-wrap {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin-bottom: 100px;
  }
#mv-slide-wrap h2 {
  z-index:15;
  position: absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-60%);
  width:80%;
  height:auto;
  text-align: center;
  font-size: 40px;
  color: #fff;
  font-weight: bold;
}
#mv-slide-wrap h2 span {
  display: block;
  font-size: 24px;
}
  .mv-slide {
    z-index:10;
    opacity: 0;
    width: 100%;
    height: calc(100vh + 36px);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-animation: anime 18s 0s infinite;
    animation: anime 18s 0s infinite;
  }
    .mv-slide:nth-of-type(2) {
      -webkit-animation-delay: 6s;
      animation-delay: 6s;
    }
    .mv-slide:nth-of-type(3) {
      -webkit-animation-delay: 12s;
      animation-delay: 12s;
    }
.mv-slide::before{
  background-color: rgba(0,0,0,0.2);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}
@keyframes anime {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    16% {
        opacity: 1;
    }
    34% {
        opacity: 1;
    }
    50% {
        opacity: 0;
         transform: scale(1.0);
                    z-index:5;
    }
    100% { opacity: 0 }
}
.mv-slide-01 {
  background-image: url("../../images/example02/mv01.jpg");
}
.mv-slide-02 {
  background-image: url("../../images/example02/mv02.jpg");
}
.mv-slide-03 {
  background-image: url("../../images/example02/mv03.jpg");
}

@media screen and (max-width:480px) { 
  #mv-slide-wrap h2 {
    font-size: 30px;
  }
  #mv-slide-wrap h2 span {
  font-size: 20px;
  }
}

/*============================================================================
  パーツ２
============================================================================*/
.cont-parts-02-wrap {
  position: relative;
  height: 600px;
  opacity : 0;
  transform : translate(-500px, 0);
  transition : all 1s;
}
.cont-parts-02-wrap.active {
  opacity : 1;
  transform : translate(0, 0);
}
.cont-parts-02-wrap .bg-gray {
  background-color: #fafafa;
  position: absolute;
  top: 188px;
  right: 0;
  content: ' ';
  width: 80%;
  height: 55%;
}
.cont-parts-02-title {
  font-size: 50px;
  color: #000;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 3%;
  z-index: 5;
  }
.cont-parts-02-img {
  background-image: url("../../images/example02/cont_img_02.jpg");
  position: absolute;
  top: 50px;
  left: 0;
  height: 300px;
  width: 100%;
  background-position: 0% 0%;
  background-size: 100%;
}
.cont-parts-02-text {
  width: 100%;
  margin: 45% 0 0 auto;
    display: block;
}
.cont-parts-02-text h2 {
  color: #000;
  margin-left: 2%;
  margin-bottom: 20px;
  font-weight: normal;
  font-size: 27px;
}
.cont-parts-02-text p {
  width: 98%;
  margin: 0 0 0 auto;
}
@media screen and (max-width:480px) {
  .cont-parts-02-wrap .bg-gray {
    top: 120px;
  }
  .cont-parts-02-text h2 {
    font-size: 22px;
  }
}

/*============================================================================
  パーツ８
============================================================================*/
.cont-parts-08-wrap {
  width: 95%;
  max-width: 1600px;
  margin: 0 auto 100px auto;
}
.cont-parts-08-wrap .cont-parts-08-text {
  text-align: center;
}
.cont-parts-08-wrap .cont-parts-08-title {
  font-size: 50px;
  font-weight: bold;
  color: #000;
}
.cont-parts-08-wrap h2 {
  margin-bottom: 20px;
  font-weight: normal;
  color: #000;
  font-size: 27px;
}
.cont-parts-08 {
  width: 50%;
  float: left;
  margin: 30px 0;
  margin: 30px -1px 30px 0;
  border: 1px solid #ddd;
}
.cont-parts-08 h3 {
  font-size: 20px;
  color: #000;
  margin-top: 10px;
  padding: 0 5px;
}
.cont-parts-08 img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto 10px auto;
  }
.cont-parts-08 p {
  display: block;
  width: 100%;
  height: 120px;
  padding: 10px 5px;
}
@media screen and (max-width:480px) {
  .cont-parts-08-wrap .cont-parts-08-text h2 {
    font-size: 22px;
  }
  .cont-parts-08-wrap .cont-parts-08-title {
  font-size: 40px;
  }
}

/*============================================================================
  パーツ３
============================================================================*/
.cont-parts-03-wrap {
  position: relative;
  height: 700px;
  width: 100%;
  margin: 0 auto 100px auto;
  opacity : 0;
  transform : translate(500px, 0);
  transition : all 1s;
}
.cont-parts-03-wrap.active {
  opacity : 1;
  transform : translate(0, 0);
}
.cont-parts-03-wrap .bg-gray {
  background-color: #fafafa;
  position: absolute;
  top: 400px;
  left: 0;
  content: '';
  width: 75%;
  height: 320px;
}
.cont-parts-03-wrap .cont-parts-03-title {
  font-size: 50px;
  color: #000;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  text-align: center;
  }
.cont-parts-03-wrap .cont-parts-03-img {
  background-image: url("../../images/example02/cont_img_03.jpg");
  position: absolute;
  top:100px;
  right: 0;
  height: 400px;
  width: 100%;
  background-position: right;
  background-size: 100%;
}
.cont-parts-03-wrap .cont-parts-03-text {
  width: 90%;
  position: absolute;
  top: 510px;
  left: 10%;
  padding-right: 5px;
}
.cont-parts-03-wrap .cont-parts-03-text h2 {
  color: #000;
  margin-bottom: 20px;
  font-weight: normal;
  font-size: 27px;
}
@media screen and (max-width:480px) {
  .cont-parts-03-wrap .bg-gray {
    top: 300px;
  }
  .cont-parts-03-wrap .cont-parts-03-text {
    top: 410px;
  }
  .cont-parts-03-wrap .cont-parts-03-text h2 {
    font-size: 22px;
  }
  .cont-parts-03-wrap .cont-parts-03-img {
    top:70px;
    height: 300px;
  }
}

/*============================================================================
  パーツ９
============================================================================*/
.cont-parts-09-wrap {
  width: 100%;
  height: 500px;
  background-color: #0B52A0;
  position: relative;
  margin-bottom: 100px;
}
.cont-parts-09-wrap .cont-parts-09-text {
  width: 87%;
  position: absolute;
  top: 75px;
  left: 3%;
}
.cont-parts-09-wrap .cont-parts-09-title {
  font-size: 50px;
  font-weight: bold;
  color: #fff;
}
.cont-parts-09-wrap h2 {
  margin-bottom: 20px;
  font-weight: normal;
  color: #fff;
  font-size: 27px;
}
.cont-parts-09-wrap p {
  color: #fff;
}
.cont-parts-09-btn {
  background-color: #fff;
  padding: 20px 20px;
  border-radius: 40px;
  display: block;
  color: #0B52A0;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 380px;
  transition-duration: 0.3s;
}
.cont-parts-09-btn:hover {
  background-color: #5BDCCC;
  color: #fff;
  transition-duration: 0.3s;
}
@media screen and (max-width:480px) {
  .cont-parts-09-wrap .cont-parts-09-text h2 {
    font-size: 22px;
  }
  .cont-parts-09-wrap .cont-parts-09-title {
    font-size: 40px;
  }
  .cont-parts-09-btn {
    font-size: 18px;
    width: 80%;
  }
}

/*============================================================================
  フッター
============================================================================*/
.footer {
  width: 100%;
  padding-top: 1px;
  background-color: #262626;
}
.footer-wrap {
  width: 90%;
  margin: 50px 5%;
}
.footer-box {
  width: 100%;
  float: none;
}
.footer-box:first-child {
  margin-bottom: 40px;
}
.footer-box address p {
  color: #fff;
  font-style: normal;
}
.footer .footer-box .footer-nav {
  margin-top: 20px;
}
.footer .footer-box ul {
  list-style: none;
  padding-left: 10px;
}
.footer .footer-box ul li {
  width: 33%;
  float: left;
  margin-bottom: 20px;
}
.footer .footer-box ul li a {
  text-decoration: none;
  color: #fff;
  transition-duration: 0.3s;
}
.footer .footer-box ul li a:hover {
  color: #AF173F;
  transition-duration: 0.3s;
}
.footer-logo {
  width: auto;
  margin-bottom: 20px;
}
.footer-logo a {
  text-decoration: none;
}
.footer-logo a h2 {
  font-size: 26px;
  color: #fff;
  font-weight: bold;
  line-height: 26px;
}
.footer-copyright {
  width: 100%;
  background-color: #ECECEC;
  padding: 5px 0;
}
.footer-copyright p {
  font-size: 14px;
  color: #000;
  text-align: center;
}
@media screen and (max-width:480px) {
  .footer .footer-box ul li {
    width: 50%;
  }
}