/*============================================================
	Top
============================================================*/
/*  mv
-------------------------------------------------*/
#mv {
  background: #000;
  padding: 0;
  height: 100vh;
  height: 100svh;
  position: relative;
}
#mv .mv__video {
  position: relative;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: all ease-in-out 0.6s;
  transition: all ease-in-out 0.6s;
}
#mv .mv__video::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  background-image: -webkit-radial-gradient(#000 20%, transparent 20%), -webkit-radial-gradient(#000 20%, transparent 20%);
  background-image: radial-gradient(#000 20%, transparent 20%), radial-gradient(#000 20%, transparent 20%);
  background-size: 6px 6px;
  background-position: 0 0, 3px 3px;
}
#mv .mv__video.topAnim {
  opacity: 1;
}
#mv .mv__video video {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
#mv .mv__ttl {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#mv .mv__ttl h1 {
  color: #fff;
  text-align: center;
  font-size: 3.75rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  #mv .mv__ttl h1 {
    font-size: 2.3076923077rem;
    line-height: 1.4;
  }
}
#mv .mv__ttl h1 span {
  display: block;
  color: #bf973d;
  font-size: 1.875rem;
  margin-top: 3.125rem;
}
@media only screen and (max-width: 767px) {
  #mv .mv__ttl h1 span {
    font-size: 1.1538461538rem;
    margin-top: 1.9230769231rem;
  }
}
#mv h1,
#mv span {
  opacity: 0;
  -webkit-transition: all ease-in-out 1s;
  transition: all ease-in-out 1s;
  -webkit-transform: translateY(1.25rem);
          transform: translateY(1.25rem);
}
#mv h1.topAnim,
#mv span.topAnim {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}
#mv .scroll {
  display: inline-block;
  color: #fff;
  font-size: 1.125rem;
  padding-bottom: 10.625rem;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: all ease-in-out 1s;
  transition: all ease-in-out 1s;
}
@media only screen and (max-width: 767px) {
  #mv .scroll {
    font-size: 0.9230769231rem;
    padding-bottom: 6.5384615385rem;
  }
}
#mv .scroll::after {
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  width: 1px;
  height: 9.375rem;
  background: #fff;
  -webkit-animation: scroll_down 1.5s cubic-bezier(1, 0, 0, 1) infinite;
          animation: scroll_down 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@media only screen and (max-width: 767px) {
  #mv .scroll::after {
    height: 5.7692307692rem;
  }
}
#mv .scroll.topAnim {
  opacity: 1;
}

/*  TOP contents
-------------------------------------------------*/
#top__intro {
  background: #000;
  position: relative;
}
#top__intro h2 {
  color: #bf973d;
  font-size: 1.875rem;
}
@media only screen and (max-width: 767px) {
  #top__intro h2 {
    font-size: 1.6153846154rem;
  }
}
@media only screen and (max-width: 767px) {
  #top__intro ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 2.3076923077rem;
  }
}
@media print, screen and (min-width: 768px) {
  #top__intro ul li {
    position: absolute;
    width: 24vw;
    height: 50%;
  }
  #top__intro ul li img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #top__intro ul li:first-child {
    left: 0;
    top: 0;
  }
  #top__intro ul li:nth-child(2) {
    left: 0;
    bottom: 0;
  }
  #top__intro ul li:nth-child(3) {
    right: 0;
    top: 0;
  }
  #top__intro ul li:last-child {
    right: 0;
    bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  #top__intro ul li {
    width: 25%;
  }
}
#top__intro p {
  text-align: center;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 3.125rem;
}
@media only screen and (max-width: 767px) {
  #top__intro p {
    margin-bottom: 2.3076923077rem;
  }
}
#top__intro .btn_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  #top__intro .btn_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media print, screen and (min-width: 768px) {
  #top__intro .btn_wrap a:not(:last-child) {
    margin-right: 3.125rem;
  }
}
@media only screen and (max-width: 767px) {
  #top__intro .btn_wrap a:not(:last-child) {
    margin-bottom: 1.1538461538rem;
  }
}
#top__news {
  position: relative;
}
#top__news::before, #top__news::after {
  position: absolute;
  content: "";
  width: 100%;
  z-index: -1;
  left: 0;
  right: 0;
}
#top__news::before {
  background: #bf973d;
  height: 100%;
  top: 0;
}
#top__news::after {
  height: 18.75rem;
  background: rgba(0, 0, 0, 0.1);
  bottom: 0;
  -webkit-clip-path: polygon(0 100%, 100% 0, 100% 100%);
          clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
@media only screen and (max-width: 767px) {
  #top__news::after {
    height: 11.5384615385rem;
  }
}
#top__news h2 {
  color: #fff;
}
#top__news h2::before {
  background: #fff;
}
#top__news ul li {
  background: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media print, screen and (min-width: 768px) {
  #top__news ul li {
    padding: 1.25rem 1.875rem;
  }
}
@media only screen and (max-width: 767px) {
  #top__news ul li {
    padding: 1.1538461538rem;
  }
}
#top__news ul li span {
  display: inline-block;
  width: 6.25rem;
  font-size: 0.75rem;
  padding: 0.3125rem;
  text-align: center;
  background: #000;
  color: #fff;
  margin-right: 1.25rem;
}
@media only screen and (max-width: 767px) {
  #top__news ul li span {
    font-size: 0.8461538462rem;
    margin-bottom: 0.5em;
  }
}
#top__news ul li small {
  color: #bf973d;
  margin-top: 0.3125rem;
}
@media print, screen and (min-width: 768px) {
  #top__news ul li small {
    font-size: 0.875rem;
    display: inline-block;
    width: 5.625rem;
  }
}
@media only screen and (max-width: 767px) {
  #top__news ul li small {
    font-size: 0.9230769231rem;
    display: block;
  }
}
#top__news ul li p {
  text-align: justify;
  line-height: 1.4;
}
@media print, screen and (min-width: 768px) {
  #top__news ul li p {
    margin-top: 0.3125rem;
    width: calc(100% - 13.125rem);
  }
}
#top__news ul li:not(:last-child) {
  margin-bottom: 1.25rem;
}
@media only screen and (max-width: 767px) {
  #top__news ul li:not(:last-child) {
    margin-bottom: 1.1538461538rem;
  }
}
#top__payment {
  position: relative;
}
#top__payment::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 18.75rem;
  background: rgba(191, 151, 61, 0.1);
  -webkit-clip-path: polygon(0 100%, 0 0, 100% 100%);
          clip-path: polygon(0 100%, 0 0, 100% 100%);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  #top__payment::after {
    height: 11.5384615385rem;
  }
}
#top__payment h2 {
  text-align: center;
  color: #bf973d;
}
#top__payment ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 3.125rem;
}
@media only screen and (max-width: 767px) {
  #top__payment ul {
    margin-bottom: 2.3076923077rem;
  }
}
#top__payment ul li {
  width: 5rem;
}
@media only screen and (max-width: 767px) {
  #top__payment ul li {
    width: 3.0769230769rem;
  }
}
#top__payment ul li:not(:last-child) {
  margin-right: 1.25rem;
}
@media only screen and (max-width: 767px) {
  #top__payment ul li:not(:last-child) {
    margin-right: 0.7692307692rem;
  }
}
#top__payment p {
  text-align: center;
  line-height: 1.8;
}
@media print, screen and (min-width: 768px) {
  #top__column ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  #top__column ul {
    width: 23.0769230769rem;
    margin: auto;
    position: relative;
  }
  #top__column ul .slide-arrow {
    position: absolute;
    top: 7.1153846154rem;
    border-right: solid 2px #bf973d;
    border-bottom: solid 2px #bf973d;
    width: 1.1538461538rem;
    height: 1.1538461538rem;
    cursor: pointer;
  }
  #top__column ul .slide-arrow.prev {
    left: -1.7307692308rem;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  #top__column ul .slide-arrow.next {
    right: -1.7307692308rem;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  #top__column ul .dots {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 2.3076923077rem;
  }
  #top__column ul .dots li {
    width: 3.0769230769rem;
  }
  #top__column ul .dots li button {
    width: 100%;
    height: 0.3846153846rem;
    background: #ddd;
    text-indent: -9999px;
  }
  #top__column ul .dots li.slick-active button {
    background: #bf973d;
  }
  #top__column ul .dots li:not(:last-child) {
    margin-right: 0.7692307692rem;
  }
}
#top__column ul li {
  width: 18.75rem;
}
@media print, screen and (min-width: 768px) {
  #top__column ul li:not(:last-child) {
    margin-right: 3.125rem;
  }
}
#top__column ul li a {
  display: block;
}
#top__column ul li a dl dt {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: justify;
  margin: 1.25rem 0 0.625rem;
}
@media only screen and (max-width: 767px) {
  #top__column ul li a dl dt {
    font-size: 1.1538461538rem;
    margin: 0.7692307692rem 0 0.3846153846rem;
  }
}
#top__column ul li a dl dt span {
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  color: #999;
  margin-bottom: 0.5em;
}
#top__column ul li a dl dd {
  color: #666;
  line-height: 1.4;
  text-align: justify;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
#top__column ul li a:hover {
  opacity: 1;
}
#top__column ul li a:hover dl dt {
  color: #bf973d;
}
#top__column .btn {
  margin: 3.125rem auto 0;
  border-color: #000;
  color: #000;
}
#top__column .btn::after {
  border-right-color: #000;
  border-bottom-color: #000;
}
#top__column .btn:hover {
  background: #000;
  color: #fff;
}
#top__column .btn:hover::after {
  border-right-color: #fff;
  border-bottom-color: #fff;
}