@charset "utf-8";
/* ===================================================
	Concept CSS
====================================================== */
ul.menunav {
  display: flex;
  justify-content: center;
  margin: 50px 0;
  font-weight: bold;
}

ul.menunav li a {
  color: #333 !important;
  transition: all 0.3s;
}

ul.menunav li a:hover {
  opacity: 0.8;
  text-decoration: none;
}

ul.menunav li:not(:first-of-type) {
  margin-left: 30px;
}

ul.menunav li:not(:last-of-type) {
  padding-right: 30px;
  border-right: 1px solid #c0c0c0;
}

#contents_wrap {
  line-height: 2;
}

@media screen and (max-width: 600px) {
  #contents_wrap {
    line-height: 1.6;
  }
}
/* 共通 */
[class^="br_"] {
  display: none;
}
h2.cap {
  margin: 30px 0;
  line-height: 1.5;
}
.cap {
  font-size: 28px;
  font-weight: bold;
}
.slide_box {
  width: 50%;
  overflow: hidden;
}
.txt_box {
  width: 45%;
}
.txt_box p + p {
  margin-top: 25px;
}

/* スライダー */
.slick-slide {
  margin: 0 20px;
}
.slick-prev {
  right: calc(50% - 65px);
  display: none !important;
}
.slick-next {
  left: calc(50% - 65px);
}
.slick-next {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.5s;
  z-index: 1;
}
.slick-prev:before,
.slick-next:before {
  content: "";
  background: url(../img/link_arrow.svg) no-repeat center / contain;
  width: 23px;
  height: 15px;
  position: absolute;
  top: calc(50% - 7.5px);
  left: calc(50% - 11.5px);
}
.slick-next:before {
  transform: rotate(180deg);
}
.slick-prev:hover,
.slick-next:hover {
  background: #fff;
  opacity: 0.9;
}
.slide_bottom {
  width: calc(50% - 20px);
  margin-left: auto;
  font-size: 12px;
  line-height: 1;
}
.slick-slide img {
  width: 100% !important;
  min-height: 678px;
}

@media screen and (min-width: 1600px) {
  h2.cap {
    margin: 60px 0;
  }
  .txt_box p + p {
    margin-top: 50px;
  }
}

@media screen and (min-width: 601px) {
  .br_pc {
    display: block !important;
  }
}

@media screen and (max-width: 600px) {
  .br_600 {
    display: block;
  }
  h2.cap {
    margin: 0 0 15px;
    font-size: 22px;
  }
  .slide_bottom {
    width: 100%;
    margin-top: 5px;
    text-align: center;
  }
  .txt_box {
    width: 100%;
    padding: 30px 0 0;
  }
  .txt_box p + p {
    margin-top: 15px;
  }
  .slick-prev {
    display: block !important;
  }
  .slick-prev,
  .slick-next {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.5s;
    z-index: 1;
  }
  .slick-prev {
    right: 3.5%;
    left: auto;
  }
  .slick-next {
    left: 3.5%;
  }
  .slick-prev:before,
  .slick-next:before {
    content: "";
    background: url(../img/link_arrow.svg) no-repeat center / contain;
    width: 14px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 7px);
  }
  .slick-slide {
    margin: 0 10px;
  }
  .slick-slide img {
    min-height: 0;
  }
}

@media screen and (max-width: 480px) {
  .br_480 {
    display: block;
  }
}

/* ---------------------------------------------------
  lead
------------------------------------------------------ */
.lead {
  padding: 65px 0 90px;
  text-align: center;
}
.lead .cap {
  margin: 0 0 25px;
}

@media screen and (max-width: 600px) {
  .lead {
    padding: 40px 0;
  }
  .lead .cap {
    margin-bottom: 15px;
    font-size: 22px;
    line-height: 1.6;
  }
  .lead p:not([class]) {
    text-align: left;
  }
}

/* ---------------------------------------------------
  sec1
------------------------------------------------------ */
#sec1 {
  display: flex;
  justify-content: space-between;
  max-width: calc(100% - 60px);
  margin: 0 auto 120px 0;
  overflow: hidden;
  overflow: hidden;
}
/* #sec1 .slide_box { margin-left: -20%; } */
#sec1 .txt_box {
  padding: 0 4%;
}

#sec1 li {
  text-align: right;
}

/* ---------------------------------------------------
  sec2
------------------------------------------------------ */
#sec2 {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  max-width: calc(100% - 60px);
  margin: 0 0 120px auto;
  overflow: hidden;
}
/* #sec2 .slide_box {
  margin-right: -20%;
} */
#sec2 .txt_box {
  padding: 0 4%;
}

@media screen and (max-width: 600px) {
  #sec1,
  #sec2 {
    flex-direction: column;
    max-width: none;
    margin: 0 auto 60px;
  }
  #sec1 .slide_box,
  #sec2 .slide_box {
    width: 100%;
    margin: 0 auto;
  }
  #sec1 .txt_box,
  #sec2 .txt_box {
    width: 92%;
    margin: 0 auto;
    padding: 30px 0 0;
  }
}

/* ---------------------------------------------------
  sec3
------------------------------------------------------ */
#sec3 {
  position: relative;
  margin: 0 auto 80px;
  height: 906px;
  background: url(../../concept/img/sec3_bg.jpg) no-repeat center / cover;
}
#sec3 p {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  line-height: 2.8;
}

@media screen and (max-width: 600px) {
  #sec3 {
    height: 400px;
    margin: 0 auto 40px;
    background: url(../../concept/img/sec3_bg_sp.jpg) no-repeat center / cover;
  }
  #sec3 p {
    width: 96%;
    line-height: 2.2;
  }
}

@media screen and (max-width: 480px) {
  #sec3 p {
    line-height: 1.9;
  }
}

/* ---------------------------------------------------
  sec4
------------------------------------------------------ */
#sec4 {
  padding-bottom: 120px;
}
#sec4 h2 {
  margin-bottom: 50px;
  text-align: center;
  line-height: 1;
}
#sec4 h2 span {
  display: block;
}
#sec4 h2 span:not([class]) {
  margin-top: 20px;
  font-weight: bold;
}
#sec4 h2 .en {
  font-size: 50px;
  letter-spacing: 3px;
}
#sec4 .img {
  position: relative;
}
#sec4 .img .ofi {
  display: block;
  margin: 0 auto;
}

/* 再生ボタン */
#movie_open {
  display: block;
  position: absolute;
  top: calc(50% - 50px);
  left: calc(50% - 50px);
  width: 100px;
  margin: 0 auto;
  font-size: 13px;
  color: #fff;
  transition: all 0.5s;
}
#movie_open:hover {
  text-decoration: none;
  opacity: 0.75;
}
#movie_open > span:not([class]) {
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  margin: 0 auto 7px;
  border-radius: 50%;
  border: 2px solid #fff;
}
#movie_open > span:not([class]):after {
  content: " ";
  position: absolute;
  top: calc(50% - 12px);
  left: calc(50% - 8px);
  border-width: 12px 20px 12px 24px;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
}
#movie_open .en {
  font-size: 18px;
}

/* 動画 */
#movie_area {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 105;
  background: #000;
  overflow: hidden;
  text-align: center;
}
#movie {
  width: 100%;
  height: 100%;
}
#movie_close {
  width: 48px;
  height: 0;
  padding: 48px 0 0;
  position: absolute;
  top: 30px;
  right: 30px;
  border: 2px solid #fff;
  border-radius: 50%;
  overflow: hidden;
}
#movie_close:before,
#movie_close:after {
  content: "";
  width: 32px;
  height: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
}
#movie_close:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
#movie_close:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (max-width: 600px) {
  #sec4 {
    width: 92%;
    padding-bottom: 60px;
  }
  #sec4 h2 {
    margin-bottom: 30px;
  }
  #sec4 h2 span:not([class]) {
    margin-top: 10px;
  }
  #sec4 h2 .en {
    font-size: 35px;
  }
}

/* ---------------------------------------------------
  sec5
------------------------------------------------------ */
#sec5 {
  padding: 0 0 120px;
  background: #f8f8f6;
}
#sec5 .tit_1 {
  margin: 0 0 70px;
  text-align: center;
  overflow: hidden;
}
#sec5 .tit_1 .en {
  color: #e2e2d3;
  letter-spacing: 25px;
}
#sec5 > div {
  display: flex;
  justify-content: space-between;
  max-width: 1300px;
  width: 94%;
  margin: 0 auto;
}
#sec5 .txt_box {
  width: calc(94% - 340px);
}

@media screen and (max-width: 600px) {
  #sec5 {
    padding: 0 0 80px;
  }
  #sec5 .tit_1 {
    margin: 0 0 30px;
  }
  #sec5 .tit_1 .en {
    letter-spacing: 4px;
  }
  #sec5 > div {
    flex-direction: column;
  }
  #sec5 > div img {
    height: 300px;
    margin: 0 auto;
    object-position: 0 3%;
    object-fit: contain;
  }
  #sec5 .txt_box {
    width: 100%;
  }
}

/* .bnr_col */
.bnr_col {
  margin: 100px auto 0;
}
.bnr_col a {
  display: block;
}

@media screen and (max-width: 600px) {
  .bnr_col {
    margin: 50px auto;
  }
}
