@charset "UTF-8";
.fv {
  margin-top: 10.8rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .fv {
    margin-top: 6.8rem;
  }
}
.fv-copy {
  position: absolute;
  top: calc(50% - 8rem);
  left: calc((100% - 120rem) / 2);
  -webkit-transform: translaty(-50%);
          transform: translaty(-50%);
  z-index: 3;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .fv-copy {
    left: 4%;
    top: calc(50% - 4rem);
  }
}
.fv-copy-text {
  font-size: 4rem;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .fv-copy-text {
    font-size: 1.8rem;
  }
}
.fv_title {
  position: absolute;
  right: calc((100% - 120rem) / 2);
  bottom: 10rem;
  white-space: nowrap;
  font-size: 2rem;
  line-height: 1;
  font-weight: 400;
  z-index: 3;
  color: #fff;
}

.fv-slider-wrap {
  position: relative;
}

.fv-slider {
  position: relative;
  width: 100%;
  height: 810px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.8s ease, visibility 0.8s ease;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
@media screen and (max-width: 1024px) {
  .fv-slider {
    height: 750px;
  }
}
@media screen and (max-width: 768px) {
  .fv-slider {
    height: 32rem;
  }
}
.fv-slider.is-loaded {
  opacity: 1;
  visibility: visible;
}
.fv-slider::before {
  content: "";
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.fv-slide {
  width: 100%;
  height: 100%;
  position: relative;
}

.fv-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@-webkit-keyframes stretchAndZoomOut {
  0% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes stretchAndZoomOut {
  0% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.fv-slider .swiper-slide-active img,
.fv-slider .swiper-slide-duplicate-active img,
.fv-slider .swiper-slide-prev img {
  -webkit-animation: stretchAndZoomOut 11s linear 0s normal both;
          animation: stretchAndZoomOut 11s linear 0s normal both;
}

/* -----------------------
   円ローダー
----------------------- */
.fv-progress {
  position: absolute;
  left: calc((100% - 144rem) / 2);
  top: 49%;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
  width: 60rem;
  height: 60rem;
  z-index: 2;
}

.stay-progress {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 60rem;
  height: 60rem;
  z-index: 2;
}

.fv-progress .progress-ring {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.fv-progress .progress-ring__bg,
.fv-progress .progress-ring__circle {
  fill: none;
  stroke-width: 1;
}

.fv-progress .progress-ring__bg {
  stroke: transparent;
}

.fv-progress .progress-ring__circle {
  stroke: rgba(255, 255, 255, 0.5);
  stroke-linecap: round;
  stroke-dasharray: 1758;
  stroke-dashoffset: 0;
}

/* SVGサイズ制御（レスポンシブ） */
.fv-progress .progress-ring {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}

/* =========================
   1440px以下
========================= */
@media screen and (max-width: 1440px) {
  .fv-progress {
    left: 3%;
  }
}
/* =========================
   768px以下
========================= */
@media screen and (max-width: 768px) {
  .fv-progress {
    width: 27rem;
    height: 27rem;
    left: -4rem;
  }
}
.concept {
  position: relative;
  z-index: 1;
  background: #F9F8F5;
}
.concept::before {
  content: "Concept";
  font-family: "Baskervville", serif;
  color: #fff;
  font-size: 20rem;
  line-height: 1;
  position: absolute;
  top: 4rem;
  right: 4%;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .concept::before {
    font-size: 6rem;
    top: 2rem;
    right: 0;
  }
}
.concept-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 5rem;
  margin-bottom: 12rem;
}
@media screen and (max-width: 768px) {
  .concept-head {
    gap: 3rem;
    margin-bottom: 6rem;
  }
}
.concept-title {
  font-size: 3.2rem;
  line-height: 1.8;
  letter-spacing: 1rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl; /* 縦書き（右→左） */
  text-orientation: upright; /* 文字を正立させる（英数字も縦向き） */
  padding-right: 0.8rem; /* 文字と線の余白 */
}
@media screen and (max-width: 768px) {
  .concept-title {
    font-size: 2.6rem;
  }
}
.concept-title span.vertical-border-right {
  display: inline;
  border-right: 0.1rem solid #524B40; /* 右側に線 */
}
.concept-text {
  font-size: 1.3rem;
}
.concept-body-desc {
  width: 50rem;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .concept-body-desc {
    width: 53%;
  }
}
.concept-body-desc-text {
  margin-top: 4rem;
  font-size: 1.8rem;
  line-height: 1.8;
}
.concept-body-desc-text.--noMargin {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .concept-body-desc-text {
    margin-top: 3rem;
    font-size: 1.2rem;
  }
}
.concept-body-desc-img02 {
  width: 100%;
  height: auto;
  margin-bottom: 12rem;
}
@media screen and (max-width: 768px) {
  .concept-body-desc-img02 {
    margin-bottom: 4rem;
  }
}
.concept-body-desc-img03 {
  width: 24.1rem;
  height: auto;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .concept-body-desc-img03 {
    width: 10rem;
  }
}
.concept-imgbg {
  width: 80rem;
  height: 65rem;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  bottom: 6rem;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 1600px) {
  .concept-imgbg {
    width: 58rem;
  }
}
@media screen and (max-width: 768px) {
  .concept-imgbg {
    width: 38%;
    height: 28rem;
    bottom: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .concept .btn-blk.mt60 {
    margin-top: 9rem !important;
  }
}

.policy {
  position: relative;
  z-index: 1;
  padding-top: 30rem;
}
.policy-desc {
  width: 50rem;
  margin-left: auto;
}
.policy-desc-mtext {
  font-size: 2.6rem;
  line-height: 1.8;
  margin-bottom: 5rem;
}
.policy-desc-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 5rem;
}
.policy-imgbg {
  width: 95rem;
  height: 55rem;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 30rem;
  left: 0;
  z-index: 1;
}

.bnrArea {
  position: relative;
  background: #F9F8F5;
}
.bnrArea-text {
  font-size: 1.8rem;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 1.5rem 2rem;
  background: #fff;
  line-height: 1.4;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .bnrArea-text {
    font-size: 1.4rem;
    line-height: 1.6;
    width: 100%;
    margin-bottom: 5rem;
  }
}
.bnrArea-item {
  width: 100%;
  height: 21.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .bnrArea-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.bnrArea-item.--mb {
  background: url(../../images/renewal/top/bnr-mb-bg.webp) no-repeat center center/cover;
}
.bnrArea-item.--wb {
  background: url(../../images/renewal/top/bnr-wb-bg.webp) no-repeat center center/cover;
  margin-bottom: 2rem;
}
.bnrArea-item-head {
  width: 40%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .bnrArea-item-head {
    width: 100%;
  }
}
.bnrArea-item-head::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.--mb .bnrArea-item-head::before {
  background: rgba(109, 152, 171, 0.7);
}
.--wb .bnrArea-item-head::before {
  background: rgba(0, 42, 23, 0.7);
}
.bnrArea-item-head-tit01 {
  width: 20rem;
}
@media screen and (max-width: 768px) {
  .bnrArea-item-head-tit01 {
    width: 12rem;
  }
}
.bnrArea-item-head-tit02 {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .bnrArea-item-head-tit02 {
    font-size: 1.4rem;
  }
}
.bnrArea-item-body {
  width: 60%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .bnrArea-item-body {
    width: 100%;
  }
}
.bnrArea-item-body-text01 {
  display: block;
}
.--mb .bnrArea-item-body-text01 {
  color: #6D98AB;
  background: #fff;
}
.--wb .bnrArea-item-body-text01 {
  width: 42rem;
}
@media screen and (max-width: 768px) {
  .--wb .bnrArea-item-body-text01 {
    width: 22rem;
  }
}
.bnrArea-item-body-text02 {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2rem;
  line-height: 1;
  padding: 0.5rem 3rem;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .bnrArea-item-body-text02 {
    font-size: 1.6rem;
    white-space: nowrap;
  }
}
.--mb .bnrArea-item-body-text02 {
  color: #6D98AB;
  background: #fff;
}
.--wb .bnrArea-item-body-text02 {
  color: #fff;
  border: 0.1rem solid #fff;
}
.bnrArea-item-arrow {
  display: block;
  width: 6rem;
  height: 6rem;
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  border: 0.1rem solid #fff;
}
@media screen and (max-width: 768px) {
  .bnrArea-item-arrow {
    width: 3rem;
    height: 3rem;
  }
}
.bnrArea-item-arrow::before {
  content: "";
  background: url(../../images/renewal/common/arrow-right-wht.webp) no-repeat center center/cover;
  width: 1.8rem;
  height: 1.45rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .bnrArea-item-arrow::before {
    width: 1.4rem;
    height: 1.13rem;
  }
}
.--mb .bnrArea-item-arrow {
  background: #6D98AB;
}
.--wb .bnrArea-item-arrow {
  background: transparent;
}

.hyggeArea {
  padding: 14rem 0;
  z-index: 1;
}
.hyggeArea::before {
  content: "";
  background: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.hyggeArea::after {
  content: "";
  background: #fff;
  width: 100%;
  height: 6rem;
  position: absolute;
  bottom: -0.2rem;
  left: 0;
  z-index: 1;
}
.hyggeArea-desc {
  width: 36rem;
}
@media screen and (max-width: 768px) {
  .hyggeArea-desc {
    width: 24rem;
    margin: -7rem auto 0;
  }
}
.hyggeArea-desc-text {
  color: #fff;
  font-weight: 700;
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .hyggeArea-desc-text {
    font-size: 1.6rem;
  }
}
.hyggeArea-desc-title {
  text-align: center;
  color: #fff;
  font-weight: 400;
  margin-bottom: 12rem;
}
@media screen and (max-width: 768px) {
  .hyggeArea-desc-title {
    margin-bottom: 6rem;
  }
}
.hyggeArea-desc-title > span {
  display: block;
  line-height: 1;
}
.hyggeArea-desc-title .--title01 {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .hyggeArea-desc-title .--title01 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
.hyggeArea-desc-title .--title02 {
  font-size: 10rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .hyggeArea-desc-title .--title02 {
    font-size: 5rem;
  }
}
.hyggeArea-desc-title .--title03 {
  font-size: 7.3rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .hyggeArea-desc-title .--title03 {
    font-size: 3rem;
  }
}
.hyggeArea-info {
  color: #fff;
  font-size: 2.6rem;
  line-height: 1.8;
  letter-spacing: 1rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl; /* 縦書き（右→左） */
  text-orientation: upright; /* 文字を正立させる（英数字も縦向き） */
  position: absolute;
  top: -5rem;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .hyggeArea-info {
    line-height: 1.6;
    letter-spacing: 0.6rem;
    font-size: 1.3rem;
    top: -3rem;
    right: 4%;
  }
}
.hyggeArea-info-img {
  display: block;
  width: 37.8rem;
  height: 30.9rem;
  position: absolute;
  bottom: -18rem;
  right: -14rem;
}
@media screen and (max-width: 768px) {
  .hyggeArea-info-img {
    width: 24rem;
    height: auto;
    bottom: -23rem;
    right: auto;
    left: 53%;
    -webkit-transform: translatex(-50%);
            transform: translatex(-50%);
  }
}

.works-slider-wrap {
  position: relative;
  overflow: hidden;
}

.works-slider {
  overflow: visible;
}

.works-item {
  position: relative;
}
.works-item + .works-item {
  margin-top: 8rem;
}

.works-slide-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.works-slide-card__image {
  aspect-ratio: 4/2.2;
  overflow: hidden;
  background: #f3f3f3;
}
@media screen and (min-width: 769px) and (max-width: 1440px) {
  .works-slide-card__image {
    aspect-ratio: 4/2.4;
  }
}
@media screen and (max-width: 768px) {
  .works-slide-card__image {
    aspect-ratio: 4/3.5;
  }
}

.works-slide-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.works-slide-card__body {
  margin-top: 1.2rem;
  text-align: center;
}

.works-slide-card__title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .works-slide-card__title {
    font-size: 1.3rem;
  }
}

.works-slide-card__tags {
  font-size: 1.2rem;
  color: #A8A8A8;
}
@media screen and (max-width: 768px) {
  .works-slide-card__tags {
    font-size: 1.1rem;
  }
}

.works-meta {
  padding: 3rem 0;
  border-bottom: 0.1rem solid #524B40;
}
@media screen and (max-width: 768px) {
  .works-meta {
    padding: 4rem 0 3rem;
  }
}
.works-meta__text {
  position: relative;
}

.works-nav {
  width: 7rem;
  width: 7rem;
  height: 3rem;
  position: absolute;
  z-index: 1;
  right: 0;
  top: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .works-nav {
    width: 6rem;
    top: -3.5rem;
    height: 2.5rem;
  }
}

.works-slider-prev,
.works-slider-next {
  width: 3rem;
  height: 3rem;
  position: absolute;
  top: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .works-slider-prev,
  .works-slider-next {
    width: 2.5rem;
    height: 2.5rem;
    top: 0;
  }
}

.works-slider-prev {
  left: 0;
}

.works-slider-next {
  right: 0;
}

.works-slider-prev::before {
  content: "";
  background: url(../../images/renewal/common/slide-prev-arrow.png) no-repeat center center/cover;
  width: 3rem;
  height: 3rem;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .works-slider-prev::before {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.works-slider-next::before {
  content: "";
  background: url(../../images/renewal/common/slide-next-arrow.png) no-repeat center center/cover;
  width: 3rem;
  height: 3rem;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .works-slider-next::before {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.works-slider-prev::after {
  content: none;
}

.works-slider-next::after {
  content: none;
}

.swiper-navigation-icon {
  display: none;
}

.stayArea {
  width: 100%;
  height: 90rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .stayArea {
    height: 64rem;
  }
}
.stayArea::before {
  content: "";
  background: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.stayArea-desc {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 3;
}
.stayArea-desc-text {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .stayArea-desc-text {
    font-size: 1.6rem;
    margin-bottom: 5rem;
    white-space: nowrap;
  }
}
.stayArea-desc-title {
  font-size: 5.6rem;
  text-align: center;
  color: #fff;
  font-weight: 400;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .stayArea-desc-title {
    font-size: 3.4rem;
    margin-bottom: 1.6rem;
    line-height: 1;
  }
}
@media screen and (max-width: 768px) {
  .stayArea-desc-title .--and {
    font-size: 2.8rem;
  }
}

.stayArea-slider-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.stayArea-slider,
.stayArea-slide,
.stayArea-slide img {
  width: 100%;
  height: 100%;
}

.stayArea-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/* -----------------------
   円ローダー
----------------------- */
.stayArea-progress {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 60rem;
  height: 60rem;
  z-index: 3;
  pointer-events: none;
}

.stayArea-progress .progress-ring {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.stayArea-progress .progress-ring__bg,
.stayArea-progress .progress-ring__circle {
  fill: none;
  stroke-width: 1;
}

.stayArea-progress .progress-ring__bg {
  stroke: transparent;
}

.stayArea-progress .progress-ring__circle {
  stroke: rgba(255, 255, 255, 0.5);
  stroke-linecap: round;
  stroke-dasharray: 1758;
  stroke-dashoffset: 0;
}

.stayArea-progress .progress-ring {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}

/* -----------------------
   サムネイル
----------------------- */
.stayArea-thumbs {
  position: absolute;
  left: 50%;
  bottom: 4rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.stayArea-thumb {
  width: 12rem;
  height: 8.4rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  opacity: 0.6;
  -webkit-transition: opacity 0.3s ease, border-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, border-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, border-color 0.3s ease, -webkit-transform 0.3s ease;
}

.stayArea-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.stayArea-thumb:hover {
  opacity: 1;
}

.stayArea-thumb.is-active {
  opacity: 1;
  border-color: rgb(255, 255, 255);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@media screen and (max-width: 768px) {
  .stayArea-progress {
    width: 45rem;
    height: 45rem;
  }
  .stayArea-thumbs {
    width: 92%;
    bottom: 0;
    gap: 0.5rem;
  }
  .stayArea-thumb {
    width: 25%;
    height: 5.8rem;
  }
}
.guarantee .page-heading-text {
  margin-bottom: 5rem;
}
.guarantee .--gryBg {
  background: #E4E4E4;
}
.guarantee .aco-btn {
  text-align: center;
  max-width: 120rem;
  margin-left: auto;
  margin-top: 4rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .guarantee .aco-btn {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}
.guarantee-contents {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .guarantee-contents {
    background: #E4E4E4;
  }
}
.guarantee-contents-title {
  display: inline-block;
  width: 64rem;
  font-size: 2.4rem;
  padding: 2rem 0;
  background: #fff;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .guarantee-contents-title {
    width: 100%;
    font-size: 1.3rem;
    padding: 1.5rem 0;
  }
}
.guarantee-contents-title > span.aco-toggle {
  display: block;
  width: 4.2rem;
  height: 4.2rem;
  position: absolute;
  right: 2rem;
  top: 50%;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .guarantee-contents-title > span.aco-toggle {
    width: 2.5rem;
    height: 2.5rem;
    right: 1rem;
  }
}
.guarantee-contents-title > span.aco-toggle::before {
  content: "";
  background: #524B40;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
  z-index: 1;
}
.guarantee-contents-title > span.aco-toggle::after {
  content: "";
  background: #524B40;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translatex(-50%);
          transform: translatex(-50%);
  z-index: 1;
}
.is-open .guarantee-contents-title > span.aco-toggle::after {
  content: none;
}
.guarantee-contents-titles {
  text-align: center;
  font-size: 1.92rem;
  margin-top: 0.5rem;
  max-width: 120rem;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .guarantee-contents-titles {
    font-size: 1.15rem;
  }
}
.guarantee-contents-wrap {
  padding: 10rem 0;
}
@media screen and (max-width: 768px) {
  .guarantee-contents-wrap {
    padding: 3rem 0;
  }
}
.guarantee-contents-list {
  max-width: 120rem;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .guarantee-contents-list {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
.guarantee-contents-list.--col_3 {
  gap: 7rem 5rem;
}
@media screen and (max-width: 768px) {
  .guarantee-contents-list.--col_3 {
    gap: 4rem 0.5rem;
  }
}
.guarantee-contents-list.--col_4 {
  gap: 6rem 2rem;
}
@media screen and (max-width: 768px) {
  .guarantee-contents-list.--col_4 {
    gap: 4rem 0.5rem;
  }
}
.--col_3 .guarantee-contents-item {
  width: 27rem;
}
@media screen and (max-width: 768px) {
  .--col_3 .guarantee-contents-item {
    width: 15.5rem;
  }
}
.--col_4 .guarantee-contents-item {
  width: 26rem;
}
@media screen and (max-width: 768px) {
  .--col_4 .guarantee-contents-item {
    width: 15.5rem;
  }
}
.guarantee-contents-item .__label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 1rem;
  padding: 0.5rem 2rem;
  background: #524B40;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .guarantee-contents-item .__label {
    font-size: 1.2rem;
    padding: 0.4rem 1rem;
  }
}
.guarantee-contents-item .__title {
  font-size: 2rem;
  line-height: 1.5;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .guarantee-contents-item .__title {
    font-size: 1.4rem;
    min-height: 5rem;
    margin-bottom: 1rem;
  }
}
.guarantee-contents-item .__icon {
  text-align: center;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  width: 19rem;
  height: 19rem;
  background: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .guarantee-contents-item .__icon {
    width: 10rem;
    height: 10rem;
    margin-bottom: 1.5rem;
  }
}
.guarantee-contents-item .__icon img {
  width: 9rem;
  height: auto;
}
@media screen and (max-width: 768px) {
  .guarantee-contents-item .__icon img {
    width: 4rem;
  }
}
.guarantee-contents-item .__icon .__year {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.4rem;
  font-weight: 700;
  top: 1rem;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .guarantee-contents-item .__icon .__year {
    font-size: 1.8rem;
    top: 0;
  }
}