@charset "utf-8";

* {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  background-color: #111;
  font-size: 1.6rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 400;
  color: #070707;
}

a {
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

/* ----------
    color
---------- */
:root {
  --accent-color: #b7a45c;
}


/* ----------
    common
---------- */
@media screen and (768px <= width) {
  .__s {
    display: none;
  }
}

.linkBtn {
  position: relative;
  width: 300px;
  padding: 15px min(2.7vw, 20px);
  background-color: var(--accent-color);
  border-radius: calc(1px / 0);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.25;
  color: #fff;
}
.linkBtn::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10%;
  translate: 0 -50%;
  display: block;
  width: 2.5em;
  height: .3em;
  border-right: 2px solid #fff;
  border-bottom: 1px solid #fff;
  transform: skew(60deg);
  transition: translate .3s;
}
@media (hover: hover) {
  .linkBtn:hover::after {
    translate: 10px -50%;
  }
}
.linkBtn._silver {
  background-color: #8a8a89;
}

.floatBtn {
  position: fixed;
  z-index: 10;
  bottom: 10px;
  left: 50%;
  translate: -50% 0;
  opacity: 0;
  pointer-events: none;
  cursor: none;
  transition: opacity .3s;
}
.floatBtn.is-scroll {
  opacity: 1;
  pointer-events: all;
  cursor: pointer;
  transition: opacity .3s;
}
@media screen and (768px <= width) {
  /* .floatBtn {
    bottom: 3%;
    left: calc(45% + 150px + 10px);
  }
  .floatBtn.is-scroll {
    left: 50%;
    bottom: 20px;
  } */
}

.sec {
  padding: min(13.3vw, 100px) min(4%, 30px) min(16vw, 120px);
}
.sec-inner {
  max-width: 960px;
  margin-inline: auto;
}
.sec-ttl {
  margin-bottom: 15px;
  border-bottom: 2px solid;
  line-height: 1.5;
  font-size: 3.6rem;
  font-weight: 700;
}
.sec-opening {
  line-height: 1.5;
  font-size: 2.2rem;
  font-weight: 600;
}
@media screen and (768px <= width) {
  .sec {
    padding-block: 90px 100px;
  }
  .sec-ttl {
    font-size: 4.2rem;
  }
  .sec-opening {
    font-size: 3.2rem;
  }
}

p ._accentColor {
  color: var(--accent-color);
}
p ._fsLarger {
  font-size: 1.1em;
}
p ._accentShadow {
  text-shadow: 4px 4px 10px color-mix(in srgb, var(--accent-color) 80%, transparent),
    4px -4px 10px color-mix(in srgb, var(--accent-color) 80%, transparent),
    -4px 4px 10px color-mix(in srgb, var(--accent-color) 80%, transparent),
    -4px -4px 10px color-mix(in srgb, var(--accent-color) 80%, transparent);
}

/* ----------
    mv
---------- */
.mv {
  position: relative;
}
.mv-img {
  aspect-ratio: 750 / 1333;
}
.mv-btnContainer {
  position: absolute;
  bottom: 2%;
  left: 0;
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px 20px;
}
.mv-btn {
  width: 250px;
}
.mv-btn::after {
  width: 1.5em;
}

@media screen and (768px <= width) {
  .mv-img {
    aspect-ratio: 1920 / 1080;
  }
  .mv-btnContainer {
    bottom: 4%;
    width: 100%;
    column-gap: 40px;
  }
}
@media screen and (900px <= width) {
  .mv-btn {
    width: 300px;
  }
  .mv-btn::after {
    width: 2.5em;
  }
}

/* ----------
    lead
---------- */
.lead-brnContainer {
  margin: min(13vw, 100px) auto min(8vw, 60px);
  max-width: calc(960px + 30px * 2);
  padding-inline: min(4%, 30px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px 30px;
}
.lead-bnr {
  /* margin: min(13vw, 100px) auto 0;
  display: block;
  width: min(92%, 800px); */
  max-width: 800px;
}
@media (hover: hover) {
  .lead-bnr {
    position: relative;
    overflow: hidden;
  }
  .lead-bnr::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    background-color: rgb(255 255 255 / 0.1);
    width: 130%;
    height: 100%;
    transform: skewX(25deg);
  }
  .lead-bnr:hover::before {
    animation: skewanime 0.4s forwards;
  }
  @keyframes skewanime {
    100% {
      left: -15%;
    }
  }
}
.lead-btn {
  margin: min(4vw, 30px) auto 0;
}
@media screen and (768px <= width) {
  .lead-brnContainer {
    flex-direction: row;
  }
  .lead-bnr {
    width: 100%;
  }
}

/* ----------
    merit
---------- */
.merit {
  background: top/100% repeat-y url(../img/merit-bg.webp);
  border-color: #fff;
  color: #fff;
}
@media screen and (768px <= width) {
  .merit {
    position: relative;
    background-image: url(../img/merit-bg__l.webp);
  }
  .merit::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 144px;
    height: auto;
    aspect-ratio: 144 / 1352;
    background: center/contain no-repeat url(../img/merit-bg-deco.webp);
  }
}

.merit-list {
  margin-block: 40px 50px;
}
.merit-list > li {
  position: relative;
  padding-top: 30px;
}
.merit-list > li:has(+ li) {
  margin-bottom: 40px;
}
.merit-list > li:nth-child(even) {
  margin-left: auto;
}
.merit-list > li:before {
  content: '';
  position: absolute;
  top: 0;
  display: block;
  width: auto;
  height: calc(133px / 2);
  background: center/contain no-repeat;
}
.merit-list > li:nth-child(odd)::before {
  left: -2px;
}
.merit-list > li:nth-child(even)::before {
  right: -2px;
}
.merit-list > li:first-child:before {
  aspect-ratio: 143 / 133;
  background-image: url(../img/merit-number-01.webp);
}
.merit-list > li:nth-child(2):before {
  aspect-ratio: 164 / 133;
  background-image: url(../img/merit-number-02.webp);
}
.merit-list > li:nth-child(3):before {
  aspect-ratio: 164 / 133;
  background-image: url(../img/merit-number-03.webp);
}
.merit-list > li:nth-child(4):before {
  aspect-ratio: 160 / 133;
  background-image: url(../img/merit-number-04.webp);
}
.merit-list > li:nth-child(5):before {
  aspect-ratio: 160 / 133;
  background-image: url(../img/merit-number-05.webp);
}
@media screen and (768px <= width) {
  .merit-list {
    margin-block: 50px 80px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
  }
  .merit-list > li {
    padding-top: 50px;
  }
  .merit-list > li:has(+ li) {
    margin-bottom: 0;
  }
  .merit-list > li:before {
    height: calc(133px / 1.5);
  }
}

.meritCard {
  max-width: 500px;
}
.meritCard-box {
  padding: 30px;
  background-color: #1a1a1a;
  border: 2px solid color-mix(in srgb, var(--accent-color) 60%, transparent);
}
.meritCard-img {
  margin-bottom: 20px;
  aspect-ratio: 570 / 350;
}
.meritCard-ttl {
  line-height: 1.5;
  font-size: 1.7rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (768px <= width) {
  .meritCard {
    width: calc(50% - 30px);
  }
  .meritCard-box {
    padding: 40px;
  }
  .meritCard-ttl {
    font-size: 2rem;
  }
}

.merit-btn {
  margin-inline: auto;
}

/* ----------
    resale
---------- */
.resale {
  background-color: #eef1f6;
  border-color: var(--accent-color);
}
.resale-ttl {
  margin-bottom: 40px;
}
@media screen and (768px <= width) {
  .resale-ttl {
    margin-bottom: 60px;
  }
}

.resale-question {
  padding-block-end: 40px;
}
.resale-band {
  margin: 0 auto 35px;
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0.5em;
  text-align: center;
  line-height: 1.5;
  font-size: clamp(1.7rem, 4.5vw, 2.4rem);
  font-weight: 700;
  color: #fff;
}
.resale-band::before {
  content: '';
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 0;
  bottom: 0;
  translate: -50% 0;
  display: block;
  width: 108%;
  height: 100%;
  background: rgb(0,80,143);
  background: linear-gradient(90deg, rgb(0 80 143 / 0) 0%, rgb(0 80 143 / 0.7) 10%, rgb(0 80 143 / 0.9) 50%, rgba(0,80,143,0.7) 90%, rgba(0,80,143,0) 100%);
  filter: blur(2px);
}
@media screen and (768px <= width) {
  .resale-question {
    padding-block-end: 100px;
  }
}

.resale-comments {
  margin-inline: auto;
  max-width: 800px;
}
.resale-comment {
  margin-bottom: 30px;
  max-width: 500px;
}
.resale-comment:last-child {
  margin-bottom: 0;
}
.resale-comment:nth-child(odd) {
  margin-left: auto;
}
.resale-comment:first-child img {
  aspect-ratio: 676 / 135;
}
.resale-comment:nth-child(2) img {
  aspect-ratio: 642 / 134;
}

.resale-answer {
  position: relative;
  background: top/cover url(../img/resale-bg.webp);
}
.resale-answer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  display: block;
  width: 0;
  height: 0;
  border-top: 25px solid #eef1f6;
  border-right: 40px solid transparent;
  border-left: 40px solid transparent;
}
.resale-answer .resale-band {
  color: #005a99;
}
.resale-answer .resale-band::before {
  background: rgb(0,80,143);
  background: linear-gradient(90deg, rgb(255 255 255 / 0) 0%, rgb(255 255 255 / 0.7) 10%, rgb(255 255 255 / 1) 50%, rgb(255 255 255 / 0.7) 90%, rgb(255 255 255 / 0) 100%);
}
@media screen and (768px <= width) {
  .resale-answer {
    background-image: url(../img/resale-bg__l.webp);
  }
  .resale-answer::before {
    border-top: 40px solid #eef1f6;
    border-right: 60px solid transparent;
    border-left: 60px solid transparent;
  }
}

.resale-txt {
  text-align: center;
  line-height: 1.75;
  font-size: clamp(1.4rem, 3.7vw, 2.4rem);
  font-weight: 500;
  color: #fff;
}
.resale-txt._opening {
  margin-block-end: 30px;
}
.resale-txt ._fs1 {
  font-size: 1.6em;
  font-weight: 600;
  color: #fffbee;
}
.resale-txt ._more {
  margin-bottom: .2em;
  display: block;
  font-size: 1.5em;
  font-weight: 800;
}
.resale-txt ._more::before,
.resale-txt ._more::after {
  font-size: .7em;
}
.resale-txt ._more::before {
  content: '＼';
  padding-inline-end: .5em;
}
.resale-txt ._more::after {
  content: '／';
  padding-inline-start: .5em;
}
.resale-txt ._fsLarger {
  font-weight: 700;
}
.resale-txt ._strong {
  font-size: 2em;
}
.resale-txt ._fsSmaller {
  display: inline-block;
  padding-inline: .2em;
  font-size: .6em;
}
.resale-txt ._underline {
  position: relative;
  z-index: 1;
}
.resale-txt ._underline::before {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: .3em;
  background-color: var(--accent-color);
}
.resale-txt ._note {
  display: block;
  line-height: 2;
  font-size: .9em;
}
@media screen and (768px <= width) {
  .resale-txt._opening {
    margin-block-end: 60px;
  }
  .resale-txt ._note {
    display: inline-block;
  }
}

.resale-point {
  margin: 0 auto min(4vw, 30px);
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (768px <= width) {
  .resale-point {
    max-width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  .resale-point > li {
    width: 300px;
  }
}

.resaleCard {
  padding: 20px;
  background-color: #fff;
}
.resaleCard-head {
  padding-bottom: 10px;
  border-bottom: clamp(1px, 0.3vw, 2px) solid var(--accent-color);
  display: flex;
  align-items: center;
  gap: 4%;
}
.resaleCard-mark {
  width: 25%;
  aspect-ratio: 150 / 110;
}
.resaleCard-ttl {
  width: 71%;
  line-height: 1.5;
  font-size: 1.7rem;
  font-weight: 600;
}
.resaleCard-txt {
  margin-top: 10px;
  text-align: center;
  line-height: 1.5;
  font-size: 1.4rem;
}
@media screen and (768px <= width) {
  .resaleCard-head {
    flex-direction: column;
    gap: 15px;
  }
  .resaleCard-mark {
    width: auto;
    height: 70px;
  }
  .resaleCard-ttl {
    width: 100%;
    text-align: center;
    font-size: 2rem;
  }
  .resaleCard-txt {
    font-size: 1.6rem;
  }
}

.resale-btn {
  margin: min(8vw, 60px) auto 0;
}

/* ----------
    review
---------- */
.review {
  background-color: #eef1f6;
  overflow: hidden;
}
.review-slider {
  margin: 30px auto 10px;
  width: 85vw;
  padding-bottom: 25px;
}
.review-slider .splide__track {
  overflow: visible;
}
.review-slider .splide__pagination {
  right: auto;
  bottom: 0;
  padding: 0;
}
.review-slider .splide__pagination__page {
  margin: 0 min(1.3vw, 10px) 0 0;
  width: min(13.3vw, 100px);
  height: min(1.1vw, 8px);
  border-radius: 0;
  background-color: #999a9a;
  opacity: 1;
}
.review-slider .splide__pagination__page.is-active {
  background-color: #036eb8;
  transform: none;
}
@media screen and (768px <= width) {
  .review-slider {
    margin-block: 50px 0;
    width: 100%;
    padding-bottom: 40px;
  }
}

.reviewCard {
  position: relative;
  padding: 30px 20px 35px;
  background-color: #fff;
  box-shadow: 5px 5px 10px 0 rgb(197 208 220 / 26%);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 25px;
}
.reviewCard::before,
.reviewCard::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: auto;
  aspect-ratio: 7 / 6;
}
.reviewCard::before {
  width: 20%;
  background-color: #036eb8;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.reviewCard::after {
  width: 23%;
  background-color: #070707;
  clip-path: polygon(92% 0, 100% 0%, 0 100%, 0 92%);
}
.reviewCard-img {
  width: min(50%, 250px);
  border-radius: calc( 1px / 0 );
}
.reviewCard-body {
  text-align: center;
  line-height: 1.5;
}
.reviewCard-name {
  margin-bottom: 15px;
  font-size: clamp(1.7rem, 4.5vw, 2.4rem);
  font-weight: 600;
}
.reviewCard-txt {
  font-size: clamp(1.4rem, 3.7vw, 1.6rem);
}
@media screen and (768px <= width) {
  .reviewCard {
    padding: 60px;
    flex-direction: row;
    gap: 40px;
  }
  .reviewCard::before {
    width: 10%;
  }
  .reviewCard::after {
    width: 11.5%;
  }
  .reviewCard-img {
    width: 140px;
  }
  .reviewCard-body {
    text-align: left;
  }
}