@charset "UTF-8";
/* CSS Document */

.sec1 {
  width: 90%;
  max-width: 1080px;
  margin: 200px auto 150px;
}

.sec1__small {
  font-family: var(--en);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.sec1__h2 {
  font-size: 4rem;
  margin-bottom: 50px;
}

.sec1__p {
  line-height: 2;
  margin-bottom: 50px;
}

.sec1__a {
  width: 320px;
  height: 60px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border: solid 1px #232323;
  background: #EDE4CF;
  border-radius: 100px;
  transition: 0.4s;
  transition-timing-function: ease-out;
  font-weight: 400;
  margin: 0 auto 120px;
}

.sec1__a:hover {
  background: #232323;
  color: #EDE4CF;
}

.sec1__a div {
  position: relative;
  width: 13px;
  height: 11px;
}

.sec1__a div img {
  width: 13px;
  height: 11px;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.4s;
  transition-timing-function: ease-out;
}

.sec1__a:hover div img:nth-of-type(2) {
  opacity: 0;
}

.sec1__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sec1__bottom__left {
  width: 47.5%;
  text-align: left;
}

.sec1__bottom__left__h3 {
  font-size: 3.2rem;
  margin-bottom: 40px;
}

.sec1__bottom__left__p {
  line-height: 2;
}

.sec1__bottom__right {
  width: 47.5%;
}


@media (max-width: 1024px) {
  .sec1 {
    margin: 150px auto 100px;
  }

  .sec1__a {
    margin-bottom: 100px;
  }

  .sec1__bottom {
    flex-direction: column;
    gap: 50px;
  }

  .sec1__bottom__left {
    width: fit-content;
  }

  .sec1__bottom__right {
    width: 90%;
    max-width: 400px;
  }
}


@media (max-width: 600px) {
  .sec1 {
    margin: 125px auto 100px;
  }

  .sec1__a {
    margin-bottom: 75px;
  }

  .sec1__small {
    margin-bottom: 0;
  }

  .sec1__h2 {
    font-size: 3rem;
    margin-bottom: 30px;
  }

  .sec1__p {
    font-size: 1.4rem;
    text-align: left;
  }

  .sec1__bottom__left__h3 {
    font-size: 2.8rem;
    margin-bottom: 30px;
  }

  .sec1__bottom__left__p {
    font-size: 1.4rem;
  }
}




.sec2__h2 {
  border-top: solid 1px #232323;
  border-bottom: solid 1px #232323;
  padding: 25px 0;
  font-size: 2rem;
  line-height: 1;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: solid 1px #232323;
}

.tab {
  line-height: 1;
  padding: 25px 0;
  width: calc(100% / 3);
  border-right: solid 1px #232323;
  transition: 0.4s;
  transition-timing-function: ease-out;
  cursor: pointer;
}

.tab.active {
  background: #232323;
  color: #EDE4CF;
}

.tab:last-of-type {
  border: none;
}

.tab-contents {
  position: relative;
  overflow: hidden;
  transition: height 0.4s ease;
}

.content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.content.active {
  opacity: 1;
  z-index: 1;
}

.tab__arrow {
  position: absolute;
  top: 50%;
  left: -2.5%;
  width: 105%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.tab__arrow button {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #232323;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
  transition-timing-function: ease-out;
}

.tab__arrow #prev img {
  rotate: 180deg;
}

.tab__arrow button img {
  width: 20px;
  height: 20px;
}

.tab__arrow #prev:hover {
  scale: 1.1;
}

.tab__arrow #next:hover {
  scale: 1.1;
}

.content.active {
  opacity: 1;
  z-index: 1;
}

.sec2__contents {
  position: relative;
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

.content__wapper {
  width: 90%;
  max-width: 1080px;
  margin: 100px auto 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content__wapper__left {
  text-align: left;
  width: 48%;
}

.content__wapper__left small {
  display: block;
  margin-bottom: 20px;
}

.content__wapper__left h3 {
  font-size: 3.2rem;
  margin-bottom: 40px;
}

.content__wapper__left p {
  line-height: 2;
}

.content__wapper__right {
  width: 48%;
}

.content__wapper__right img {
  border-radius: 30px;
  aspect-ratio: 3/4;
}


@media (max-width: 1024px) {
  .tab span {
    display: none;
  }

  .tab__arrow {
    display: none;
  }

  .content__wapper {
    width: 100%;
    margin: 75px auto;
  }
}


@media (max-width: 600px) {
  .sec2__h2 {
    font-size: 1.8rem;
  }

  .content__wapper {
    flex-direction: column;
    gap: 50px;
  }

  .content__wapper__left {
    width: 100%;
  }

  .content__wapper__right {
    width: 80%;
  }

  .content__wapper__left h3 {
    font-size: 2.8rem;
  }

  .content__wapper__right img {
    border-radius: 20px;
  }
}




.secline {
  width: 100%;
  height: 1px;
  background: #232323;
}




.sec3 {
  width: 90%;
  max-width: 700px;
  padding: 100px 0;
  border-bottom: solid 1px #CCBE9E;
  margin: 0 auto;
}

.sec3__h2 {
  font-size: 3.2rem;
  margin-bottom: 40px;
}

.sec3__p {
  line-height: 2;
  margin-bottom: 40px;
}

.sec3__a {
  width: 320px;
  height: 60px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border: solid 1px #232323;
  background: #EDE4CF;
  border-radius: 100px;
  transition: 0.4s;
  transition-timing-function: ease-out;
  font-weight: 400;
  margin: 0 auto;
}

.sec3__a:hover {
  background: #232323;
  color: #EDE4CF;
}

.sec3__a div {
  position: relative;
  width: 13px;
  height: 11px;
}

.sec3__a div img {
  width: 13px;
  height: 11px;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.4s;
  transition-timing-function: ease-out;
}

.sec3__a:hover div img:nth-of-type(2) {
  opacity: 0;
}


@media (max-width: 1024px) {
  .sec3 {
    padding: 75px 0;
  }
}


@media (max-width: 600px) {
  .sec3__h2 {
    font-size: 2.8rem;
  }

  .sec3__p {
    font-size: 1.4rem;
  }
}




.sec4 {
  width: 90%;
  max-width: 1080px;
  padding: 100px 0 0;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  gap: 2.5%;
}

.sec4__h2 {
  width: 32.5%;
  font-size: 3.2rem;
}

.sec4__contents {
  width: 65%;
}

.sec4__contents__p {
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 2;
}

.sec4__contents__ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
  line-height: 1.75;
}

.sec4__contents__ul__li__h3 {
  margin-bottom: 10px;
}

.sec4__contents__ul__li__ul {
  list-style: inside;
  margin-left: 5px;
}


@media (max-width: 1024px) {
  .sec4 {
    padding: 75px 0;
    flex-direction: column;
    gap: 50px;
  }

  .sec4__h2 {
    width: 100%;
  }

  .sec4__contents {
    width: 100%;
  }
}


@media (max-width: 600px) {

  .sec4 {
    gap: 30px;
  }

  .sec4__h2 {
    font-size: 2.8rem;
  }

  .sec4__contents__p {
    font-size: 1.4rem;
  }

  .sec4__contents__ul {
    font-size: 1.4rem;
  }
}




.sec5 {
  width: 90%;
  max-width: 1080px;
  padding: 100px 0 0;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  gap: 2.5%;
}

.sec5__h2 {
  width: 32.5%;
  font-size: 3.2rem;
}

.sec5__contents {
  width: 65%;
}

.sec5__contents__p1 {
  font-weight: 400;
  margin-bottom: 20px;
}

.sec5__contents__p2 {
  width: fit-content;
  color: #A59776;
  padding: 20px 30px;
  background: #F6EFDC;
  border-radius: 10px;
}

.sec5__contents div {
  margin-top: -30px;
}


@media (max-width: 1024px) {
  .sec5 {
    padding: 75px 0;
    flex-direction: column;
    gap: 50px;
  }

  .sec5__h2 {
    width: 100%;
  }

  .sec5__contents {
    width: 100%;
  }

  .sec5__contents div {
    margin-top: 0;
  }
}


@media (max-width: 600px) {
  .sec5 {
    gap: 30px;
  }

  .sec5__h2 {
    font-size: 2.8rem;
  }

  .sec5__contents__p {
    font-size: 1.4rem;
  }

  .sec5__contents__ul {
    font-size: 1.4rem;
  }

  .sec5__contents__p2 {
    font-size: 1.4rem;
    padding: 15px 20px;
    margin-bottom: 10px;
  }
}




.sec6 {
  padding: 100px 0;
}

.sec6__title {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
  text-align: left;
}

.sec6__title__h2 {
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.sec6__title__ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
}

.sec6__title__ul__li {
  font-size: 1.4rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sec6__title__ul__li span {
  display: block;
  width: 20px;
  height: 20px;
  background: #C9B689;
}

.sec6__title__ul__li:nth-child(2) span {
  background: #A59776;
}

.sec6__title__ul__li:nth-child(3) span {
  background: #695B3A;
}

/* ===== 横スクロールコンテンツ ===== */
.scroll-wrapper {
  width: 100%;
  overflow: hidden;
}

.scroll-content {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  overflow-x: scroll;
  padding: 40px 40px 60px;
  scrollbar-width: none;
}

.scroll-content::-webkit-scrollbar {
  display: none;
}

.card {
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.card9 {
  padding: 30px 0 40px;
  background: #5C4E2E;
  border-radius: 20px;
}

.card9 strong {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #C9B689;
}

.card9 h3 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #C9B689;
}

.card9 p {
  color: #F6EFDC;
  margin-bottom: 30px;
}

.card9 dl {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #EDE4CF;
}

.card9 dl dt {
  font-weight: 600;
}

.card9 dl dd {
  margin-top: -20px;
}

.card__h3 {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #C9B689;
  font-size: 2rem;
  font-weight: 600;
  border-radius: 20px 20px 0 0;
  color: #F6EFDC;
}

.card5 .card__h3,
.card6 .card__h3 {
  background: #A59776;
}

.card7 .card__h3,
.card8 .card__h3 {
  background: #695B3A;
}

.card__dl {
  padding: 20px 5% 30px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #F6EFDC;
  border-radius: 0 0 20px 20px;
}

.card__dl__dt {
  width: fit-content;
  padding: 2px 5px;
  font-size: 1.4rem;
  font-weight: 600;
  border-radius: 100px;
  background: #C9B689;
  color: #F6EFDC;
}

.card5 .card__dl__dt,
.card6 .card__dl__dt {
  background: #A59776;
}

.card7 .card__dl__dt,
.card8 .card__dl__dt {
  background: #695B3A;
}

.card__dl__dd {
  text-align: left;
  font-weight: 400;
  margin-bottom: 9px;
  line-height: 2;
}

.card3__top {
  position: relative;
  padding: 11px 0;
  margin-bottom: 10px;
  border-radius: 15px;
  background: #232323;
}

.card3__top::after {
  content: "";
  display: block;
  width: 22px;
  height: 23px;
  background: #232323;
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(50% 100%, 0 0, 100% 0);

}

.card3__top strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  color: #C9B689;
}

.card3__top small {
  font-weight: 600;
  color: #F6EFDC;
}


/* ===== カスタムスクロールバー ===== */
.custom-scrollbar {
  width: 100%;
  padding: 0 40px 120px;
}

.scroll-track {
  position: relative;
  height: 1px;
  background: #CCBE9E;
  border-radius: 2px;
}

.scroll-progress {
  position: absolute;
  height: 100%;
  width: 0;
  background: #232323;
  border-radius: 2px;
}

.scroll-thumb {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background: #232323;
  border: solid 1px #EDE4CF;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.sec9__a {
  width: 320px;
  height: 60px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border: solid 1px #232323;
  background: #EDE4CF;
  border-radius: 100px;
  transition: 0.4s;
  transition-timing-function: ease-out;
  font-weight: 400;
  margin: 0 auto;
}

.sec9__a:hover {
  background: #232323;
  color: #EDE4CF;
}

.sec9__a div {
  position: relative;
  width: 13px;
  height: 11px;
}

.sec9__a div img {
  width: 13px;
  height: 11px;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.4s;
  transition-timing-function: ease-out;
}

.sec9__a:hover div img:nth-of-type(2) {
  opacity: 0;
}

@media (max-width: 1024px) {
  .sec6__title__ul {
    flex-wrap: nowrap;
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .scroll-content {
    padding-top: 30px;
  }
}

@media (max-width: 600px) {
  .card {
    width: 250px;
  }

  .card__h3 {
    font-size: 1.5rem;
  }

  .card__dl__dt {
    font-size: 1.1rem;
  }

  .card__dl__dd {
    font-size: 1.2rem;
  }

  .card9 strong {
    font-size: 2.4rem;
  }

  .card9 h3 {
    font-size: 1.8rem;
  }

  .card3__top strong {
    font-size: 1.5rem;
  }

  .card3__top small {
    font-size: 1.4rem;
  }

  .card9 p {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .card9 dl {
    font-size: 1.4rem;
  }
}