@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Almarai:wght@700&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif:wght@100..900&display=swap");
:root {
  --nsan:"Noto Sans JP", sans-serif;
  --nser:"Noto Serif", serif;
  --al:"Almarai", sans-serif;
  font-family: var(--nser);
  font-size: 10px;
  line-height: 1.875;
  letter-spacing: 0.1em;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #000;
  color: #fff;
}

a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
a:hover {
  opacity: 0.7;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.logo {
  position: fixed;
  top: 17px;
  left: 30px;
  width: 80px;
  z-index: 100;
}

.header__nav-bl {
  position: fixed;
  top: 20px;
  right: 30px;
  z-index: 100;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__nav-list {
  display: flex;
  gap: 30px;
  align-items: center;
}
.header__nav-list li a {
  font-weight: 600;
  line-height: 1.5;
  font-size: 1.6rem;
}

.header__nav-btn-list {
  display: flex;
  gap: 10px;
}
.header__nav-btn-list li a {
  display: block;
  height: 67px;
  width: auto;
}
.header__nav-btn-list li a img {
  height: 100%;
  width: auto;
}

#ham {
  display: none;
}

@media screen and (max-width: 1200px) {
  .header__nav-bl {
    position: fixed;
    top: 0;
    right: -105%;
    z-index: 100;
    width: 100%;
    height: 100vh;
    background-color: #0A1725;
    transition: all 0.5s ease-in-out;
    z-index: 99;
  }
  .header__nav-bl.active {
    right: 0;
  }
  .header__nav {
    flex-direction: column;
    gap: 50px;
  }
  .header__nav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .header__nav-wrapper {
    padding: 120px 30px 100px;
    overflow: scroll;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
  .header__nav-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, and Opera */
  }
  .header__nav-list {
    width: 320px;
    max-width: 100%;
  }
  .header__nav-list li {
    width: 100%;
  }
  .header__nav-list li a {
    border-bottom: 1px solid #7F6B4B;
    display: block;
    text-align: center;
    padding: 20px 0;
    width: 100%;
    position: relative;
    font-size: 1.6rem;
  }
  .header__nav-list li a::after {
    content: "";
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translate(0, -50%) rotate(-90deg);
    width: 15px;
    height: 7px;
    background-image: url(../img/top/faq-arrow.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease-in-out;
  }
  .header__nav-list li a:hover::after {
    transform: translate(3px, -50%) rotate(-90deg);
  }
  .header__nav-list li a br {
    display: none;
  }
  .logo {
    top: 13px;
    left: 15px;
    width: 65px;
  }
  #ham {
    display: block;
    width: 60px;
    height: 60px;
    position: fixed;
    top: 13px;
    right: 15px;
    z-index: 100;
    background-color: #0A1725;
  }
  #ham .ham {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
  }
  #ham .ham .ham__line {
    position: absolute;
    left: 20%;
    top: 50%;
    width: 60%;
    height: 1px;
    background-color: #fff;
    transition: all 0.5s ease-in-out;
  }
  #ham .ham .ham__line:nth-child(1) {
    top: 30%;
  }
  #ham .ham .ham__line:nth-child(2) {
    top: 50%;
  }
  #ham .ham .ham__line:nth-child(3) {
    top: 70%;
  }
  #ham.active .ham .ham__line:nth-child(1) {
    top: 50%;
    transform: rotate(45deg);
  }
  #ham.active .ham .ham__line:nth-child(2) {
    opacity: 0;
  }
  #ham.active .ham .ham__line:nth-child(3) {
    top: 50%;
    transform: rotate(-45deg);
  }
}
#top-mv {
  position: relative;
}

.mv__caution {
  font-size: 14px;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  left: 10px;
  bottom: 10px;
}

.light-line-right {
  display: block;
  width: 100%;
  height: 6px;
  background: #A78858;
  background: linear-gradient(70deg, rgb(167, 136, 88) 0%, rgb(181, 166, 136) 100%);
}

.light-line-left {
  display: block;
  width: 100%;
  height: 6px;
  background: #A78858;
  background: linear-gradient(224deg, rgb(167, 136, 88) 0%, rgb(181, 166, 136) 100%);
}

.inner {
  width: 1000px;
  max-width: 90%;
  margin: 0 auto;
}

#top-news {
  padding: 120px 0 0;
}

.top-news__bl {
  display: flex;
  padding: 60px 5%;
}

.top-news__ttl-bl {
  width: 250px;
}

.top-news__cont-bl {
  width: calc(100% - 250px);
}

.top-news__ttl {
  font-size: 3.6rem;
  font-weight: 600;
  margin-bottom: 100px;
}

.base__link {
  display: block;
  width: 150px;
}

.top-news__list li a {
  display: flex;
  padding: 17px 0;
  position: relative;
  align-items: center;
}
.top-news__list li a::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #A78858;
  background: linear-gradient(224deg, rgb(167, 136, 88) 0%, rgb(181, 166, 136) 100%);
}
.top-news__list li a time {
  display: block;
  width: 140px;
  font-family: var(--nsan);
  font-size: 2rem;
  background: linear-gradient(247deg, rgb(167, 136, 88) 0%, rgb(181, 166, 136) 49%, rgb(167, 136, 88) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* Firefox用 */
  color: transparent;
  font-weight: 400;
}
.top-news__list li a .txt {
  width: calc(100% - 140px);
  display: block;
  font-weight: 400;
  font-family: var(--nsan);
  font-size: 1.6rem;
  word-break: break-all;
  line-height: 1.6;
}

#top-problem {
  padding: 140px 0 0;
}

.top-problem__ttl {
  width: 670px;
  max-width: 90%;
  margin: 0 auto 40px;
}

.top-priblem__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  padding-bottom: 150px;
}
.top-priblem__list::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1340px;
  max-width: 95%;
  aspect-ratio: 1281/161;
  background-image: url(../img/top/arrow-bg.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}
.top-priblem__list li {
  aspect-ratio: 1/1;
  background-image: url(../img/top/circle.webp);
  background-size: 107%;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  border-radius: 50%;
}

#top-feature {
  padding: 100px 0 0;
}

.top-feature__ttl {
  width: 440px;
  max-width: 90%;
  margin: 0 auto 100px;
}

.top-feature__list li {
  display: flex;
}
.top-feature__list li:nth-child(2n) {
  flex-direction: row-reverse;
}
.top-feature__list li:nth-child(2n) .cont-inner {
  margin-left: auto !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 5% !important;
}
.top-feature__list li .img {
  width: 50%;
}
.top-feature__list li .cont {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #0A1725;
}
.top-feature__list li .cont .cont-inner {
  width: 500px;
  margin-left: 0;
  margin-right: auto;
  max-width: 95%;
  padding-left: 5%;
}
.top-feature__list li .cont .cont-inner .cont__txt {
  font-size: 1.6rem;
  font-family: var(--nsan);
}
.top-feature__list li .cont .cont-inner .cont__txt small {
  font-size: 80%;
  display: block;
}

.cont__ttl {
  position: relative;
  padding-left: 80px;
  margin-bottom: 35px;
}
.cont__ttl .txt {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.5;
  background: linear-gradient(247deg, rgb(167, 136, 88) 0%, rgb(181, 166, 136) 49%, rgb(167, 136, 88) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* Firefox用 */
  color: transparent;
}
.cont__ttl .tag {
  display: flex;
  width: 60px;
  height: 60px;
  justify-content: center;
  align-items: center;
  background-image: url(../img/top/tag_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  line-height: 1.1;
}
.cont__ttl .tag-txt {
  font-size: 1.4rem;
  font-weight: 600;
}
.cont__ttl .num {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.top-lineup__ttl {
  width: 392px;
  margin: 0 auto 80px;
}

.top-lineup-sec {
  padding: 120px 0;
}

.top-lineup__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9%;
  margin-bottom: 60px;
}
.top-lineup__list li .img {
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 15px;
}
.top-lineup__list li .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.top-lineup__list li .base__link {
  width: 158px;
  margin: 0 auto;
}

.top-lineup__list-ttl {
  text-align: center;
  line-height: 1.3;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.top-lineup__list-tag {
  display: block;
  margin: 0 auto 10px;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #fff;
  padding: 1px 10px;
  font-size: 1.8rem;
}

.top-lineup__list-smel {
  text-align: center;
  font-size: 1.8rem;
}

.top-lineup__list-txt {
  text-align: center;
  font-size: 1.6rem;
  font-family: var(--nsan);
  font-weight: 400;
  margin-bottom: 10px;
}

.coupon-link {
  width: 400px;
  margin: 0 auto;
  display: block;
  max-width: 100%;
}

#top-reason {
  padding: 160px 0 50px;
  background-image: url(../img/top/bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom 0 center;
}

.inner-s {
  width: 800px;
  max-width: 90%;
  margin: 0 auto;
}

.top-reason__ttl {
  width: 777px;
  max-width: 100%;
  margin: 0 auto 80px;
}

.top-reason__ttl-middle {
  width: 730px;
  max-width: 100%;
  margin: 0 auto 40px;
}

.top-feature__img {
  margin-bottom: 40px;
}

.top-feature__txt {
  width: 650px;
  max-width: 100%;
  margin: 0 auto;
  font-size: 1.6rem;
  font-family: var(--nsan);
  font-weight: 400;
}

.top-feature__bl {
  margin-bottom: 80px;
}

.top-reason__list {
  width: 650px;
  max-width: 100%;
  margin: 0 auto;
  font-size: 1.6rem;
  font-family: var(--nsan);
  font-weight: 400;
}
.top-reason__list li {
  margin-bottom: 25px;
}

.top-reason__list-ttl {
  background: linear-gradient(247deg, rgb(167, 136, 88) 0%, rgb(181, 166, 136) 49%, rgb(167, 136, 88) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* Firefox用 */
  color: transparent;
}

.mb30 {
  margin-bottom: 30px !important;
}

.top-voice__ttl {
  width: 275px;
  max-width: 90%;
  margin: 0 auto 50px;
}

.top-voice__list li {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  gap: 50px;
}
.top-voice__list li .icon {
  width: 160px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
.top-voice__list li .fukidashi {
  background-color: #1A2F45;
  border-radius: 10px;
  padding: 25px 5%;
  position: relative;
  width: calc(100% - 210px);
}
.top-voice__list li .fukidashi::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 20px solid #1A2F45;
}
.top-voice__list li .fukidashi p {
  font-size: 2rem;
  font-weight: 500;
}
.top-voice__list li:nth-child(2n) {
  flex-direction: row-reverse;
}
.top-voice__list li:nth-child(2n) .fukidashi::before {
  left: auto;
  right: -20px;
  border-right: none;
  border-left: 20px solid #1A2F45;
}

.top-voice__more-btn {
  width: 312px;
  margin: 70px auto 50px;
  display: block;
  max-width: 100%;
}

#top-howto {
  padding: 120px 0;
}

.top-howto__ttl {
  width: 235px;
  margin: 0 auto 60px;
}

.top-howto__video {
  width: 780px;
  max-width: 100%;
  margin: 0 auto 50px;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #666;
  font-size: 4rem;
}

.top-howto__btn {
  width: 295px;
  margin: 0 auto;
  display: block;
  max-width: 100%;
}

#top-faq {
  padding: 120px 0;
  background-color: #0A1725;
}

.top-faq__ttl {
  text-align: center;
  font-size: 3.6rem;
  font-weight: 600;
  margin-bottom: 50px;
}

.faq__bl {
  border: 1px solid #7F6B4B;
  margin-bottom: 30px;
}

.faq__q {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.faq__q::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 14px;
  background-image: url(../img/top/faq-arrow.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease-in-out;
}
.faq__q.active::after {
  transform: translateY(-50%) rotateX(180deg);
}
.faq__q .q {
  background: linear-gradient(247deg, rgb(167, 136, 88) 0%, rgb(181, 166, 136) 49%, rgb(167, 136, 88) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  font-size: 4rem;
  font-weight: 600;
  font-family: var(--al);
  color: #0A1725;
  line-height: 1;
  height: 100%;
}
.faq__q .txt {
  padding: 20px 65px 20px 20px;
  font-size: 1.8rem;
  line-height: 1.6;
}

.faq__a-bl {
  height: 0;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.faq__a-bl.active {
  height: auto;
  visibility: visible;
  opacity: 1;
}

.faq__a {
  display: grid;
  grid-template-columns: 80px 1fr;
}
.faq__a .a {
  background: #212C38;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  font-size: 4rem;
  font-weight: 600;
  font-family: var(--al);
  color: #6C7680;
  line-height: 1;
  height: 100%;
}
.faq__a .txt {
  padding: 20px;
  font-size: 1.6rem;
  font-family: var(--nsan);
  font-weight: 400;
  line-height: 1.6;
}

.top-faq__btn {
  display: block;
  width: 330px;
  margin: 50px auto 0;
  max-width: 100%;
}

#top-caution {
  padding: 120px 0 80px;
  background-color: #0A1725;
}

.top-caution__ttl {
  text-align: center;
  font-size: 3.6rem;
  font-weight: 600;
  margin-bottom: 50px;
}

.top-caution__cont {
  height: 300px;
  width: 820px;
  max-width: 100%;
  border: 1px solid #7F6B4B;
  padding: 20px;
  overflow-y: auto;
  color: #fff;
  line-height: 1.8;
  /* Firefox用 */
  scrollbar-width: thin;
  scrollbar-color: #D9D9D9 transparent;
}

/* WebKit系ブラウザ用 */
.top-caution__cont::-webkit-scrollbar {
  width: 20px; /* ←少し太めにして余白を演出 */
}

.top-caution__cont::-webkit-scrollbar-track {
  background-color: #000; /* 背景に黒 */
  border-left: 1px solid #7F6B4B; /* ←ここが“ボーダー感”の正体！ */
  margin: 4px 0; /* 上下に余白で丸みを強調 */
  border-radius: 10px;
}

.top-caution__cont::-webkit-scrollbar-thumb {
  background-color: #D9D9D9;
  border-radius: 10px;
  margin: 2px;
  border: 3px solid #000; /* ←これで余白のような印象に */
  background-clip: content-box;
}

.top-caution__cont p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.4rem;
  font-family: var(--nsan);
  font-weight: 400;
}
.top-caution__cont p:last-child {
  margin-bottom: 0;
}

.under-bottom {
  display: block;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #fff;
}

.big-txt {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.5em;
  margin-left: -1em;
  width: calc(100% + 1em);
}

.indent-box {
  display: block;
  padding-left: 1em;
}

.indent-1em {
  display: block;
  margin-left: -1em;
  width: calc(100% + 1em);
}

.border-top-pt30 {
  padding-top: 30px;
  border-top: 1px solid #fff;
}

@media screen and (max-width: 1200px) {
  .top-feature__list li .cont .cont-inner .cont__txt {
    font-size: 1.5rem;
  }
  .cont__ttl {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 1000px) {
  .top-feature__list li {
    flex-direction: column;
  }
  .top-feature__list li:nth-child(2n) {
    flex-direction: column;
  }
  .top-feature__list li:nth-child(2n) .cont .cont-inner {
    width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 90%;
    padding-left: 0;
    padding: 40px 0;
    padding-right: 0 !important;
  }
  .top-feature__list li .img {
    width: 100%;
  }
  .top-feature__list li .cont {
    width: 100%;
  }
  .top-feature__list li .cont .cont-inner {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    padding-left: 0;
    padding: 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .top-news__bl {
    display: flex;
    padding: 30px 0;
    flex-direction: column;
    position: relative;
    padding-bottom: 100px;
  }
  .top-news__ttl-bl {
    width: 100%;
  }
  .top-news__ttl-bl .base__link {
    position: absolute;
    left: 50%;
    bottom: 35px;
    transform: translateX(-50%);
    padding: 0;
  }
  .top-news__ttl {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
  }
  .top-news__cont-bl {
    width: 100%;
  }
  .top-news__list li a time {
    font-size: 1.6rem;
    width: 100px;
  }
  .top-news__list li a .txt {
    width: calc(100% - 100px);
    font-size: 1.5rem;
  }
  #top-news {
    padding: 40px 0 0;
  }
  .top-problem__ttl {
    width: 235px;
    margin: 0 auto 30px;
  }
  #top-problem {
    padding: 90px 0 0;
  }
  .top-priblem__list {
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 24vw;
  }
  .top-priblem__list li {
    font-size: 1.5rem;
  }
  .top-feature__ttl {
    width: 349px;
    margin: 0 auto 40px;
  }
  .top-feature__list li .cont .cont-inner .cont__txt {
    font-size: 1.6rem;
  }
  .top-priblem__list::after {
    width: 90vw;
    aspect-ratio: 430/106;
    background-image: url(../img/top/problrm-arrow-sp.webp);
  }
  #top-feature {
    padding: 60px 0 0;
  }
  .top-lineup__ttl {
    width: 340px;
    max-width: 100%;
    margin: 0 auto 50px;
  }
  .top-lineup__list {
    width: 300px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
    margin-left: auto;
    max-width: 100%;
    margin-right: auto;
  }
  .top-lineup-sec {
    padding: 80px 0;
  }
  .coupon-link {
    width: 390px;
  }
  .top-reason__ttl {
    width: 290px;
    margin: 0 auto 55px;
  }
  .top-voice__ttl {
    width: 253px;
  }
  .top-voice__list li .fukidashi {
    padding: 20px 7%;
    width: calc(100% - 110px);
  }
  .top-voice__list li .icon {
    width: 80px;
  }
  .top-voice__list li {
    gap: 30px;
  }
  .top-voice__list li .fukidashi p {
    font-size: 1.6rem;
  }
  .top-voice__more-btn {
    margin: 60px auto 40px;
  }
  #top-reason {
    padding: 90px 0 20px;
  }
  .top-howto__ttl {
    width: 209px;
    margin: 0 auto 45px;
  }
  #top-howto {
    padding: 90px 0;
  }
  #top-faq {
    padding: 60px 0;
  }
  .top-faq__ttl {
    font-size: 3rem;
    margin-bottom: 30px;
  }
  .faq__q {
    grid-template-columns: 40px 1fr;
  }
  .faq__q .q {
    font-size: 2.4rem;
  }
  .faq__q::after {
    right: 15px;
    width: 20px;
    height: 10px;
  }
  .faq__q .txt {
    padding: 15px 40px 15px 15px;
    font-size: 1.4rem;
  }
  .faq__a .a {
    font-size: 2.4rem;
  }
  .faq__a {
    grid-template-columns: 40px 1fr;
  }
  .faq__a .txt {
    padding: 15px;
    font-size: 1.4rem;
  }
  .top-faq__btn {
    margin: 40px auto 0;
  }
  .faq__bl {
    margin-bottom: 20px;
  }
  #top-caution {
    padding: 60px 0 40px;
  }
  .top-caution__ttl {
    font-size: 3rem;
    margin-bottom: 25px;
  }
  .top-caution__cont p {
    font-size: 1.2rem;
  }
  .top-lineup__list li .base__link {
    padding: 0;
  }
}
@media screen and (max-width: 370px) {
  .mv__caution {
    font-size: 3.7vw;
  }
}
footer {
  background-color: rgb(10, 23, 37);
  padding-bottom: 20px;
  padding-top: 20px;
}
footer.under__footer {
  background-color: #000;
}

.footer__copy {
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  font-family: var(--nsan);
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .footer__copy {
    font-size: 1.3rem;
  }
}
.js-fadeUp {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease-in-out;
}
.js-fadeUp.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-fadeIn {
  opacity: 0;
  transition: all 0.7s ease-in-out;
}
.js-fadeIn.is-visible {
  opacity: 1;
}

body {
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: all 0.5s ease-in-out;
  visibility: hidden;
}
body.head-fixed::before {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 1200px) {
  body::before {
    height: 110px;
  }
}
.under-article {
  padding-bottom: 120px;
}

.under-mv {
  width: 100%;
  height: 480px;
  background-image: url(../img/under/under_mv_bg.webp);
  background-size: cover;
  background-position: center;
}

.under-mv__inner {
  width: 1100px;
  max-width: 90%;
  margin: 0 auto;
  padding-top: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.under-mv__ttl {
  font-size: 3rem;
  font-weight: bold;
}

.under-mv__img {
  width: 326px;
  aspect-ratio: 326/267;
  max-width: 90%;
}
.under-mv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
  padding-top: 20px;
  gap: 30px;
}
.breadcrumb li {
  font-size: 1.3rem;
  font-family: var(--nsan);
  position: relative;
}
.breadcrumb li:not(:last-child)::after {
  content: "/";
  position: absolute;
  right: -20px;
  top: 0;
}

.under-base__ttl {
  position: relative;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 40px;
  padding-bottom: 10px;
  line-height: 1.6;
}
.under-base__ttl::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #A78858;
  background: linear-gradient(70deg, rgb(167, 136, 88) 0%, rgb(181, 166, 136) 100%);
}

.under-sec {
  margin-bottom: 80px;
}
.under-sec:last-child {
  margin-bottom: 0;
}

.weight400 {
  font-weight: 400 !important;
}

.product__main-img {
  width: 480px;
  aspect-ratio: 480/470;
  margin: 0 auto 50px;
  max-width: 100%;
}
.product__main-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.product__btn-bl {
  width: 820px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 0 auto 100px;
  max-width: 100%;
}
.product__btn-bl a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  height: 60px;
}
.product__btn-bl a.product__btn-navy {
  background-color: #0A1725;
  color: #fff;
  border: #A78858 solid 1px;
}
.product__btn-bl a.product__btn-gold {
  color: #040404;
  background: #A78858;
  background: linear-gradient(70deg, rgb(167, 136, 88) 0%, rgb(181, 166, 136) 100%);
}

.product__cont-bl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3%;
}

.product__cont-item {
  margin-bottom: 50px;
}
.product__cont-item:last-child {
  margin-bottom: 0;
}

.product__cont-item-ttl {
  position: relative;
  padding: 15px 5px;
  font-size: 2.4rem;
  background: linear-gradient(247deg, rgb(167, 136, 88) 0%, rgb(181, 166, 136) 49%, rgb(167, 136, 88) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* Firefox用 */
  color: transparent;
}
.product__cont-item-ttl::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #A78858;
  background: linear-gradient(70deg, rgb(167, 136, 88) 0%, rgb(181, 166, 136) 100%);
}
.product__cont-item-ttl::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #A78858;
  background: linear-gradient(70deg, rgb(167, 136, 88) 0%, rgb(181, 166, 136) 100%);
}

.product__cont-first-bl .product__cont-item-ttl {
  margin-bottom: 20px;
}
.product__cont-first-bl .product__cont-item-txt {
  font-size: 2rem;
  font-family: var(--nsan);
}
.product__cont-first-bl .product__cont-item-txt-small {
  font-size: 1.6rem;
  font-family: var(--nsan);
  margin-bottom: 20px;
}
.product__cont-first-bl .product__cont-item-txt-small:last-of-type {
  margin-bottom: 0;
}

.js-ac-ttl {
  padding: 15px 30px 15px 0;
  margin-bottom: 0 !important;
  cursor: pointer;
}
.js-ac-ttl .ac-btn {
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.js-ac-ttl .ac-btn::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #A78858;
  transition: all 0.3s ease-in-out;
  left: 0;
  top: 46%;
  transform: translateY(-50%);
  position: absolute;
}
.js-ac-ttl .ac-btn::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #A78858;
  position: absolute;
  left: 46%;
  top: 0;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
}
.js-ac-ttl.is-active .ac-btn::after {
  opacity: 0;
}

.js-ac-cont {
  visibility: hidden;
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.js-ac-cont.is-visible {
  visibility: visible;
  height: auto;
  opacity: 1;
}

.product__cont-item-cont-inner {
  background-color: #0A1725;
  padding: 30px 20px;
}
.product__cont-item-cont-inner .product__cont-item-txt {
  font-size: 1.6rem;
  font-family: var(--nsan);
}

.base__txt {
  font-size: 1.6rem;
  font-family: var(--nsan);
  line-height: 1.8;
  margin-bottom: 30px;
}
.base__txt:last-child {
  margin-bottom: 0;
}

.under-base__ttl-middle {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.6;
  background: linear-gradient(247deg, rgb(167, 136, 88) 0%, rgb(181, 166, 136) 49%, rgb(167, 136, 88) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* Firefox用 */
  color: transparent;
  margin-top: 40px;
}

.base__list {
  margin-bottom: 30px;
}
.base__list li {
  position: relative;
  padding-left: 30px;
  font-size: 1.6rem;
  font-family: var(--nsan);
  margin-bottom: 10px;
}
.base__list li:last-child {
  margin-bottom: 0;
}
.base__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 10px;
  height: 1px;
  background-color: #A78858;
}

.howto__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 100px;
}
.howto__list li {
  position: relative;
  display: flex;
  align-items: center;
}
.howto__list li .img {
  width: 40%;
}
.howto__list li .cont {
  width: 60%;
  padding-left: 4%;
}
.howto__list li::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -65px;
  width: 180px;
  aspect-ratio: 180/30;
  height: auto;
  background-image: url(../img/under/gold-arrow.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.howto__list li:last-child::after {
  display: none;
}

.howto__list-ttl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.howto__list-ttl .step-tag {
  width: 102px;
  display: block;
}
.howto__list-ttl .txt {
  font-size: 2rem;
  font-weight: 500;
  background: linear-gradient(247deg, rgb(167, 136, 88) 0%, rgb(181, 166, 136) 49%, rgb(167, 136, 88) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* Firefox用 */
  color: transparent;
}

.howto__list-ttl-middle {
  font-size: 1.8rem;
  font-family: var(--nsan);
  line-height: 1.8;
  margin-bottom: 30px;
  font-weight: 400;
}

.howto__list-caution {
  display: flex;
  flex-wrap: wrap;
  font-family: var(--nsan);
  font-size: 1.5rem;
}
.howto__list-caution .caution-ttl {
  display: block;
  width: 50px;
  font-weight: bold;
}
.howto__list-caution .caution-txt {
  width: calc(100% - 50px);
  font-weight: 400;
}

.howto__list-caution02 {
  display: flex;
  flex-wrap: wrap;
  font-family: var(--nsan);
  font-size: 1.4rem;
  margin-top: 20px;
}
.howto__list-caution02 .caution-ttl {
  display: block;
  width: 25px;
  font-weight: bold;
}
.howto__list-caution02 .caution-txt {
  width: calc(100% - 25px);
  font-weight: 400;
}

.pdf-link {
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 30px;
  background-color: #0A1725;
  font-size: 1.8rem;
  border: 1px solid #7F6B4B;
  margin: 40px auto 0;
  background: linear-gradient(247deg, rgb(167, 136, 88) 0%, rgb(181, 166, 136) 49%, rgb(167, 136, 88) 100%);
  background-clip: border-box;
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: block;
}

@media screen and (max-width: 767px) {
  .under-base__ttl {
    font-size: 2.4rem;
  }
  .under-mv {
    height: auto;
    padding-bottom: 40px;
  }
  .under-mv__inner {
    padding-top: 114px;
    flex-direction: column;
    gap: 30px;
  }
  .under-article {
    padding-bottom: 80px;
  }
  .product__btn-bl {
    width: 300px;
    grid-template-columns: 1fr;
    margin: 0 auto 70px;
    gap: 15px;
  }
  .product__btn-bl a {
    font-size: 1.6rem;
  }
  .product__main-img {
    margin: 0 auto 30px;
  }
  .product__cont-bl {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product__cont-item-ttl {
    font-size: 2rem;
  }
  .product__cont-first-bl .product__cont-item-txt {
    font-size: 1.8rem;
  }
  .under-base__ttl-middle {
    font-size: 2.1rem;
  }
  .base__txt {
    font-size: 1.5rem;
  }
  .base__list li {
    font-size: 1.5rem;
  }
  .howto__list li {
    flex-direction: column;
    gap: 30px;
  }
  .howto__list li .img {
    width: 100%;
  }
  .howto__list li .cont {
    width: 100%;
    padding-left: 0;
  }
  .howto__list-ttl {
    justify-content: center;
  }
}
.info__flex {
  display: flex;
  gap: 50px;
  word-break: break-all;
}

.info__sidebar {
  width: 200px;
}

.info__main-bl {
  width: calc(100% - 250px);
}

.info__side-ttl {
  border-bottom: solid 1px #ccc;
  font-size: 18px;
  padding-bottom: 10px;
  padding-left: 16px;
  position: relative;
  margin-bottom: 20px;
  line-height: 1.6;
}
.info__side-ttl::before {
  background: #ccc;
  border-radius: 0;
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 8px;
  height: 1px;
}

.post-list__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}

.post-list__img {
  width: 100%;
  aspect-ratio: 3/2;
  margin-bottom: 15px;
}
.post-list__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.post-list__date {
  font-size: 12px;
  font-family: var(--nsans);
  line-height: 1.5;
}

.post-list__ttl {
  font-size: 16px;
}

/* お知らせ・ブログ（詳細） */
.info__ttl {
  position: relative;
  padding: 8px 0;
  margin-bottom: 20px;
  font-size: 36px;
  background: linear-gradient(247deg, rgb(167, 136, 88) 0%, rgb(181, 166, 136) 49%, rgb(167, 136, 88) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* Firefox用 */
  color: transparent;
}
.info__ttl::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #A78858;
  background: linear-gradient(70deg, rgb(167, 136, 88) 0%, rgb(181, 166, 136) 100%);
}

.info__cont {
  margin-top: 30px;
}

.info__cont h2 {
  font-size: 30px;
  background: linear-gradient(247deg, rgb(167, 136, 88) 0%, rgb(181, 166, 136) 49%, rgb(167, 136, 88) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* Firefox用 */
  color: transparent;
  position: relative;
  line-height: 1.6;
  margin-bottom: 30px;
}

.info__cont h3 {
  border-bottom: 1px solid #E0E0E0;
  position: relative;
  padding-bottom: 15px;
  font-size: 26px;
  margin-bottom: 35px;
}

.info__cont h3::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--l-green);
}

.info__cont h4 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 24px;
  color: var(--l-green);
}

.base__txt,
.info__cont p {
  font-size: 15px;
  margin-bottom: 30px;
  line-height: 2;
  letter-spacing: 0.1em;
}

.single__info-btn {
  width: 200px;
  display: block;
  margin: 50px auto 0;
}

.news__all-link {
  width: 153px;
  border-bottom: 1px solid #E0E0E0;
  position: relative;
  padding-bottom: 7px;
}

.news__all-link:hover .icon-arrow {
  right: -3px;
  transition-duration: 0.3s;
}

.news__all-link .icon-arrow {
  font-size: 20px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -75%);
  color: var(--l-green);
  transition-duration: 0.3s;
}

.icon-arrow:before {
  content: "\e900";
  color: var(--l-green);
}

/* ページネーション */
.nav-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 50px auto 0px;
  align-items: center;
}
.nav-links .page-numbers {
  font-size: 14px;
  font-family: var(--nsans);
}
.nav-links .page-numbers.current {
  background-color: #3a3131;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cyan-txt {
  color: var(----l-green);
}

.mb20 {
  margin-bottom: 20px;
}

.mb0 {
  margin-bottom: 0 !important;
}

.bold {
  font-weight: bold;
}

.under-mv__ttl-en {
  text-align: center;
}

#under-intr .top-menu__list-img {
  border-radius: 50%;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
}

.img600 {
  margin-inline: auto;
  width: min(100%, 600px);
}

.snav-lst {
  font-size: 1.4rem;
}

.info__cont img {
  margin-bottom: 30px;
}

.mb60 {
  margin-bottom: 60px !important;
}

.news__link {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  height: 50px;
  background-color: #0A1725;
  border: #A78858 solid 1px;
  padding: 0 60px;
}
.news__link .txt {
  background: linear-gradient(247deg, rgb(167, 136, 88) 0%, rgb(181, 166, 136) 49%, rgb(167, 136, 88) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* Firefox用 */
  color: transparent;
}
.news__link.news__link-center {
  margin: 50px auto 0;
}

@media screen and (max-width: 834px) {
  .post-list__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
  .info__flex {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
  .info__main-bl {
    width: 100%;
  }
  .info__sidebar {
    width: 100%;
  }
}
.implant-sec .u-inner p + p {
  padding-top: 1em;
}
.implant-sec .text__note {
  font-size: 0.875em;
}
.implant-sec .text-center {
  text-align: center;
}
.implant-sec .base__detail-list {
  border: 1px solid #E6E6E6;
  gap: 0;
}
.implant-sec .base__detail-list__col {
  flex: 1;
  border-right: 1px solid #E6E6E6;
}
.implant-sec .base__detail-list__th,
.implant-sec .base__detail-list__td {
  padding: 1em;
}
.implant-sec .base__detail-list__th {
  font-weight: bold;
  background: #F7F7F5;
  text-align: center;
}
.implant-sec .base__detail-list__td {
  padding: 1em;
}
.implant-sec .img375 {
  width: min(375px, 100%);
}

@media print, screen and (min-width: 768px) {
  .implant-sec .base__detail-list {
    border: 1px solid #E6E6E6;
  }
  .implant-sec .base__detail-list__col:last-child {
    border-right: 0;
  }
  .implant-sec .base__detail-list__td:nth-child(4) {
    min-height: 46em;
  }
}
@media print, screen and (max-width: 767px) {
  .implant-sec .base__detail-list {
    gap: 2em;
  }
  .implant-sec .base__detail-list__col {
    border: 1px solid #E6E6E6;
  }
  .blog .column__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
  .blog .column__list li a .img img {
    border-radius: 8px;
  }
  .archive .column__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
  .archive .column__list li a .img img {
    border-radius: 8px;
  }
  .info__ttl {
    font-size: 21px;
  }
  .info__cont h2 {
    font-size: 20px;
    padding-left: 16px;
    margin-bottom: 15px;
  }
  .info__cont h2::before {
    top: 13px;
    width: 7px;
    height: 7px;
  }
  .info__cont h3 {
    padding-bottom: 8px;
    font-size: 18px;
    margin-bottom: 20px;
  }
  .info__cont h4 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .smb40 {
    margin-bottom: 40px !important;
  }
  .base__link {
    font-size: 1.4rem;
    padding: 0 40px;
    height: 40px;
  }
}/*# sourceMappingURL=style.css.map */