@charset "UTF-8";

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}


/* ============================================
  共通
============================================ */

html {
  overflow-x: hidden;
}

body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  color: #333;
  line-height: 1.8;
  font-style: normal;
  letter-spacing: 0;
  min-width: 930px;
  height: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
       -o-box-sizing: border-box;
      -ms-box-sizing: border-box;
          box-sizing: border-box;
}

a,
a:visited,
a:hover {
  color: inherit;
  text-decoration: none;
  outline: none;
  border: none;
}

img {
  max-width: 100%;
}

/* pc sp
--------------------------------- */
.pc {
  display: inline-block;
}
.sp {
  display: none;
}
.sp-min {
  display: none;
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: inline-block;
  }
}
@media only screen and (max-width: 480px) {
  .sp-min {
    display: inline-block;
  }
}

/* ease
--------------------------------- */
.ease,
.ease *,
.ease *::after,
.ease *::before {
  -webkit-transition: .2s all ease;
     -moz-transition: .2s all ease;
      -ms-transition: .2s all ease;
       -o-transition: .2s all ease;
          transition: .2s all ease;
}

/* opacity
--------------------------------- */
.opacity a:hover {
  opacity: 0.7;
}

/* container
--------------------------------- */
.container2 {
  max-width: 930px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* clearfix
--------------------------------- */
.clearfix {
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  line-height: 0;
  content: "";
}
.clearfix:after {
  clear: both;
}

/* font
--------------------------------- */
.bold {
  font-weight: bold;
}
.red {
  color: #c40001;
}

/* ============================================
  mainContents
============================================ */
.mainContents {
  display: block;
  /* padding-top: 70px; */
}
.bg_gray {
  background: #f6f6f6;
}

/* ============================================
  @media max-767
============================================ */
@media only screen and (max-width: 767px) {

  body {
    min-width: 100%;
  }
}

/* section
--------------------------------- */
.section {
  padding: 80px 0;
}

/* sec_ttl
--------------------------------- */
.sec_ttl {
  font-size: 30px;
  text-align: center;
  padding-bottom: 60px;
}
.sec_ttl h2 {
  padding-bottom: 18px;
}
.sec_ttl::after {
  display: block;
  margin: auto;
  content: "";
  width: 70px;
  height: 1px;
  background: #888888;
}


/* two-block-list
--------------------------------- */
.two-block-list li {
  width: 48%;
  margin-left: 4%;
  margin-bottom: 40px;
}
.two-block-list li:nth-child(odd) {
  margin-left: 0;
}
.two-block-list .img {
  overflow: hidden;
  background: no-repeat center center / cover;
}
.two-block-list .img img {
  width: 100%;
  transition: all .5s ease;
}
.two-block-list a:hover .img img {
  transform: scale(1.1);
}
.two-block-list .text {
  font-size: 18px;
  line-height: 1.4;
  background: #fff;
  width: 80%;
  margin: -40px auto 0;
  padding: 12px;
  text-align: center;
  position: relative;
}
.two-block-list .text .en {
  display: block;
  font-size: 11px;
}
.two-block-list .text .small {
  display: block;
  font-size: 13px;
}
.two-block-list .text::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0%;
  transition: width 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: #c40001;
}
.two-block-list a:hover .text::after {
  width: 100%;
}

/* bg_fixed
--------------------------------- */
.bg_fixed {
  width: 100%;
  height: 280px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
}

/* sec_mv
--------------------------------- */
.sec_mv {
  background: url("./img/sale/bg_mv.jpg") repeat center center / cover;
  position: relative;
  height: calc(100vh - 70px);
}
.sec_mv .mv_catch {
  padding: 12vw 15px 0;
  font-size: 30px;
  text-align: center;
}
.sec_mv .main-scroll-btn {
  position: absolute;
  bottom: 100px;
  left: 50%;
  z-index: 2;
}
.sec_mv .main-scroll-btn a {
  position: absolute;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  text-decoration: none;
}
.sec_mv .main-scroll-btn a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 47px;
  margin-left: -12px;
  border: 1px solid #fff;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  box-sizing: border-box;
}
.sec_mv .main-scroll-btn a span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: '';
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sdb 2s infinite;
  animation: sdb 2s infinite;
  box-sizing: border-box;
}
.sec_mv .main-scroll-btn a span::after {
  position: absolute;
  bottom: -15px;
  left: 50%;
  width: 18px;
  height: 18px;
  content: '';
  margin-left: -9px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  box-sizing: border-box;
}
.sec_mv .main-scroll-btn a::after {
  position: absolute;
  bottom: -72px;
  left: 50%;
  width: 18px;
  height: 18px;
  content: '';
  margin-left: -9px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  box-sizing: border-box;
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* sec_features
--------------------------------- */
.bg_fixed01 {
  background-image: url("./img/sale/bg_fixed01.jpg");
}
.bg_fixed02 {
  background-image: url("./img/sale/bg_fixed02.jpg");
}
.bg_fixed03 {
  background-image: url("./img/sale/bg_fixed03.jpg");
}

.sec_features .sec_cont_ttl {
  font-size: 30px;
  position: relative;
  margin-bottom: 40px;
}
.sec_features .sec_cont_ttl::before {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background: #e6e6e6;
  position: absolute;
  left: 0;
  bottom: 0;
}
.sec_features .sec_cont_ttl::after {
  content: "";
  width: 60px;
  height: 3px;
  display: block;
  background: #c81432;
  position: absolute;
  left: 0;
  bottom: 0;
}

.sec_features .img-text {
  overflow: hidden;
}
.sec_features .img-text .img {
  width: 36%;
  float: left;
}
.sec_features .img-text .text {
  width: 60%;
  float: left;
  margin-left: 4%;
}
.sec_features .img-text + .text {
  margin-top: 30px;
}

.sec_features .sec_contents .desc p {
  margin-bottom: 40px;
}

.cont_detail_block {
  margin-bottom: 60px;
}
.sec_cont_sub_ttl {
  margin-bottom: 30px;
  font-size: 24px;
  line-height: 1.6;
}
.sec_cont_sub_ttl::before {
  content: "";
  display: inline-block;
  background: #214ba3;
  width: 4px;
  height: 24px;
  margin-right: 10px;
  margin-bottom: -2px;
}



/* ============================================
  @media max-767
============================================ */
@media only screen and (max-width: 767px) {

  .section {
    padding: 40px 0;
  }
  .sec_ttl {
    font-size: 20px;
    padding-bottom: 40px;
  }
  .sec_ttl::after {
    margin-top: 10px;
  }

  .two-block-list li {
    margin-bottom: 20px;
  }
  .two-block-list .text {
    width: 100%;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.6;
    padding: 8px 0;
  }
  .two-block-list .text .en,
  .two-block-list .text .small {
    font-size: 10px;
  }

  .bg_fixed {
    height: auto;
    background: none;
  }

  .sec_mv {
    height: auto;
    min-height: 400px;
  }
  .sec_mv .mv_catch {
    padding: 10vw 15px;
    font-size: 22px;
  }

  .sec_features .sec_cont_ttl {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .sec_features .sec_contents .desc {
    margin-bottom: 40px;
  }
  .sec_features .sec_contents .desc p {
    margin-bottom: 25px;
  }
  .cont_detail_block {
    margin-bottom: 40px;
  }
  .cont_detail_block:last-child {
    margin-bottom: 0;
  }
  .sec_cont_sub_ttl {
    font-size: 20px;
    margin-bottom: 25px;
  }
  .sec_cont_sub_ttl::before {
    height: 22px;
    margin-bottom: -4px;
  }
  .sec_features .img-text .img,
  .sec_features .img-text .text {
    width: 100%;
    float: none;
  }
  .sec_features .img-text .text {
    margin: 20px 0 0;
  }
}

/* aos settings
--------------------------------- */
body [data-aos] {
  transition-duration: 1s !important;
}