@charset "utf-8";
/* CSS Document */
.section05 {
  background: #EAEAEA;
}
.voice_blog_wrap {
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}
.voice_blog_wrap .voice_wrap, .voice_blog_wrap .blog_wrap {
  width: calc((100% - 60px) / 2);
}
@media screen and (max-width: 1080px) {
  .voice_blog_wrap {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  .voice_blog_wrap .voice_wrap, .voice_blog_wrap .blog_wrap {
    width: 100%;
    max-width: 700px;
  }
}
.voice_wrap .voice_list {
  display: flex;
  flex-direction: column;
}
.voice_wrap .voice_item {
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  padding: 0 0 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #ddd8d5;
  text-decoration: none;
  color: inherit;
}
.voice_wrap .voice_item .imgbox {
  width: 160px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.voice_wrap .voice_item .imgbox img {
  width: 100%;
  height: auto;
  display: block;
}
.voice_wrap .voice_item .txtbox {
  flex: 1;
}
.voice_wrap .voice_item .voice_cate {
  line-height: 1;
}
.voice_wrap .voice_item .voice_title {
  font-weight: 400;
  margin-bottom: 4px;
}
@media screen and (max-width: 576px) {
  .voice_wrap .voice_item {
    gap: 14px;
    align-items: flex-start;
  }
  .voice_wrap .voice_item .imgbox {
    width: 120px;
  }
}
.blog_wrap .webgene_blog {
  display: flex;
  flex-direction: column;
}
.blog_wrap .webgene_item {
  padding: 0 0 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #ddd8d5;
}
.blog_wrap .webgene_item a {
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: inherit;
}
.blog_wrap .webgene_item .imgbox {
  width: 160px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}
.blog_wrap .webgene_item .imgbox img {
  width: 100%;
  height: auto;
  display: block;
}
.blog_wrap .webgene_item .txtbox {
  flex: 1;
}
.blog_wrap .webgene_item .meta {
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.blog_wrap .webgene_item .date {
  color: #c0a15f;
  line-height: 1;
}
.blog_wrap .webgene_item .cate_txt {
  background: #bea05f;
  color: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  line-height: 1;
  font-weight: 400;
  font-size: 14px;
}
.blog_wrap .webgene_item h3 {
  margin: 0;
  font-weight: 400;
  line-height: 1.8;
  color: #222;
}
@media screen and (max-width: 576px) {
  .blog_wrap .webgene_item a {
    gap: 14px;
  }
  .blog_wrap .webgene_item .imgbox {
    width: 120px;
  }
  .blog_wrap .webgene_item .meta {
    gap: 8px;
    margin-bottom: 10px;
  }
}
.service_list {
  justify-content: space-between;
  gap: 10px;
}
.service_list .service_box {
  position: relative;
  width: calc((100% - 30px) / 4);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  display: block;
}
.service_list .service_box:nth-child(2), .service_list .service_box:nth-child(4) {
  margin-top: 70px;
}
.service_list .service_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service_list .service_box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.5) 45%, rgba(0, 0, 0, 0.25) 100%);
  z-index: 1;
      transition: opacity 0.3s ease;
}
.service_list .service_box:hover::before {
  opacity: 0.8;
}
.service_list .service_txt {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
}
.service_list .service_num {
  color: #fff;
  margin-bottom: 16px;
  line-height: 1;
  font-size: 18px;
}
.service_list .service_name {
  color: #fff;
  line-height: 1;
  margin-bottom: 20px;
}
.service_list .service_desc {
  color: #fff;
  line-height: 1.8;
  padding-right: 34px;
  font-weight: 400;
  font-size: 14px;
}
.service_list .service_arrow {
  position: absolute;
  right: 0;
  bottom: 4px;
  width: 30px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  transition: transform 0.3s ease;
}
.service_list .service_arrow img {
  width: 8px;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.service_list .service_box:hover .service_arrow {
  transform: translateX(4px);
}
@media screen and (max-width: 1080px) {
  .service_list {
    gap: 0px;
    align-items: flex-start;
  }
  .service_list .service_box {
    width: calc((100% - 20px) / 2);
  }
  .service_list .service_box:nth-child(2), .service_list .service_box:nth-child(4) {
    margin-top: 30px;
  }
}
@media screen and (max-width: 576px) {
  .service_list {
    gap: 16px;
  }
  .service_list .service_box {
    width: 100%;
    margin-top: 0 !important;
    max-height: 250px;
    max-width: 250px;
    margin-right: auto;
    margin-left: auto;
  }
  .service_list .service_txt {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
}
.trouble_list {
  gap: 26px;
  justify-content: space-between;
  align-items: stretch;
}
.trouble_list .trouble_box {
  width: calc((100% - 52px) / 3);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 28px 20px;
  text-align: center;
}
.trouble_list .trouble_box .icon {
  width: 120px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #f2e9ed;
  display: flex;
  justify-content: center;
  align-items: center;
}
.trouble_list .trouble_box .icon img {
  width: 60px;
  height: auto;
  display: block;
}
.trouble_list .trouble_box p {
  line-height: 1.8;
  font-weight: 400;
  color: #222;
}
@media screen and (max-width: 1080px) {
  .trouble_list {
    gap: 20px;
  }
  .trouble_list .trouble_box {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 576px) {
  .trouble_list {
    gap: 16px;
  }
  .trouble_list .trouble_box {
    width: 100%;
    max-width: 350px;
    margin-right: auto;
    margin-left: auto;
    padding: 24px 16px;
  }
}
.section02 .box_wrap1 .imgbox {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
body {
  position: relative;
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 1600px;
  background: linear-gradient(to bottom, rgba(230, 214, 222, 1) 0%, rgba(230, 214, 222, 0.9) 45%, rgba(230, 214, 222, 0.55) 75%, rgba(230, 214, 222, 0.2) 90%, rgba(230, 214, 222, 0) 100%);
  pointer-events: none;
  z-index: -1;
}
.scroll_circle {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: clamp(140px, 18vw, 260px);
  aspect-ratio: 1 / 1;
  z-index: 5;
}
.scroll_circle > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  animation: scroll_circle_rotate 12s linear infinite;
}
.scroll_circle .arrow2 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(4px, 2vw, 20px);
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@keyframes scroll_circle_rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fv {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
body.gjs-dashed .fv {
  height: auto;
}
body:not(.gjs-dashed) .fv .swiper {
  position: absolute;
  top: 80px;
  margin-left: 180px;
  width: calc(100% - 240px) !important;
  height: calc(100vh - 120px);
  padding: 0;
  border-radius: 20px 0 20px 20px;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 1080px) {
  body:not(.gjs-dashed) .fv .swiper {
    top: 40px;
    margin-left: 120px;
    width: calc(100% - 160px) !important;
    height: calc(100vh - 100px);
    border-radius: 18px 0 18px 18px;
  }
}
@media screen and (max-width: 576px) {
  body:not(.gjs-dashed) .fv .swiper {
    top: 20px;
    width: calc(100% - 40px) !important;
    height: calc(100vh - 40px);
    border-radius: 14px 0 14px 14px;
    margin-left: 60px;
  }
}
.fv .swiper {
  z-index: 1;
  position: relative;
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
body:not(.gjs-dashed) .fv .swiper-wrapper {
  overflow: hidden;
  border-radius: 20px;
}
body:not(.gjs-dashed) .fv .swiper-slide, body:not(.gjs-dashed) .fv .swiper-wrapper {
  width: 100% !important;
  height: 100%;
}
body:not(.gjs-dashed) .fv .swiper-slide .swiper-img {
  width: 100% !important;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
body:not(.gjs-dashed) .fv .swiper .swiper-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #D6D6D6 0%, rgba(214, 214, 214, 0.15) 20%, rgba(214, 214, 214, 0) 100%);
  z-index: 2;
  pointer-events: none;
}
.fv .swiper-slide-active .swiper-img, .fv .swiper-slide-duplicate-active .swiper-img, .fv .swiper-slide-prev .swiper-img {
  animation: zoomUp 10s linear 0s normal both;
}
body:not(.gjs-dashed) .fv .swiper-slide img {
  display: block !important;
  opacity: 0;
  height: auto;
  width: 100%;
}
.fv .txtbox {
  position: absolute;
  top: 50%;
  width: 90%;
  z-index: 99;
  padding: 0 50px;
  align-items: flex-start;
  gap: 20px;
  transform: translateY(-50%);
}
body:not(.gjs-dashed) .fv .txtbox {
  opacity: 0;
  -ms-filter: blur(6px);
  filter: blur(6px);
  animation-name: blurin;
  animation-duration: 1.2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  animation-delay: 0s;
}
body:not(.gjs-dashed) .fv .txtbox h1, body:not(.gjs-dashed) .fv .txtbox p {}
.fv .fv_menu {
  position: absolute;
  right: clamp(20px, 4vw, 50px);
  bottom: clamp(40px, 4vw, 100px);
  margin-left: 0;
  margin-right: 0;
}
.fv .fv_menu .reservation_box {
  width: auto;
  border-radius: 10px;
  box-sizing: border-box;
  z-index: 99;
}
body:not(.gjs-dashed) .fv .fv_menu .reservation_box {
  opacity: 0;
  -ms-filter: blur(6px);
  filter: blur(6px);
  animation-name: blurin;
  animation-duration: 1.2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.fv_menu {
  justify-content: flex-end;
}
.fv_menu .reservation_box {
  width: 100%;
  max-width: 520px;
}
.fv_menu .reservation_btn {
  position: relative;
  display: block;
  text-decoration: none;
  padding-top: 22px;
}
.fv_menu .reservation_badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: auto;
  padding: 10px 20px;
  background: #f4f4f4;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.fv_menu .reservation_badge p {
  margin: 0;
  color: #bc9858;
  font-family: "Cormorant Infant", "Zen Old Mincho", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", "serif";
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.fv_menu .reservation_main {
  width: 100%;
  background: linear-gradient(to right, #b9975b 0%, #c7aa72 18%, #dcc79a 50%, #c7aa72 82%, #b9975b 100%);
  border-radius: 999px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 10px;
  gap: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45), inset 0 -8px 18px rgba(154, 118, 56, 0.18), 0 10px 24px rgba(195, 164, 107, 0.18);
}
.fv_menu .reservation_main p {
  margin: 0;
  color: #fff;
  font-family: "Cormorant Infant", "Zen Old Mincho", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", "serif";
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
.fv_menu .reservation_arrow {
  width: clamp(32px, 4.2vw, 36px);
  height: clamp(32px, 4.2vw, 36px);
  border-radius: 50%;
  background: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.fv_menu .reservation_arrow img {
  width: 8px;
  height: auto;
  display: block;
}
.fv_menu .reservation_btn:hover .reservation_arrow {
  transform: translateX(4px);
}
@media screen and (max-width: 768px) {
  .fv_menu .reservation_box {
    max-width: 440px;
  }
  .fv_menu .reservation_main {
    padding-left: 24px;
  }
}
@media screen and (max-width: 576px) {
  .fv_menu .reservation_box {
    max-width: 100%;
  }
  .fv_menu .reservation_btn {
    padding-top: 18px;
  }
  .fv_menu .reservation_main p {
    letter-spacing: 0.03em;
  }
}
@media screen and (max-width: 768px) {
  .fv .txtbox p {
    font-size: clamp(16px, 2vw, 20px);
  }
}
@media screen and (max-width: 576px) {
  .fv {
    padding: 100px 20px 80px;
  }
  body:not(.gjs-dashed) .fv .swiper {
    padding: 30px 20px 80px;
  }
  .fv .txtbox {
    width: 100%;
    padding: 0px 20px 0px;
  }
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px) {}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px) {}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px) {}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px) {}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px) {}