@charset "utf-8";
/*
theme Name: オリジナルテーマ
Author: I's Creation
Description: original theme
version： 1.0.0
*/
/*サイト全体の基準となるCSSを記述*/
body {
  font-family: 'Hind','Avenir','Helvetica Neue','Helvetica','Arial', '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  }
/*============================================================================
  ヘッダー
============================================================================*/
.header-inner {
  width: 100%;
  padding: 48px 0 15px 0;
  z-index: 10;
  display: table;
  position: fixed;
  background-color: transparent;
  transition: 1.0s ;
}
.header-inner a {
  text-decoration: none;
}
.header-inner a h1 {
  font-size: 60px;
  line-height: 60px;
  text-align: center;
  background-image: url("../../images/example04/title_bg.jpg");
  background-clip: text;
 -webkit-background-clip: text;
 color: transparent;
}
.site-title-wrap {
  width: 320px;
  margin-left: 60px;
}
.site-title-wrap div {
  color: #fff;
  text-align: center;
  line-height: 20px;
  letter-spacing: 5px;
  font-size: 18px;
}

/*============================================================================
  ハンバーガーメニュー
============================================================================*/
#nav-toggle {
  position: fixed;
  top: 35px;
  right: 5%;
  cursor: pointer;
}
#nav-toggle > div {
  position: relative;
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
}
.open #nav-toggle > div {
  background-color: transparent;
}
#nav-toggle span {
  width: 65%;
  height: 3px;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  display: block;
  background: #4e6b7e;
  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;
}
#nav-toggle span:nth-child(1) {
  top: 30%;
}
#nav-toggle span:nth-child(2) {
  top: 50%;
}
#nav-toggle span:nth-child(3) {
  top: 70%;
}

.open #nav-toggle span:nth-child(1) {
  background: #4e6b7e;
  top: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  background: #4e6b7e;
  top: 15px;
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  background: #4e6b7e;
  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: #fff;
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 15;
  overflow-y: scroll;
}
.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;
  text-decoration: none;
  padding: 15px 0 5px 0px;
  transition: color .6s ease;
  font-weight: bold;
  font-size: 22px;
  color: #4e6b7e;
}
#header-nav-wrap .nav-title {
  font-size: 35px;
  line-height: 35px;
  font-weight: bold;
  background-image: url("../../images/example04/title_bg.jpg");
  background-clip: text;
 -webkit-background-clip: text;
 color: transparent;
 width: 100%;
 max-width: 600px;
 text-align: center;
 margin: 50px auto;
}
#header-nav-wrap ul {
  list-style: none;
  margin: 0 auto;
}
#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;
  text-align: center;
}
.open #header-nav-wrap li {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/*============================================================================
  メインビジュアル
============================================================================*/
 #mv-slide-wrap {
    height: 85vh;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }

#mv-slide-wrap h1 {
  z-index:15;
  position: absolute;
  top:40%;
  left:5%;
  width:280px;
  height:auto;
  font-size: 50px;
  line-height: 50px;
  background-image: url("../../images/example04/title_bg.jpg");
  background-clip: text;
 -webkit-background-clip: text;
 color: transparent;
}

  .mv-slide {
    z-index:10;
    opacity: 0;
    width: 100%;
    height: 85vh;
    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;
    }

@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/example04/mv01.jpg");
}
.mv-slide-02 {
  background-image: url("../../images/example04/mv02.jpg");
}
.mv-slide-03 {
  background-image: url("../../images/example04/mv03.jpg");
}

/*============================================================================
  パーツ１５
============================================================================*/
.cont-parts-15-wrap {
  width: 100%;
  background: linear-gradient(153deg, #FAFBFF 25%, #dcdcdc 50%, #FAFBFF 90%);
  position: relative;
  padding-bottom: 100px;
}
.cont-parts-15-wrap h3 {
  font-size: 30px;
  color: #4e6b7e;
  text-align: center;
  margin-top: 50px;
}
.cont-parts-15-left {
  width: 100%;
  height: 250px;
  position: relative;
}
.cont-parts-15-title {
  font-size: 50px;
  line-height: 50px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background-image: url("../../images/example04/title_bg.jpg");
  background-clip: text;
 -webkit-background-clip: text;
 color: transparent;
 width: 300px;
 text-align: center;
}
.cont-parts-15-left img {
  width: 35%;
  position: absolute;
  bottom: 0;
  right: 10%;
  z-index: 0;
  opacity: 0.6;
}
.cont-parts-15-middle {
  width: 100%;
  margin-top: 50px;
}
.cont-parts-15-right {
  width: 100%;
  margin-top: 50px;
}
.cont-parts-15-wrap table {
  width: 80%;
  border-collapse:collapse;
  margin: 0 auto;
  font-weight: bold;
  font-size: 18px;
  color: #4e6b7e;

}
.cont-parts-15-wrap table tr {
  border-bottom: 2px solid #4e6b7e;
}
.cont-parts-15-wrap td {
  width: 50%;
  text-align: center;
  padding-top: 20px;
}
@media screen and (max-width:600px) {
  .cont-parts-15-left {
    height: 150px;
  }
  .cont-parts-15-left img {
    width: 180px;
  }
}


/*============================================================================
  パーツ６
============================================================================*/
.cont-parts-06-wrap {
  width: 100%;
  height: 500px;
  overflow: hidden;
  background-image: url("../../images/example04/cont_06_bg.jpg");
  background-repeat: repeat;
}
.cont-parts-06-wrap .cont-parts-06-title {
  font-size: 50px;
  line-height: 50px;
  font-weight: bold;
  margin: 50px auto;
  width: 300px;
  text-align: center;
  background-image: url("../../images/example04/title_bg.jpg");
  background-clip: text;
 -webkit-background-clip: text;
 color: transparent;
}
.cont-parts-06-wrap h2 {
  margin-bottom: 20px;
  font-weight: normal;
  color: #000;
  font-size: 30px;
}
#slide-parts-06 {
  width: 100%;
}
#slide-parts-06 .slick-list {
  padding: 0 40% 0 0;
}
#slide-parts-06 .slide-piece {
  margin: 0 10px;
}
#slide-parts-06 .slide-piece .img-wrap {
  overflow: hidden;
}
#slide-parts-06 .slide-piece .img-wrap img {
  transition-duration: 1s;
}
#slide-parts-06 .slide-piece .img-wrap img:hover {
  transform: scale(1.1);
  transition-duration: 1s;
}
#slide-parts-06 .slide-piece a {
  text-decoration: none;
}
#slide-parts-06 .slide-piece h3 {
  font-size: 22px;
  color: #4e6b7e;
  margin-top: 20px;
  text-align: center;
}
#slide-parts-06 .slide-piece p {
  color: #444;
}

/*============================================================================
  パーツ５
============================================================================*/
.cont-parts-05-wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.cont-parts-05-wrap .cont-parts-05-img {
  background-image: url("../../images/example04/cont_img_05.jpg");
  width: 100%;
  height: 800px;
  background-position: left;
}
.cont-parts-05-wrap .cont-parts-05-text {
  position: absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  color: #fff;
  text-align: center;
  width: 100%;
}
.cont-parts-05-wrap .cont-parts-05-title {
  font-size: 50px;
  line-height: 50px;
  font-weight: bold;
  margin: 50px auto;
  width: 100%;
  max-width: 600px;
  text-align: center;
  background-image: url("../../images/example04/title_bg.jpg");
  background-repeat: repeat;
  background-clip: text;
 -webkit-background-clip: text;
 color: transparent;
}
.cont-parts-05-wrap .cont-parts-05-text h2 {
  margin-bottom: 20px;
  font-weight: normal;
  color: #555;
  font-size: 30px;
}
.cont-parts-05-wrap .sns {
  width: 100%;
}
.cont-parts-05-wrap .sns div {
  position: relative;
    width: 28%;
    height: 80px;
    float: left;
    border-radius: 5px;
    font-size: 22px;
    font-weight: bold;
    color: #4e6b7e;
    line-height: 86px;
    margin-left: 4%;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.25);
  -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.25);
  -moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.25);
}
.cont-parts-05-wrap .sns div:last-child {
  margin-right: 4%;
}
.cont-parts-05-wrap .sns div::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
  background: #4e6b7e;
  border-radius: 5px;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
  z-index: -1;
}
.cont-parts-05-wrap .sns div:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
  z-index: -1;
}
.cont-parts-05-wrap .sns div::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
  background: #fff;
  border-radius: 5px;
  z-index: -2;
}
.cont-parts-05-wrap .sns div:hover {
  color: #fff;
}
@media screen and (max-width:500px) {
  .cont-parts-05-wrap .cont-parts-05-title {
  font-size: 45px;
  line-height: 45px;
}
  .cont-parts-05-wrap .sns div {
    float: none;
    width: 80%;
    margin: 15px auto;
    height: 70px;
    line-height: 78px;
  }
  .cont-parts-05-wrap .sns div:last-child {
  margin-right: auto;
  }
}

/*============================================================================
  フッター
============================================================================*/
.footer {
  width: 100%;
  padding-top: 1px;
  background-color: #F8F7F2;
}
.footer-wrap {
  width: 90%;
  margin: 50px 5%;
  text-align: center;
}
.footer-box {
  width: 100%;
  float: none;
}
.footer-box:first-child {
  margin-bottom: 40px;
}
.footer-box address p {
  color: #666;
  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: #666;
  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;
  line-height: 26px;
  background-image: url("../../images/example04/title_bg.jpg");
  background-clip: text;
 -webkit-background-clip: text;
 color: transparent;
}
.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%;
  }
}