@charset "UTF-8";
html {
  font-size: 62.5%;
  height: 100%;
  scroll-behavior: smooth;
}

@media screen and (max-width: 1440px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.2rem;
  line-height: 1;
  min-width: 86.1%;
  -webkit-text-size-adjust: none;
}

a {
  transition: all 0.4s;
}
a:hover {
  opacity: 0.7;
}

.u-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
}

.u-gold {
  color: #c4ac2c !important;
}

/* ------------------------------------------
  ヘッダー
------------------------------------------ */
.l-header {
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  height: 12.4rem;
  top: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-header {
    background: none;
    pointer-events: none;
    position: static;
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .l-body.active .l-header {
    background-color: #1f231f;
    height: 100vh;
    pointer-events: all;
  }
}

.c-header__nav {
  padding: 3.4rem 7rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  display: flex;
  gap: 23.7rem;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-header__nav {
    opacity: 0;
    flex-direction: column;
    gap: 1.5rem;
    height: 100vh;
    justify-content: flex-start;
    transition: all 0.4s;
  }
}

@media screen and (max-width: 767px) {
  .c-header__nav.active {
    opacity: 1;
    background-color: #000;
  }
}

.c-header__logo {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-header__logo {
    display: block;
    width: 100%;
  }
}

.c-header__nav_list {
  display: flex;
  gap: 3.1rem;
}
@media screen and (max-width: 767px) {
  .c-header__nav_list {
    flex-direction: column;
  }
}

.c-header__nav_list_item_menu {
  font-size: 1.6rem;
  font-weight: bold;
  font-family: "Zen Old Mincho", serif;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-header__nav_list_item_menu {
    font-size: 2.4rem;
  }
}

.c-header__nav_link {
  border: 0.1rem solid #fff;
  border-radius: 2.1rem;
  position: relative;
  padding: 0.9rem 2.6rem 0.9rem 1.4rem;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-weight: bold;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-header__nav_link {
    display: none;
  }
}
.c-header__nav_link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #c4ac2c;
  opacity: 0.6;
  z-index: -1;
  border-radius: 2.1rem;
}
.c-header__nav_link::after {
  position: absolute;
  content: "";
  background-image: url(../img/icon_header-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 0.1rem;
  margin-left: 0.7rem;
  width: 0.8rem;
  height: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
}

.c-header__toggle {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-header__toggle {
    display: block;
    border: 0.1rem solid #fff;
    border-radius: 2.1rem;
    width: 6.9rem;
    height: 4.2rem;
    cursor: pointer;
    position: fixed;
    right: 1.6rem;
    top: 2.4rem;
    pointer-events: all;
    z-index: 999;
  }
  .c-header__toggle::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #c4ac2c;
    opacity: 0.6;
    z-index: -1;
    border-radius: 2.1rem;
  }
}

@media screen and (max-width: 767px) {
  .c-header__toggle_bar {
    display: block;
    width: 2.5rem;
    height: 0.1rem;
    position: absolute;
    content: "";
    left: 2.2rem;
    background-color: #fff;
    transition: 0.2s ease;
  }
  .c-header__toggle_bar:nth-child(1) {
    top: 1.4rem;
  }
  .c-header__toggle_bar:nth-child(2) {
    top: 2.1rem;
  }
  .c-header__toggle_bar:nth-child(3) {
    top: 2.8rem;
    width: 1.333rem;
  }
}

@media screen and (max-width: 767px) {
  .c-header__toggle.active .c-header__toggle_bar:nth-child(1) {
    top: 50%;
    transform: rotate(35deg);
  }
  .c-header__toggle.active .c-header__toggle_bar:nth-child(2) {
    opacity: 0;
  }
  .c-header__toggle.active .c-header__toggle_bar:nth-child(3) {
    top: 50%;
    width: 2.5rem;
    transform: rotate(-35deg);
  }
}

/* ------------------------------------------
  FV
------------------------------------------ */
.p-top__mv {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top__mv {
    padding-bottom: 13rem;
  }
}

.p-top__mv_top_slider_item {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  animation: fade 15s infinite;
  z-index: -1;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-top__mv_top_slider_item {
    top: 33.3rem;
    bottom: 0;
  }
}
.p-top__mv_top_slider_item:nth-child(1) {
  animation-delay: 0s;
}
.p-top__mv_top_slider_item:nth-child(2) {
  animation-delay: 5s;
}
.p-top__mv_top_slider_item:nth-child(3) {
  animation-delay: 10s;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.p-top__mv_top_slider_item_img {
  width: 100%;
  height: 80rem;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-top__mv_top_slider_item_img {
    height: auto;
    object-fit: contain;
  }
}

.p-top__mv_left {
  position: relative;
}

.p-top__mv_left_bg {
  width: 75.2rem;
}
@media screen and (max-width: 767px) {
  .p-top__mv_left_bg {
    width: 100%;
  }
}

.p-top__mv_left_heading {
  position: absolute;
  top: 11.1rem;
  left: 16.1rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-top__mv_left_heading {
    top: 3.5rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

.p-top__mv_left_heading_title_img {
  width: 15rem;
}
@media screen and (max-width: 767px) {
  .p-top__mv_left_heading_title_img {
    width: 8.7rem;
  }
}

.p-top__mv_left_heading_textbox {
  font-size: 2.4rem;
  color: #fff;
  writing-mode: vertical-rl;
  padding-top: 11.3rem;
  font-family: "Zen Old Mincho", serif;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  line-height: 1.2;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-top__mv_left_heading_textbox {
    font-size: 1.4rem;
    padding-top: 6.5rem;
    gap: 0.8rem;
  }
}

.p-top__mv_left_heading_textbox_text:last-child {
  padding-top: 5.4rem;
}
@media screen and (max-width: 767px) {
  .p-top__mv_left_heading_textbox_text:last-child {
    padding-top: 3.1rem;
  }
}

/* ------------------------------------------
  Overview
------------------------------------------ */
.c-container {
  margin: 0 auto;
  width: 120rem;
  padding: 0 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-container {
    width: 100%;
  }
}

.p-top__overview {
  background-image: url(../img/bg_overview.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.p-top__overview-contents {
  padding-top: 14rem;
  padding-bottom: 8.5rem;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-top__overview-contents {
    padding-top: 8.8rem;
    flex-direction: column;
  }
}

.p-top__overview-contents-left {
  display: flex;
  flex-direction: column;
  gap: 4.6rem;
  width: 55%;
}
@media screen and (max-width: 767px) {
  .p-top__overview-contents-left {
    width: 100%;
  }
}

.p-top__overview-contents-left-title {
  font-size: 3.6rem;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 800;
  color: #fff;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-top__overview-contents-left-title {
    font-size: 2rem;
    text-align: center;
    letter-spacing: -0.08rem;
    margin: 0 -1.5rem;
  }
}

.p-top__overview-contents-left-bottom {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
@media screen and (max-width: 767px) {
  .p-top__overview-contents-left-bottom {
    gap: 4.6rem;
  }
}

.p-top__overview-contents-left-bottom-textbox {
  display: flex;
  flex-direction: column;
  gap: 3.4rem;
}

.p-top__overview-contents-left-bottom-textbox-text {
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-top__overview-contents-left-bottom-textbox-text {
    font-size: 1.6rem;
  }
}

.p-top__overview-contents-left-bottom-btn {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.p-top__overview-contents-left-bottom-btn-link {
  border: 0.1rem solid #fff;
  border-radius: 3rem;
  position: relative;
  padding: 1.7rem 3.5rem 1.7rem 2.2rem;
  color: #fff;
  display: block;
  width: fit-content;
  text-align: center;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-top__overview-contents-left-bottom-btn-link {
    width: 100%;
    max-width: 30rem;
    margin: 0 auto;
  }
}
.p-top__overview-contents-left-bottom-btn-link::after {
  position: absolute;
  content: url(../img/icon_header-arrow.svg);
  padding-left: 0.7rem;
}
.p-top__overview-contents-left-bottom-btn-link:first-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  opacity: 0.6;
  z-index: -1;
  border-radius: 3rem;
}
.p-top__overview-contents-left-bottom-btn-link:last-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #c4ac2c;
  opacity: 0.3;
  z-index: 0;
  border-radius: 3rem;
}

.p-top__overview-contents-img {
  width: 50%;
  max-width: 61.5rem;
  margin-left: -4.7rem;
}
@media screen and (max-width: 767px) {
  .p-top__overview-contents-img {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }
}

/* ------------------------------------------
  About
------------------------------------------ */
.p-top__about {
  position: relative;
  background: url(../img/bg_about-fixed.png) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  z-index: 0;
  background-color: #000;
}

.p-top__about-bg {
  position: absolute;
  inset: 0;
  background: url(../img/bg_about.png) no-repeat top right;
  background-size: cover;
  background-attachment: scroll;
  background-blend-mode: hard-light;
  mix-blend-mode: hard-light; /* ←必要に応じて */
  pointer-events: none;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top__about-bg {
    background-position: right -25rem top -5rem;
  }
}

.p-top__about-contents {
  padding-top: 10rem;
  padding-bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 4.9rem;
  max-width: 101.5rem;
  margin: 0 auto;
}

.p-top__about-contents-heading {
  display: flex;
  flex-direction: column;
  gap: 4.9rem;
}

.p-top__about-contents-heading-title {
  text-align: center;
}

.p-top__about-contents-heading-title-img {
  width: 3.2rem;
  margin: 0 auto;
}

.p-top__about-contents-heading-text {
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-top__about-contents-heading-text {
    font-size: 1.6rem;
    text-align: left;
  }
}

.p-top__about-contents-bottom {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-top__about-contents-bottom {
    flex-direction: column;
    gap: 1.8rem;
  }
}

.p-top__about-contents-bottom-item {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.p-top__about-contents-bottom-item-img {
  width: 100%;
}

.p-top__about-contents-bottom-item-text {
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top__about-contents-bottom-item-text {
    font-size: 1.4rem;
  }
}

/* ------------------------------------------
  History
------------------------------------------ */
.p-top__history-living-fixed {
  position: relative;
  overflow: hidden;
  background: #000;
  background-image: url(../img/bg_history-living-fixed.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.p-top__history {
  background-image: url(../img/bg_history.png);
  background-repeat: no-repeat;
  background-size: 90rem;
  background-position: center top 10rem;
  position: relative;
  z-index: 1;
  background-blend-mode: hard-light;
  mix-blend-mode: hard-light;
}
@media screen and (max-width: 767px) {
  .p-top__history {
    background-position: center top 3rem;
  }
}

.p-top__history-contents {
  padding-top: 22.6rem;
  padding-bottom: 9.9rem;
  display: flex;
  flex-direction: column;
  gap: 7.2rem;
}
@media screen and (max-width: 767px) {
  .p-top__history-contents {
    padding-bottom: 7rem;
    padding-top: 12rem;
  }
}

.p-top__history-contents-title {
  text-align: center;
}

.p-top__history-contents-title-img {
  width: 4.4rem;
  margin: 0 auto;
}

.p-top__history-contents-details {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-top__history-contents-details {
    align-items: flex-start;
  }
}

.p-top__history-contents-details-title {
  width: 17rem;
}
@media screen and (max-width: 767px) {
  .p-top__history-contents-details-title {
    width: 13rem;
  }
}

.p-top__history-contents-details-list {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.p-top__history-contents-details-list-item {
  font-size: 1.8rem;
  color: #fff;
  position: relative;
  display: flex;
  padding-left: 1.55rem;
  gap: 2.6rem;
  align-items: center;
  padding-top: 2.1rem;
  padding-bottom: 2.1rem;
}
@media screen and (max-width: 767px) {
  .p-top__history-contents-details-list-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding-top: 0;
  }
}
.p-top__history-contents-details-list-item::before {
  content: "";
  flex: 0 0 1.6rem;
  height: 0.8rem;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.8rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-top__history-contents-details-list-item::before {
    top: 1.2rem;
    transform: none;
  }
}
.p-top__history-contents-details-list-item::after {
  content: "";
  position: absolute;
  left: 0.35rem;
  z-index: 0;
  width: 0.1rem;
  background-color: #b0b0b0;
  height: 122%;
}
@media screen and (max-width: 767px) {
  .p-top__history-contents-details-list-item::after {
    left: 0.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top__history-contents-details-list-item:first-child::after {
    margin-top: 1.2rem;
  }
}

.p-top__history-contents-details-list-item-num {
  font-size: 1.6rem;
  color: #fff;
  display: flex;
  gap: 0.3rem;
  align-items: baseline;
}
.p-top__history-contents-details-list-item-num .p-top__history-contents-details-list-item-num-big {
  font-size: 2.4rem;
  font-family: "Headland One", serif;
}
.p-top__history-contents-details-list-item-num .p-top__history-contents-details-list-item-num-wave {
  padding: 0 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-top__history-contents-details-list-item-num .p-top__history-contents-details-list-item-num-wave {
    padding: 0 0.8rem;
  }
}

.p-top__history-contents-details-list-item-text {
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-top__history-contents-details-list-item-text {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

/* ------------------------------------------
  Living
------------------------------------------ */
.p-top__living {
  position: relative;
  z-index: 1; /* 背景の上に表示 */
}

.p-top__living-contents {
  padding-top: 10rem;
  padding-bottom: 12rem;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
@media screen and (max-width: 767px) {
  .p-top__living-contents {
    padding-top: 0;
    gap: 2.4rem;
    padding-left: 0;
    padding-right: 0;
  }
}

.p-top__living-contents-title {
  font-size: 3.6rem;
  color: #fff;
  text-align: center;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 800;
}
@media screen and (max-width: 767px) {
  .p-top__living-contents-title {
    font-size: 2.2rem;
  }
}

.p-top__living-contents-details {
  display: flex;
  flex-direction: column;
  gap: 18.7rem;
}
@media screen and (max-width: 767px) {
  .p-top__living-contents-details {
    gap: 42rem;
  }
}

.p-top__living-contents-details-top {
  position: relative;
}

.p-top__living-contents-details-top-img {
  width: 75.2rem;
}
@media screen and (max-width: 767px) {
  .p-top__living-contents-details-top-img {
    width: 31.9rem;
  }
}

.p-top__living-contents-details-top-textbox {
  position: absolute;
  background-image: url(../img/bg_living-card.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 4.5rem;
  display: flex;
  flex-direction: column;
  gap: 3.4rem;
  width: 59.4rem;
  right: 0;
  bottom: -10.7rem;
}
@media screen and (max-width: 767px) {
  .p-top__living-contents-details-top-textbox {
    width: 33.5rem;
    font-size: 1.6rem;
    padding: 2.9rem 1.8rem;
    gap: 2rem;
    bottom: -33rem;
    right: -0.8rem;
  }
}

.p-top__living-contents-details-top-textbox-text {
  font-size: 1.8rem;
  font-weight: 500;
  color: #222;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.p-top__living-contents-details-bottom {
  display: flex;
  gap: 7.3rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-top__living-contents-details-bottom {
    flex-direction: column;
    align-items: center;
  }
}

.p-top__living-contents-details-bottom-item {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 42.893rem;
}
@media screen and (max-width: 767px) {
  .p-top__living-contents-details-bottom-item {
    width: 34.5rem;
  }
}

.p-top__living-contents-details-bottom-item-thumbnail {
  position: relative;
}

.p-top__living-contents-details-bottom-item-thumbnail-flip {
  position: relative;
  perspective: 100rem;
  height: 30.6rem;
}
@media screen and (max-width: 767px) {
  .p-top__living-contents-details-bottom-item-thumbnail-flip {
    height: 24.6rem;
  }
}

.p-top__living-contents-details-bottom-item-thumbnail-flip-before,
.p-top__living-contents-details-bottom-item-thumbnail-flip-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 42.8rem;
  height: auto;
  backface-visibility: hidden;
  transition: transform 0.8s;
}
@media screen and (max-width: 767px) {
  .p-top__living-contents-details-bottom-item-thumbnail-flip-before,
  .p-top__living-contents-details-bottom-item-thumbnail-flip-after {
    width: 100%;
  }
}

.p-top__living-contents-details-bottom-item-thumbnail-flip-before {
  transform: rotateY(180deg);
}

.p-top__living-contents-details-bottom-item-thumbnail-flip.flipped .p-top__living-contents-details-bottom-item-thumbnail-flip-before {
  transform: rotateY(0deg);
}
.p-top__living-contents-details-bottom-item-thumbnail-flip.flipped .p-top__living-contents-details-bottom-item-thumbnail-flip-after {
  transform: rotateY(180deg);
}

.p-top__living-contents-details-bottom-item-thumbnail-btn {
  position: absolute;
  top: -3.844rem;
  left: 0.738rem;
  cursor: pointer;
}

.p-top__living-contents-details-bottom-item-thumbnail-btn-after {
  opacity: 0;
  visibility: hidden;
  display: none;
}

.p-top__living-contents-details-bottom-item-thumbnail-btn-before,
.p-top__living-contents-details-bottom-item-thumbnail-btn-after {
  color: #fff;
  transition: opacity 0.5s ease;
  display: inline-block;
  width: 6.059rem;
  height: 6.059rem;
  border: 0.1rem solid #fff;
  font-size: 1.7rem;
  text-align: center;
  border-radius: 3.029rem;
  display: flex;
  flex-direction: column;
  gap: 0.292rem;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-top__living-contents-details-bottom-item-thumbnail-btn-before,
  .p-top__living-contents-details-bottom-item-thumbnail-btn-after {
    font-size: 1.6rem;
    gap: 0.336rem;
  }
}

.p-top__living-contents-details-bottom-item-thumbnail-btn-before {
  background-color: #c4ac2c;
}
@media screen and (max-width: 767px) {
  .p-top__living-contents-details-bottom-item-thumbnail-btn-before .p-top__living-contents-details-bottom-item-thumbnail-btn-before-arrow {
    width: 0.865rem;
  }
}

.p-top__living-contents-details-bottom-item-thumbnail-btn-after {
  background-color: #455c45;
}
.p-top__living-contents-details-bottom-item-thumbnail-btn-after .p-top__living-contents-details-bottom-item-thumbnail-btn-after-arrow {
  transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .p-top__living-contents-details-bottom-item-thumbnail-btn-after .p-top__living-contents-details-bottom-item-thumbnail-btn-after-arrow {
    width: 0.865rem;
  }
}

.p-top__living-contents-details-bottom-item-text-after {
  opacity: 0;
  visibility: hidden;
  display: none;
}

.p-top__living-contents-details-bottom-item-text-before,
.p-top__living-contents-details-bottom-item-text-after {
  font-size: 1.6rem;
  color: #fff;
  transition: opacity 0.5s ease;
  text-align: center;
}

.p-top__living-contents-details-bottom-item-thumbnail-btn-before,
.p-top__living-contents-details-bottom-item-text-before {
  opacity: 1;
  transition: opacity 0.5s;
}

.p-top__living-contents-details-bottom-item-thumbnail-btn-after,
.p-top__living-contents-details-bottom-item-text-after {
  opacity: 0;
  transition: opacity 0.5s;
}

.p-top__living-contents-details-bottom-item.flipped .p-top__living-contents-details-bottom-item-text-after {
  opacity: 1;
  visibility: visible;
  display: block;
}
.p-top__living-contents-details-bottom-item.flipped .p-top__living-contents-details-bottom-item-thumbnail-btn-after {
  opacity: 1;
  visibility: visible;
  display: flex;
}
.p-top__living-contents-details-bottom-item.flipped .p-top__living-contents-details-bottom-item-thumbnail-btn-after,
.p-top__living-contents-details-bottom-item.flipped .p-top__living-contents-details-bottom-item-text-after {
  opacity: 1;
}

.p-top__living-contents-details-bottom-item.flipped .p-top__living-contents-details-bottom-item-text-before {
  opacity: 0;
  visibility: hidden;
  display: none;
}
.p-top__living-contents-details-bottom-item.flipped .p-top__living-contents-details-bottom-item-thumbnail-btn-before {
  opacity: 0;
  visibility: hidden;
  display: none;
}
.p-top__living-contents-details-bottom-item.flipped .p-top__living-contents-details-bottom-item-thumbnail-btn-before,
.p-top__living-contents-details-bottom-item.flipped .p-top__living-contents-details-bottom-item-text-before {
  opacity: 0;
}

/* ------------------------------------------
  Slider
------------------------------------------ */
.p-top__slides-slider {
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-top__slides-slider {
    margin-bottom: 0.892rem;
  }
}

.p-top__slides-slider-slide {
  margin-right: 0.69rem;
}
@media screen and (max-width: 767px) {
  .p-top__slides-slider-slide {
    margin-right: 0.513rem;
  }
}

.p-top__slides-slider-slide-img {
  width: 100%;
  height: 21.55rem;
  object-fit: cover;
}

/* ------------------------------------------
  Highlights
------------------------------------------ */
.p-top__highlights {
  background-color: #000;
  background-image: url(../img/bg_highlights-fixed.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  background-attachment: fixed;
}

.p-top__highlights-contents {
  display: flex;
  flex-direction: column;
  gap: 7.2rem;
  padding-bottom: 12rem;
}

.p-top__highlights-contents-heading {
  background-image: url(../img/bg_highlights.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left -27rem top -20rem;
  display: flex;
  flex-direction: column;
  gap: 7.2rem;
  background-blend-mode: hard-light;
  mix-blend-mode: hard-light;
  padding-top: 15rem;
}
@media screen and (max-width: 767px) {
  .p-top__highlights-contents-heading {
    background-size: 70rem;
    background-position: left -20rem top -5rem;
  }
}

.p-top__highlights-contents-heading-title {
  text-align: center;
}

.p-top__highlights-contents-heading-title-img {
  width: 10.8rem;
}
@media screen and (max-width: 767px) {
  .p-top__highlights-contents-heading-title-img {
    width: 9.4rem;
  }
}

.p-top__highlights-contents-heading-img {
  width: 85.185rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-top__highlights-contents-heading-img {
    width: 100%;
  }
}

.p-top__highlights-contents-item {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.p-top__highlights-contents-item-top {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  width: 53.6rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-top__highlights-contents-item-top {
    width: 100%;
  }
}

.p-top__highlights-contents-item-top-heading {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
}

.p-top__highlights-contents-item-top-heading-num {
  font-family: "Headland One", serif;
  font-size: 4.8rem;
  color: #c4ac2c;
}

.p-top__highlights-contents-item-top-heading-title {
  font-size: 3.2rem;
  font-weight: 800;
  font-family: "Shippori Mincho B1", serif;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-top__highlights-contents-item-top-heading-title {
    font-size: 2.2rem;
  }
}

.p-top__highlights-contents-item-top-text {
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-top__highlights-contents-item-top-text {
    font-size: 1.6rem;
  }
}

.p-top__highlights-contents-item-bottom {
  display: flex;
  gap: 2.7rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-top__highlights-contents-item-bottom {
    justify-content: flex-start;
    padding-bottom: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .u-simplebar {
    overflow-x: auto;
  }
}

@media screen and (max-width: 767px) {
  .simplebar-scrollbar {
    background-color: #455c45 !important;
  }
}

@media screen and (max-width: 767px) {
  .simplebar-track {
    background-color: #d9d9d9;
  }
}

.simplebar-track.simplebar-vertical {
  display: none;
}

.p-top__highlights-contents-item:nth-of-type(3) .p-top__highlights-contents-item-bottom, .p-top__highlights-contents-item:nth-of-type(4) .p-top__highlights-contents-item-bottom, .p-top__highlights-contents-item:nth-of-type(5) .p-top__highlights-contents-item-bottom {
  padding-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-top__highlights-contents-item:nth-of-type(5) .p-top__highlights-contents-item-bottom {
    overflow: hidden;
  }
}

.simplebar-track.simplebar-horizontal {
  height: 0.4rem;
}

.p-top__highlights-contents-item-bottom-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 38.229rem;
}
@media screen and (max-width: 767px) {
  .p-top__highlights-contents-item-bottom-card {
    min-width: 29rem;
    width: auto;
    gap: 0.8rem;
  }
}

.p-top__highlights-contents-item-bottom-card-img {
  height: 27.1rem;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-top__highlights-contents-item-bottom-card-img {
    height: 21.6rem;
  }
}

.p-top__highlights-contents-item-bottom-card-text {
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top__highlights-contents-item-bottom-card-text {
    font-size: 1.4rem;
  }
}

.p-top__highlights-contents-item-bottom-card-thumbnail {
  position: relative;
}

.p-top__highlights-contents-item-bottom-card-thumbnail-flip {
  position: relative;
  perspective: 100rem;
  height: 27.1rem;
}
@media screen and (max-width: 767px) {
  .p-top__highlights-contents-item-bottom-card-thumbnail-flip {
    height: 21.6rem;
  }
}

.p-top__highlights-contents-item-bottom-card-thumbnail-flip-before,
.p-top__highlights-contents-item-bottom-card-thumbnail-flip-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 38.2rem;
  height: 27.1rem;
  object-fit: cover;
  backface-visibility: hidden;
  transition: transform 0.8s;
}
@media screen and (max-width: 767px) {
  .p-top__highlights-contents-item-bottom-card-thumbnail-flip-before,
  .p-top__highlights-contents-item-bottom-card-thumbnail-flip-after {
    width: 29rem;
    height: 21.6rem;
  }
}

.p-top__highlights-contents-item-bottom-card-thumbnail-flip-before {
  transform: rotateY(180deg);
}

.p-top__highlights-contents-item-bottom-card-thumbnail-flip.flipped .p-top__highlights-contents-item-bottom-card-thumbnail-flip-before {
  transform: rotateY(0deg);
}
.p-top__highlights-contents-item-bottom-card-thumbnail-flip.flipped .p-top__highlights-contents-item-bottom-card-thumbnail-flip-after {
  transform: rotateY(180deg);
}

.p-top__highlights-contents-item-bottom-card-thumbnail-btn {
  position: absolute;
  top: -1.983rem;
  left: 0.738rem;
  cursor: pointer;
}

.p-top__highlights-contents-item-bottom-card-thumbnail-btn-after {
  opacity: 0;
  visibility: hidden;
  display: none;
}

.p-top__highlights-contents-item-bottom-card-thumbnail-btn-before,
.p-top__highlights-contents-item-bottom-card-thumbnail-btn-after {
  color: #fff;
  transition: opacity 0.5s ease;
  display: inline-block;
  width: 6.059rem;
  height: 6.059rem;
  border: 0.1rem solid #fff;
  font-size: 1.7rem;
  text-align: center;
  border-radius: 3.029rem;
  display: flex;
  flex-direction: column;
  gap: 0.292rem;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-top__highlights-contents-item-bottom-card-thumbnail-btn-before,
  .p-top__highlights-contents-item-bottom-card-thumbnail-btn-after {
    font-size: 1.6rem;
    gap: 0.336rem;
  }
}

.p-top__highlights-contents-item-bottom-card-thumbnail-btn-before {
  background-color: #c4ac2c;
}
@media screen and (max-width: 767px) {
  .p-top__highlights-contents-item-bottom-card-thumbnail-btn-before .p-top__highlights-contents-item-bottom-card-thumbnail-btn-before-arrow {
    width: 0.865rem;
  }
}

.p-top__highlights-contents-item-bottom-card-thumbnail-btn-after {
  background-color: #455c45;
}
.p-top__highlights-contents-item-bottom-card-thumbnail-btn-after .p-top__highlights-contents-item-bottom-card-thumbnail-btn-after-arrow {
  transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .p-top__highlights-contents-item-bottom-card-thumbnail-btn-after .p-top__highlights-contents-item-bottom-card-thumbnail-btn-after-arrow {
    width: 0.865rem;
  }
}

.p-top__highlights-contents-item-bottom-card-text-after {
  opacity: 0;
  visibility: hidden;
  display: none;
}

.p-top__highlights-contents-item-bottom-card-text-before,
.p-top__highlights-contents-item-bottom-card-text-after {
  font-size: 1.6rem;
  color: #fff;
  transition: opacity 0.5s ease;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top__highlights-contents-item-bottom-card-text-before,
  .p-top__highlights-contents-item-bottom-card-text-after {
    font-size: 1.4rem;
  }
}

.p-top__highlights-contents-item-bottom-card-thumbnail-btn-before,
.p-top__highlights-contents-item-bottom-card-text-before {
  opacity: 1;
  transition: opacity 0.5s;
}

.p-top__highlights-contents-item-bottom-card-thumbnail-btn-after,
.p-top__highlights-contents-item-bottom-card-text-after {
  opacity: 0;
  transition: opacity 0.5s;
}

.p-top__highlights-contents-item-bottom-card.flipped .p-top__highlights-contents-item-bottom-card-text-after {
  opacity: 1;
  visibility: visible;
  display: block;
}
.p-top__highlights-contents-item-bottom-card.flipped .p-top__highlights-contents-item-bottom-card-thumbnail-btn-after {
  opacity: 1;
  visibility: visible;
  display: flex;
}
.p-top__highlights-contents-item-bottom-card.flipped .p-top__highlights-contents-item-bottom-card-thumbnail-btn-after,
.p-top__highlights-contents-item-bottom-card.flipped .p-top__highlights-contents-item-bottom-card-text-after {
  opacity: 1;
}

.p-top__highlights-contents-item-bottom-card.flipped .p-top__highlights-contents-item-bottom-card-text-before {
  opacity: 0;
  visibility: hidden;
  display: none;
}
.p-top__highlights-contents-item-bottom-card.flipped .p-top__highlights-contents-item-bottom-card-thumbnail-btn-before {
  opacity: 0;
  visibility: hidden;
  display: none;
}
.p-top__highlights-contents-item-bottom-card.flipped .p-top__highlights-contents-item-bottom-card-thumbnail-btn-before,
.p-top__highlights-contents-item-bottom-card.flipped .p-top__highlights-contents-item-bottom-card-text-before {
  opacity: 0;
}

/* ------------------------------------------
  Guidance
------------------------------------------ */
.p-top__guidance {
  background-image: url(../img/bg_guidance.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.p-top__guidance__contents {
  padding-top: 10rem;
  padding-bottom: 12.7rem;
  display: flex;
  flex-direction: column;
  gap: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-top__guidance__contents {
    padding-bottom: 6rem;
  }
}

.p-top__guidance__contents-title {
  font-size: 4.2rem;
  font-weight: 800;
  font-family: "Shippori Mincho B1", serif;
  color: #222;
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  margin: 0 auto;
  line-height: 1.2;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-top__guidance__contents-title {
    font-size: 3.2rem;
    gap: 0.09rem;
  }
}

.p-top__guidance__contents-title-text:nth-child(2) {
  padding-top: 3.6rem;
}
.p-top__guidance__contents-title-text:nth-child(3) {
  padding-top: 20.4rem;
}

.p-top__guidance__contents-details {
  display: flex;
  flex-direction: column;
  gap: 7.2rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-top__guidance__contents-details {
    gap: 6.2rem;
  }
}

.p-top__guidance__contents-details-line {
  display: flex;
  gap: 7.8rem;
}
@media screen and (max-width: 767px) {
  .p-top__guidance__contents-details-line {
    flex-direction: column;
  }
}

.p-top__guidance__contents-details-line-item {
  display: flex;
  gap: 1.1rem;
  flex-direction: column;
  width: 45.4rem;
}
@media screen and (max-width: 767px) {
  .p-top__guidance__contents-details-line-item {
    width: 34.5rem;
  }
}
.p-top__guidance__contents-details-line-item:nth-child(even) {
  margin-top: 5.8rem;
}
@media screen and (max-width: 767px) {
  .p-top__guidance__contents-details-line-item:nth-child(even) {
    margin-top: 0;
  }
}

.p-top__guidance__contents-details-line-item-heading {
  position: relative;
}

.p-top__guidance__contents-details-line-item-heading-label {
  background-color: #c4ac2c;
  color: #fff;
  border-radius: 50%;
  width: 8.3rem;
  height: 8.3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -4.4rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-top__guidance__contents-details-line-item-heading-label {
    font-size: 1.2rem;
    width: 5.612rem;
    height: 5.612rem;
    top: -2.788rem;
  }
}

.p-top__guidance__contents-details-line-item-heading-label-num {
  font-size: 3.7rem;
  font-family: "Headland One", serif;
}
@media screen and (max-width: 767px) {
  .p-top__guidance__contents-details-line-item-heading-label-num {
    font-size: 2.4rem;
  }
}

.p-top__guidance__contents-details-line-item-heading-img {
  width: 100%;
}

.p-top__guidance__contents-details-line-item-content {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.p-top__guidance__contents-details-line-item-content-title {
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "Shippori Mincho B1", serif;
  color: #9c881c;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-top__guidance__contents-details-line-item-content-title {
    font-size: 2.4rem;
  }
}

.p-top__guidance__contents-details-line-item-content-text {
  font-size: 1.8rem;
  color: #222;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-top__guidance__contents-details-line-item-content-text {
    font-size: 1.8rem;
  }
}

.p-top__guidance-slider {
  padding-bottom: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-top__guidance-slider {
    padding-bottom: 0;
  }
}
.p-top__guidance-slider .slick-track {
  padding-bottom: 6.4rem;
  display: flex;
  align-items: center;
}

.p-top__guidance-slider-slide {
  margin: 0 1.6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top__guidance-slider-slide {
    margin: 0;
  }
}

.p-top__guidance-slider-slide-img {
  height: 33.2rem;
  object-fit: cover;
  transform: scale(0.912);
  transition: transform 0.3s;
}
@media screen and (max-width: 767px) {
  .p-top__guidance-slider-slide-img {
    height: 28.2rem;
  }
}

.p-top__guidance-slider-slide.slick-center .p-top__guidance-slider-slide-img {
  height: 36.4rem;
  transform: scale(1);
}
@media screen and (max-width: 767px) {
  .p-top__guidance-slider-slide.slick-center .p-top__guidance-slider-slide-img {
    height: 31rem;
  }
}

.p-top__guidance-slider-slide-text {
  display: none;
  font-size: 1.8rem;
  color: #fff;
  background-color: #222;
  padding: 1.05rem 2rem;
  font-family: "Shippori Mincho B1", serif;
  font-weight: bold;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  bottom: 1.276rem;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .p-top__guidance-slider-slide-text {
    font-size: 1.4rem;
  }
}

.p-top__guidance-slider-slide.slick-center .p-top__guidance-slider-slide-text {
  display: block;
  bottom: -2.176rem;
}

/* ------------------------------------------
  CTA
------------------------------------------ */
.p-top__cta {
  background-color: #455c45;
}

.p-top__cta-contents {
  padding-top: 3.4rem;
  padding-bottom: 3.4rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

.p-top__cta-contents-text {
  font-size: 2.4rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-top__cta-contents-text {
    font-size: 2.4rem;
  }
}

.p-top__cta-contents-btn {
  display: flex;
  gap: 4.112rem;
}
@media screen and (max-width: 767px) {
  .p-top__cta-contents-btn {
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    text-align: center;
  }
}

.p-top__cta-contents-btn-link {
  border: 0.129rem solid #fff;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  font-family: "Shippori Mincho B1", serif;
  position: relative;
  padding: 2.227rem 6.891rem 2.227rem 5.153rem;
  border-radius: 3.855rem;
}
.p-top__cta-contents-btn-link::after {
  position: absolute;
  content: "";
  background-image: url(../img/icon_header-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 0.7rem;
  width: 0.8rem;
  height: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
}
.p-top__cta-contents-btn-link:first-child {
  background-color: #222;
}
.p-top__cta-contents-btn-link:last-child {
  background-color: #c4ac2c;
}

/* ------------------------------------------
  Video
------------------------------------------ */
.p-top__video {
  padding-top: 6rem;
  padding-bottom: 12rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top__video {
    padding-bottom: 6rem;
  }
}

.p-top__video-video {
  width: 98rem;
}
@media screen and (max-width: 767px) {
  .p-top__video-video {
    width: 100%;
  }
}

/* ------------------------------------------
  フッター
------------------------------------------ */
.l-footer {
  background-color: #000;
  background-image: url(../img/bg_highlights-fixed.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  background-attachment: fixed;
}

.c-footer__contents {
  padding-top: 8rem;
  padding-bottom: 11.8rem;
  display: flex;
  flex-direction: column;
  gap: 2.7rem;
}

.c-footer__contents-img {
  width: 41.2rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-footer__contents-img {
    width: 34.5rem;
  }
}

.c-footer__contents-textbox {
  display: flex;
  flex-direction: column;
  gap: 0.04rem;
}

.c-footer__contents-textbox-text {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.5;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .c-footer__contents-textbox-text {
    font-size: 1.4rem;
  }
}
.c-footer__contents-textbox-text--small {
  font-size: 1.2rem;
}

/* ------------------------------------------
  バナー
------------------------------------------ */
.c-banner {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-banner {
    background-color: #222;
    position: sticky;
    bottom: 0;
    padding: 1.6rem 0;
    display: flex;
    gap: 2.3rem;
    justify-content: center;
    z-index: 999;
  }
}

.c-banner-link {
  font-size: 1.6rem;
  color: #fff;
  font-family: "Shippori Mincho B1", serif;
  font-weight: bold;
  border: 0.054rem solid #fff;
  border-radius: 3rem;
  position: relative;
  padding: 0.8rem 2.127rem 0.8rem 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.c-banner-link::after {
  position: absolute;
  content: "";
  background-image: url(../img/icon_header-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 0.376rem;
  width: 0.8rem;
  height: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
}
.c-banner-link:first-child {
  background-color: #222;
}
.c-banner-link:last-child {
  background-color: #9c881c;
}/*# sourceMappingURL=style.css.map */