@charset "UTF-8";
/*=============================================*/
/*Font import */
/*=============================================*/
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700;900&display=swap);
/*=============================================*/
/*Reset CSS*/
/*=============================================*/
article, aside, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, main {
  display: block;
}

blockquote, body, dd, div, dl, dt, fieldset, figure, form, h1, h2, h3, h4, h5, h6, input, li, ol, p, pre, td, textarea, th, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

li {
  list-style: none;
}

a,
a:link {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  height: auto;
  vertical-align: bottom;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

button, input, select, textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input[type=radio]::-ms-check,
input[type=checkbox]::-ms-check {
  display: none;
}

i {
  font-style: normal;
}

textarea {
  resize: none;
  font-family: sans-serif;
}

* {
  box-sizing: border-box;
}

/*=============================================*/
/*Common Base*/
/*=============================================*/
html {
  font-size: 62.5%;
  overflow: auto;
}

body {
  margin: auto;
  width: auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
  color: #3A1E10;
  background-color: #FFF;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

h1, h2, h3, h4, h5, h6 {
  color: inherit;
  letter-spacing: 0;
}

.pc_only {
  display: block !important;
}
@media (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
}

.sp_only {
  display: none !important;
}
@media (max-width: 768px) {
  .sp_only {
    display: block !important;
  }
}

/*=============================================*/
/*  layout  Base                        */
/*=============================================*/
.main_width1150 {
  max-width: 1150px;
  width: 96%;
  margin: auto;
}
@media (max-width: 768px) {
  .main_width1150 {
    width: calc(100% - 30px);
  }
}

.main_width930 {
  max-width: 930px;
  width: 96%;
  margin: auto;
}
@media (max-width: 768px) {
  .main_width930 {
    width: calc(100% - 25px);
  }
}

.main_width900 {
  max-width: 900px;
  width: 96%;
  margin: auto;
}
@media (max-width: 768px) {
  .main_width900 {
    width: calc(100% - 25px);
  }
}

.main_width800 {
  max-width: 800px;
  width: 96%;
  margin: auto;
}
@media (max-width: 768px) {
  .main_width800 {
    width: calc(100% - 25px);
  }
}

sup, sub {
  font-size: 0.5em;
}

#about,
#colors,
#cases,
#sustainability,
#qa,
#contact {
  padding-top: 100px;
  margin-top: -100px;
}

/*=============================================*/
/*  layout                               */
/*=============================================*/
/***************************************/
/** common */
/***************************************/
/***************************************/
/** cta_bt_block */
/***************************************/
.top_wrapper .cta_bt_block {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 70px 0 20px;
  background-image: linear-gradient(rgba(255, 255, 255, 0) 0%, #C8BEA6);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .top_wrapper .cta_bt_block {
    padding-top: 43px;
  }
}
.top_wrapper .cta_bt_block.is-scroll {
  opacity: 1;
  visibility: visible;
  z-index: 99;
}
.top_wrapper .cta_bt_block .inner {
  position: relative;
}
.top_wrapper .cta_bt_block .inner .btn_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5%;
  margin: auto;
  padding: 0 80px;
}
@media (max-width: 768px) {
  .top_wrapper .cta_bt_block .inner .btn_flex {
    align-items: stretch;
    gap: 3%;
    padding: 0;
  }
}
.top_wrapper .cta_bt_block .inner .btn_flex .btn {
  width: 50%;
}
.top_wrapper .cta_bt_block .inner .btn_flex .btn a {
  display: block;
  padding-left: 0.5em;
  height: 100%;
  font-size: clamp(1.3rem, 1.4vw, 1.4rem);
  line-height: 1.3;
  text-align: center;
}
@media (max-width: 768px) {
  .top_wrapper .cta_bt_block .inner .btn_flex .btn a {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.top_wrapper .cta_bt_block .inner .top_btn {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 85px;
  height: 85px;
  border: 1px solid #3A1E10;
  border-radius: 100px;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .top_wrapper .cta_bt_block .inner .top_btn {
    right: 10px;
    bottom: 70px;
    width: 64px;
    height: 64px;
  }
}
.top_wrapper .cta_bt_block .inner .top_btn:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .top_wrapper .cta_bt_block .main_width1150 {
    width: 100%;
  }
}

/***************************************/
/** fv_block */
/***************************************/
.top_wrapper .fv_block .fv_slider {
  position: relative;
  height: 700px;
}
@media (max-width: 768px) {
  .top_wrapper .fv_block .fv_slider {
    height: 500px;
  }
}
.top_wrapper .fv_block .fv_slider:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 120px;
  background-image: linear-gradient(rgba(255, 255, 255, 0), #C8BEA6);
  z-index: 2;
}
.top_wrapper .fv_block .fv_slider .swiper-wrapper {
  height: 100%;
}
.top_wrapper .fv_block .fv_slider .swiper-wrapper .swiper-slide {
  height: 100%;
}
.top_wrapper .fv_block .fv_slider .swiper-wrapper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top_wrapper .fv_block .fv_slider .swiper-pagination {
  bottom: -25px;
}
.top_wrapper .fv_block .fv_slider .swiper-pagination .swiper-pagination-bullet {
  border: 1px solid #FFF;
  background-color: rgba(255, 255, 255, 0);
  width: 10px;
  height: 10px;
  opacity: 1;
}
@media (max-width: 768px) {
  .top_wrapper .fv_block .fv_slider .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}
.top_wrapper .fv_block .fv_slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #FFF;
}

.top_wrapper .fv_block .fv_txt_box {
  position: relative;
  padding: 86px 0 160px;
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0), #C8BEA6 30% 100%, #C8BEA6 100%);
  text-align: center;
}
@media (max-width: 768px) {
  .top_wrapper .fv_block .fv_txt_box {
    padding: 48px 0 120px;
  }
}
.top_wrapper .fv_block .fv_txt_box .main_txt {
  display: block;
  margin-bottom: 0.3em;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(2.2rem, 2.5vw, 2.8rem);
  line-height: 1.8;
}
.top_wrapper .fv_block .fv_txt_box .note {
  display: block;
  font-size: 1.1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-style: normal;
}

/***************************************/
/** cta_block */
/***************************************/
.top_wrapper .cta_block {
  text-align: center;
  margin-top: -40px;
  padding-bottom: 86px;
}
@media (max-width: 768px) {
  .top_wrapper .cta_block {
    padding-bottom: 66px;
  }
}

.top_wrapper .cta_block .ttl {
  position: relative;
  display: inline-block;
  padding-bottom: 0.3em;
  margin-bottom: 40px;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid #B7AE99;
  font-size: 2.2rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .top_wrapper .cta_block .ttl {
    margin-bottom: 25px;
  }
}
.top_wrapper .cta_block .ttl:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 12px;
  background-color: #FFF;
  bottom: -10px;
  left: 0;
  right: 0;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: 1;
  margin: auto;
}
.top_wrapper .cta_block .ttl:after {
  content: "";
  position: absolute;
  width: 18px;
  height: 12px;
  background-color: #B7AE99;
  bottom: -12px;
  left: 0;
  right: 0;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  margin: auto;
}

.top_wrapper .cta_block .btn_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4%;
}
@media (max-width: 768px) {
  .top_wrapper .cta_block .btn_flex {
    display: block;
  }
}
.top_wrapper .cta_block .btn_flex .btn {
  width: 50%;
}
@media (max-width: 768px) {
  .top_wrapper .cta_block .btn_flex .btn {
    width: 85%;
    margin: auto;
  }
  .top_wrapper .cta_block .btn_flex .btn:not(:last-child) a {
    margin-bottom: 20px;
  }
}
.top_wrapper .cta_block .btn_flex .btn a {
  width: 100%;
}

/***************************************/
/** mov_block */
/***************************************/
.top_wrapper .mov_block {
  position: relative;
}
@media (max-width: 768px) {
  .top_wrapper .mov_block {
    width: 100%;
    height: 500px;
  }
}
.top_wrapper .mov_block:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  z-index: 2;
}
.top_wrapper .mov_block video {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .top_wrapper .mov_block video {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/***************************************/
/** about_block */
/***************************************/
.top_wrapper .about_block {
  padding-bottom: 120px;
}
.top_wrapper .about_block .mod-sec-ttl {
  margin-bottom: 70px;
}

.top_wrapper .about_block .list .item .flex {
  display: flex;
  align-items: center;
  gap: 4%;
}
@media (max-width: 768px) {
  .top_wrapper .about_block .list .item .flex {
    display: block;
  }
}
.top_wrapper .about_block .list .item .flex.al-bt {
  align-items: end;
}
.top_wrapper .about_block .list .item:nth-child(even) .flex {
  flex-direction: row-reverse;
}
.top_wrapper .about_block .list .item:not(:last-child) {
  margin-bottom: 90px;
}
@media (max-width: 768px) {
  .top_wrapper .about_block .list .item:not(:last-child) {
    margin-bottom: 110px;
  }
}

.top_wrapper .about_block .list .item .flex .img {
  position: relative;
  width: 50%;
}
@media (max-width: 768px) {
  .top_wrapper .about_block .list .item .flex .img {
    max-width: 200px;
    width: 100%;
    margin: 0 auto 40px;
  }
}
.top_wrapper .about_block .list .item .flex .img .num_slash {
  position: absolute;
  top: -1em;
  left: -0.3em;
  z-index: 1;
}
.top_wrapper .about_block .list .item .flex .img img {
  position: relative;
  display: block;
  width: 100%;
}
.top_wrapper .about_block .list .item .flex .img img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}

.top_wrapper .about_block .list .item .flex .content {
  width: 50%;
}
@media (max-width: 768px) {
  .top_wrapper .about_block .list .item .flex .content {
    width: 100%;
  }
}
.top_wrapper .about_block .list .item .flex .content .item_ttl {
  display: block;
  margin-bottom: 0.3em;
  font-size: clamp(2.5rem, 3.2vw, 3.2rem);
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 768px) {
  .top_wrapper .about_block .list .item .flex .content .item_ttl {
    margin-bottom: 0.6em;
  }
}
.top_wrapper .about_block .list .item .flex .content .btn {
  margin-top: 25px;
  text-align: center;
}
.top_wrapper .about_block .list .item .flex .content .btn a {
  position: relative;
  color: #3A1E10;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  transition: all 0.3s;
}
.top_wrapper .about_block .list .item .flex .content .btn a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -40px;
  display: block;
  margin: auto;
  background: url(../img/ico/ico-arrow-bt.svg) no-repeat center/contain;
  width: 32px;
  height: 32px;
}
.top_wrapper .about_block .list .item .flex .content .btn a:hover {
  opacity: 0.7;
}

.top_wrapper .about_block .list .item .mov_box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4%;
  width: 100%;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .top_wrapper .about_block .list .item .mov_box {
    display: block;
    max-width: 400px;
    margin: 30px auto 0;
  }
}
.top_wrapper .about_block .list .item .mov_box video {
  display: block;
  width: 48%;
}
@media (max-width: 768px) {
  .top_wrapper .about_block .list .item .mov_box video {
    width: 100%;
  }
  .top_wrapper .about_block .list .item .mov_box video:not(:last-child) {
    margin-bottom: 20px;
  }
}

/***************************************/
/** colors_block */
/***************************************/
.top_wrapper .colors_block {
  padding-bottom: 120px;
}
@media (max-width: 768px) {
  .top_wrapper .colors_block {
    padding-bottom: 80px;
  }
}

.top_wrapper .colors_block .mod-sec-ttl {
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .top_wrapper .colors_block .mod-sec-ttl {
    margin-bottom: 50px;
  }
}

.top_wrapper .colors_block .list {
  display: flex;
  flex-wrap: wrap;
  gap: 3%;
}
@media (max-width: 768px) {
  .top_wrapper .colors_block .list {
    display: block;
  }
}
.top_wrapper .colors_block .list .item {
  position: relative;
  width: 48.5%;
  aspect-ratio: 3.49/1;
  margin-bottom: 35px;
}
@media (max-width: 768px) {
  .top_wrapper .colors_block .list .item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.top_wrapper .colors_block .list .item a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.top_wrapper .colors_block .list .item a:hover {
  opacity: 0.7;
}
.top_wrapper .colors_block .list .item a .txt {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  color: #3A1E10;
  text-align: center;
}
.top_wrapper .colors_block .list .item a .txt .en {
  display: block;
  font-size: clamp(2.5rem, 3vw, 3.3rem);
  font-family: "Cormorant Infant", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.top_wrapper .colors_block .list .item a .txt .ja {
  display: block;
  font-size: 1.2rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.top_wrapper .colors_block .list .item.white a {
  background: url(../img/top/bg-color-white.webp) no-repeat center/cover;
}
.top_wrapper .colors_block .list .item.ivory a {
  background: url(../img/top/bg-color-ivory.webp) no-repeat center/cover;
}
.top_wrapper .colors_block .list .item.beige a {
  background: url(../img/top/bg-color-beige.webp) no-repeat center/cover;
}
.top_wrapper .colors_block .list .item.gray a {
  background: url(../img/top/bg-color-gray.webp) no-repeat center/cover;
}

.top_wrapper .colors_block .note {
  font-size: 1.2rem;
  color: #949494;
}

.ginlined-content {
  background-color: #FFF;
  border: 1px solid #3A1E10;
  box-shadow: 2px 2px 6px rgba(79, 79, 79, 0.4);
}

.ginlined-content {
  padding: 30px 30px 40px !important;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.ginlined-content::-webkit-scrollbar {
  display: none;
}
@media (max-width: 768px) {
  .ginlined-content {
    padding: 30px 20px 30px !important;
  }
}
.ginlined-content .gb-two-col {
  position: relative;
}
.ginlined-content .gb-two-col .gb-close.batsu {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 55px;
  height: 55px;
}
@media (max-width: 768px) {
  .ginlined-content .gb-two-col .gb-close.batsu {
    width: 26px;
    height: 26px;
  }
}
.ginlined-content .gb-two-col .gb-close.batsu:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #3A1E10;
  transform: rotate(45deg);
}
.ginlined-content .gb-two-col .gb-close.batsu:after {
  content: "";
  position: absolute;
  top: 20px;
  right: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #3A1E10;
  transform: rotate(-45deg);
}

.ginlined-content .gb-two-col .ttl {
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 768px) {
  .ginlined-content .gb-two-col .ttl {
    margin-bottom: 30px;
  }
}
.ginlined-content .gb-two-col .ttl .en {
  display: block;
  font-size: clamp(3.3rem, 4.8vw, 5.1rem);
  font-family: "Cormorant Infant", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.ginlined-content .gb-two-col .ttl .ja {
  display: block;
  margin-top: -0.5em;
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
}

.ginlined-content .gb-two-col .img_box {
  display: flex;
  gap: 3%;
  margin: 0 auto 5px;
  width: 90%;
}
@media (max-width: 768px) {
  .ginlined-content .gb-two-col .img_box {
    display: block;
    margin-bottom: 10px;
    width: 100%;
  }
}
.ginlined-content .gb-two-col .img_box .img .fig {
  display: block;
  margin-bottom: 0.3em;
  color: #949494;
  font-size: clamp(1rem, 1.4vw, 1.4rem);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .ginlined-content .gb-two-col .img_box .img.small {
    width: 125px;
    margin: 0 auto 5px;
  }
}
@media (max-width: 768px) {
  .ginlined-content .gb-two-col .img_box .img.long {
    width: 100%;
  }
}

.ginlined-content .gb-two-col .detail_btn {
  width: 90%;
  margin: auto;
  text-align: right;
}
@media (max-width: 768px) {
  .ginlined-content .gb-two-col .detail_btn {
    width: 100%;
    margin-bottom: 15px;
  }
}

.ginlined-content .gb-two-col .counter {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ginlined-content .gb-two-col .counter p {
  display: block;
  padding: 0.3em;
  color: #949494;
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.5;
}

.ginlined-content .gb-two-col .ac-common-btn {
  margin-top: 15px;
}
@media (max-width: 768px) {
  .ginlined-content .gb-two-col .ac-common-btn {
    margin-top: 30px;
  }
}
.ginlined-content .gb-two-col .ac-common-btn .gb-close {
  width: 70%;
  max-width: 294px;
  margin: auto;
  font-size: clamp(1.3rem, 1.6vw, 1.6rem);
}
@media (max-width: 768px) {
  .ginlined-content .gb-two-col .ac-common-btn .gb-close {
    max-width: 164px;
  }
}

.goverlay {
  background-color: #C8BEA6 !important;
  opacity: 0.85 !important;
}

.glightbox-counter {
  position: absolute;
  right: 12px;
  top: 12px;
  padding: 0.35rem 0.6rem;
  font-size: 0.9rem;
  line-height: 1;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border-radius: 0.4rem;
  z-index: 99999;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.gclose.gbtn {
  display: none;
}

.gprev, .gnext {
  top: 48% !important;
  background-color: rgba(255, 255, 255, 0) !important;
  width: 35px !important;
  height: 35px !important;
}
@media (max-width: 768px) {
  .gprev, .gnext {
    top: 33% !important;
  }
}
@media (max-width: 480px) {
  .gprev, .gnext {
    top: 40% !important;
  }
}
.gprev svg, .gnext svg {
  display: none;
}

.gprev {
  background: url(../img/ico/ico-slider-left.svg) no-repeat center/contain;
}

.gnext {
  background: url(../img/ico/ico-slider-right.svg) no-repeat center/contain;
}

.gcontainer {
  max-width: 900px;
  margin: auto;
}

.gslide-media {
  height: -moz-fit-content !important;
  height: fit-content !important;
  width: calc(100% - 25px) !important;
  max-width: 900px;
}
.gslide-media .ginlined-content {
  height: 100% !important;
}

/***************************************/
/** cases_block */
/***************************************/
.top_wrapper .cases_block {
  padding-bottom: 160px;
}
@media (max-width: 768px) {
  .top_wrapper .cases_block {
    padding-bottom: 120px;
  }
}
.top_wrapper .cases_block .mod-sec-ttl {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .top_wrapper .cases_block .mod-sec-ttl {
    margin-bottom: 15px;
  }
}
.top_wrapper .cases_block .first_txt {
  max-width: 930px;
  margin: 0 auto 80px;
}
.top_wrapper .cases_block .first_txt p {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.75;
}

.top_wrapper .cases_block .list .item {
  display: flex;
  align-items: center;
  gap: 6%;
}
@media (max-width: 768px) {
  .top_wrapper .cases_block .list .item {
    display: block;
  }
}
.top_wrapper .cases_block .list .item:not(:last-child) {
  margin-bottom: 120px;
}
.top_wrapper .cases_block .list .item:nth-child(even) {
  flex-direction: row-reverse;
}

.top_wrapper .cases_block .list .item .cases_slider {
  position: relative;
  padding-bottom: 35px;
  width: 70%;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .top_wrapper .cases_block .list .item .cases_slider {
    width: 60%;
  }
}
@media (max-width: 768px) {
  .top_wrapper .cases_block .list .item .cases_slider {
    width: 100vw;
    padding-bottom: 25px;
    margin: 0 calc(50% - 50vw) 25px;
  }
}
.top_wrapper .cases_block .list .item .cases_slider:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  width: 7%;
  height: 100%;
  background-image: linear-gradient(90deg, #C8BEA6, rgba(255, 255, 255, 0));
  z-index: 2;
}
@media (max-width: 768px) {
  .top_wrapper .cases_block .list .item .cases_slider:before {
    content: none;
  }
}
.top_wrapper .cases_block .list .item .cases_slider:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
  width: 7%;
  height: 100%;
  background-image: linear-gradient(-90deg, #C8BEA6, rgba(255, 255, 255, 0));
  z-index: 2;
}
@media (max-width: 768px) {
  .top_wrapper .cases_block .list .item .cases_slider:after {
    content: none;
  }
}
.top_wrapper .cases_block .list .item .cases_slider .swiper-wrapper .swiper-slide .img {
  position: relative;
  margin-bottom: 10px;
  aspect-ratio: 89/60;
}
@media (max-width: 768px) {
  .top_wrapper .cases_block .list .item .cases_slider .swiper-wrapper .swiper-slide .img {
    margin-bottom: 5px;
  }
}
.top_wrapper .cases_block .list .item .cases_slider .swiper-wrapper .swiper-slide .img img {
  display: block;
  height: 100%;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.top_wrapper .cases_block .list .item .cases_slider .swiper-wrapper .swiper-slide .img .thum {
  transition: all 0.3s;
}
.top_wrapper .cases_block .list .item .cases_slider .swiper-wrapper .swiper-slide .img .red {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}
.top_wrapper .cases_block .list .item .cases_slider .swiper-wrapper .swiper-slide .fig {
  font-size: 1.2rem;
  line-height: 1, 6;
  opacity: 0;
  transition: all 0.3s;
}
.top_wrapper .cases_block .list .item .cases_slider .swiper-wrapper .swiper-slide-active .img {
  cursor: pointer;
}
.top_wrapper .cases_block .list .item .cases_slider .swiper-wrapper .swiper-slide-active .img:hover .thum {
  opacity: 0;
}
@media (max-width: 768px) {
  .top_wrapper .cases_block .list .item .cases_slider .swiper-wrapper .swiper-slide-active .img:hover .thum {
    opacity: 1;
  }
}
.top_wrapper .cases_block .list .item .cases_slider .swiper-wrapper .swiper-slide-active .fig {
  opacity: 1;
}
.top_wrapper .cases_block .list .item .cases_slider .swiper-pagination {
  top: initial;
  bottom: 0;
}
.top_wrapper .cases_block .list .item .cases_slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid #FFF;
  opacity: 1;
}
@media (max-width: 768px) {
  .top_wrapper .cases_block .list .item .cases_slider .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
  }
}
.top_wrapper .cases_block .list .item .cases_slider .swiper-pagination-bullet-active {
  background-color: #FFF;
}
.top_wrapper .cases_block .list .item .cases_slider .swiper-button-prev, .top_wrapper .cases_block .list .item .cases_slider .swiper-button-next {
  top: var(--swiper-navigation-top-offset, 43%);
  width: 36px;
  height: 36px;
}
@media (max-width: 768px) {
  .top_wrapper .cases_block .list .item .cases_slider .swiper-button-prev, .top_wrapper .cases_block .list .item .cases_slider .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 36%);
    width: 35px;
    height: 35px;
  }
}
.top_wrapper .cases_block .list .item .cases_slider .swiper-button-prev:after, .top_wrapper .cases_block .list .item .cases_slider .swiper-button-next:after {
  content: none;
}
.top_wrapper .cases_block .list .item .cases_slider .swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 70px);
  background: url(../img/ico/ico-slider-left.svg) no-repeat center/contain;
}
@media (max-width: 768px) {
  .top_wrapper .cases_block .list .item .cases_slider .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, 35px);
  }
}
.top_wrapper .cases_block .list .item .cases_slider .swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 70px);
  background: url(../img/ico/ico-slider-right.svg) no-repeat center/contain;
}
@media (max-width: 768px) {
  .top_wrapper .cases_block .list .item .cases_slider .swiper-button-next {
    right: var(--swiper-navigation-sides-offset, 35px);
  }
}

.top_wrapper .cases_block .list .item .cases_slider.case03 .swiper-wrapper .swiper-slide .img, .top_wrapper .cases_block .list .item .cases_slider.case04 .swiper-wrapper .swiper-slide .img, .top_wrapper .cases_block .list .item .cases_slider.case05 .swiper-wrapper .swiper-slide .img {
  aspect-ratio: 1.724/1;
}

.top_wrapper .cases_block .list .item .content {
  width: 30%;
}
@media (max-width: 1024px) {
  .top_wrapper .cases_block .list .item .content {
    width: 40%;
  }
}
@media (max-width: 768px) {
  .top_wrapper .cases_block .list .item .content {
    width: 100%;
  }
}
.top_wrapper .cases_block .list .item .content .item_ttl {
  position: relative;
}
.top_wrapper .cases_block .list .item .content .item_ttl .num_slash {
  position: absolute;
  top: -1em;
}
.top_wrapper .cases_block .list .item .content .item_ttl .num_slash:before {
  top: 0.8em;
  right: -0.7em;
}
.top_wrapper .cases_block .list .item .content .item_ttl .num_slash:after {
  top: 0.8em;
  right: -0.72em;
}
.top_wrapper .cases_block .list .item .content .item_ttl .main_txt {
  display: block;
  padding-right: 0.5em;
  margin-bottom: 1em;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 10em;
  margin-left: auto;
  font-size: clamp(2rem, 2.3vw, 2.4rem);
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .top_wrapper .cases_block .list .item .content .item_ttl .main_txt {
    padding-right: 1.5em;
  }
}

.top_wrapper .cases_block .list .item .content .content_body .main {
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.top_wrapper .cases_block .list .item .content .content_body .main .name {
  font-size: 1em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.top_wrapper .cases_block .list .item .content .content_body .main .color {
  font-size: 1em;
}
.top_wrapper .cases_block .list .item .content .content_body .base--txt {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #3A1E10;
}
.top_wrapper .cases_block .list .item .content .content_body .base--txt p {
  line-height: 1.7;
}
.top_wrapper .cases_block .list .item .content .content_body .sub_txt {
  margin-bottom: 20px;
}
.top_wrapper .cases_block .list .item .content .content_body .sub_txt p {
  font-size: 1.2rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .top_wrapper .cases_block .list .item .content .content_body .detail_btn {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .top_wrapper .cases_block .list .item .item_ttl {
    position: relative;
    width: 100%;
    padding-left: 25px;
    margin-bottom: 25px;
  }
  .top_wrapper .cases_block .list .item .item_ttl .num_slash {
    position: absolute;
    top: -1em;
  }
  .top_wrapper .cases_block .list .item .item_ttl .num_slash:before {
    top: 0.8em;
    right: -0.7em;
  }
  .top_wrapper .cases_block .list .item .item_ttl .num_slash:after {
    top: 0.8em;
    right: -0.72em;
  }
  .top_wrapper .cases_block .list .item .item_ttl .main_txt {
    display: block;
    padding-left: 75px;
    font-size: 2.4rem;
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.3;
  }
}

/***************************************/
/** sus_block */
/***************************************/
.top_wrapper .sus_block {
  padding-bottom: 190px;
}
@media (max-width: 768px) {
  .top_wrapper .sus_block {
    padding-bottom: 120px;
  }
}
.top_wrapper .sus_block .mod-sec-ttl {
  margin-bottom: 35px;
}
.top_wrapper .sus_block .mod-sec-ttl .en {
  padding-top: 25px;
}

.top_wrapper .sus_block .first_txt {
  margin-bottom: 50px;
}
.top_wrapper .sus_block .first_txt p {
  font-size: 1.6rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.75;
}

.top_wrapper .sus_block .content .box:not(:last-child) {
  margin-bottom: 50px;
}
.top_wrapper .sus_block .content .box .box_ttl {
  display: block;
  padding-left: 0.6em;
  margin-bottom: 1em;
  border-left: 8px solid #C8BEA6;
  font-size: 1.9rem;
  line-height: 1.4;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-style: normal;
}

.top_wrapper .sus_block .content dl {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #C8BEA6;
}
.top_wrapper .sus_block .content dl:not(:last-child) {
  margin-bottom: 13px;
}
.top_wrapper .sus_block .content dl dt {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 13px 5px;
  border-right: 1px solid #C8BEA6;
  border-bottom: 1px solid #C8BEA6;
  background-color: #EFEADC;
  width: 112px;
  font-size: 1.2rem;
}
.top_wrapper .sus_block .content dl dt.border_bt_none {
  border-bottom: none;
}
.top_wrapper .sus_block .content dl dd {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 7px 10px;
  width: calc(100% - 112px);
  border-bottom: 1px solid #C8BEA6;
  font-size: 1.2rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .top_wrapper .sus_block .content dl dd {
    text-align: center;
  }
}
.top_wrapper .sus_block .content dl dd.fo16 {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.top_wrapper .sus_block .content dl dd.border_bt_none {
  border-bottom: none;
}
.top_wrapper .sus_block .content dl dd .small {
  font-size: 1rem;
}

.top_wrapper .sus_block .content .base--txt.fo14 {
  line-height: 1.7;
}

.top_wrapper .sus_block .content .border_txt {
  display: block;
  padding: 1em;
  margin-top: 12px;
  border: 1px solid #C8BEA6;
  font-size: 1.2rem;
  line-height: 1.6;
}

.top_wrapper .sus_block .content .fig {
  margin: 50px 0;
}
@media (max-width: 768px) {
  .top_wrapper .sus_block .content .fig {
    margin: 30px 0;
  }
}
.top_wrapper .sus_block .content .fig img {
  display: block;
  width: 100%;
}
@media (max-width: 768px) {
  .top_wrapper .sus_block .content .fig img {
    max-width: 300px;
    margin: auto;
  }
}

.top_wrapper .sus_block .content .colors {
  text-align: center;
}
.top_wrapper .sus_block .content .colors .txt {
  display: block;
  margin-bottom: 0.8em;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.5;
}
.top_wrapper .sus_block .content .colors .img_list {
  display: flex;
  justify-content: center;
  gap: 4%;
  width: 100%;
  max-width: 635px;
  margin: auto;
}
@media (max-width: 768px) {
  .top_wrapper .sus_block .content .colors .img_list {
    max-width: 300px;
  }
}
.top_wrapper .sus_block .content .colors .img_list .img {
  width: 25%;
}
.top_wrapper .sus_block .content .colors .img_list .img img {
  display: block;
  width: 100%;
}

/***************************************/
/** qa_block */
/***************************************/
.top_wrapper .qa_block {
  padding-bottom: 150px;
}
.top_wrapper .qa_block .mod-sec-ttl {
  margin-bottom: 30px;
}

.top_wrapper .qa_block .list .item:not(:last-child) {
  margin-bottom: 18px;
}
.top_wrapper .qa_block .list .item .q_box {
  position: relative;
  display: flex;
  padding: 8px 40px 8px 14px;
  margin-bottom: 5px;
  background-color: #FFF;
  cursor: pointer;
}
.top_wrapper .qa_block .list .item .q_box.open:after {
  transform: rotate(180deg);
}
.top_wrapper .qa_block .list .item .q_box:after {
  content: "";
  position: absolute;
  top: 12px;
  right: 10px;
  display: block;
  background: url(../img/ico/ico-ac.svg) no-repeat center/contain;
  width: 25px;
  height: 25px;
  transition: all 0.3s;
}
.top_wrapper .qa_block .list .item .q_box .en {
  padding-right: 0.5em;
  font-size: 2.2rem;
  font-family: "Cormorant Infant", serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.5;
}
.top_wrapper .qa_block .list .item .q_box .txt {
  margin-top: 0.2em;
  font-size: 1.8rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.5;
}
.top_wrapper .qa_block .list .item .a_box {
  background-color: #EFEADC;
  padding: 8px 14px;
}
.top_wrapper .qa_block .list .item .a_box .txt {
  font-size: 1.5rem;
  line-height: 1.5;
}
.top_wrapper .qa_block .list .item .a_box .txt.left_space {
  padding-left: 1em;
}
.top_wrapper .qa_block .list .item .a_box .txt a {
  color: inherit;
  font: inherit;
  text-decoration: underline;
  transition: all 0.3s;
}
.top_wrapper .qa_block .list .item .a_box .txt a:hover {
  opacity: 0.7;
}
.top_wrapper .qa_block .list .item .a_box .img_area {
  margin-bottom: 10px;
}
.top_wrapper .qa_block .list .item .a_box .img_area .img_item {
  margin-top: 10px;
}
.top_wrapper .qa_block .list .item .a_box .img_area .img_item .fig {
  display: block;
  margin-bottom: 0.5em;
  font-size: 1rem;
  line-height: 1.5;
}
.top_wrapper .qa_block .list .item .a_box .img_area .img_item .img_group {
  display: flex;
  flex-wrap: wrap;
}
.top_wrapper .qa_block .list .item .a_box .img_area .img_item .img_group .img {
  width: 14.2857142857%;
}
@media (max-width: 768px) {
  .top_wrapper .qa_block .list .item .a_box .img_area .img_item .img_group .img {
    width: 33.3333333333%;
  }
}
.top_wrapper .qa_block .list .item .a_box table {
  margin: 0 auto 10px;
  width: 100%;
  max-width: 510px;
  border: 1px solid #C8BEA6;
}
.top_wrapper .qa_block .list .item .a_box table th {
  padding: 7px;
  background-color: #C8BEA6;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-align: center;
}
.top_wrapper .qa_block .list .item .a_box table td {
  padding: 7px;
  background-color: #FFF;
  border: 1px solid #C8BEA6;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  vertical-align: top;
}
.top_wrapper .qa_block .list .item .a_box table td .sub_txt {
  padding: 0 15px;
  font-size: 1.3rem;
  font-weight: 500;
  text-align: left;
}
.top_wrapper .qa_block .list .item .a_box table td .sub_txt p {
  font: inherit;
}
.top_wrapper .qa_block .list .item .a_box table td .sub_txt ul {
  font: inherit;
}
.top_wrapper .qa_block .list .item .a_box table td .sub_txt ul li {
  padding-left: 1em;
  text-indent: -1em;
  font: inherit;
  line-height: 1.5;
}
.top_wrapper .qa_block .list .item .a_box table td .sub_txt ul li:before {
  content: "・";
}

/***************************************/
/** contact_block */
/***************************************/
.mw_wp_form.mw_wp_form_input {
  margin-top: -100px;
  padding-top: 100px;
}

.top_wrapper .contact_block {
  padding-bottom: 60px;
}
@media (max-width: 768px) {
  .top_wrapper .contact_block {
    padding-bottom: 30px;
  }
}
.top_wrapper .contact_block .mod-sec-ttl {
  margin-bottom: 20px;
}

.top_wrapper .contact_block .first_txt {
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 768px) {
  .top_wrapper .contact_block .first_txt {
    margin-bottom: 25px;
    text-align: left;
  }
}
.top_wrapper .contact_block .first_txt p {
  font-size: 1.2rem;
}
.top_wrapper .contact_block .first_txt p a {
  font: inherit;
  text-decoration: underline;
}

.top_wrapper .contact_block .contact_form {
  margin-bottom: 20px;
}

.top_wrapper .contact_block .error {
  display: block;
  margin-top: -0.3em;
  color: #d40000;
  font-size: 1.4rem;
}

.top_wrapper .contact_block .contact_form .box {
  padding: 30px 0;
  border-top: 1px solid #B7AE99;
}
@media (max-width: 768px) {
  .top_wrapper .contact_block .contact_form .box {
    padding: 20px 0;
  }
}
.top_wrapper .contact_block .contact_form .box:last-child {
  padding-bottom: 0;
}
.top_wrapper .contact_block .contact_form .box .inner {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.top_wrapper .contact_block .contact_form .box .inner .folder {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.5;
}
.top_wrapper .contact_block .contact_form .box .inner .tab {
  padding: 0.2em;
  margin-left: 1em;
  color: #FFF;
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.2;
}
.top_wrapper .contact_block .contact_form .box .inner .tab.required {
  background-color: #3A1E10;
}
.top_wrapper .contact_block .contact_form .box .inner .tab.ninni {
  background-color: #B7AE99;
}
.top_wrapper .contact_block .contact_form .box .text .inner input, .top_wrapper .contact_block .contact_form .box .text .inner select, .top_wrapper .contact_block .contact_form .box .text .inner textarea {
  width: 100%;
  padding: 0.5em 0.8em 0.3em;
  border: 1px solid #B7AE99;
  border-radius: 12px;
  color: #3A1E10;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.6;
}
.top_wrapper .contact_block .contact_form .box .text .inner input::-moz-placeholder, .top_wrapper .contact_block .contact_form .box .text .inner select::-moz-placeholder, .top_wrapper .contact_block .contact_form .box .text .inner textarea::-moz-placeholder {
  color: #B7AE99;
}
.top_wrapper .contact_block .contact_form .box .text .inner input::placeholder, .top_wrapper .contact_block .contact_form .box .text .inner select::placeholder, .top_wrapper .contact_block .contact_form .box .text .inner textarea::placeholder {
  color: #B7AE99;
}
.top_wrapper .contact_block .contact_form .box .text .inner textarea {
  height: 163px;
}

.top_wrapper .contact_block .contact_form .box .text .inner:has(select) {
  position: relative;
}
.top_wrapper .contact_block .contact_form .box .text .inner:has(select):after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  display: block;
  margin: auto;
  background: url(../img/ico/ico-ac.svg) no-repeat center/contain;
  width: 25px;
  height: 25px;
  pointer-events: none;
}
.top_wrapper .contact_block .contact_form .box .text .inner:has(select) select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.top_wrapper .contact_block .contact_form .box .radio_button .err_container {
  display: flex;
  gap: 2%;
  margin-bottom: 10px;
}
.top_wrapper .contact_block .contact_form .box .radio_button .err_container .horizontal-item label {
  position: relative;
  padding-left: 1.7em;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.5;
}
.top_wrapper .contact_block .contact_form .box .radio_button .err_container .horizontal-item label:before {
  content: "";
  position: absolute;
  top: 0.2em;
  left: 0;
  display: block;
  width: 19px;
  height: 19px;
  border: 1px solid #3A1E10;
  border-radius: 50px;
}
.top_wrapper .contact_block .contact_form .box .radio_button .err_container .horizontal-item label:after {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 5px;
  display: block;
  width: 11px;
  height: 11px;
  background-color: #3A1E10;
  border-radius: 50px;
  opacity: 0;
}
.top_wrapper .contact_block .contact_form .box .radio_button .err_container .horizontal-item label input[type=radio] {
  width: 0;
  height: 0;
}
.top_wrapper .contact_block .contact_form .box .radio_button .err_container .horizontal-item label:has(input:checked):after {
  opacity: 1;
}

.top_wrapper .contact_block .mwform-checkbox-field .inner p {
  display: block;
  margin-bottom: 0.5em;
  font-size: 1.2rem;
  line-height: 1.6;
}
.top_wrapper .contact_block .mwform-checkbox-field .inner label {
  position: relative;
  display: flex;
  gap: 5px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.6;
  cursor: pointer;
}
.top_wrapper .contact_block .mwform-checkbox-field .inner label input {
  position: relative;
  display: block;
  width: 16px;
  min-width: 16px;
  height: 16px;
  margin-top: 2px;
  border: 1px solid #3A1E10;
  border-radius: 4px;
  cursor: pointer;
}
.top_wrapper .contact_block .mwform-checkbox-field .inner label input:checked:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 1px;
  width: 10px;
  height: 4px;
  border-bottom: 2px solid #3A1E10;
  border-left: 2px solid #3A1E10;
  transform: rotate(-45deg);
}

.top_wrapper .contact_block .submit--container .submit button {
  width: 100%;
  max-width: 300px;
  padding: 1.2em 1em;
  margin: 30px auto 0;
  border: none;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.5;
}/*# sourceMappingURL=style.css.map */