@charset "utf-8";

/* RESET */
#special-feature h1,
#special-feature h2,
#special-feature h3,
#special-feature h4,
#special-feature h5,
#special-feature h6 {
  padding: unset;
  margin: unset;
}

/* BASE */
#special-feature {
  color: #000;
}
#special-feature img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

/* MODIFY */
#header {
  margin-bottom: 0;
}

/* 変数 */
:root {
  --inner-width: 1200px;
  --mincho: "Noto Serif JP", serif;
  --sec-bg1: url('/img/0002/pages/larcobaleno/sec-bg1.jpg');
  --sec-bg2: url('/img/0002/pages/larcobaleno/sec-bg2.jpg');
  --sp-sec-pd-x: 5.333333333333334vw;
}

/* 汎用セクション */
#special-feature .sec-inner {
  margin-inline: auto;
  max-width: var(--inner-width);
  width: 100%;
}
#special-feature .sec-inner > *:last-child {
  margin-bottom: 0;
}

/* 汎用見出し */
#special-feature .title-group {
  font-family: var(--mincho);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 13px;
  text-align: center;
  padding-bottom: 17px;
  position: relative;
  margin-bottom: 20px;
}
#special-feature .title-group::after {
  content: '';
  background-color: #D9644D;
  height: 1px;
  width: 48px;
  position: absolute;
  left: 50%;
  bottom: 0;
  translate: -50%;
}
#special-feature .title-group-main {
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
}
#special-feature .title-group-sub {
  font-size: 18px;
}
#special-feature .title-bd {
  font-family: var(--mincho);
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  padding-bottom: 39px;
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  margin-bottom: 24px;
}
#special-feature .title-bd::after {
  content: '';
  background-image: url('/img/0002/pages/larcobaleno/title-bd.png');
  background-position: center;
  background-repeat: no-repeat;
  height: 20px;
  max-width: 830px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50%;
}

/* 汎用テキスト */
#special-feature .lead-txt {
  font-size: 16px;
  letter-spacing: .008em;
  line-height: 2;
  text-align: center;
  margin-bottom: 20px;
}
#special-feature .txt {
  font-size: 16px;
  letter-spacing: .008em;
  line-height: 2;
  margin-bottom: 20px;
}

/* .sec-lead */
#special-feature .sec-lead {
  background-image: var(--sec-bg1);
  padding-block: 54px 60px;
}

/* .sec-nav */
#special-feature .sec-nav {
  background-image: var(--sec-bg2);
  padding-block: 46px;
}
#special-feature .item-nav {
  margin-bottom: 24px;
}
#special-feature .item-nav-link-list {
  display: flex;
  justify-content: center;
  gap: 40px;
}
#special-feature .item-nav-link {
  display: block;
  padding-bottom: 28px;
  position: relative;
  max-width: 200px;
  width: 100%;
  transition: opacity .3s;
}
[data-browse-mode="P"] #special-feature .item-nav-link:hover {
  opacity: .7;
}
#special-feature .item-nav-link::after {
  content: '';
  background-image: url('/img/0002/pages/larcobaleno/nav-arrow.png');
  background-size: 100%;
  height: 13px;
  width: 21px;
  position: absolute;
  left: 50%;
  bottom: 0;
  translate: -50%;
}
#special-feature .item-nav-figure {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}
#special-feature .item-nav-figure figcaption {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .008em;
  line-height: 1;
}

/* .sec-detail */
#special-feature .sec-detail {
  background-image: var(--sec-bg2);
  padding-block: 62px 120px;
  position: relative;
  z-index: 0;
}
#special-feature .sec-detail::before {
  content: '';
  background-image: var(--sec-bg1);
  height: 540px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#special-feature .details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 53px;
}
#special-feature .detail-label {
  background-color: #000000;
  border-radius: 4px;
  color: #fff;
  display: block;
  font-family: var(--mincho);
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  padding: 13px 13px 15px;
  min-width: 328px;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 16px;
}
#special-feature .detail-img {
  margin-bottom: 13px;
}
#special-feature .detail-txt {
  font-size: 18px;
  letter-spacing: .008em;
  line-height: 1.778;
  text-align: center;
}
#special-feature .plain-box {
  background-color: #F8F6F0;
  border-radius: 16px;
  padding: 48px 60px;
}
#special-feature .items {
  display: flex;
  flex-direction: column;
  gap: 27px;
}
#special-feature .item {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
#special-feature .item-head {
  order: 2;
  padding-top: 73px;
  width: calc(50% - 32px);
}
#special-feature .items .item:nth-child(even) .item-head {
  order: 1;
}
#special-feature .item-body {
  order: 1;
  width: 50%;
}
#special-feature .items .item:nth-child(even) .item-body {
  order: 2;
}
#special-feature .item-img-figure {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}
#special-feature .item-img-figure figcaption {
  font-size: 16px;
  letter-spacing: .008em;
  line-height: 1.5;
}
#special-feature .item-img-swiper .swiper-pagination {
  position: static;
  margin-top: 12px;
}
#special-feature .item-img-swiper .swiper-pagination-bullet {
  background-color: #D9644D;
  width: 12px;
  height: 12px;
}
#special-feature .item-img-swiper.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px;
}
#special-feature .item-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}
#special-feature .item-label {
  border-radius: 4px;
  color: #fff;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1;
  padding: 11px 15px;
}
#special-feature .item-label.-bc1 {
  background-color: #BFA755;
}
#special-feature .item-title {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: .008em;
  line-height: 1.429;
  margin-bottom: 12px;
}
#special-feature .item-txt {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 24px;
}
#special-feature .item-txt-underline {
  text-decoration: underline;
}
#special-feature .item-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  letter-spacing: .008em;
  line-height: 1;
}
#special-feature .item-price-num {
  font-size: 32px;
  font-weight: bold;
}
#special-feature .item-price-yen {
  font-size: 20px;
  font-weight: bold;
}
#special-feature .item-price-tax {
  font-size: 18px;
}
#special-feature .item-detail {
  margin-bottom: 30px;
}
#special-feature .item-cv {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#special-feature .item-btn-lay {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 240px;
  gap: 16px;
}
#special-feature .item-btn-about {
  font-size: 20px;
  line-height: 1.2;
  padding-left: 40px;
  position: relative;
}
#special-feature .item-btn-about::before {
  content: '';
  background-size: 100%;
  height: 28px;
  width: 28px;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}
#special-feature .item-btn-about.-color1::before {
  background-image: url('/img/0002/pages/larcobaleno/color-icon1.png');
}
#special-feature .item-btn-about.-color2::before {
  background-image: url('/img/0002/pages/larcobaleno/color-icon2.png');
}
#special-feature .item-btn {
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 15px 16px;
  transition: opacity .3s;
}
[data-browse-mode="P"] #special-feature .item-btn:hover {
  opacity: .7;
}
#special-feature .item-btn.-bc1 {
  background-color: #D8612C;
}
#special-feature .item-btn.-bc2 {
  background-color: #333333;
}
#special-feature .item-btn-inner {
  color: #fff;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  padding-right: 17px;
  position: relative;
}
#special-feature .item-btn-inner::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: .5em;
  height: .5em;
  border: 0.15em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
  position: absolute;
  top: calc(50% - 2px);
  right: -3px;
}

@media screen and (max-width: 767px) {
  /* 汎用セクション */
  #special-feature .sec:not(.sec-firstview) {
    padding-inline: var(--sp-sec-pd-x);
  }

  /* 汎用見出し */
  #special-feature .title-group {
    gap: 9px;
    padding-bottom: 13px;
    margin-bottom: 14px;
  }
  #special-feature .title-group::after {
    width: 32px;
  }
  #special-feature .title-group-main {
    font-size: 28px;
  }
  #special-feature .title-group-sub {
    font-size: 16px;
  }
  #special-feature .title-bd {
    font-size: 28px;
    line-height: 1.286;
    padding-bottom: 6.666666666666667vw;
    width: 100%;
    margin-bottom: 12px;
  }
  #special-feature .title-bd::after {
    background-image: url('/img/0002/pages/larcobaleno/title-bd-sp.png');
    background-size: 80vw;
    height: 4.2666666666666665vw;
    max-width: unset;
    width: 100%;
  }

  /* 汎用テキスト */
  #special-feature .lead-txt {
    font-size: 13px;
    line-height: 1.846;
  }
  #special-feature .txt {
    font-size: 13px;
    line-height: 1.846;
  }

  /* .sec-lead */
  #special-feature .sec-lead {
    padding-block: 47px 53px;
  }

  /* .sec-nav */
  #special-feature .sec-nav {
    padding-block: 39px 40px;
  }
  #special-feature .item-nav {
    margin-bottom: 24px;
  }
  #special-feature .item-nav-link-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: start;
    gap: 15px;
  }
  #special-feature .item-nav-link {
    padding-bottom: 22px;
    max-width: none;
  }
  #special-feature .item-nav-link::after {
    height: 9px;
    width: 16px;
  }
  #special-feature .item-nav-figure {
    gap: 15px;
  }
  #special-feature .item-nav-figure figcaption {
    font-size: 12px;
  }

  /* .sec-detail */
  #special-feature .sec-detail {
    padding-block: 59px 72px;
  }
  #special-feature .sec-detail::before {
    height: 384px;
  }
  #special-feature .details {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 40px;
    margin-bottom: 40px;
  }
  #special-feature .detail-label {
    font-size: 24px;
    padding: 7px 7px 9px;
    min-width: 206px;
    margin-bottom: 8px;
  }
  #special-feature .detail-img {
    margin-bottom: 12px;
  }
  #special-feature .detail-txt {
    font-size: 14px;
    line-height: 1.429;
  }
  #special-feature .plain-box {
    border-radius: 8px;
    padding: 16px 4.2666666666666665vw 32px;
  }
  #special-feature .items {
    gap: 32px;
  }
  #special-feature .item {
    flex-direction: column;
    justify-content: start;
    gap: 0;
  }
  #special-feature .item + .item {
    border-top: 1px dashed #bfae7c;
    padding-top: 31px;
  }
  #special-feature .item-head {
    display: contents;
  }
  #special-feature .item-body {
    order: 2;
    width: 100%;
    margin-bottom: 19px;
  }
  #special-feature .items .item:nth-child(even) .item-body {
    order: 2;
  }
  #special-feature .item-img-figure {
    gap: 7px;
  }
  #special-feature .item-img-figure figcaption {
    font-size: 12px;
    line-height: 1.667;
  }
  #special-feature .item-img-swiper .swiper-pagination {
    margin-top: 2px;
  }
  #special-feature .item-img-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
  #special-feature .item-img-swiper.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
  }
  #special-feature .item-labels {
    gap: 6px;
    margin-bottom: 11px;
  }
  #special-feature .item-label {
    font-size: 12px;
    padding: 6px 20px;
  }
  #special-feature .item-title {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 9px;
  }
  #special-feature .item-txt {
    font-size: 12px;
    line-height: 1.667;
    margin-bottom: 11px;
  }
  #special-feature .item-price {
    gap: 2px;
  }
  #special-feature .item-price-num {
    font-size: 20px;
  }
  #special-feature .item-price-yen {
    font-size: 16px;
  }
  #special-feature .item-price-tax {
    font-size: 14px;
  }
  #special-feature .item-detail {
    margin-bottom: 12px;
    order: 1;
  }
  #special-feature .item-cv {
    gap: 20px;
    order: 3;
  }
  #special-feature .item-btn-lay {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8px;
  }
  #special-feature .item-btn-about {
    font-size: 16px;
    line-height: 1.5;
    padding-bottom: 22px;
    padding-left: unset;
  }
  #special-feature .item-btn-about::before {
    height: 18px;
    width: 18px;
    top: unset;
    bottom: 0;
    left: 50%;
    translate: -50%;
  }
  #special-feature .item-btn {
    padding: 7px 7px 9px;
    width: 100%;
  }
  #special-feature .item-btn-inner {
    font-size: 16px;
    line-height: 1.5;
    padding-right: 14px;
  }
  #special-feature .item-btn-inner::after {
    width: .45em;
    height: .45em;
    right: -9px;
  }
}