@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-origin: border-box;
}

:root {
  --color-primary: #015a3b;
  --color-secondary: #b78a32;
  --color-body: #1a1311;
  --color-tertiary: #f0f0f0;
  --color-white: #fff;
  --color-green-light: #24b546;
  font-size: 10px;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  background: var(--color-tertiary);
  color: var(--color-body);
  display: block;
  overflow-x: hidden;
  width: 100%;
  word-break: break-all;
  font-weight: 500;
  font-style: normal;
}
p {
  font-size: 1.6rem;
}
/*====================================*/
/* base contents */
/*====================================*/
a {
  text-decoration: none;
}
ul {
  list-style-type: none;
}
ul li {
  color: currentColor;
}
img {
  max-width: 100%;
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  object-fit: cover;
}
h2,
h3,
h4,
p {
  line-height: 1.8;
}
/* ------------------------
    edit contents
------------------------- */
/* 指定フォント ここから */

/* ----pc,sp/on_off---- */
.pc {
  display: block !important;
}
.tb {
  display: block;
}
.pc_fl {
  display: flex !important;
}
.sp {
  display: none !important;
}
.sp_fl {
  display: none !important;
}
@media (max-width: 1023.98px) {
  .pc {
    display: none !important;
  }
  .pc_fl {
    display: none !important;
  }
  .tb {
    display: none;
  }
  .sp {
    display: block !important;
  }
  .sp_fl {
    display: flex !important;
  }
}
/*================= Header ===================*/
header {
  background: var(--color-tertiary);
}
/* Nav */
.buttonX {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 47px;
  height: 39px;
  padding: 10px;
  box-sizing: border-box;
  cursor: pointer;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--color-white);
  border-radius: 8px;
  background: var(--color-white);
}
.buttonX span {
  display: block;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.buttonX span:nth-child(1),
.buttonX span:nth-child(2) {
  width: 100%;
}
.buttonX span:nth-child(n + 3) {
  display: none;
}

.buttonX.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.buttonX.active span:nth-child(2) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.hero_menu {
  position: fixed;
  top: 0;
  right: -60%;
  width: 60%;
  height: 100vh;
  background: var(--color-white);
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1000;
  padding: 88px 20px 20px 20px;
}
.hero_menu.active {
  right: 0;
}
.hero_menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero_menu ul li {
  margin-bottom: 32px;
}
.hero_menu ul li a {
  text-decoration: none;
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--color-primary);
  font-weight: 500;
  transition: font-weight 0.1s ease;
}
.hero_menu ul li a:hover {
  font-weight: bold;
}
/*
  -------------- SLIDE TOP ---------------
*/
.swiper-container-horizontal {
  background: transparent;
}
/* header PC */
.swiper-container-horizontal {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  height: 900px;
  box-sizing: border-box;
  gap: 10%;
  z-index: 2;
}
.lp-top_slide .swiper-button-next,
.lp-top_slide .swiper-button-prev {
  cursor: none !important;
  display: none !important;
}
.logo {
  position: absolute;
  top: 130%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.logo .logo_top {
  padding: 31px;
  width: 312px;
  height: auto;
  aspect-ratio: 251.06/235.57;
  border-radius: 327px;
  background: var(--color-tertiary);
  transition: width 0.5s ease;
}
.logo .logo_bot {
  width: 151px;
  margin: 0 auto;
}
.swiper {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.mainSwiper,
.thumnailSwiper {
  height: 100%;
  margin: 0;
}
.mainSwiper {
  width: 50%;
  border-radius: 0px 0px 0px 80px;
}
.thumnailSwiper {
  width: 10%;
  border-radius: 0px 0px 80px 0px;
}

.mainSwiper .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
  background: var(--color-white);
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mvisual_slide .swiper-slide img {
  border-radius: 24px 24px 0px 0px;
}

.swiper-button-next,
.swiper-button-prev {
  color: transparent;
}

.thumnailSwiper .swiper-slide {
  opacity: 0.4;
}

.thumnailSwiper .swiper-slide-thumb-active {
  opacity: 1;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: none !important;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: none !important;
}
.swiper-button-next,
.swiper-button-prev {
  cursor: default !important;
}
.thumnailSwiper .swiper-wrapper .swiper-slide img {
  object-position: 82% 100%;
}
/* Hero Title */
.hero_intro {
  position: relative;
  padding: 316px 0 160px;
  overflow: hidden;
}
.hero_intro--title,
.hero_intro--text {
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero_intro--title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-primary);
}
.hero_intro--text {
  margin-top: 32px;
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-body);
}
.hero_intro--anni {
  position: absolute;
  top: 300px;
  right: -10px;
  z-index: 1;
  animation: fadeInOut 6s ease-in-out infinite;
}
@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* ----------------- Decor background ----------------- */
.decor {
  position: absolute;
  z-index: 0;
}
.decor_2-1 {
  background: url(../img/svg/decor_2-1.svg) no-repeat;
  background-size: cover;
  top: 207px;
  right: 0;
  width: 100.138px;
  height: 117.109px;
}
.decor_2-3 {
  background: url(../img/svg/decor_2-3.svg) no-repeat;
  background-size: cover;
  top: 207px;
  left: -20px;
  width: 116.221px;
  height: 112.125px;
}
.decor_1-1 {
  background: url(../img/svg/decor_1-1.svg) no-repeat;
  background-size: cover;
  top: 318px;
  left: 0;
  width: 67.954px;
  height: 144.556px;
}
.decor_1-2 {
  background: url(../img/svg/decor_1-2.svg) no-repeat;
  background-size: cover;
  bottom: -15px;
  left: -20px;
  width: 486px;
  height: 391px;
}
.sec-cont1 .decor_1-4 {
  position: absolute;
  background: url(../img/svg/decor_1-4.svg) no-repeat;
  background-size: cover;
  bottom: -160px;
  right: 40px;
  width: 99.333px;
  height: 50.986px;
}
.sec-cont1 .decor_1-5 {
  position: absolute;
  background: url(../img/svg/decor_1-5.svg) no-repeat;
  background-size: cover;
  bottom: -220px;
  left: 0;
  width: 302.733px;
  height: 83px;
}

/*================= Main ===================*/

.sec-cont1 {
  position: relative;
  background: var(--color-tertiary);
}
/* Title */
.sec-cont_title {
  margin-bottom: 80px;
}
.sec-cont_title h2 {
  color: var(--color-primary);
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
}
.sec-cont_title h2 span {
  display: block;
  color: var(--color-secondary);
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.8;
}
/*
  -------------- SLIDE ITEMS ---------------
*/
.lp-mvisual_inner {
  position: relative;
  /* margin-left: calc((100% - 600px) / 2); */
  margin-bottom: 249px !important;
  max-width: 1080px;
  margin: 0 auto;
}
.mvisual_slide {
  overflow: hidden;
}
.lp-mvisual_inner .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  border: 3px solid var(--color-primary);
  background-color: var(--color-white);
}
.lp-mvisual_inner .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}
.lp-mvisual_inner .mvisual_slide .swiper-slide {
  width: 400px !important;
  border-radius: 24px;
}
.lp-mvisual_inner .mvisual_slide .swiper-slide .slide_box {
  background: var(--color-white);
  border-radius: 24px;
}

@media (max-width: 991px) {
  .mvisual_slide .swiper-pagination {
    bottom: 10px;
  }
  .mvisual_slide .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
  }
}
/* btn */
.swiper_btn_box {
  position: absolute;
  top: 15px;
  left: -120px;
}
.swiper-button-next {
  width: 80px;
  height: 80px;
  background-color: var(--color-white);
  border-radius: 50%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80" fill="none"><circle cx="40" cy="40" r="39" fill="white" stroke="%23015A3B" stroke-width="2"/><path d="M24 40H55" stroke="%23015A3B" stroke-width="2"/><path d="M46 31L55 40L46 49" stroke="%23015A3B" stroke-width="2"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  transition: background-image 0.3s ease;
}
.swiper-button-prev {
  width: 80px;
  height: 80px;
  background-color: var(--color-white);
  border-radius: 50%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80" fill="none"><circle cx="40" cy="40" r="39" transform="matrix(-1 0 0 1 80 0)" fill="white" stroke="%23015A3B" stroke-width="2"/><path d="M56 40H25" stroke="%23015A3B" stroke-width="2"/><path d="M34 31L25 40L34 49" stroke="%23015A3B" stroke-width="2"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  transition: background-image 0.3s ease;
}
.swiper-button-prev:hover {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80" fill="none"><circle cx="40" cy="40" r="39" transform="matrix(-1 0 0 1 80 0)" fill="%23015A3B" stroke="white" stroke-width="2"/><path d="M56 40H25" stroke="white" stroke-width="2"/><path d="M34 31L25 40L34 49" stroke="white" stroke-width="2"/></svg>');
}
.swiper-button-next:hover {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80" viewBox="0 0 80 80" fill="none"><circle cx="40" cy="40" r="39" fill="%23015A3B" stroke="white" stroke-width="2"/><path d="M24 40H55" stroke="white" stroke-width="2"/><path d="M46 31L55 40L46 49" stroke="white" stroke-width="2"/></svg>');
}
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #e4e4e4;
  opacity: 1;
}
.lp-mvisual_inner .swiper-pagination {
  bottom: -50px;
  max-width: fit-content;
  transform: translateX(-10%);
  left: 50%;
  transform: translateX(-50%);
}
.swiper-pagination-bullet-active {
  background-color: var(--color-tertiary);
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 10px;
}
.swiper_btn_box {
  position: absolute;
  top: unset;
  width: 184px;
  left: unset;
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
}
.swiper_btn_box .swiper-button-prev {
  left: 0;
}
.swiper_btn_box .swiper-button-next {
  left: 100px;
}
/* box content */
.slide_box-content {
  padding: 24px;
  position: relative;
}
.slide_box-content h3 {
  position: relative;
  font-size: 2.4rem;
  color: var(--color-primary);
  line-height: 1.8;
  margin-bottom: 43px;
}
.slide_box-content h3::after {
  position: absolute;
  content: "";
  background: url(../img/svg/slide_box_bottom.svg) no-repeat;
  width: 251.142px;
  height: 11px;
  bottom: -16px;
  left: 0;
}
.slide_box-content p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 74px;
  min-height: 58px;
}
.slide_box-content .price {
  position: absolute;
  font-size: 3.2rem;
  bottom: 0;
  right: 24px;
  margin-bottom: 0;
}
/*
  -------------- INFORMATION ---------------
*/
.information {
  position: relative;
}
.sec-cont2_heading {
  position: relative;
  display: inline-block;
  z-index: 0;
  width: 100%;
}
.sec-cont2_heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(240, 240, 240, 0) 0%, rgba(240, 240, 240, 0.52) 38%, #f0f0f0 100%);
  pointer-events: none;
  z-index: 2;
}
.sec-cont2_heading img {
  position: relative;
  z-index: 1;
  display: block;
}
.sec-cont2_content {
  position: relative;
  padding: 0 24px 160px;
  margin-top: -120px;
  z-index: 3;
}
.table {
  position: relative;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 40px;
  border-radius: 16px;
}
.table--left {
  padding: 16px 24px 0;
}
.table--left h3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 2.4px;
  color: var(--color-primary);
}
.table--left h3 span {
  display: block;
  margin-top: -8px;
  font-size: 1.6rem;
  color: var(--color-secondary);
}
.table--left p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-top: 16px;
}
.table--right {
  padding: 0 24px;
  margin-bottom: 112px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.table--right .column {
  position: relative;
}
.table--right .column::before {
  position: absolute;
  content: "";
  display: block;
  top: -16px;
  width: 100%;
  height: 2px;
  border-top: 2px solid var(--color-green-light);
}
.table--right .column p:first-child,
.table--right .column p:last-child {
  font-size: 1.6rem;
  line-height: 1.8;
  /* word-break: break-word; */
}
.table--right .column p:first-child {
  color: var(--color-primary);
}
.logo_info {
  position: absolute;
  bottom: 32px;
  left: 24px;
  width: 142.032px;
  height: 40px;
}
.btn {
  margin-top: 20px;
  border: 1px solid var(--color-body);
  transition: border 0.5s ease;
  min-width: 280px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  margin-top: 24px;
}
.btn a {
  display: block;
  text-align: center;
  color: var(--color-body);
  font-size: 1.6rem;
  margin: 0 auto;
  padding: 8px 20px;
  background-color: transparent;
  transition: background-color 0.5s ease;
}
.btn a:hover {
  color: var(--color-white);
  background: var(--color-body);
}
/*================= Footer ===================*/
footer {
  background: url(../img/footer_bg-sp.webp) no-repeat center center / cover, linear-gradient(0deg, rgba(62, 85, 77, 0.8) 0%, rgba(62, 85, 77, 0.8) 100%);
  background-blend-mode: luminosity;
  position: relative;
  z-index: 1;
  padding: 0 24px;
}
.footer {
  color: var(--color-white);
  padding: 64px 0 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer .img_box {
  width: 250px;
  margin: 0 auto;
}
.access_detail {
  text-align: left;
}
.footer h3 {
  font-size: 2rem;
}
.access_detail .access {
  font-weight: 400;
  line-height: 1.8;
}
.access_detail h3,
.btn_footer a {
  font-weight: 500;
  line-height: 1.8;
}
.access_detail .access {
  font-size: 1.6rem;
}
.btn_footer {
  border: 1px solid var(--color-white);
  transition: border 0.5s ease;
  min-width: 280px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  margin-top: 24px;
}
.btn_footer:hover {
  border: 1px solid var(--color-primary);
}
.btn_footer a {
  display: block;
  text-align: center;
  color: var(--color-white);
  font-size: 1.6rem;
  margin: 0 auto;
  padding: 4px 14px;
  background-color: transparent;
  transition: background-color 0.5s ease;
}
.btn_footer a:hover {
  background-color: var(--color-primary);
}
.link_cta {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  padding-bottom: 64px;
}
.link_cta li a {
  color: var(--color-white);
  font-size: 1.6rem;
  line-height: 1.8;
  transition: color 0.5s ease;
}
.link_cta li a:hover {
  color: var(--color-secondary);
}
/* copyright */
.copyright {
  background: var(--color-primary);
}
.copyright p {
  color: var(--color-white);
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.2;
  padding: 10px;
}
/* pageTop */
.pageTop a {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  background-color: var(--color-white);
  rotate: -90deg;
  transition: background-color 0.3s ease, filter 0.3s ease;
}
.pageTop a:hover {
  background-color: var(--color-primary);
  filter: drop-shadow(0px 8px 5px #3d260488);
}
.pageTop a:hover svg path,
.pageTop a:hover svg circle {
  stroke: white;
  fill: var(--color-primary);
}
.pageTop a:hover svg circle {
  stroke: var(--color-primary);
}
.pageTop a svg {
  width: 80px;
}
