﻿@charset "UTF-8";
a {
  outline: none;
  opacity: 1;
  transition: all .3s;
}
a:hover {
  opacity: 0.8;
  transition: all .3s;
}
*:hover {
  transition: all .3s;
}
figure {
  margin: 0;
}
figure img {
  width: 100%;
  vertical-align: bottom;
}
body {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  background: linear-gradient(0deg, rgba(245, 245, 245, 1) 0%, rgba(204, 204, 204, 1) 100%);
  font-family: "Noto Sans Japanese";
}
#wrapper {
  overflow: hidden;
}
/*html {
  visibility: hidden;
}
html.wf-active {
  visibility: visible;
}*/
/*文字のアニメーション*/
.blur {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
.blurTrigger {
  opacity: 0;
}
.top {
  width: 100%;
  height: 100vh;
  position: relative;
}
.top .ttl {
  font-family: din-condensed, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
}
.top .ttl .logo {
  position: absolute;
  left: 0;
  right: 0;
  top: 20px;
  margin: auto;
  z-index: 1;
}
.top .ttl .logo img {
  width: 300px;
}
.top .ttl h1 {
  font-family: din-condensed, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 90px;
  letter-spacing: 10px;
  color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 120px;
  margin: auto;
  z-index: 1;
}
.top .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
}
.top .bg div {
  width: 33.33%;
  height: 100vh;
}
.top .bg div:nth-child(1) {
  background-image: url("../img/104_classic_12_top.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.top .bg div:nth-child(2) {
  background-image: url("../img/ezm_3_s_top.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.top .bg div:nth-child(3) {
  background-image: url("../img/556_series_top.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.top .scroll {
  font-family: din-condensed, sans-serif;
  font-weight: 400;
  font-style: normal;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
  padding: 0 0 80px;
  overflow: hidden;
  color: #fff;
  font-size: 16px;
  letter-spacing: 5px;
  text-align: center;
}
.scroll::after {
  content: '';
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  margin: auto;
  width: 1px;
  height: 80px;
  background: #fff;
}
.scroll::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  margin: auto;
  width: 1px;
  height: 80px;
  background: rgba(170, 170, 170, .4);
}
.scroll::after {
  animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.box .inner {
  width: 80%;
  max-width: 1200px;
  margin: 70px auto 50px;
  position: relative;
}
.box .img {
  width: 55%;
  height: 80vh;
  min-height: 500px;
  max-height: 650px;
}
.box:nth-child(odd) .img {
  margin: 0;
}
.box:nth-child(even) .img {
  margin: 0 0 0 auto;
}
.box:nth-child(1) .img {
  background-image: url("../img/104_classic_12.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.box:nth-child(2) .img {
  background-image: url("../img/ezm_3_s.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.box:nth-child(3) .img {
  background-image: url("../img/556_series_top.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.box:nth-child(odd) .txt {
  width: 40%;
  position: absolute;
  left: 52%;
  bottom: 70px;
  color: #fff;
  padding: 50px 5% 30px;
  background-color: rgba(17, 17, 17, 0.8);
  text-align: center;
}
.box:nth-child(even) .txt {
  width: 40%;
  position: absolute;
  right: 52%;
  bottom: 70px;
  color: #fff;
  padding: 50px 5% 30px;
  background-color: rgba(17, 17, 17, 0.8);
  text-align: center;
}
.box:nth-child(1) .txt {
  width: 500px;
  position: absolute;
  left: 45%;
}
.box:nth-child(3) .txt {
  padding: 50px 5%;
  bottom: 50px;
}
.box .txt h2 {
  font-family: din-condensed, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 80px;
  letter-spacing: 5px;
  margin: 0;
}
.box .txt p {
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 30px;
}
.box .txt .btn a {
  font-family: din-condensed, sans-serif;
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  letter-spacing: 5px;
  border: solid 1px #fff;
  border-radius: 5px;
  padding: 15px 0;
  width: 250px;
  text-align: center;
}
.box .txt .btn a:hover {
  opacity: 1;
  background-color: #fff;
  color: #111;
}
.box .txt .btn_box ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.box .txt .btn_box ul li {
  width: 46%;
  margin: 0 2% 10px;
}
.box .txt .btn_box ul li a {
  width: 100%;
}
.box .txt .btn_box ul li .btn {
  margin: 0;
  padding: 0;
}
.box .txt .btn_box ul li.blue .btn a {
  background-color: #a0b9cf;
  font-size: 15px;
}
.box .txt .btn_box ul li.green .btn a {
  background-color: #b6bf92;
  font-size: 15px;
}
.box .txt .btn_box ul li.red .btn a {
  background-color: #e2bbce;
  font-size: 15px;
}
.box .txt .btn_box ul li.yellow .btn a {
  background-color: #d8bea5;
  font-size: 15px;
}
.box:nth-child(1) {
  background-image: url("../img/104_classic_12_name.png");
  background-size: 100%;
  background-position: center 80px;
  background-repeat: no-repeat;
}
.box:nth-child(2) {
  background-image: url("../img/ezm_3_s_name.png");
  background-size: 100%;
  background-position: center 80px;
  background-repeat: no-repeat;
}
.box:nth-child(3) {
  background-image: url("../img/556_series_name.png");
  background-size: 100%;
  background-position: center 50px;
  background-repeat: no-repeat;
}
small {
  font-family: din-condensed, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  font-size: 10px;
  letter-spacing: 2px;
  color: #111;
  padding: 20px 0;
  display: block;
}
@media screen and (max-width:1050px) {
  .top {
    min-height: 600px;
  }
  .top .scroll {
    letter-spacing: 3px;
  }
  .top .ttl {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .top .bg {
    flex-wrap: wrap;
  }
  .top .bg div {
    width: 50%;
    height: 55vh;
    min-height: 330px;
  }
  .top .bg div:nth-child(3) {
    width: 100%;
    height: 45vh;
    min-height: 280px;
  }
  .top .ttl .logo img {
    width: 240px;
  }
  .top .ttl h1 {
    font-size: 40px;
    letter-spacing: 5px;
    position: absolute;
    bottom: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
  }
  .box .inner {
    width: 100%;
    max-width: 100%;
    margin: 50px auto 30px;
    padding-bottom: 190px;
  }
  .box:nth-child(3) {
    padding-bottom: 15px;
  }
  .box .img {
    width: 90%;
    height: 50vh;
    min-height: 250px;
    max-height: 300px;
  }
  .box:nth-child(3) .img {
    width: 90%;
    height: 50vh;
    min-height: 350px;
    max-height: 400px;
  }
  .box:nth-child(odd) .txt {
    width: 85%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 20px;
    padding: 25px 2% 15px;
  }
  .box:nth-child(even) .txt {
    width: 85%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 20px;
    padding: 25px 2% 15px;
  }
  .box:nth-child(3) .txt {
    bottom: -30px;
    padding: 25px 2%;
  }
  .box .txt h2 {
    font-size: 38px;
    letter-spacing: 3px;
    margin: 0;
  }
  .box .txt p {
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }
  .box .txt .btn a {
    font-size: 13px;
    letter-spacing: 3px;
    padding: 10px 0;
    width: 170px;
  }
  .box .txt .btn_box ul li {
    margin: 0 2% 10px;
  }
  .box .txt .btn_box ul li a {
    width: 100%;
  }
  .box:nth-child(1) {
    background-size: auto 15%;
    background-position: right bottom;
  }
  .box:nth-child(2) {
    background-size: auto 15%;
    background-position: left bottom;
  }
  .box:nth-child(3) {
    background-size: auto 15%;
    background-position: right bottom;
  }
}