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


/**********************************************************/
/* PC */
/**********************************************************/
/**********************************
　ファーストビュー
**********************************/
.top-fv {
  align-items: center;
  background-image: url(../images/top/fv-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  height: 100svh;
  justify-content: center;
  position: relative;
  width: 100%;
}
.top-fv-contents {
  align-items: center;
  display: flex;
  flex-direction: column;
}
.top-fv-logo01 {
  height: auto;
  width: 33.3rem;
}
.top-fv-logo02 {
  height: auto;
  margin-top: 1.1rem;
  width: 26.5rem;
}
.top-fv-text {
  font-size: 2.8rem;
  font-weight: 700;
  margin-top: 3.1rem;
}
.top-fv-icon {
  height: auto;
  margin-top: .8rem;
  width: 11.0rem;
}
.top-fv-scrollWrap {
  align-items: center;
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}
.top-fv-scroll {
  color: #A16F4E;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0;
}
.top-fv-scrollImg:nth-of-type(1) {
  margin-top: .8rem;
}
.top-fv-scrollImg:nth-of-type(2) {
  transform: translateY(-.8rem);
}

/**********************************
　3STEP
**********************************/
.top-step {
  margin-top: 2.96rem;
  position: relative;
}
.top-step-decoration {
  bottom: 6.5rem;
  position: absolute;
  right: 0;
  z-index: -1;
  width: max(76.4rem, calc(764 / 1440 * 100vw));
}
.top-step-head {
  color: #A16F4E;
  font-size: 4rem;
  font-weight: 900;
  display: inline-block;
  letter-spacing: .1em;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
}
.top-step-head::before,
.top-step-head::after {
  border-top: .3rem solid #A16F4E;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 5.1rem;
}
.top-step-head::before {
  left: -1.5rem;
  transform: translate(-100%, -50%);
}
.top-step-head::after {
  right: -1.5rem;
  transform: translate(100%, -50%);
}
.top-step-contentsWrap {
  display: flex;
  gap: calc(39 / 1440 * 100vw);
  margin-top: 4.76rem;
}
.top-step-contents {
  padding: 3rem;
  text-align: center;
  width: calc(33.333% - calc((39 / 1440 * 100vw) * 2 / 3));
}
.top-step-contents:nth-of-type(2n + 1) {
  background-color: #FDFCEF;
}
.top-step-img {
  height: 14.1rem;
  margin-top: 2.5rem;
  object-fit: contain;
  width: auto;
}
.top-step-text {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: calc(30 / 16);
  margin-top: 3rem;
}
.top-step-text > span {
  font-weight: 700;
}

/**********************************
　STEP1
**********************************/
.top-step1 {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-top: 10.96rem;
  position: relative;
}
.top-step1 .stepContents {
  padding-left: 10rem;
}
.top-step1-decoration {
  display: none;
  position: absolute;
  z-index: -1;
}
.top-step1-buttonWrap {
  display: flex;
  gap: 3.5rem;
  margin-top: 5.1rem;
}

/**********************************
　デコレーション
**********************************/
.top-bottom-decoration {
  bottom: 0;
  height: auto;
  position: absolute;
  z-index: -1;
  margin: 0 !important;
  width: 810px;
}

/**********************************
よくある質問
**********************************/
.faq-sec{
  position: relative;
  margin-top: 100px;
  z-index: 1;
}

@keyframes scroll-anim {
  100% {
    background-position: -100% 0;
  }
}
.faq-sec .top-ttl{
  background-color: #FDFCEF;
  position: absolute;
  top: 0;
  z-index: -1;
}
.faq-sec .top-ttl h2 {
  padding: 72px 0 316px 0;
}
.faq-sec .top-ttl h2::after {
  top: 5rem;
}
.faq-sec .details{
  max-width: 960px;
  padding-top: 175px
}
.faq-sec .details details h3,
.faq-sec .details details h4{
  font-size: 2.6rem;
  margin-right: 10px;
}
.faq-sec .details details h3{
  color: #A16F4E;
}
.faq-sec .details details{
  background: #fff;
  margin-bottom: 17px;
}
.faq-sec .details div.flex{
  align-items: center;
}
.faq-sec .details summary {
  display: block;
  border: solid 1px #A16F4E;
  padding: 20px 12px;
  cursor: pointer;
  position: relative;
}
.faq-sec .details summary::-webkit-details-marker {
  display:none;
}
.faq-sec details summary::after {
  content: "＋";
  color: #707070;
  font-size: 2rem;
  font-weight: 400;
  position: absolute;
  right: 28px;
  top:24px;
}
.faq-sec details[open] summary::after {
  content: "−";
  top:22px;
}

.faq-sec .answer-box{
  padding: 20px 12px;
  background: #FAE24C;
}
/* オープン時にアニメーションを設定 */
.faq-sec details[open] {
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
  0% {
    opacity: 0; /* 透明 */
    transform: translateY(-10px); /* 上から表示 */
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

/**********************************************************/
/* SP*/
/**********************************************************/
@media screen and (max-width:767px){

/**********************************
section共通
**********************************/
.top-ttl{
  min-width: 80%;
  width: calc(100% - 40px);
  height: 111px;
}
.top-ttl h2 {
  left: 10px;
  font-size: 2.2rem;
  height: 111px;
  padding: 0;
  top:34px;
}
.top-ttl h2::after {
  top: -14px;
}

/**********************************
　ファーストビュー
**********************************/
.top-fv {
  background-image: url(../images/top/fv-bg-sp.webp);
}
.top-fv-logo01 {
  width: 21.8rem;
}
.top-fv-logo02 {
  width: 17.4rem;
  margin-top: .5rem;
}
.top-fv-text {
  font-size: 1.8rem;
  margin-top: 1.9rem;
}
.top-fv-icon {
  margin-top: .5rem;
  width: 8.5rem;
}
.top-fv-scroll {
  font-size: 1.2rem;
}
.top-fv-scroll.img {
  width: 1.9rem;
}
.top-fv-scrollImg:nth-of-type(1) {
  margin-top: .3rem;
}

/**********************************
　3STEP
**********************************/
.top-step {
  margin-top: 4.8rem;
}
.top-step-decoration {
  bottom: auto;
  top: 0;
  width: 33.3rem;
}
.top-step-head {
  font-size: 2.1rem;
}
.top-step-head::before,
.top-step-head::after {
  width: 2.7rem;
}
.top-step-head::before {
  left: -1rem;
}
.top-step-head::before {
  right: -1rem
}
.top-step-contentsWrap {
  flex-direction: column;
  gap: 4.5rem;
}
.top-step-contents {
  margin-inline: auto;
  padding: calc(17 / 375 * 100vw) calc(10 / 375 * 100vw);
  width: calc(311 / 375 * 100%);
}
.top-step-img {
  height: 7.2rem;
  margin-top: 2.3rem;
}
.top-step-text {
  font-size: 1.3rem;
  margin-top: 3.5rem;
}

/**********************************
　STEP1
**********************************/
.top-step1 {
  margin-top: 9.6rem;
}
.top-step1 .stepContents {
  margin-inline: auto;
  padding-left: 0;
  width: 29.1rem;
}
.top-step1-decoration {
  display: block;
  left: 0;
  top: -3rem;
  width: calc(319 / 375 * 100vw);
}
.top-step1-buttonWrap {
  align-items: center;
  flex-direction: column;
  gap: 2.95rem;
  margin-top: 5rem;
}
.top-step1 .stepContents-bottom {
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 2.35rem;
}
.top-step1 .stepContents-bottom-imgWrap {
  margin-inline: auto;
}
.top-step1 .stepContents-bottom-text {
  font-size: 1.3rem;
  width: 100%;
}

/**********************************
　デコレーション
**********************************/
.top-bottom-decoration {
  display: none;
}

/**********************************
よくある質問
**********************************/
.faq-sec {
  margin-top: 0;
}
.faq-sec .top-ttl {
  top: 10rem;
}
.faq-sec .top-ttl h2 {
  padding: 0;
  top: 3.35rem;
}
.faq-sec .top-ttl h2::after {
  top: -1.4rem;
}
.faq-sec .details {
  margin: 0 auto 55px;
  width: 100%;
  padding: 240px 10px 0 10px;
}
.faq-sec details summary::after {
  right: 6px;
  font-size: 1.8rem;
}
.faq-sec .details details h3,
.faq-sec .details details h4 {
    font-size: 1.8rem;
    margin-right: 8px;
}
.faq-sec .details details p {
    width: 90%;
}


}