@charset "UTF-8";

/* -----------------------------------------------
table
----------------------------------------------- */
table {
  border-top: 1px solid #97A791;
  border-left: 1px solid #97A791;
  width: 100%; 
}
table tr > * {
  border-right: 1px solid #97A791;
  border-bottom: 1px solid #97A791;
  text-align: center;
}
table th {
  background: #F0F4E1;
  font-weight: normal;
}
table td {}


/* -----------------------------------------------
mv
----------------------------------------------- */
.mv__wrap {
  position: relative;
}
.mv__wrap::after {
  content: "";
  background: url(../images/common/mv_mask.svg) 50% 100% / contain no-repeat;
  display: block;
  position: absolute;
  bottom: -1px;
}
.mv__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mv__inner .mv__cap {
  color: #fff;
}
.mv__inner .mv__cap h1 {
  font-weight: normal;
  text-shadow: 0px 0px 5px rgba(0,0,0,1),0px 0px 10px rgba(0,0,0,1);
}

@media (max-width: 767px) {
  .mv__wrap {
    aspect-ratio: 750 / 360;
    background: url(../images/process/mv_sp.jpg) 50% 0 / cover no-repeat;
    width: 100%;
    height: auto;
  }
  .mv__wrap::after {
    aspect-ratio: 250 / 30;
    width: 66.67%;
    right: -17%;
  }
  .mv__inner {
    width: 84%;
    height: 100%;
    margin: 0 auto;
  }
  .mv__inner .mv__cap h1 {
    font-size: min(calc(var(--vw) * 22px),22px);
    letter-spacing: .05em;
    line-height: 1.66;
  }
  
}
@media (min-width: 768px) {
  .mv__wrap {
    aspect-ratio: 1440 / 360;
    background: url(../images/process/mv_pc.jpg) 50% 0 / cover no-repeat;
    width: 100%;
    height: auto;
  }
  .mv__wrap::after {
    aspect-ratio: 824 / 102;
    max-width: 824px;
    width: 57.23%;
    right: -17%;
  }
  .mv__inner {
    width: 91.12%;
    height: 100%;
    margin: 0 auto;
  }
  .mv__inner .mv__cap h1 {
    font-size: 38px;
    letter-spacing: .1em;
  }

}



.bg__wrap {
  background: #FBFAF5;
}


/* -----------------------------------------------
sec__head
----------------------------------------------- */
.sec__head {
  text-align: center;
}
.sec__head * {
  font-weight: normal;
}
.sec__head h2 {
  position: relative;
}
.sec__head h2:after {
  content: "";
  position: absolute;
  height: 2px;
  background: #397121;
}
.sec__head strong,
.sec__head > span {
  display: block;
}

@media (max-width: 767px) {
  .sec__head {
    margin-bottom: 30px;
  }
  .sec__head h2 {
    font-size: min(calc(var(--vw) * 26px),26px);
    margin-bottom: 64px;
  }
  .sec__head h2:after {
    top: calc(100% + 14px);
    left: calc(50% - 23px);
    width: 46px;
  }
  .sec__head h3 {
    font-size: min(calc(var(--vw) * 20px),20px);
    margin-bottom: 24px;
  }
  .sec__head strong {
    font-size: min(calc(var(--vw) * 18px),18px);
    margin-bottom: 12px;
  }
  .sec__head > span {
    font-size: min(calc(var(--vw) * 12px),12px);
  }
  .sec__head p {
    font-size: min(calc(var(--vw) * 14px),14px);
    line-height: 2.14;
  }

}
@media (min-width: 768px) {
  .sec__head {
    margin-bottom: 50px;
  }
  .sec__head h2 {
    font-size: 32px;
    margin-bottom: 78px;
  }
  .sec__head h2:after {
    top: calc(100% + 20px);
    left: calc(50% - 23px);
    width: 46px;
  }
  .sec__head h3 {
    font-size: 30px;
    margin-bottom: 34px;
  }
  .sec__head strong {
    font-size: 22px;
    margin-bottom: 8px;
  }
  .sec__head > span {
    font-size: 14px;
  }
  .sec__head p {
    font-size: 16px;
    line-height: 2.5;
  }

}



.head__img__wrap {
  display: flex;
  flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
}
.head__img__wrap .head__img__item {
  text-align: center;
}

@media (max-width: 767px) {
  .head__img__wrap {
    margin-bottom: 60px;
  }
  .head__img__wrap .head__img__item {
    width: 47.62%;
    margin-bottom: 28px;
  }
  .head__img__item picture {
    margin-bottom: 10px;
    border-radius: 10px !important;
  }
  .head__img__item p {
    font-size: min(calc(var(--vw) * 13px),13px);
    letter-spacing: 0;
  }

 
}
@media (min-width: 768px) {
  .head__img__wrap {
    margin-bottom: 124px;
  }
  .head__img__wrap .head__img__item {
    width: 29.091%;
    max-width: 320px;
    margin-bottom: 36px;
  }
  .head__img__item picture {
    margin-bottom: 20px;
  }
  .head__img__item p {
    font-size: 20px;
  }

}


/* -----------------------------------------------
tab__btn
----------------------------------------------- */
.tab__btn__wrap  .tab__btn__list {
  margin-inline: auto;
  font-weight: normal;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.tab__btn__list button {
  background: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
}
.tab__btn__list button.active {
  background: #397121;
  color: #fff;
}

@media (max-width: 767px) {
  .tab__btn__wrap {
    margin-bottom: 66px;
    width: 84%;
    margin-inline: auto;
  }
  .tab__btn__list li {
    width: 31.12%;
    border-bottom: 1px solid #397121;
    padding-bottom: 2px;
  }
  .tab__btn__list button {
    font-size: min(calc(var(--vw) * 14px),14px);
    height: 60px;
  }

}
@media (min-width: 768px) {
  .tab__btn__wrap {
    margin-bottom: 102px;
  }
  .tab__btn__list {
    max-width: 880px;
  }
  .tab__btn__list li {
    width: 31.82%;
    max-width: 280px;
    border-bottom: 2px solid #397121;
    padding-bottom: 5px;
  }
  .tab__btn__list button {
    line-height: 80px;
  }

}



/* -----------------------------------------------
tab__contents
----------------------------------------------- */
.tab__contents {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.tab__contents.active {
  display: block;
  opacity: 1;
}
.tab__contents__wrap picture {
  overflow: hidden;
}

@media (max-width: 767px) {
  .tab__contents__wrap picture {
    border-radius: 10px;
  }

}
@media (min-width: 768px) {
  .tab__contents__wrap picture {
    border-radius: 20px;
  }

}


/* option */
.option__head strong {
  font-weight: normal;
  position: relative;
  display: block;
  text-align: center;
}
.option__head strong::after {
  content: "";
  display: block;
  background: #397121;
  aspect-ratio: 1 / 1;
  height: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50vh;
}
.option__img__item p {
  text-align: center;
}
.option__img__item p + span {
  display: block;
  text-align: center;
}



@media (max-width: 767px) {
  .option__head strong {
    font-size: min(calc(var(--vw) * 20px),20px);
    margin-bottom: 39px;
  }
  .option__head strong::after {
    width: 6px;
    top: calc(100% + 6px);
  }
  .option__head strong + p {
    text-align: center;
    font-size: min(calc(var(--vw) * 14px),14px);
    line-height: 2.14;
    letter-spacing: .1em;
    margin-bottom: 30px;
  }
  .option__img__wrap {
    max-width: 98.19%;
    margin-inline: auto;
  }
  .option__img__wrap .option__img__item {
    margin-bottom: 34px;
  }
  .option__img__item picture {
    border-radius: 20px;
    margin-bottom: 16px;
  }
  .option__img__item p {
    font-size: min(calc(var(--vw) * 16px),16px);
  }
  .option__img__item p + span {
    font-size: min(calc(var(--vw) * 12px),12px);
    line-height: 1.83;
    margin-top: 8px;
  }

}
@media (min-width: 768px) {
  .option__head strong {
    font-size: 24px;
    margin-bottom: 39px;
  }
  .option__head strong::after {
    width: 8px;
    top: calc(100% + 7px);
  }
  .option__head strong + p {
    text-align: center;
    font-size: 16px;
    line-height: 1.875;
    margin-bottom: 42px;
  }
  .option__img__wrap {
    display: flex;
    justify-content: space-between;
    max-width: 1020px;
    margin-inline: auto;
    margin-bottom: 38px;
  }
  .option__img__wrap .option__img__item {
    width: 31.38%;
    max-width: 320px;
  }
  .option__img__item picture {
    margin-bottom: 18px;
  }
  .option__img__item p {
    font-size: 20px;
  }
  .option__img__item p + span {
    font-size: 14px;
  }

}



/* -----------------------------------------------
tab__01
----------------------------------------------- */
.size__table__wrap h4 {
  text-align: center;
  font-weight: normal;
}
.size__table__wrap .size__table__fx {
  margin-inline: auto;
}
.size__table__wrap > span {
  display: block;
  text-align: center;
}

/* anc_01 */
.anc_01 .sec__head h2 i {
  font-style: normal;
  display: block;
  position: absolute;
  text-align: center;
  width: 100%;
}
.anc_01 .bg__wrap__inner {
  background: #fff;
}

/* anc_02 */
.anc_02 .bg__wrap__inner {
  background: #F0F4E1;
}
.new__img__item strong {
  display: block;
  font-weight: normal;
  text-align: center;
}


@media (max-width: 767px) {
  ul.anc__list {
    /* max-width: 640px; */
  }
  .tab__01 .no__bg {
    padding-bottom: 70px;
  }
  .size__table__wrap {
    margin-bottom: 130px;
  }
  .size__table__wrap h4 {
    font-size: min(calc(var(--vw) * 20px),20px);
    margin-bottom: 28px;
  }
  .size__table__wrap .size__table__fx {
    max-width: 85.72%;
  }
  .size__table__fx .size__table__item {
    margin-bottom: 30px;
  }
  .size__table__item:last-child {
    margin-bottom: 18px;
  }
  .size__table__item tr > * {
    font-size: min(calc(var(--vw) * 13px),13px);
    height: 34px;
  }
  .size__table__item th {}
  .size__table__item td {}
  .size__table__wrap > span {
    font-size: min(calc(var(--vw) * 13px),13px);
    line-height: 1.846;
    margin-bottom: 16px;
  }

  /* anc_01 */
  .anc_01 {
    padding-block: 54px 90px;
  }
  .anc_01 .sec__head h2 {
    margin-bottom: 104px;
  }
  .anc_01 .sec__head h2 i {
    font-size: min(calc(var(--vw) * 18px),18px);
    top: calc(100% + 36px);
  }
  .used__img__wrap {
    max-width: 85.72%;
    margin-inline: auto;
    margin-bottom: 55px;
  }
  .used__img__wrap .used__img__item {
    margin-bottom: 20px;
  }
  .anc_01 .bg__wrap__inner {
    border-radius: 20px;
    padding: 32px 20px 34px;
    margin-bottom: 80px;
  }
  .att__list {
    text-align: center;
  }
  .att__list li {
    font-size: min(calc(var(--vw) * 13px),13px);
    line-height: 1.846;
    letter-spacing: 0;
  }

  /* anc_02 */
  .anc_02 {
    padding-block: 54px 0;
  }
  .new__img__wrap {
    max-width: 85.72%;
    margin-inline: auto;
  }
  .new__img__wrap .new__img__item {
    margin-bottom: 58px;
  }
  .new__img__item strong {
    font-size: min(calc(var(--vw) * 17px),17px);
    margin-bottom: 16px;
  }
  .new__img__item picture {
    margin-bottom: 20px;
    border-radius: 20px;
  }
  .anc_02 .bg__wrap__inner {
    border-radius: 20px;
    padding: 32px 20px 4px;
    margin-bottom: 70px;
  }
  .anc_02 .bg__wrap__inner .option__head {
    margin-bottom: 54px;
  }
  .sleepers__swiper .swiper-slide.is-odd,
  .sleepers__new__swiper .swiper-slide.is-odd,
  .exterior__swiper .swiper-slide.is-odd {
    margin-block: 50px 70px;
  }





  .sleepers__swiper,
  .sleepers__new__swiper ,
  .exterior__swiper {
    transform: translateX(26%);
    overflow: visible;
  }
  .sleepers__swiper .swiper-slide.is-odd,
  .sleepers__new__swiper .swiper-slide.is-odd,
  .exterior__swiper .swiper-slide.is-odd {
    margin-block: 45px 50px;
  }

}
@media (min-width: 768px) {
  ul.anc__list {
    max-width: 640px;
  }
  .tab__01 .no__bg {
    padding-bottom: 100px;
  }
  .size__table__wrap {
    margin-bottom: 204px;
  }
  .size__table__wrap h4 {
    font-size: 30px;
    margin-bottom: 58px;
  }
  .size__table__wrap .size__table__fx {
    max-width: 680px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }
  .size__table__fx .size__table__item {
    width: 45.583%;
    max-width: 310px;
    margin-bottom: 26px;
  }
  .size__table__item:nth-child(-n+2) {
    margin-bottom: 50px;
  }
  .size__table__item tr > * {
    height: 49px;
  }
  .size__table__item th {
    font-size: 18px;
  }
  .size__table__item td {
    font-size: 16px;
  }
  .size__table__wrap > span {
    font-size: 16px;
    margin-bottom: 46px;
  }

  /* anc_01 */
  .anc_01 {
    padding-block: 86px 100px;
  }
  .anc_01 .sec__head h2 {
    margin-bottom: 124px;
  }
  .anc_01 .sec__head h2 i {
    font-size: 20px;
    top: calc(100% + 36px);
  }
  .used__img__wrap {
    display: flex;
    justify-content: space-between;
    max-width: 760px;
    margin-inline: auto;
    margin-bottom: 78px;
  }
  .used__img__wrap .used__img__item {
    width: 47.37%;
    max-width: 360px;
  }
  .anc_01 .bg__wrap__inner {
    border-radius: 40px;
    padding: 32px 20px 50px;
    margin-bottom: 100px;
  }
  .att__list {
    text-align: center;
  }
  .att__list li {
    font-size: 14px;
    line-height: 2;
  }

  /* anc_02 */
  .anc_02 {
    padding-block: 86px 70px;
  }
  .new__img__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }
  .new__img__wrap .new__img__item {
    width: 29.091%;
    max-width: 320px;
    margin-bottom: 90px;
  }
  .new__img__item strong {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .new__img__item picture {
    margin-bottom: 30px;
  }
  .anc_02 .bg__wrap__inner {
    border-radius: 40px;
    padding: 32px 20px 16px;
    margin-bottom: 100px;
  }
  .anc_02 .bg__wrap__inner .option__head {
    margin-bottom: 54px;
  }
  .sleepers__swiper .swiper-slide.is-odd,
  .sleepers__new__swiper .swiper-slide.is-odd,
  .exterior__swiper .swiper-slide.is-odd {
    margin-block: 50px 70px;
  }

}



/* -----------------------------------------------
tab__02
----------------------------------------------- */
.exterior__item h4 + p {
  text-align: center;
}


.exterior__img__wrap {
  margin-inline: auto;
}
.exterior__item h4 {
  overflow: hidden;
  text-align: center;
  font-weight: normal;
}
.exterior__item h4 span {
  position: relative;
}
.exterior__item h4 span:before,
.exterior__item h4 span:after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  width: 100vw;
  height: 2px;
  background: #397121;
}
.exterior__item h4 span:before {
  right: calc(100% + 1em);
}
.exterior__item h4 span:after {
  left: calc(100% + 1em);
}
.exterior__item picture {
  overflow: hidden;
  border-radius: 20px;
}


@media (max-width: 767px) {
  .tab__02 .bg__wrap {
    padding-block: 54px 90px;
  }
  .exterior__img__wrap {
    max-width: 920px;
    margin-bottom: 120px;
  }
  .exterior__item:not(:last-child) {
    margin-bottom: 72px;
  }
  .exterior__item h4 {
    font-size: min(calc(var(--vw) * 20px), 20px);
    margin-bottom: 6px;
  }
  .exterior__item h4 + p {
    font-size: min(calc(var(--vw) * 16px), 16px);
    margin-bottom: 24px;    
  }
  .exterior__item .fx {}
  .exterior__item .fx > picture {
    border-radius: 10px;
    margin-bottom: 20px;
  }
  .exterior__item:last-child {
    margin-bottom: 44px;
  }
  .exterior__item .att__list {
    margin-top: 36px;
  }

}
@media (min-width: 768px) {
  .tab__02 .bg__wrap {
    padding-block: 88px 100px;
  }
  .exterior__img__wrap {
    max-width: 920px;
    margin-bottom: 120px;
  }
  .exterior__item:not(:last-child) {
    margin-bottom: 72px;
  }
  .exterior__item h4 {
    font-size: 24px;
    margin-bottom: 6px;
  }
  .exterior__item h4 + p {
    font-size: 18px;
    margin-bottom: 24px;    
  }
  .exterior__item .fx {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .exterior__item .fx > picture {
    width: 47.83%;
    max-width: 440px;
  }
  .exterior__item:last-child {
    margin-bottom: 44px;
  }
  .exterior__item .att__list {
    margin-top: 36px;
  }

}



/* -----------------------------------------------
tab__03
----------------------------------------------- */
.public__item h4 {
  text-align: center;
  font-weight: normal;
}

@media (max-width: 767px) {
  .tab__03 .sec__head {
    margin-bottom: 50px;
  }
  .tab__03 > .inner__wrap {
    padding-bottom: 70px;
  }
  .public__img__wrap .public__item {
    margin-bottom: 34px;
  }
  .public__item .fx {
    display: flex;
  	flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .public__item .fx picture {
    width: 47.62%;
    margin-bottom: 18px;
  }
  .public__item h4 {
    font-size: min(calc(var(--vw) * 20px), 20px);
    margin-bottom: 12px;
  }
  .public__img__wrap .public__item:has(+ .more__btn) {
    margin-bottom: 30px;
  }

}
@media (min-width: 768px) {
  .tab__03 .sec__head {
    margin-bottom: 84px;
  }
  .tab__03 > .inner__wrap {
    padding-bottom: 70px;
  }
  .public__img__wrap .public__item {
    margin-bottom: 104px;
  }
  .public__item .fx {
    display: flex;
  	flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .public__item .fx picture {
    width: 30.91%;
    max-width: 340px;
  }
  .public__item h4 {
    font-size: 30px;
    margin-bottom: 12px;
  }
  .public__img__wrap .public__item:has(+ .more__btn) {
    margin-bottom: 60px;
  }

}
