@charset "UTF-8";

.premium_title_container {
  height: 250px;
  padding-top: 150px;
}

.premium_title_container > img {
  display: block;
  width: 300px;
  margin: auto;
}

@media screen and (max-width: 550px) {
  .premium_title_container {
    height: 120px;
    padding-top: 90px;
  }

  .premium_title_container > img {
    width: 40%;
  }
}

/**************************/
/******** main visual fade in/out  **********/
/**************************/

.day_and_night_scenes_container {
  margin-top: 20px;
  padding: 0;
}

.day_and_night_scenes {
  position: relative;
  min-height: 950px;
  max-height: 1300px;
  overflow: hidden;
}

.day_and_night_scenes .scene {
  min-width: 1550px;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

.day_and_night_scenes .scene > img {
  min-width: 1550px;
}

.day_and_night_scenes .scene_caption {
  position: absolute;
  bottom: 5px;
  right: 5px;
  display: none;
}

.day_and_night_tab_btns_container {
  padding: 50px 0;
  width: 450px;
  margin: auto;
}

.day_and_night_tab_btns {
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
}

.day_and_night_tab_btns .tab_btn {
  width: 40%;
  cursor: pointer;
}

.day_and_night_tab_btns .tab_btn > img {
  display: block;
  width: 100%;
}

.day_and_night_tab_btns .tab_btn.active > img {
  border-bottom: 1px solid #8a7350;
}

/* 画像横幅が異なることによるズレの調整 */
.day_and_night_tab_btns .tab_btn.day > img {
  width: 87%;
  margin: 0 0 0 auto;
}

.day_and_night_tab_btns .tab_btn:hover {
  opacity: 0.7;
}

.tab_btn_separator {
  width: 20%;
  padding: 10px 0 0 0;
}

.tab_btn_separator > img {
  display: block;
  margin: auto;
  width: 20%;
}

@media screen and (max-width: 550px) {
  .day_and_night_scenes {
    min-height: 250px;
    max-height: 100%;
  }

  .day_and_night_scenes .scene {
    min-width: 100%;
  }

  .day_and_night_scenes .scene > img {
    min-width: 100%;
  }

  .day_and_night_scenes .scene_caption {
    font-size: 7px;
  }

  .day_and_night_tab_btns_container {
    padding: 20px 0;
    width: 60%;
  }

  .day_and_night_tab_btns {
    column-gap: 10px;
  }

  .day_and_night_tab_btns .tab_btn {
    width: 45%;
    cursor: pointer;
  }

  .day_and_night_tab_btns .tab_btn > img {
    display: block;
    width: 100%;
  }

  .day_and_night_tab_btns .tab_btn.active > img {
    border-bottom: 1px solid #8a7350;
  }

  /* 画像横幅が異なることによるズレの調整 */
  .day_and_night_tab_btns .tab_btn.day > img {
    width: 87%;
    margin: 0 0 0 auto;
  }

  .tab_btn_separator {
    width: 10%;
    padding: 5px 0 0 0;
  }

  .tab_btn_separator > img {
    display: block;
    margin: auto;
    width: 50%;
  }
}

/**************************/
/******** Premium 0021 *********/
/**************************/

.bg_premium_0021 {
  width: 100%;
  background-image: url(../../img/plan/premium_bgg.jpg);
  background-size: cover;
  padding: 100px 0;
}

.premium_0021 {
  text-align: center;
  color: #efe4b3;
}

.premium_0021 .title_img_txt {
  display: block;
  max-width: 350px;
  margin: auto;
}

.premium_0021 .txt1 {
  margin: auto;
  padding-top: 50px;
  font-size: 32px;
  line-height: 1.5;
  color: #eee7c4;
}

.premium_0021 .separator {
  margin: auto;
  padding: 30px 0 0 0;
  width: 40%;
  /* border-bottom: 1px solid #efe4b3; */
  border-bottom: 1px solid #ffffff;
  opacity: 0.6;
}

.premium_0021 .txt2 {
  margin: auto;
  font-size: 18px;
  padding: 50px 0 0 0;
  color: #ffffff;
}

@media screen and (max-width: 550px) {
  .bg_premium_0021 {
    padding: 50px 0;
  }

  .premium_0021 .title_img_txt {
    width: 40%;
  }

  .premium_0021 .txt1 {
    padding-top: 25px;
    font-size: 20px;
  }

  .premium_0021 .separator {
    padding: 15px 0 0 0;
    width: 70%;
  }

  .premium_0021 .txt2 {
    padding: 25px 0 0 0;
    font-size: 12px;
  }
}

/**************************/
/******** Quality 0031 *********/
/**************************/
.bg_premium_0031 {
  width: 100%;
  background-color: #30251e;
  padding: 100px 0;
}

.premium_0031 {
  color: #ffffff;
}

.premium_0031 .title_img_txt {
  display: block;
  max-width: 250px;
  margin: auto;
}

.premium_0031_contents {
  max-width: 900px;
  margin: 100px auto 0;
  text-align: left;
}

.premium_0031_row {
  display: flex;
  flex-direction: row;
  column-gap: 4%;
}

.premium_0031_col {
  width: 48%;
}

.premium_0031_col.txt {
  padding-top: 70px;
}

.premium_0031_col.txt .title {
  padding-top: 5px;
  font-size: 24px;
}

.premium_0031_col.txt .description {
  margin-top: 10px;
  font-size: 16px;
}

.premium_0031_col.img .title {
  padding-top: 5px;
  font-size: 24px;
}

.premium_0031_col.img .description {
  margin-top: 10px;
  font-size: 16px;
}

.premium_0031_row.with_separator {
  border-top: 1px solid #ffffff;
  padding-top: 35px;
}

.premium_0031_row_rapper {
  border: 1px solid #ffffff;
  padding: 50px;
}

@media screen and (max-width: 550px) {
  .bg_premium_0031 {
    padding: 50px 15px;
  }

  .premium_0031 .title_img_txt {
    max-width: 250px;
    width: 37%;
  }

  .premium_0031_contents {
    margin: 30px auto 0;
  }

  .premium_0031_col.txt {
    padding-top: 0;
  }

  .premium_0031_col.txt .title {
    padding-top: 0px;
    font-size: 16px;
    line-height: 1;
  }

  .premium_0031_col.txt .description {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.5;
  }

  .premium_0031_col.img .title {
    padding-top: 5px;
    font-size: 16px;
    line-height: 1;
  }

  .premium_0031_col.img .description {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.5;
  }

  .premium_0031_row.with_separator {
    padding-top: 25px;
  }

  .premium_0031_row_rapper {
    padding: 15px;
  }
}

/* slick arrow調整 */
@media screen and (max-width: 550px) {
  .prev-arrow {
    left: -20px;
    z-index: 100;
  }
  .next-arrow {
    right: -20px;
  }
}
