@charset "utf-8";

/* --------------------------------------------
  #main-visual
-------------------------------------------- */

#main-visual {
  position: relative;
  overflow: hidden;
}
#main-visual .poster {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  background: url(/design_technology/craftsmanship/img/main_poster.jpg) no-repeat center center / cover;
  transition: all 2s ease-out 1.4s;
}
#main-visual.active .poster {
  opacity: 0;
  transform: scale(1.2);
}
#main-visual video {
  opacity: 0;
  transition: opacity 2s ease-out 3.4s;
}
#main-visual.active video {
  opacity: 1;
}
#main-visual h1 {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border: solid 44px rgba(8,29,120,0.6);
  background: rgba(0,0,0,0.4);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4;
}

@media print, screen and (min-width: 768px){
  #main-visual {
    height: calc(100vh - 98px);
  }
  #main-visual video {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    transform: translate(-50%,-50%);
  }
  #main-visual video.type1 {
    width: 100vw;
    height: calc(100vw * 1080 / 1920);
  }
  #main-visual video.type2 {
    width: calc((100vh - 98px) * 1920 / 1080);
    height: calc(100vh - 98px);
  }
  #main-visual h1 img {
    max-width: 80%;
  }
}

@media print, screen and (max-width: 767px){
  #main-visual h1 {
    border-width: calc(40 / 767 * 100vw);
  }
  #main-visual h1 img {
    width: 70%;
  }
}

@media print, screen and (max-width: 767px) {
  #main-visual {
    width: 100%;
    height: calc(828 / 767 * 100vw);
  }
  #main-visual video {
    width: auto;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    z-index: 2;
    transform: translateX(-50%);
  }
}

/* --------------------------------------------
  .scroll
-------------------------------------------- */

.scroll {
  height: 25px;
  margin-top: -44px;
  text-align: center;
  position: relative;
  z-index: 10;
}
.scroll .bar1 {
  width: 2px;
  height: 124px;
  display: inline-block;
  overflow: hidden;
}
.scroll .bar2 {
  width: 100%;
  height: 200%;
  display: inline-block;
  background: #1fb7d7;
  transform: translateY(-100%);
  animation: scroll 2s ease 0s infinite;
}

@keyframes scroll {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(50%); }
}

@media print, screen and (max-width: 767px){
  .scroll {
    height: 13px;
    margin-top: calc(-40 / 767 * 100vw);
  }
  .scroll .bar1 {
    width: 1px;
    height: 72px;
  }
}

/* --------------------------------------------
  .main-lead
-------------------------------------------- */

.main-lead {
  margin-top: 118px;
  margin-bottom:  50px;
  text-align: center;
}
.main-lead p {
  font-size: 2.2rem;
  line-height: 1.54 !important;
  color: #444;
  font-weight: bold;
}
.main-lead p + p {
  margin-top: 1em;
}

@media print, screen and (max-width: 767px){
  .main-lead {
    margin-top: 70px;
    text-align: left;
  }
  .main-lead p {
    font-size: 1.8rem;
    line-height: 1.65 !important;
  }
}

/* --------------------------------------------
  #extra-effort
-------------------------------------------- */

#extra-effort {
  height: 857px;
  margin-top: 110px;
  position: relative;
}
#extra-effort .bg1 {
  width: 0;
  height: 306px;
  background: #808080;
  position: absolute;
  left: calc(785 / 1400 * 100%);
  top: 0;
  z-index: 2;
  transition: width 0.6s ease-in;
}
#extra-effort.active .bg1 {
  /*width: calc(615 / 1400 * 100%);　ie11でアニメーションしないのでコメントアウト */
  width: 50.4%;
}
#extra-effort .bg2 {
  width: 0;
  height: 790px;
  background: #ededed;
  position: absolute;
  right: calc(450 / 1400 * 100%);
  top: 67px;
  z-index: 4;
  transition: width 0.6s ease-in 0.2s;
}
#extra-effort.active .bg2 {
  /*width: calc(950 / 1400 * 100%);　ie11でアニメーションしないのでコメントアウト */
  width: 67.85%;
}
#extra-effort .cont-wrap {
  padding-top: 15px;
  position: relative;
  z-index: 6;
}
#extra-effort .cont-wrap .title {
  width: 384px;
  margin-bottom: 0;
}
#extra-effort .cont-wrap .copy {
  width: 725px;
  height: 99px;
  text-align: center;
  background: #000;
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}
#extra-effort .cont-wrap .desc {
  margin: 3em 0 2em;
  color: #fff;
  font-size: 2.0rem;
  color: #000;
  line-height: 1.8;
  font-weight: bold;
}
#extra-effort .cont-wrap .desc strong {
  color: #148470;
  font-weight: bold;
  font-size: 2.0rem;
}
#extra-effort .cont-wrap .more-wrap {
  margin-right: 35%;
  text-align: right;
}

#extra-effort .cont-wrap .pic {
  width: calc(1117 / 1220 * 100%);
  margin-top: 55px;
  display: block;
}

@media print, screen and (min-width: 768px){
  #extra-effort .cont-wrap .group1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
}

@media print, screen and (min-width: 1110px) and (max-width: 1220px){
  #extra-effort .cont-wrap .title {
    width: calc(384 / 1220 * 100vw);
  }
  #extra-effort .cont-wrap .copy {
    width: calc(725 / 1220 * 100vw);
    height: 99px;
    font-size: 2.0rem;
  }
}

@media print, screen and (max-width: 1109px){
  #extra-effort .cont-wrap .group1 {
    display: block;
  }
  #extra-effort .cont-wrap .copy {
    margin-top: 25px;
    height: 70px;
  }
}

@media print, screen and (max-width: 767px){
  #extra-effort {
    height: 797px;
  }
  #extra-effort .bg1 {
    height: 312px;
    left: calc(620 / 767 * 100%);
    transition-duration: 0.8s;
  }
  #extra-effort.active .bg1 {
    width: calc(147 / 767 * 100%);
  }
  #extra-effort .bg2 {
    height: 728px;
    right: calc(77 / 767 * 100%);
    top: 69px;
    transition-duration: 0.8s;
  }
  #extra-effort.active .bg2 {
    width: calc(690 / 767 * 100%);
  }
  #extra-effort .cont-wrap {
    padding-top: 38px;
  }
  #extra-effort .cont-wrap .title {
    width: 239px;
  }
  #extra-effort .cont-wrap .copy {
    width: auto;
    height: 95px;
    margin-top: 30px;
    padding: 18px 0 0 25px;
    box-sizing: border-box;
    text-align: left;
    font-size: 1.8rem;
    display: block;
  }
  #extra-effort .cont-wrap .desc {
    margin: 2em 2.5em 3em 0;
    font-size: 1.6rem;
    line-height: 1.7;
  }
  #extra-effort .cont-wrap .desc strong {
    font-size: 1.6rem;
    line-height: 2;
  }
  #extra-effort .cont-wrap .more-wrap {
    margin-right: 0;
    text-align: left;
  }
  #extra-effort .cont-wrap .pic {
    width: 100%;
    margin-top: 45px;
  }
}

/* --------------------------------------------
  #new-methods
-------------------------------------------- */

#new-methods {
  height: 870px;
  margin-top: 150px;
  position: relative;
}
#new-methods .bg1 {
  width: 0;
  height: 306px;
  background: #808080;
  position: absolute;
  right: calc(785 / 1400 * 100%);
  top: 565px;
  z-index: 2;
  transition: width 0.8s ease-in;
}
#new-methods.active .bg1 {
  /*width: calc(615 / 1400 * 100%);　ie11でアニメーションしないのでコメントアウト */
  width: 50.4%;
}
#new-methods .bg2 {
  width: 0;
  height: 800px;
  background: #ededed;
  position: absolute;
  left: calc(480 / 1400 * 100%);
  top: 0;
  z-index: 4;
  transition: width 0.8s ease-in;
}
#new-methods.active .bg2 {
  /*width: calc(920 / 1400 * 100%);　ie11でアニメーションしないのでコメントアウト */
  width: 65.71%;
}
#new-methods .cont-wrap {
  padding-top: 16px;
  position: relative;
  z-index: 6;
}
#new-methods .cont-wrap .title {
  width: 294px;
  margin-bottom: 0;
}
#new-methods .cont-wrap .copy {
  width: 725px;
  padding: 0 75px;
  height: 109px;
  box-sizing: border-box;
  background: #000;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}
#new-methods .cont-wrap .desc {
  margin: 3em 0 2em;
  color: #fff;
  font-size: 2.0rem;
  color: #000;
  line-height: 1.8;
  font-weight: bold;
}
#new-methods .cont-wrap .desc strong {
  color: #148470;
  font-weight: bold;
  font-size: 2.0rem;
}
#new-methods .cont-wrap .more-wrap {
  margin-right: 35%;
  text-align: right;
}

#new-methods .cont-wrap .pic-wrap {
  text-align: right;
}
#new-methods .cont-wrap .pic {
  width: calc(1117 / 1220 * 100%);
  margin-top: 55px;
  display: inline-block;
}

@media print, screen and (min-width: 768px){
  #new-methods .cont-wrap .group1 {
    display: flex;
    align-items: flex-end;
  }
  #new-methods .cont-wrap .copy-wrap {
    margin-left: 6%;
  }
}

@media print, screen and (min-width: 1110px) and (max-width: 1220px){
  #new-methods .cont-wrap .title {
    width: calc(294 / 1220 * 100vw);
  }
  #new-methods .cont-wrap .copy {
    width: calc(725 / 1220 * 100vw);
    height: 99px;
    font-size: 2.0rem;
  }
}

@media print, screen and (max-width: 1109px){
  #new-methods .cont-wrap .group1 {
    display: block;
  }
  #new-methods .cont-wrap .copy {
    margin-top: 25px;
    height: 90px;
  }
}

@media print, screen and (max-width: 767px){
  #new-methods {
    height: 721px;
    margin-top: 120px;
  }
  #new-methods .bg1 {
    height: 312px;
    left: calc(620 / 767 * 100%);
    right: auto;
    top: 0;
  }
  #new-methods.active .bg1 {
    width: calc(147 / 767 * 100%);
  }
  #new-methods .bg2 {
    height: 660px;
    right: 0;
    top: 61px;
    left: auto;
  }
  #new-methods.active .bg2 {
    width: calc(700 / 767 * 100%);
  }
  #new-methods .cont-wrap {
    padding-top: 30px;
  }
  #new-methods .cont-wrap .title {
    width: 183px;
    margin-left: 40px;
  }
  #new-methods .cont-wrap .copy {
    width: auto;
    height: 95px;
    margin-top: 30px;
    margin-left: -5%;
    padding: 18px 0 0 60px;
    box-sizing: border-box;
    text-align: left;
    font-size: 1.8rem;
    display: block;
  }
  #new-methods .cont-wrap .desc {
    margin: 2em 0 3em 9vw;
    font-size: 1.6rem;
    line-height: 1.7;
  }
  #new-methods .cont-wrap .desc strong {
    font-size: 1.6rem;
    line-height: 2;
  }
  #new-methods .cont-wrap .more-wrap {
    margin-right: 0;
  }
  #new-methods .cont-wrap .pic {
    width: 100%;
    margin-top: 45px;
  }
}
@media print, screen and (max-width: 480px){
#new-methods .cont-wrap .copy {
    height: 110px;
  }
}

@media print, screen and (max-width: 330px){
  #new-methods .cont-wrap .title {
    margin-left: 30px;
  }
  #new-methods .cont-wrap .copy {
    padding-left: 30px;
  }
}

/* --------------------------------------------
  #plus
-------------------------------------------- */

#plus {
  width: 100%;
  height: 502px;
  margin-top: 140px;
  position: relative;
}
#plus .bg1 {
  width: 0;
  height: 294px;
  background: #ededed;
  position: absolute;
  right: 33.92%;
  top: 16px;
  z-index: 4;
  transition: width 0.6s ease-in 0.2s;
}
#plus.active .bg1 {
  width: 66.08%;
}
#plus .bg2 {
  width: 0;
  height: 290px;
  background: #808080;
  position: absolute;
  left: 38.7%;
  top: 113px;
  z-index: 2;
  transition: width 0.6s ease-in;
}
#plus.active .bg2 {
  width: 61.3%;
}
#plus .cont-wrap {
  position: relative;
  z-index: 6;
}
#plus .cont-wrap .title {
  width: 400px;
  margin-bottom: 0;
}
#plus .cont-wrap .group1 {
  margin: -38px 0 0 450px;
}
#plus .cont-wrap .copy {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.3;
}
#plus .cont-wrap .more-wrap {
  margin-top: 30px;
}

#plus .cont-wrap .pic {
  width: 556px;
  margin: 47px 0 0 calc(104 / 1220 * 100%);
  display: block;
}

@media print, screen and (max-width: 767px){
  #plus {
    height: 510px;
    margin-top: 100px;
  }
  #plus .bg1 {
    width: 0;
    height: 450px;
    right: 5.87%;
    top: 48px;
  }
  #plus.active .bg1 {
    width: 94.13%;
  }
  #plus .bg2 {
    width: 49.6%;
    height: 327px;
    left: auto;
    right: 0;
    top: 207px;
  }
  #plus.active .bg2 {
    width: 49.6%;
  }
  #plus .cont-wrap .title {
    width: 290px;
  }
  #plus .cont-wrap .group1 {
    margin: 15px 0 0 0;
  }
  #plus .cont-wrap .copy {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.875;
  }
  #plus .cont-wrap .more-wrap {
    margin-top: 42px;
  }

  #plus .cont-wrap .pic {
    width: 72vw;
    margin: 40px 0 0 -5%;
  }
}

@media print, screen and (max-width: 340px){
  #plus .cont-wrap .title {
    width: 92%;
  }
}

/* --------------------------------------------
  #movie
-------------------------------------------- */

.movBg-wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.movBg-wrap::after {
  width: 4000px;
  height: 3000px;
  content: "";
  display: block;
  background: #636262;
  position: absolute;
  bottom: -2330px;
  left: 50%;
  transform: translateX(-50%) rotate(-10deg);
  transform-origin: center bottom;
  z-index: 2;
}

#movie {
  padding: 85px 0 100px;
}
#movie .inner {
  max-width: 1016px;
  margin: 0 auto;
  position: relative;
  z-index: 4;
}
#movie h2.headline {
  padding: 0 0.2em 0.1em;
  margin-bottom: 28px;
  font-size: 3.6rem;
  color: #148470;
  border-bottom: solid 7px #148470;
  display: inline-block;
  font-family: 'Roboto';
  font-weight: 500;
}
#movie .video-wrap {
  overflow: hidden;
  position: relative;
}
#movie .video-wrap::after {
  content: "";
  display: block;
  width: 200%;
  height: 100%;
  position: absolute;
  left: -200%;
  top: 0;
  z-index: 4;
  background: #000;
  transition: left 2s cubic-bezier(.8,.05,.43,1.04);
}
#movie .video-wrap.active::after {
  left: 100%;
}
#movie iframe {
  width: 100%;
  height: calc(1016px * 315 / 560);
  opacity: 0;
  transition: opacity 0.1s ease-out 1s;
  position: relative;
  z-index: 2;
  cursor: pointer;
  display: block;
}
#movie .video-wrap.active iframe {
  opacity: 1;
}

@media print, screen and (min-width: 768px) and (max-width: 1054px){
  #movie iframe {
    height: calc(571 / 1054 * 100vw);
  }
}

@media print, screen and (max-width: 767px){
  .movBg-wrap::after {
    width: 200vw;
    height: 100vw;
    bottom: -32vw;
  }

  #movie {
    padding: 40px 0 50px;
  }
  #movie h2.headline {
    margin-bottom: 20px;
    font-size: 2.0rem;
  }
  #movie iframe {
    height: calc(163 / 320 * 100vw);
  }
}

/* --------------------------------------------
  #culture
-------------------------------------------- */

@media print, screen and (min-width: 768px){
  #culture {
    height: 689px;
    margin-top: 160px;
    position: relative;
    background: url(/jp/design_technology/craftsmanship/img/bg_01.jpg) no-repeat center center / cover;
  }
  #culture .bg1 {
    height: 100%;
    width: 0px;
    margin-right: 790px;
    background: #1e3e7e;
    opacity: 0.7;
    position: absolute;
    z-index: 2;
    right: 0;
    top: 0;
    transition: width 0.8s ease-in, margin 0.8s ease-in;
  }
  #culture.active .bg1 {
    width: 790px;
    margin-right: 0;
  }
  #culture .text-wrap {
    width: 790px;
    padding: 0 92px 0 0;
    box-sizing: border-box;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
  }
  #culture .headline {
    width: 468px;
    margin: 0 0 55px 68px;
  }
  #culture .headline img {
    width: 100%;
  }
  #culture .copy {
    width: 100%;
    height: 99px;
    text-align: center;
    background: #000;
    color: #fff;
    font-size: 2.4rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #culture .desc {
    margin: 1.5em 0 1.8em 68px;
    color: #fff;
    font-size: 2.0rem;
    color: #fff;
    line-height: 1.6;
    font-weight: bold;
  }
  #culture .more-wrap {
    margin-left: 68px;
  }
}

@media print, screen and (min-width: 768px) and (max-width: 1220px){
  #culture .bg1 {
    margin-right: 590px;
  }
  #culture.active .bg1 {
    width: 590px;
  }
  #culture .headline {
    width: 380px;
  }
  #culture .copy {
    font-size: 2.0rem;
  }
  #culture .text-wrap {
    width: 590px;
  }
}

@media print, screen and (max-width: 767px){
  #culture {
    margin-top: 120px;
    padding-top: 233px;
    background: #f2e6ca url(/jp/design_technology/craftsmanship/img/bg_01_sp.jpg) no-repeat 0 0 / 100% auto;
    position: relative;
  }
  #culture .bg1 {
    width: 100%;
    height: 0;
    background: #1e3e7e;
    opacity: 0.7;
    position: absolute;
    left: 0;
    z-index: 2;
    transition: height 0.8s ease-in 0.2s;
  }
  #culture .bg1.active {
    height: calc(100% - 233px);
  }
  #culture .text-wrap {
    padding: 50px 4.5% 57px;
    position: relative;
    z-index: 4;
  }
  #culture .headline {
    width: 274px;
    margin: 0 auto;
  }
  #culture .headline img {
    width: 100%;
  }
  #culture .copy {
    width: auto;
    height: 95px;
    margin-top: 30px;
    margin-left: -5%;
    padding: 18px 0 0 55px;
    box-sizing: border-box;
    text-align: left;
    font-size: 1.8rem;
    display: block;
    background: #000;
    color: #fff;
    font-weight: bold;
  }
  #culture .desc {
    width: calc(600 / 767 * 100%);
    margin: 1.8em 0 2.5em 1em;
    font-size: 1.6rem;
    line-height: 1.7;
    color: #fff;
    font-weight: bold;
  }
  #culture .more-wrap {
    text-align: center;
  }
}

@media print, screen and (max-width: 330px){
  #culture .copy {
    padding-left: 45px;
  }
  #culture .desc {
    font-size: 1.4rem;
  }
}

/*
Card-Ling-custum*/

#rwd-content .rwd-lineup-area-list-link:after{
  display:  none;
}
@media print, screen and (min-width: 768px){
#rwd-content .rwd-lineup-area-list-link figure img.card-ttl {
    transition: none;
    z-index: 2;
}
#rwd-content .rwd-lineup-area-list-link:hover figure img.card-ttl {
    -webkit-transform: none;
    transform: none;
}

}