@charset "UTF-8";
/* ===============================================
    ! Foundation !
=============================================== */
/* =====================================
    * setting for animation style *
===================================== */
.js-fadeIn {
  opacity: 0;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  /* y軸方向に下げておくことで、下から上に上がってくるようなアニメーションになります */
  -webkit-transition: all 1500ms;
  transition: all 1500ms;
}

.js-fadeIn.js-scrollIn {
  opacity: 1;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* for animation of indicator */
.indicator-img1 {
  opacity: 0;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: 1000ms;
  transition: 1000ms;
}

.indicator-img2 {
  opacity: 0;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: 1100ms;
  transition: 1100ms;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.indicator-img3 {
  opacity: 0;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: 1300ms;
  transition: 1300ms;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.indicator.isActive .indicator-img1 {
  opacity: 1;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}

.indicator.isActive .indicator-img2 {
  opacity: 1;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}

.indicator.isActive .indicator-img3 {
  opacity: 1;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* =====================================
    * setting for base style    *
    *               of the page *
===================================== */
main {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic", "Open Sans", "メイリオ", sans-serif;
}

.main-area .main-inner {
  width: 100%;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

ul, li {
  list-style: none;
}

.bredlist {
  font-family: "quasimoda", "Hiragino Sans","ヒラギノ角ゴシック","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","メイリオ","Meiryo","ＭＳ Ｐゴシック", Osaka, sans-serif;
}

/* for responsive objects */
main .sp-component {
  display: block;
}

main .pc-component {
  display: none;
}

@media only screen and (min-device-width: 560px) {
  main .sp-component {
    display: none;
  }
  main .pc-component {
    display: block;
  }
}

/* ===============================================
    ! Layout !
=============================================== */
/* ===============================================
    ! Object !
=============================================== */
/* viewall__btn */
.checkall__btn {
  border: solid 1px #000000;
  display: block;
  height: 74px;
  width: 380px;
  /* style of text */
  color: #000;
  font-family: acme-gothic-compressed, sans-serif;
  font-size: 27px;
  letter-spacing: 3.24px;
  line-height: 74px;
  text-align: center;
}

/* ===============================================
    *  Style of PC *
=============================================== */
.jp {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic", "Open Sans", "メイリオ", sans-serif;
}

.en {
  font-family: quasimoda, sans-serif;
}

main {
  /* background-image: url("../../imgs/page_pc.jpg"); */
  background-position-x: 32px;
  background-position-y: -120px;
  background-repeat: no-repeat;
  background-size: 1400px;
}

.main-inner a:hover {
  opacity: 0.5 !important;
}

/*
    style of heading
*/
.heading {
  display: block;
  text-align: center;
}

.heading--top {
  background-color: #cfc6af;
  color: #fff;
  display: block;
  font-size: 17px;
  font-weight: 600;
  height: 28px;
  letter-spacing: 0.85px;
  line-height: 28px;
  margin: 70px auto 0;
  text-align: center;
  width: 190px;
}

.heading--top .jp {
  font-weight: 500;
}

.heading--middle {
  color: #afc18b;
  font-family: acme-gothic-compressed, sans-serif;
  font-size: 46px;
  letter-spacing: 2.76px;
  margin-top: 70px;
}

.heading--middle .autumn {
  color: #a36340;
  margin-left: 8px;
}

.heading--bottom {
  color: #301d16;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 5px;
  margin: 13px auto 0;
  padding-bottom: 13px;
  position: relative;
  width: 460px;
}

.heading--bottom::after {
  content: "";
  position: absolute;
  top: 47px;
  right: auto;
  bottom: 0;
  left: 0;
  background-image: url("../../imgs/border_bottom.png");
  background-repeat: no-repeat;
  background-size: 100%;
  width: 460px;
}

.heading-desc {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.6px;
  line-height: 2.22;
  margin-top: 40px;
}

.heading-desc .en {
  font-weight: normal;
}

/*
    style for each sec
*/
/* common style */
.sec-num {
  font-family: acme-gothic-compressed, sans-serif;
  font-size: 50px;
  letter-spacing: 3px;
  text-align: center;
}

.introduction__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 146px auto 0;
  padding-left: 60px;
}

.introduction__container .sec-item-img {
  display: block;
  position: relative;
  width: 200px;
}

.introduction__container--left {
  margin-right: 60px;
  padding-top: 37px;
}

.introduction__container--left .credit__container {
  color: #000;
  display: block;
  margin-top: 2px;
  text-align: center;
}

.introduction__container--left .credit__container .item-name {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2.8px;
  line-height: 1.7;
}

.introduction__container--left .credit__container .credit {
  font-family: quasimoda, sans-serif;
  font-size: 12px;
  letter-spacing: 1.2px;
  line-height: 1.83;
  margin: 10px 0 7px;
}

.introduction__container--left .credit__container .credit--discounted {
  font-family: quasimoda, sans-serif;
  color: #c10013;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.introduction__container--left .discount-rate {
  background-color: #c10013;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1.2px;
  margin-left: 10px;
  padding: 0 7px;
}

.introduction__container--right {
  margin-right: 60px;
}

/* style of summer & autumn */
.summer-txt {
  position: relative;
}

.summer-txt::before {
  content: "Summer Style";
  color: #afc18b;
  font-family: acme-gothic-compressed, sans-serif;
  font-size: 74px;
  letter-spacing: 0.3rem;
  line-height: 1;
  text-align: left;
  width: 183px;
  z-index: 2;
}

.summer-bg {
  position: relative;
}

.summer-bg:after {
  content: "";
  background-color: #d0d8c3;
  z-index: -1;
}

.autumn-txt {
  position: relative;
}

.autumn-txt::before {
  content: "Autumn Style";
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
  color: #a36340;
  font-family: acme-gothic-compressed, sans-serif;
  font-size: 74px;
  letter-spacing: 0.3rem;
  line-height: 1;
  text-align: left;
  width: 174px;
  z-index: 2;
}

.autumn-bg {
  position: relative;
}

.autumn-bg:after {
  content: "";
  background-color: #ce9e7e;
  z-index: -1;
}

/* style of detai__container */
.detail__container {
  position: relative;
  z-index: 2;
  margin-top: 26px;
  /* apply to "text-align: justify" on IE */
}

.detail__container .desc-txt {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2.3px;
  line-height: 1.85;
  text-align: justify;
}

.detail__container _:-ms-lang(x)::-ms-backdrop, .detail__container .desc-txt {
  text-align: justify;
  text-justify: inter-ideograph;
}

.detail__container .credit__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 10px;
  width: 300px;
}

.detail__container .credit > a {
  font-family: quasimoda, sans-serif;
  color: #000;
  font-size: 12px;
  letter-spacing: 1.2px;
  line-height: 2;
}

.detail__container .credit > a .discounted {
  color: #c10013;
  margin-left: 5px;
}

.detail__container .credit > a .discount-rate {
  color: #c10013;
  font-size: 10px;
  letter-spacing: 1px;
}

.detail__container .credit > a:nth-child(1) {
  margin-right: 8px;
}

/* style of indicator */
.indicator {
  margin: 96px auto 0;
  position: relative;
  left: 2px;
  width: 100px;
}

.indicator li {
  margin-top: 26px;
}

/*
    sec1
*/
.sec1 .introduction__container {
  margin-top: 108px;
}

.sec1 .summerstyle__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin: 40px auto 0;
  position: relative;
  left: 15px;
  width: 850px;
}

.sec1 .summerstyle__container .detail__container {
  margin: 96px auto 0 -60px;
  width: 290px;
}

.sec1 .img1__container {
  margin-left: 100px;
}

.sec1 .img1__container .credit__container {
  width: 350px;
}

.sec1 .img1 {
  display: block;
  position: relative;
  width: 400px;
}

.sec1 .summer-txt::before {
  position: absolute;
  top: 74px;
  right: auto;
  bottom: auto;
  left: -150px;
}

.sec1 .img2 {
  display: block;
  margin: 290px auto 0 0;
  position: relative;
  width: 350px;
}

.sec1 .summer-bg::after {
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: auto;
  left: auto;
  height: 525px;
  width: 350px;
}

.sec1 .autumnstyle__container {
  margin: 136px auto 0;
  position: relative;
  right: 50px;
  width: 450px;
}

.sec1 .img3 {
  display: block;
  position: relative;
}

.sec1 .autumn-txt::before {
  position: absolute;
  top: 95px;
  right: auto;
  bottom: auto;
  left: 354px;
}

.sec1 .autumn-bg::after {
  position: absolute;
  top: -40px;
  right: auto;
  bottom: 0;
  left: 40px;
  height: 675px;
  width: 450px;
}

.sec1 .detail__container .desc-txt {
  letter-spacing: 1.8px;
}

@media all and (-ms-high-contrast: none) {
  .sec1 .detail__container .desc-txt {
    letter-spacing: 0.07em;
    -webkit-font-feature-settings: normal;
            font-feature-settings: normal;
  }
}

/*
    sec2
*/
.sec2 .introduction__container {
  margin-top: 121px;
}

.sec2 .introduction__container .credit {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.sec2 .summerstyle__container {
  margin: 40px auto 0;
  position: relative;
  left: 26px;
}

.sec2 .img1__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sec2 .img1__container .detail__container {
  margin: 444px auto 0 -70px;
  width: 282px;
}

.sec2 .img1__container .desc-txt {
  letter-spacing: 2px;
}

.sec2 .img1 {
  display: block;
  margin: auto 0 0 auto;
  position: relative;
  width: 450px;
}

.sec2 .summer-txt::before {
  position: absolute;
  top: 269px;
  right: auto;
  bottom: auto;
  left: 380px;
}

.sec2 .summer-bg::after {
  position: absolute;
  top: 50px;
  right: auto;
  bottom: 0;
  left: -50px;
  height: 675px;
  width: 450px;
}

.sec2 .indicator {
  margin-top: 148px;
}

.sec2 .autumnstyle__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 100px auto 0;
  position: relative;
  right: 20px;
  width: 950px;
}

.sec2 .img2__container .detail__container {
  margin-top: 22px;
  width: 455px;
}

.sec2 .img2__container .desc-txt {
  padding-left: 2px;
  letter-spacing: 2.2px;
}

.sec2 .img2__container .credit__container {
  margin-top: 8px;
}

.sec2 .img2 {
  display: block;
  margin-right: 100px;
  position: relative;
  width: 450px;
}

.sec2 .img2.autumn-txt::before {
  position: absolute;
  top: 74px;
  right: auto;
  bottom: auto;
  left: 328px;
}

.sec2 .img2.autumn-bg::after {
  background-color: unset;
}

.sec2 .img3 {
  display: block;
  margin: 222px 0 0 0;
  width: 400px;
}

.sec2 .img3.autumn-bg::after {
  position: absolute;
  top: -40px;
  right: -40px;
  bottom: auto;
  left: auto;
  height: 600px;
  width: 400px;
}

@media all and (-ms-high-contrast: none) {
  .sec2 .detail__container .desc-txt {
    letter-spacing: 0.06em;
    -webkit-font-feature-settings: normal;
            font-feature-settings: normal;
  }
}

/*
    sec3
*/
.sec3 .introduction__container {
  margin-top: 120px;
  padding-left: 0;
}

.sec3 .introduction__container--left {
  padding-top: 55px;
}

.sec3 .introduction__container--right {
  margin-right: 0;
}

.sec3 .introduction__container .credit {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.sec3 .summerstyle__container {
  margin: 40px auto 0;
  position: relative;
  right: 36px;
  width: 450px;
}

.sec3 .img1__container .detail__container {
  margin: 24px auto 0 0;
  width: 386px;
}

.sec3 .img1__container .desc-txt {
  letter-spacing: 1.5px;
}

.sec3 .img1 {
  display: block;
  margin: 0 auto;
  position: relative;
}

.sec3 .summer-txt::before {
  position: absolute;
  top: 92px;
  right: auto;
  bottom: auto;
  left: 368px;
}

.sec3 .summer-bg::after {
  position: absolute;
  top: 50px;
  right: auto;
  bottom: 0;
  left: -50px;
  height: 675px;
  width: 450px;
}

.sec3 .indicator {
  margin-top: 71px;
}

.sec3 .autumnstyle__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 95px auto 0;
  width: 950px;
}

.sec3 .img2__container .detail__container {
  margin: 27px auto 0 0;
  width: 430px;
}

.sec3 .img2__container .desc-txt {
  letter-spacing: 1.8px;
  padding-left: 2px;
}

.sec3 .img2__container .credit__container {
  padding-left: 2px;
}

.sec3 .img2 {
  display: block;
  margin-right: 64px;
  position: relative;
  width: 450px;
}

.sec3 .img2.autumn-txt::before {
  position: absolute;
  top: 55px;
  right: auto;
  bottom: auto;
  left: -64px;
}

.sec3 .img2.autumn-bg::after {
  background-color: unset;
}

.sec3 .img3 {
  display: block;
  margin: 102px 0 0 0;
  width: 450px;
}

.sec3 .img3.autumn-bg::after {
  position: absolute;
  top: 50px;
  right: -50px;
  bottom: auto;
  left: auto;
  height: 675px;
  width: 450px;
}

/*
    sec4
*/
.sec4 .introduction__container {
  margin-top: 124px;
}

.sec4 .introduction__container .credit {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.sec4 .summerstyle__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin: 40px auto 0;
  width: 880px;
}

.sec4 .img1 {
  display: block;
  width: 420px;
  z-index: 1;
}

.sec4 .summer-txt::before {
  position: absolute;
  top: 52px;
  right: auto;
  bottom: auto;
  left: 310px;
}

.sec4 .img2__container {
  margin: 0 40px 0 0;
  width: 420px;
}

.sec4 .img2__container .detail__container {
  margin-top: 25px;
}

.sec4 .img2__container .credit__container {
  width: 310px;
}

.sec4 .img2 {
  display: block;
  position: relative;
  width: 420px;
}

.sec4 .img2.sp-component {
  display: none;
}

.sec4 .summer-bg::after {
  position: absolute;
  top: 40px;
  right: 40px;
  bottom: auto;
  left: auto;
  height: 630px;
  width: 420px;
}

.sec4 .indicator {
  margin-top: 68px;
}

.sec4 .autumnstyle__container {
  position: relative;
  left: 40px;
  margin: 98px auto 0;
  width: 400px;
}

.sec4 .img3 {
  display: block;
  position: relative;
}

.sec4 .autumn-txt::before {
  position: absolute;
  top: 54px;
  right: 347px;
  bottom: auto;
  left: auto;
}

.sec4 .autumn-bg::after {
  position: absolute;
  top: 40px;
  right: auto;
  bottom: 0;
  left: 40px;
  height: 600px;
  width: 400px;
}

@media all and (-ms-high-contrast: none) {
  .sec4 .autumnstyle__container .desc-txt {
    letter-spacing: 0.08em;
    -webkit-font-feature-settings: normal;
            font-feature-settings: normal;
  }
}

/*
    sec5
*/
.sec5 .introduction__container {
  margin-top: 148px;
}

.sec5 .introduction__container .sec-item-img::before {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
}

.sec5 .summerstyle__container {
  position: relative;
  left: 27px;
  margin: 42px auto 0;
}

.sec5 .img1__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sec5 .img1__container .detail__container {
  margin: 465px auto 0 -56px;
  width: 290px;
}

.sec5 .img1 {
  display: block;
  margin: auto 0 0 auto;
  position: relative;
  width: 450px;
}

.sec5 .summer-txt::before {
  position: absolute;
  top: 290px;
  right: auto;
  bottom: auto;
  left: 389px;
}

.sec5 _:-ms-lang(x)::-ms-backdrop, .sec5 .summer-txt::before {
  top: 309px;
}

.sec5 .summer-bg::after {
  position: absolute;
  top: 50px;
  right: auto;
  bottom: 0;
  left: -50px;
  height: 675px;
  width: 450px;
}

.sec5 .indicator {
  margin-top: 148px;
}

.sec5 .autumnstyle__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  position: relative;
  right: 25px;
  margin: 100px auto 0;
  width: 970px;
}

.sec5 .img2__container {
  width: 450px;
}

.sec5 .img2__container .detail__container {
  width: 436px;
}

.sec5 .img2__container .desc-txt {
  letter-spacing: 1.95px;
}

.sec5 .img2 {
  display: block;
  position: relative;
}

.sec5 .img2.autumn-txt::before {
  position: absolute;
  top: 94px;
  right: 317px;
  bottom: auto;
  left: auto;
}

.sec5 .img2.autumn-bg::after {
  position: absolute;
  top: 50px;
  right: -50px;
  bottom: auto;
  left: auto;
  height: 675px;
  width: 450px;
}

.sec5 .img3 {
  display: block;
  margin: 150px 100px 0 0;
  width: 420px;
}

.sec5 .img3.autumn-bg::after {
  background-color: unset;
}

@media all and (-ms-high-contrast: none) {
  .sec5 .img1__container .desc-txt {
    letter-spacing: 0.08em;
    -webkit-font-feature-settings: normal;
            font-feature-settings: normal;
  }
}

/*
    style of checkall__btn
*/
.checkall__btn {
  margin: 94px auto 142px;
}

/* Style for Windows */
.win main {
  /* background-image: url("../../imgs/page_pc.jpg"); */
  background-position-x: 111px;
  background-position-y: -129px;
  background-repeat: no-repeat;
  background-size: 1400px;
}

.win .heading--bottom {
  margin-top: 7px;
}

.win .sec1 .introduction__container {
  margin-top: 116px;
}

.win .sec1 .summerstyle__container {
  margin-top: 30px;
}

.win .sec1 .summer-txt::before {
  top: 88px;
}

.win .sec1 .autumn-txt::before {
  top: 110px;
}

.win .sec2 .introduction__container {
  margin-top: 130px;
}

.win .sec2 .summerstyle__container {
  margin-top: 30px;
}

.win .sec2 .summer-txt::before {
  top: 283px;
}

.win .sec2 .img2.autumn-txt::before {
  top: 88px;
}

.win .sec3 .introduction__container {
  margin-top: 130px;
}

.win .sec3 .summerstyle__container {
  margin-top: 30px;
}

.win .sec3 .summer-txt::before {
  top: 108px;
}

.win .sec3 .img2.autumn-txt::before {
  top: 69px;
}

.win .sec4 .introduction__container {
  margin-top: 133px;
}

.win .sec4 .summerstyle__container {
  margin-top: 30px;
}

.win .sec4 .summer-txt::before {
  top: 67px;
}

.win .sec4 .autumn-txt::before {
  top: 70px;
}

.win .sec5 .introduction__container {
  margin-top: 159px;
}

.win .sec5 .summerstyle__container {
  margin-top: 30px;
}

.win .sec5 .summer-txt::before {
  top: 306px;
}

.win .sec5 .autumn-txt::before {
  top: 108px;
}

/* ===============================================
    * Style of Tablet *
=============================================== */
@media only screen and (max-device-width: 1023px) {
  /*
    style of heading
*/
  .heading--top {
    font-size: calc(17 * (100vw / 1400));
    height: calc(28 * (100vw / 1400));
    letter-spacing: calc(0.85 * (100vw / 1400));
    margin: calc(70 * (100vw / 1400)) auto 0;
    width: calc(190 * (100vw / 1400));
  }
  .heading--middle {
    font-size: calc(46 * (100vw / 1400));
    letter-spacing: calc(2.76 * (100vw / 1400));
    margin-top: calc(70 * (100vw / 1400));
  }
  .heading--middle .autumn {
    margin-left: calc(8 * (100vw / 1400));
  }
  .heading--bottom {
    font-size: calc(40 * (100vw / 1400));
    letter-spacing: calc(5 * (100vw / 1400));
    margin: calc(13 * (100vw / 1400)) auto 0;
    padding-bottom: calc(13 * (100vw / 1400));
    width: calc(460 * (100vw / 1400));
  }
  .heading--bottom::after {
    position: absolute;
    top: calc(47 * (100vw / 1400));
    right: auto;
    bottom: 0;
    left: 0;
    width: calc(460 * (100vw / 1400));
  }
  .heading-desc {
    font-size: calc(15 * (100vw / 1400));
    letter-spacing: calc(1.6 * (100vw / 1400));
    margin-top: calc(40 * (100vw / 1400));
  }
  /*
    style for each sec
*/
  /* common style */
  .sec-num {
    font-size: calc(50 * (100vw / 1400));
    letter-spacing: calc(3 * (100vw / 1400));
  }
  .introduction__container {
    margin: calc(146 * (100vw / 1400)) auto 0;
    padding-left: calc(60 * (100vw / 1400));
  }
  .introduction__container .sec-item-img {
    width: calc(200 * (100vw / 1400));
  }
  .introduction__container--left {
    margin-right: calc(60 * (100vw / 1400));
    padding-top: calc(37 * (100vw / 1400));
  }
  .introduction__container--left .credit__container {
    margin-top: calc(10 * (100vw / 1400));
  }
  .introduction__container--left .credit__container .item-name {
    font-size: calc(20 * (100vw / 1400));
    letter-spacing: calc(2.8 * (100vw / 1400));
  }
  .introduction__container--left .credit__container .credit {
    font-size: calc(12 * (100vw / 1400));
    letter-spacing: calc(1.2 * (100vw / 1400));
    margin: calc(10 * (100vw / 1400)) 0 calc(7 * (100vw / 1400));
  }
  .introduction__container--left .credit__container .credit--discounted {
    font-size: calc(15 * (100vw / 1400));
    letter-spacing: calc(1.5 * (100vw / 1400));
  }
  .introduction__container--left .discount-rate {
    font-size: calc(12 * (100vw / 1400));
    letter-spacing: calc(1.2 * (100vw / 1400));
    margin-left: calc(10 * (100vw / 1400));
    padding: calc(2 * (100vw / 1400)) calc(7 * (100vw / 1400));
  }
  .introduction__container--right {
    margin-right: calc(60 * (100vw / 1400));
  }
  /* style of summer & autumn */
  .summer-txt::before {
    font-size: calc(74 * (100vw / 1400));
    width: calc(183 * (100vw / 1400));
  }
  .autumn-txt::before {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    font-size: calc(74 * (100vw / 1400));
    width: calc(174 * (100vw / 1400));
  }
  /* style of detai__container */
  .detail__container {
    margin-top: calc(26 * (100vw / 1400));
  }
  .detail__container .desc-txt {
    font-size: calc(13 * (100vw / 1400));
    letter-spacing: calc(2.3 * (100vw / 1400));
  }
  .detail__container .credit__container {
    margin-top: calc(10 * (100vw / 1400));
    width: calc(400 * (100vw / 1400));
  }
  .detail__container .credit > a {
    font-size: calc(12 * (100vw / 1400));
    letter-spacing: calc(1.2 * (100vw / 1400));
  }
  .detail__container .credit > a:nth-child(1) {
    margin-right: calc(8 * (100vw / 1400));
  }
  /* style of indicator */
  .indicator {
    margin: calc(96 * (100vw / 1400)) auto 0;
    left: calc(2 * (100vw / 1400));
    width: calc(100 * (100vw / 1400));
  }
  .indicator li {
    margin-top: calc(26 * (100vw / 1400));
  }
  /*
    sec1
*/
  .sec1 .introduction__container {
    margin-top: calc(108 * (100vw / 1400));
  }
  .sec1 .summerstyle__container {
    margin: calc(40 * (100vw / 1400)) auto 0;
    left: calc(15 * (100vw / 1400));
    width: calc(850 * (100vw / 1400));
  }
  .sec1 .summerstyle__container .detail__container {
    margin: calc(96 * (100vw / 1400)) auto 0 calc(-60 * (100vw / 1400));
    width: calc(300 * (100vw / 1400));
  }
  .sec1 .img1__container {
    margin-left: calc(100 * (100vw / 1400));
  }
  .sec1 .img1 {
    width: calc(400 * (100vw / 1400));
  }
  .sec1 .summer-txt::before {
    position: absolute;
    top: calc(74 * (100vw / 1400));
    right: auto;
    bottom: auto;
    left: calc(-153 * (100vw / 1400));
  }
  .sec1 .img2 {
    margin: calc(290 * (100vw / 1400)) auto 0 0;
    width: calc(350 * (100vw / 1400));
  }
  .sec1 .summer-bg::after {
    position: absolute;
    top: calc(30 * (100vw / 1400));
    right: calc(30 * (100vw / 1400));
    bottom: auto;
    left: auto;
    height: calc(525 * (100vw / 1400));
    width: calc(350 * (100vw / 1400));
  }
  .sec1 .autumnstyle__container {
    margin: calc(136 * (100vw / 1400)) auto 0;
    right: calc(50 * (100vw / 1400));
    width: calc(450 * (100vw / 1400));
  }
  .sec1 .autumn-txt::before {
    position: absolute;
    top: calc(95 * (100vw / 1400));
    right: auto;
    bottom: auto;
    left: calc(350 * (100vw / 1400));
  }
  .sec1 .autumn-bg::after {
    position: absolute;
    top: calc(-40 * (100vw / 1400));
    right: auto;
    bottom: 0;
    left: calc(40 * (100vw / 1400));
    height: calc(675 * (100vw / 1400));
    width: calc(450 * (100vw / 1400));
  }
  .sec1 .detail__container .desc-txt {
    letter-spacing: calc(1.8 * (100vw / 1400));
  }
  /*
    sec2
*/
  .sec2 .introduction__container {
    margin-top: calc(121 * (100vw / 1400));
  }
  .sec2 .introduction__container .credit {
    font-size: calc(15 * (100vw / 1400));
    letter-spacing: calc(1.5 * (100vw / 1400));
  }
  .sec2 .summerstyle__container {
    margin: calc(40 * (100vw / 1400)) auto 0;
    left: calc(26 * (100vw / 1400));
  }
  .sec2 .img1__container .detail__container {
    margin: calc(444 * (100vw / 1400)) auto 0 calc(-70 * (100vw / 1400));
    width: calc(300 * (100vw / 1400));
  }
  .sec2 .img1__container .desc-txt {
    letter-spacing: calc(2 * (100vw / 1400));
  }
  .sec2 .img1 {
    margin: auto 0 0 auto;
    width: calc(450 * (100vw / 1400));
  }
  .sec2 .summer-txt::before {
    position: absolute;
    top: calc(270 * (100vw / 1400));
    right: auto;
    bottom: auto;
    left: calc(374 * (100vw / 1400));
  }
  .sec2 .summer-bg::after {
    position: absolute;
    top: calc(50 * (100vw / 1400));
    right: auto;
    bottom: 0;
    left: calc(-50 * (100vw / 1400));
    height: calc(675 * (100vw / 1400));
    width: calc(450 * (100vw / 1400));
  }
  .sec2 .indicator {
    margin-top: calc(148 * (100vw / 1400));
  }
  .sec2 .autumnstyle__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: calc(100 * (100vw / 1400)) auto 0;
    right: calc(20 * (100vw / 1400));
    width: calc(950 * (100vw / 1400));
  }
  .sec2 .img2__container .detail__container {
    margin-top: calc(22 * (100vw / 1400));
    width: calc(455 * (100vw / 1400));
  }
  .sec2 .img2__container .desc-txt {
    padding-left: calc(2 * (100vw / 1400));
    letter-spacing: calc(2.2 * (100vw / 1400));
  }
  .sec2 .img2__container .credit__container {
    margin-top: calc(8 * (100vw / 1400));
  }
  .sec2 .img2 {
    margin-right: calc(100 * (100vw / 1400));
    width: calc(450 * (100vw / 1400));
  }
  .sec2 .img2.autumn-txt::before {
    position: absolute;
    top: calc(74 * (100vw / 1400));
    right: auto;
    bottom: auto;
    left: calc(325 * (100vw / 1400));
  }
  .sec2 .img3 {
    margin: calc(222 * (100vw / 1400)) 0 0 0;
    width: calc(400 * (100vw / 1400));
  }
  .sec2 .img3.autumn-bg::after {
    position: absolute;
    top: -cwT(40);
    right: calc(-40 * (100vw / 1400));
    bottom: auto;
    left: auto;
    height: calc(600 * (100vw / 1400));
    width: calc(400 * (100vw / 1400));
  }
  /*
    sec3
*/
  .sec3 .introduction__container {
    margin-top: calc(120 * (100vw / 1400));
  }
  .sec3 .introduction__container--left {
    padding-top: calc(55 * (100vw / 1400));
  }
  .sec3 .introduction__container .credit {
    font-size: calc(15 * (100vw / 1400));
    letter-spacing: calc(1.5 * (100vw / 1400));
  }
  .sec3 .summerstyle__container {
    margin: calc(40 * (100vw / 1400)) auto 0;
    right: calc(36 * (100vw / 1400));
    width: calc(450 * (100vw / 1400));
  }
  .sec3 .img1__container .detail__container {
    margin: calc(24 * (100vw / 1400)) auto 0 0;
    width: calc(386 * (100vw / 1400));
  }
  .sec3 .img1__container .desc-txt {
    letter-spacing: calc(1.5 * (100vw / 1400));
  }
  .sec3 .summer-txt::before {
    position: absolute;
    top: calc(92 * (100vw / 1400));
    right: auto;
    bottom: auto;
    left: calc(364 * (100vw / 1400));
  }
  .sec3 .summer-bg::after {
    position: absolute;
    top: calc(50 * (100vw / 1400));
    right: auto;
    bottom: 0;
    left: calc(-50 * (100vw / 1400));
    height: calc(675 * (100vw / 1400));
    width: calc(450 * (100vw / 1400));
  }
  .sec3 .indicator {
    margin-top: calc(70 * (100vw / 750));
  }
  .sec3 .autumnstyle__container {
    margin: calc(95 * (100vw / 1400)) auto 0;
    width: calc(950 * (100vw / 1400));
  }
  .sec3 .img2__container .detail__container {
    margin: calc(27 * (100vw / 1400)) auto 0 0;
    width: calc(430 * (100vw / 1400));
  }
  .sec3 .img2__container .desc-txt {
    letter-spacing: calc(1.8 * (100vw / 1400));
    padding-left: calc(2 * (100vw / 1400));
  }
  .sec3 .img2__container .credit__container {
    padding-left: calc(2 * (100vw / 1400));
  }
  .sec3 .img2 {
    margin-right: calc(64 * (100vw / 1400));
    width: calc(450 * (100vw / 1400));
  }
  .sec3 .img2.autumn-txt::before {
    position: absolute;
    top: calc(55 * (100vw / 1400));
    right: auto;
    bottom: auto;
    left: calc(-64 * (100vw / 1400));
  }
  .sec3 .img3 {
    margin: calc(102 * (100vw / 1400)) 0 0 0;
    width: calc(450 * (100vw / 1400));
  }
  .sec3 .img3.autumn-bg::after {
    position: absolute;
    top: calc(50 * (100vw / 1400));
    right: calc(-50 * (100vw / 1400));
    bottom: auto;
    left: auto;
    height: calc(675 * (100vw / 1400));
    width: calc(450 * (100vw / 1400));
  }
  /*
    sec4
*/
  .sec4 .introduction__container {
    margin-top: calc(124 * (100vw / 1400));
  }
  .sec4 .introduction__container .credit {
    font-size: calc(15 * (100vw / 1400));
    letter-spacing: calc(1.5 * (100vw / 1400));
  }
  .sec4 .summerstyle__container {
    margin: calc(40 * (100vw / 1400)) auto 0;
    width: calc(880 * (100vw / 1400));
  }
  .sec4 .img1 {
    width: calc(420 * (100vw / 1400));
  }
  .sec4 .summer-txt::before {
    position: absolute;
    top: calc(52 * (100vw / 1400));
    right: auto;
    bottom: auto;
    left: calc(308 * (100vw / 1400));
  }
  .sec4 .img2__container {
    margin: 0 calc(40 * (100vw / 1400)) 0 0;
    width: calc(420 * (100vw / 1400));
  }
  .sec4 .img2__container .detail__container {
    margin-top: calc(25 * (100vw / 1400));
  }
  .sec4 .img2 {
    width: calc(420 * (100vw / 1400));
  }
  .sec4 .summer-bg::after {
    position: absolute;
    top: calc(40 * (100vw / 1400));
    right: calc(40 * (100vw / 1400));
    bottom: auto;
    left: auto;
    height: calc(630 * (100vw / 1400));
    width: calc(420 * (100vw / 1400));
  }
  .sec4 .indicator {
    margin-top: calc(70 * (100vw / 1400));
  }
  .sec4 .autumnstyle__container {
    left: calc(40 * (100vw / 1400));
    margin: calc(98 * (100vw / 1400)) auto 0;
    width: calc(400 * (100vw / 1400));
  }
  .sec4 .autumn-txt::before {
    position: absolute;
    top: calc(54 * (100vw / 1400));
    right: calc(350 * (100vw / 1400));
    bottom: auto;
    left: auto;
  }
  .sec4 .autumn-bg::after {
    position: absolute;
    top: calc(40 * (100vw / 1400));
    right: auto;
    bottom: 0;
    left: calc(40 * (100vw / 1400));
    height: calc(600 * (100vw / 1400));
    width: calc(400 * (100vw / 1400));
  }
  /*
    sec5
*/
  .sec5 .introduction__container {
    margin-top: calc(148 * (100vw / 1400));
  }
  .sec5 .summerstyle__container {
    left: calc(27 * (100vw / 1400));
    margin: calc(42 * (100vw / 1400)) auto 0;
  }
  .sec5 .img1__container .detail__container {
    margin: calc(465 * (100vw / 1400)) auto 0 calc(-56 * (100vw / 1400));
    width: calc(300 * (100vw / 1400));
  }
  .sec5 .img1 {
    margin: auto 0 0 auto;
    width: calc(450 * (100vw / 1400));
  }
  .sec5 .summer-txt::before {
    position: absolute;
    top: calc(290 * (100vw / 1400));
    right: auto;
    bottom: auto;
    left: calc(386 * (100vw / 1400));
  }
  .sec5 .summer-bg::after {
    position: absolute;
    top: calc(50 * (100vw / 1400));
    right: auto;
    bottom: 0;
    left: calc(-50 * (100vw / 1400));
    height: calc(675 * (100vw / 1400));
    width: calc(450 * (100vw / 1400));
  }
  .sec5 .indicator {
    margin-top: calc(148 * (100vw / 1400));
  }
  .sec5 .autumnstyle__container {
    right: calc(25 * (100vw / 1400));
    margin: calc(100 * (100vw / 1400)) auto 0;
    width: calc(970 * (100vw / 1400));
  }
  .sec5 .img2__container {
    width: calc(450 * (100vw / 1400));
  }
  .sec5 .img2__container .detail__container {
    width: calc(436 * (100vw / 1400));
  }
  .sec5 .img2__container .desc-txt {
    letter-spacing: calc(1.95 * (100vw / 1400));
  }
  .sec5 .img2.autumn-txt::before {
    position: absolute;
    top: calc(94 * (100vw / 1400));
    right: calc(320 * (100vw / 1400));
    bottom: auto;
    left: auto;
  }
  .sec5 .img2.autumn-bg::after {
    position: absolute;
    top: calc(50 * (100vw / 1400));
    right: calc(-50 * (100vw / 1400));
    bottom: auto;
    left: auto;
    height: calc(675 * (100vw / 1400));
    width: calc(450 * (100vw / 1400));
  }
  .sec5 .img3 {
    margin: calc(150 * (100vw / 1400)) calc(100 * (100vw / 1400)) 0 0;
    width: calc(420 * (100vw / 1400));
  }
  /*
    style of checkall__btn
*/
  .checkall__btn {
    margin: calc(94 * (100vw / 1400)) auto calc(142 * (100vw / 1400));
  }
}
