@charset "UTF-8";
/* Variables
****************************************************************************/
/* Media Queries
****************************************************************************/
/* Utilities
****************************************************************************/
/*clearfix*/
/* set some element's line-height to 1em because of adjust text margin */
/*set fontfamily noto 700*/
/*set fontfamily*/
/* Section - Top
****************************************************************************/
.sec-top {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.sec-top .wrapper {
  padding-bottom: 0;
}

.sec-top .typo {
  display: none;
  position: absolute;
  width: 100%;
  z-index: 3;
  top: calc(50% - 30vh);
}

.sec-top .typo span {
  display: block;
  width: 37px;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .sec-top .typo span {
    width: 32px;
  }
}

.sec-top .bg-list {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  background: #000;
}

.sec-top .bg-list li {
  display: none;
  position: relative;
}

.sec-top .bg-list li span {
  width: 100%;
  position: absolute;
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 1000px;
}

.sec-top .bg-list .bg1 span {
  background-image: url(../../img/index_kv01.jpg);
}

.sec-top .bg-list .bg2 span {
  background-image: url(../../img/index_kv02.jpg);
}

.sec-top .bg-list .bg3 span {
  background-image: url(../../img/index_kv03.jpg);
}

.sec-top .btn-concept {
  position: absolute;
  bottom: 0;
  width: 100%;
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
}

.sec-top .btn-concept a:link {
  text-decoration: none;
}

.sec-top .btn-concept a:hover {
  text-decoration: none;
}

.sec-top .btn-concept a:visited {
  text-decoration: none;
}

.sec-top .btn-concept.intro {
  -webkit-transform: translateY(110px);
          transform: translateY(110px);
}

.sec-top .btn-concept a {
  background: #ca0010;
  display: table;
  margin: 0 auto;
  width: 108px;
  height: 108px;
}

.sec-top .btn-concept span {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
  font-size: 1.3rem;
}

@media only screen and (max-width: 768px) {
  .sec-top .btn-concept a {
    width: 80px;
    height: 80px;
  }
  .sec-top .btn-concept a span {
    font-size: 1.1rem;
  }
}

@media print, screen and (min-width: 769px) and (max-width: 9999px) {
  .sec-top .btn-concept a {
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
  }
  .sec-top .btn-concept a:hover {
    background: #fff;
    border: 1px solid #ca0010;
  }
  .sec-top .btn-concept a:hover span {
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
    color: #ca0010;
  }
}

/* Section - Concept
****************************************************************************/
.sec-concept {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 9;
  background: #fff;
  width: 100%;
}

.sec-concept .btn-close, .sec-concept .btn-next, .sec-concept .btn-back {
  position: absolute;
  z-index: 108;
}

@media print, screen and (min-width: 769px) and (max-width: 9999px) {
  .sec-concept .btn-close, .sec-concept .btn-next, .sec-concept .btn-back {
    cursor: pointer;
  }
  .sec-concept .btn-close:hover, .sec-concept .btn-next:hover, .sec-concept .btn-back:hover {
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
    opacity: 0.7;
  }
}

.sec-concept .btn-close {
  right: 30px;
  top: 30px;
  padding: 10px;
}

.sec-concept .btn-close img {
  width: 28px;
  height: 28px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .sec-concept .btn-close {
    right: 10px;
    top: 10px;
    padding: 10px;
  }
  .sec-concept .btn-close img {
    width: 22px;
  }
}

.sec-concept .btn-next {
  bottom: 4vh;
  padding: 10px;
  left: calc(50% - 23px);
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  /*animation: next-loop 5s infinite;*/
}

.sec-concept .btn-next span {
  display: block;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 10px;
  font-size: 1.6rem;
  color: #fff;
}

.sec-concept .btn-next img {
  width: 36px;
}

.sec-concept .btn-next.hide {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  opacity: 0;
  cursor: default;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .sec-concept .btn-next {
    bottom: 2.5vh;
  }
  .sec-concept .btn-next span {
    font-size: 1.24rem;
    margin-bottom: 0px;
  }
  .sec-concept .btn-next img {
    width: 24px;
  }
}

@-webkit-keyframes next-loop {
  0% {
  }
  80% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  90% {
    -webkit-transform: translateY(14px);
            transform: translateY(14px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes next-loop {
  0% {
  }
  80% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  90% {
    -webkit-transform: translateY(14px);
            transform: translateY(14px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.sec-concept .btn-back {
  bottom: 4vh;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 10px 0;
  text-align: center;
  width: 160px;
  display: none;
  left: calc(50% - 80px);
  line-height: 1em;
  color: #fff;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

@media print, screen and (min-width: 769px) and (max-width: 9999px) {
  .sec-concept .btn-back {
    cursor: pointer;
  }
}

.sec-concept .block {
  position: absolute;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: none;
}

.sec-concept .block .catch {
  position: absolute;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  -webkit-filter: blur(0);
          filter: blur(0);
}

.sec-concept .block .catch.intro {
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

.sec-concept .block .kan {
  position: absolute;
  -webkit-transition-duration: 1.5s;
          transition-duration: 1.5s;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.sec-concept .block .kan.intro {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  opacity: 0;
}

.sec-concept .block .lead {
  position: absolute;
  font-size: 1.5rem;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  color: #fff;
  text-align: center;
  line-height: 2em;
  text-shadow: 0 0 2px #000;
  -webkit-transition-duration: 1.5s;
          transition-duration: 1.5s;
  tramsition-delay: 0.7s;
}

.sec-concept .block .lead.intro {
  opacity: 0;
}

.sec-concept .block .bg {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition-duration: 20s;
          transition-duration: 20s;
}

.sec-concept .block .bg.intro {
  -webkit-transform: scale(1);
          transform: scale(1);
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .sec-concept .block .lead {
    font-size: 1.2rem;
    line-height: 1.7em;
  }
}

.sec-concept .story0 {
  background: #fff;
}

.sec-concept .story0 .catch {
  width: 33px;
  margin: 20vh auto;
  top: 15vh;
  left: calc(50% - 16px);
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .sec-concept .story0 .catch {
    width: 28px;
    top: 10vh;
    left: calc(50% - 14px);
  }
}

.sec-concept .story1 {
  background: #000;
  z-index: 102;
}

.sec-concept .story1 .catch {
  width: 154px;
  top: 30vh;
  left: calc(50% - 74px);
}

.sec-concept .story1 .kan {
  top: 26vh;
  left: calc(50% - 119px);
  width: 238px;
}

.sec-concept .story1 .lead {
  width: 100%;
  top: 60vh;
}

.sec-concept .story1 .bg {
  background-image: url(../../img/sec_concept_01_bg.jpg);
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .sec-concept .story1 .catch {
    width: 110px;
    left: calc(50% - 55px);
  }
  .sec-concept .story1 .kan {
    top: 23vh;
    width: 194px;
    left: calc(50% - 97px);
  }
}

.sec-concept .story2 {
  z-index: 102;
}

.sec-concept .story2 .catch {
  width: 38px;
  top: 22vh;
  left: calc(50% - 16px);
}

.sec-concept .story2 .kan {
  top: 26vh;
  left: calc(50% - 119px);
  width: 238px;
}

.sec-concept .story2 .lead {
  width: 100%;
  top: 68vh;
}

.sec-concept .story2 .bg {
  background-image: url(../../img/sec_concept_02_bg.jpg);
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .sec-concept .story2 .catch {
    width: 28px;
    top: 15vh;
    left: calc(50% - 14px);
  }
  .sec-concept .story2 .kan {
    top: 20vh;
    width: 194px;
    left: calc(50% - 97px);
  }
  .sec-concept .story2 .bg {
    background-image: url(../../img/sec_concept_02_bg_sp.jpg);
  }
}

.sec-concept .story3 {
  z-index: 103;
}

.sec-concept .story3 .catch {
  width: 32px;
  top: 16vh;
  left: calc(50% - 16px);
}

.sec-concept .story3 .kan {
  top: 26vh;
  left: calc(50% - 119px);
  width: 238px;
}

.sec-concept .story3 .lead {
  width: 100%;
  top: 64vh;
}

.sec-concept .story3 .bg {
  background-image: url(../../img/sec_concept_03_bg.jpg);
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .sec-concept .story3 .catch {
    width: 28px;
    top: 5vh;
    left: calc(50% - 14px);
  }
  .sec-concept .story3 .kan {
    top: 22vh;
    width: 194px;
    left: calc(50% - 97px);
  }
  .sec-concept .story3 .lead {
    top: 62vh;
  }
  .sec-concept .story3 .bg {
    background-image: url(../../img/sec_concept_03_bg.jpg);
  }
}

.sec-concept .story4 {
  z-index: 103;
}

.sec-concept .story4 .catch {
  width: 32px;
  top: 22vh;
  left: calc(50% - 16px);
}

.sec-concept .story4 .kan {
  top: 26vh;
  left: calc(50% - 119px);
  width: 238px;
}

.sec-concept .story4 .lead {
  width: 100%;
  top: 64vh;
}

.sec-concept .story4 .bg {
  background-image: url(../../img/sec_concept_04_bg.jpg);
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .sec-concept .story4 .catch {
    width: 28px;
    top: 7vh;
    left: calc(50% - 14px);
  }
  .sec-concept .story4 .kan {
    top: 16vh;
    width: 194px;
    left: calc(50% - 97px);
  }
  .sec-concept .story4 .lead {
    top: 52vh;
  }
}
