/*--------------------------

top.css

---------------------------*/
/*--------------------------
main_visual
---------------------------*/
.slider li {
  position: relative;
}
.slider li .copy_area {
  width: 84%;
  height: 50%;
  margin: auto;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 25%;
  display: flex;
  align-items: flex-end;
}
.slider li .copy_area.center {
  align-items: center;
}
.slider li .copy_area p {
  color: #ffffff;
  font-size: 40px;
  font-size: 2.74vw;
  font-weight: 500;
  line-height: 190%;
  letter-spacing: -0.03em;
}
.slider li .copy_area p span {
  display: block;
}
.slider li .copy_area p span.large {
  font-size: 65px;
  font-size: 4.45vw;
}
.slider .slick-slide img {
  width: 100%;
}
.slider .slick-prev,
.slider .slick-next {
  font-size: 0px;
  line-height: 0px;
  border: none;
  outline: none;
  width: 30px;
  height: 200px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.5);
  background-image: url(../image/top/ico_mv_arrow_l.png);
  background-position: center center;
  background-repeat: no-repeat;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.slider .slick-prev:before,
.slider .slick-next:before {
  display: none;
}
.slider .slick-prev:hover,
.slider .slick-next:hover {
  background-color: rgba(255, 255, 255, 0.6);
}
.slider .slick-next {
  left: auto;
  right: 0;
  transform: rotateZ(180deg);
}
.slider .slick-dots {
  width: 100%;
  padding-bottom: 40px;
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: center;
}
.slider .slick-dots li {
  padding: 0 5px;
}
.slider .slick-dots li button {
  font-size: 0px;
  line-height: 0px;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  outline: none;
  width: 40px;
  height: 3px;
  cursor: pointer;
}
.slider .slick-dots li.slick-active button {
  background-color: white;
}
@media only screen and (max-width: 768px) {
  .slider li .copy_area {
    bottom: 12%;
  }
  .slider li .copy_area p span {
    font-size: 4.8vw;
    line-height: 1.6;
  }
  .slider li .copy_area p span.large {
    font-size: 8vw;
    line-height: 1.2;
  }
  .slider .slick-dots {
    padding-bottom: 6.5%;
  }
  .slider .slick-dots li button {
    width: 40px;
  }
}

/*--------------------------
msg_section
---------------------------*/
.msg_section .inner {
  max-width: 1170px;
  padding: 0;
}
.msg_section .text_area {
  text-align: center;
  background-image: url(../image/top/bg_map.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 80px 30px;
}
.msg_section .text_area p {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 175%;
}
.msg_section .text_area .large {
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 130%;
}
@media only screen and (max-width: 768px) {
  .msg_section .text_area {
    padding: 50px 15px;
  }
  .msg_section .text_area p {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .msg_section .text_area .large {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

/*--------------------------
pickup_section
---------------------------*/
.pickup_section .row {
  text-align: right;
  max-width: 1400px;
  margin: 0 auto;
  padding: 110px 0;
  background: #2b2b2b;
  background-size: cover;
  background-position: center;
}
.pickup_section .row .text_area {
  color: #ffffff;
  text-align: left;
  width: 100%;
  max-width: 585px;
  padding: 0 0 0 50px;
  display: inline-block;
}
.pickup_section .row .text_area_ttl {
  font-size: 60px;
  font-size: 6.0rem;
  font-weight: 500;
  font-feature-settings: 'palt';
  letter-spacing: 0.02em;
  margin: 0 0 14px;
}
.pickup_section .row .text_area_txt {
  font-size: 17px;
  font-size: 1.7rem;
  letter-spacing: 0.025em;
  line-height: 180%;
}
.pickup_section .row .text_area_btn {
  color: #ffffff;
  font-size: 20px;
  font-size: 2.0rem;
  letter-spacing: 0.04em;
  text-align: center;
  border: solid 1px #ffffff;
  margin: 44px 0 0;
  padding: 10px 0;
  position: relative;
  display: block;
  max-width: 270px;
  transition: all 0.2s ease-in-out;
}
.pickup_section .row .text_area_btn span {
  position: relative;
  z-index: 2;
}
.pickup_section .row .text_area_btn::before {
  content: '';
  background: #ffffff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.pickup_section .row .text_area_btn::after {
  content: '';
  background-image: url(../image/top/arrow_pickup_01.png);
  width: 43px;
  height: 14px;
  margin: auto;
  position: absolute;
  top: 0;
  right: -21px;
  bottom: 0;
  z-index: 2;
}
.pickup_section .row .text_area_btn:hover {
  color: #000000;
  opacity: 1;
}
.pickup_section .row .text_area_btn:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.pickup_section .row .text_area_btn:hover::after {
  background-image: url(../image/top/arrow_pickup_02.png);
}
.pickup_section .row.pickup01 {
  text-align: left;
  background-image: url(../image/top/bg_pickup_01.jpg);
  position: relative;
}
.pickup_section .row.pickup01::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 40px;
  background: rgba(0, 0, 0, 0.3);
}
/* switch 02.jpg and 03.jpg*/
.pickup_section .row.pickup02 {
  background-image: url(../image/top/bg_pickup_03.jpg);
  position: relative;
}
.pickup_section .row.pickup02::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 40px;
  background: rgba(0, 0, 0, 0.3);
}
.pickup_section .row.pickup03 {
  text-align: left;
  background-image: url(../image/top/bg_pickup_02.jpg);
  position: relative;
}
.pickup_section .row.pickup03::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 40px;
  background: rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 768px) {
  .pickup_section .row {
    text-align: center;
    padding: 40px 0;
  }
  .pickup_section .row .text_area {
    padding: 0 15px;
  }
  .pickup_section .row .text_area_ttl {
    font-size: 30px;
    font-size: 3.0rem;
  }
  .pickup_section .row .text_area_txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .pickup_section .row .text_area_btn {
    font-size: 12px;
    font-size: 1.2rem;
    max-width: 130px;
    margin: 44px 0 0 auto;
  }
  .pickup_section .row.pickup01::after {
    height: 25px;
  }
  .pickup_section .row.pickup02 {
    text-align: center;
  }
  .pickup_section .row.pickup02::after {
    height: 25px;
  }
  .pickup_section .row.pickup03::after {
    height: 25px;
  }
}

/*--------------------------
news_section
---------------------------*/
.news_section {
  padding: 60px 0 80px;
}
.news_section .inner {
  max-width: 965px;
}
.news_section .section_ttl {
  font-size: 46px;
  font-size: 4.6rem;
  font-weight: 500;
  font-feature-settings: 'palt';
  letter-spacing: 0.02em;
  text-align: center;
  margin: 0 0 30px;
}
.news_section .pager {
  margin: 30px 0 50px;
}
@media only screen and (max-width: 768px) {
  .news_section {
    padding: 50px 0 80px;
  }
  .news_section .inner {
    padding: 0 30px;
  }
  .news_section .section_ttl {
    font-size: 36px;
    font-size: 3.6rem;
    margin: 0 0 20px;
  }
  .news_section .pager {
    margin: 30px 0 50px;
  }
}
