@charset "utf-8";

/**
 *
 *  ページ用CSS
 *nearby
 */

/*--------------------------------------------------------------------------
	Overwright
---------------------------------------------------------------------------*/
.content{
	font-family: YakuHanMP, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
}

.secCopy {
  color: #003264;
  font-size: clamp(20px, 0.22rem + 2.32vw, 30px);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.secTxt {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2.2;
}

.opa {
	transition: opacity .5s;
}

.ib { display: inline-block; }

/* tab
---------------------------------------------- */
.tab{
  cursor: pointer;
}
.tabpanel{
  display: none;
  position: relative;
}
.tabpanel.active{
  display: block;
  animation: tabFadeIn .5s;
}
@keyframes tabFadeIn{
  0%{ opacity: 0; }
  100%{ opacity: 1; }
}

@media (hover: hover) and (pointer: fine) {
	.opa:hover {
		opacity: .7;
	}
}

/* btn
-----------------------------------------------------------------*/
.btn{
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  position: relative;
  width: 100%;
  background-color: #000;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.15em;
  line-height: 1.6;
  padding: 1em;
  text-align: center;
  border-radius: 0;
  transition: .4s ease-out;
  z-index: 0;
}
.btn .txt {
	color: #fff;
}
.btn.has-arrow {
	/* justify-content: space-between; */
	justify-content: center;
	padding-inline: 1em;
}
.btn.has-arrow::after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	right: 5%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background-color: rgb(255 255 255 / 1);
	-webkit-mask-image: url(../../asset/img/common/ico_btn-arrow.svg);
	mask-image: url(../../asset/img/common/ico_btn-arrow.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
	transition: .4s;
	text-align: center;
	z-index: 0;
}

/* kv
---------------------------------------------- */
.kv {
  position: relative;
  z-index: 0;
}
.kv__txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: #fff;
  font-weight: 400;
  line-height: 1.4;
  text-shadow: 0 0 20px rgb(0 0 0 / 1);
  text-align: center;
  z-index: 1;
}
.kv__txt .en {
  display: block;
  font-size: clamp(40px, -2.31rem + 8.21vw, 100px);
  letter-spacing: 0.05em;
}
.kv__txt .ja {
  display: block;
  font-size: clamp(16px, 0.55rem + 1.37vw, 26px);
  letter-spacing: 0.05em;
}

/* intro
---------------------------------------------- */
.intro {
  padding-block: 120px;
}

.intro__ttl {
  color: #003264;
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
}
.intro__ttl::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background-color: #003264;
  margin-top: 35px;
  margin-inline: auto;
}

.intro__copy {
  max-width: 1500px;
  font-size: clamp(20px, 0.95rem + 1.37vw, 30px);
  letter-spacing: .1em;
  line-height: 1.9;
  margin-top: 35px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .intro {
    padding-block: 70px 50px;
  }

  .intro__ttl {
    font-size: 16px;
  }
  .intro__ttl::after {
    width: 40px;
    margin-top: 25px;
  }

  .intro__copy {
    font-size: 20px;
    letter-spacing: 0.01em;
    margin-top: 25px;
    padding-inline: 10px;
  }
}

/* tablist
---------------------------------------------- */
.tablist {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.tablist__btn {
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
}
.tablist__btn.tab--coming {
  pointer-events: none;
}
.tablist__tag {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  color: #fff;
  font-size: clamp(10px, 0.37rem + 0.82vw, 16px);
  font-family: YakuHanMP, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  letter-spacing: 0.1em;
  padding: .8em;
  text-align: center;
  z-index: 1;
}
.tablist__tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(203, 157, 67, 1) 0%, rgba(157, 125, 59, 1) 100%);
  z-index: -1;
}
.tablist__tag::after {
  content: '';
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translate(-50%, 0);
  width: 20px;
  aspect-ratio: 20 / 16;
  background: linear-gradient(90deg, rgba(203, 157, 67, 1) 0%, rgba(157, 125, 59, 1) 100%);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  z-index: -2;
}

@media screen and (max-width: 768px) {
  .tablist {
    grid-template-columns: 1fr;
    row-gap: 1px;
  }
  .tablist__btn--hasTag {
    margin-top: 31px;
  }
  .tablist__btn .p-caption {
    display: none;
  }

  .tablist__tag {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    font-size: 14px;
    padding: .5em;
  }
  .tablist__tag::after {
    top: calc(100% - 1px);
    width: 16px;
    aspect-ratio: 16 / 12;
  }
}

/* tabpanelIntro
---------------------------------------------- */
.tabpanelIntro {
  color: #fff;
  padding-top: 100px;
  text-align: center;
}

#tabpanel-a .tabpanelIntro {
  background: linear-gradient(0deg, rgba(56, 76, 67, 1) 25%, rgba(56, 76, 67, 0.61) 98.66%, rgba(56, 76, 67, 0.6) 100%);
}
#tabpanel-b .tabpanelIntro {
  background: linear-gradient(0deg, rgba(102, 54, 14, 1) 25%, rgba(102, 54, 14, 0.61) 98.6%, rgba(102, 54, 14, 0.6) 99.94%);
}
#tabpanel-c .tabpanelIntro {
  background: linear-gradient(0deg, rgba(82, 75, 70, 1) 25%, rgba(86, 79, 74, 1) 42.82%, rgba(96, 90, 86, 1) 60.07%, rgba(115, 109, 105, 1) 77.1%, rgba(140, 135, 132, 1) 93.9%, rgba(151, 147, 144, 1) 100%);
}
#tabpanel-g .tabpanelIntro {
  background: linear-gradient(0deg, rgba(87, 46, 68, 1) 25%, rgba(87, 46, 68, 0.61) 98.6%, rgba(87, 46, 68, 0.6) 99.94%);
}

.tabpanelIntro__title {
  font-size: 18px;
  letter-spacing: 0.04em;
}
.tabpanelIntro__copy {
  font-size: clamp(52px, 0.15rem + 6.57vw, 100px);
  letter-spacing: 0.05em;
  line-height: 1;
}
.tabpanelIntro__text {
  max-width: 1500px;
  font-size: clamp(20px, 1.37rem + 0.82vw, 26px);
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: 0.7em;
}

.spec {
  width: 90%;
  max-width: 1200px;
  margin-top: 100px;
  margin-inline: auto;
  margin-bottom: -30px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .tabpanelIntro {
    padding-top: 50px;
  }

  .tabpanelIntro__copy {
    margin-top: 0.2em;
  }
  .tabpanelIntro__text {
    letter-spacing: 0.04em;
    line-height: 1.8;
    margin-top: 0.7em;
    padding-inline: 10px;
  }

  .spec {
    width: calc(320 / 375 * 100%);
    max-width: 400px;
    margin-top: 40px;
    margin-bottom: -15px;
  }
}

/* modelSliderArea
---------------------------------------------- */
.modelSlider {
  position: relative;
  z-index: 0;
}
.modelSlider .swiper-slide {
  position: relative;
  z-index: 0;
}
.modelSlider__name {
  position: absolute;
  bottom: 5%;
  left: 10%;
  color: #fff;
  font-size: clamp(30px, -0.16rem + 4.1vw, 60px);
  line-height: 1;
  z-index: 1;
}
.modelSlider__name .small {
  font-size: 60%;
}
.modelSlider__name .hyphen {
  font-size: 60%;
  vertical-align: -2px;
}

.modelSlider .swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 16px;
  bottom: 6%;
}
.modelSlider .swiper-pagination-bullet {
  width: 14px;
  height: auto;
  aspect-ratio: 1;
  margin: 0 !important;
  background: #e5e5e5;
  border: 1px solid #e5e5e5;
  opacity: 1;
}
#tabpanel-a .modelSlider .swiper-pagination-bullet-active {
  background: #384c43;
}
#tabpanel-b .modelSlider .swiper-pagination-bullet-active {
  background: #66360e;
}
#tabpanel-c .modelSlider .swiper-pagination-bullet-active {
  background: #524b46;
}
#tabpanel-g .modelSlider .swiper-pagination-bullet-active {
  background: #572e44;
}
.modelSlider .swiper-button-next,
.modelSlider .swiper-button-prev {
  width: 80px;
  height: auto;
  aspect-ratio: 1;
  margin-top: 0;
  transform: translateY(-100%);
}
#tabpanel-a .modelSlider .swiper-button-next,
#tabpanel-a .modelSlider .swiper-button-prev {
  background-color: rgb(56 76 67 / .4);
}
#tabpanel-b .modelSlider .swiper-button-next,
#tabpanel-b .modelSlider .swiper-button-prev {
  background-color: rgb(102 54 14 / .4);
}
#tabpanel-c .modelSlider .swiper-button-next,
#tabpanel-c .modelSlider .swiper-button-prev {
  background-color: rgb(82 75 70 / .4);
}
#tabpanel-g .modelSlider .swiper-button-next,
#tabpanel-g .modelSlider .swiper-button-prev {
  background-color: rgb(87 46 68 / .4);
}

.modelSlider .swiper-button-next {
  right: calc(30 / 1500 * 100%);
}
.modelSlider .swiper-button-prev {
  left: calc(30 / 1500 * 100%);
  transform: translateY(-100%) scaleX(-1);
}
.modelSlider .swiper-button-next::after,
.modelSlider .swiper-button-prev::after {
  content: none;
}

.changeBtns {
  display: flex;
  position: absolute;
  bottom: 7%;
  right: calc(50 / 1500 * 100%);
  width: 300px;
  z-index: 1;
}
.changeBtn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: #999;
  cursor: pointer;
  font-family: YakuHanMP, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  font-size: clamp(13px, -0.07rem + 1.78vw, 26px);
  padding: 0.4em;
  text-align: center;
  transition: .4s ease;
}
.changeBtn.is-active {
  color: #fff;
}

#tabpanel-b .changeBtn {
  background-color: #f0ebe7;
}
#tabpanel-b .changeBtn.is-active {
  background-color: #855e3e;
}
#tabpanel-c .changeBtn {
  background-color: #eeedec;
}
#tabpanel-c .changeBtn.is-active {
  background-color: #756f6b;
}
#tabpanel-g .changeBtn.is-active {
  background-color: #795869;
}

@media (hover: hover) and (pointer: fine) {
  .changeBtn:hover {
    filter: brightness(.5);
  }
}

@media screen and (max-width: 768px) {
  .modelSlider__name {
    bottom: 5%;
    left: 10%;
  }

  .modelSlider .swiper-pagination {
    position: static;
    gap: 13px;
    margin-top: 20px;
  }
  .modelSlider .swiper-button-next,
  .modelSlider .swiper-button-prev {
    background-color: transparent;
  }
  .modelSlider .swiper-pagination-bullet {
    width: 12px;
  }
  .modelSlider .swiper-button-next,
  .modelSlider .swiper-button-prev {
    width: 50px;
  }
  .modelSlider .swiper-button-next {
    right: 10px;
  }
  .modelSlider .swiper-button-prev {
    left: 10px;
  }

  .changeBtns {
    top: 40px;
    right: 20px;
    bottom: auto;
    width: 150px;
  }
  .changeBtn {
    padding: 0.4em;
  }
}

/* tabpanelContents
---------------------------------------------- */
.tabpanelContents {
  padding-block: 100px;
  position: relative;
  z-index: 0;
}
.tabpanelContents::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 57%;
  z-index: -1;
}
#tabpanel-a .tabpanelContents::before {
  background-color: #ebedec;
}
#tabpanel-b .tabpanelContents::before {
  background-color: #f0ebe7;
}
#tabpanel-c .tabpanelContents::before {
  background-color: #eeedec;
}
#tabpanel-g .tabpanelContents::before {
  background-color: #eeeaec;
}

.tabpanelBox {
  max-width: 1240px;
}
.tabpanelBox + .tabpanelBox {
  margin-top: 100px;
}
.tabpanelBox--column {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px calc(100 / 1200 * 100%);
}
.tabpanelBox--column .tabpanelBoxHead {
  width: calc(640 / 1200 * 100%);
}
.tabpanelBoxBody {
  flex: 1;
}
.tabpanelBox__name {
  font-size: clamp(42px, 1.25rem + 3.83vw, 70px);
  line-height: 1;
}
#tabpanel-a .tabpanelBox__name {
  color: #384c43;
}
#tabpanel-b .tabpanelBox__name {
  color: #66360e;
}
#tabpanel-c .tabpanelBox__name {
  color: #463832;
}
#tabpanel-g .tabpanelBox__name {
  color: #572e44;
}
.tabpanelBox__text {
  margin-top: 5em;
}
.tabpanelBox__text + .tabpanelBox__text {
  margin-top: 3em;
}

@media screen and (min-width: 769px) {
  .tabpanelBox--column-reverse {
    flex-direction: row-reverse;
  }
}

@media screen and (max-width: 1200px) {
  .modelSlider__name {
    left: 3%;
  }
}

@media screen and (max-width: 768px) {
  .tabpanelContents {
    padding-block: 80px 60px;
  }
  .tabpanelContents::before {
    height: 55.5%;
  }

  .tabpanelBox {
    max-width: 560px;
  }
  .tabpanelBox + .tabpanelBox {
    margin-top: 70px;
  }
  .tabpanelBox--column {
    flex-direction: column-reverse;
  }
  .tabpanelBox--column .tabpanelBoxHead {
    width: 100%;
  }
  .tabpanelBoxBody {
    flex: revert;
  }
  .tabpanelBox__text {
    margin-top: 1.5em;
  }
  .tabpanelBox__text + .tabpanelBox__text {
    margin-top: 2em;
  }
}

/* tabpanelBottom
---------------------------------------------- */
.tabpanelBottom {
  padding-block: 100px;
}
.tabpanelBottom__btn {
  max-width: 630px;
  margin-inline: auto;
  font-size: 24px;
}
#tabpanel-a .tabpanelBottom__btn {
  background-color: #384c43;
}
#tabpanel-b .tabpanelBottom__btn {
  background-color: #66360e;
}
#tabpanel-c .tabpanelBottom__btn {
  background-color: #524b46;
}
#tabpanel-g .tabpanelBottom__btn {
  background-color: #572e44;
}

@media screen and (max-width: 768px) {
  .tabpanelBottom {
    padding-block: 50px;
  }
  .tabpanelBottom__btn {
    max-width: 280px;
    font-size: 14px;
  }
}

/* limitedArea
---------------------------------------------- */
.limitedArea {
  background: url(../img/modelroom/bg_limited.webp) center/cover no-repeat;
  padding-block: 100px 160px;
  position: relative;
  z-index: 0;
}
.limitedArea__title {
  width: 210px;
  margin-inline: auto;
}

.limitedAreaHead__copy {
  max-width: 700px;
  font-size: 42px;
  color: #fff;
  background: linear-gradient(90deg, rgba(70, 0, 12, 1) 0%, rgba(99, 0, 27, 1) 63.25%, rgba(111, 0, 33, 1) 100%);
  margin-top: 50px;
  padding-block: .1em;
  margin-inline: auto;
  text-align: center;
  position: relative;
  z-index: 0;
}
.limitedAreaHead__copy::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  background-color: rgb(255 255 255 / .1);
  border: .5px solid rgb(255 255 255 / .4);
  z-index: 0;
}
.limitedAreaHead__copy .text {
  position: relative;
  z-index: 1;
}

.limitedAreaHead__text {
  font-size: 25px;
  letter-spacing: 0.05em;
  line-height: 2.1;
  margin-top: 1em;
  text-align: center;
}
.limitedAreaHead__text .em {
  color: #6f0021;
  font-style: normal;
}
.limitedAreaHead__text .under {
  position: relative;
  z-index: 0;
}
.limitedAreaHead__text .under::after {
  content: '';
  position: absolute;
  bottom: -.1em;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  height: 1px;
  background-color: #6f0021;
  z-index: 0;
}
.limitedAreaHead__text .small {
  font-size: 16px;
}

.limitedAreaBox {
  max-width: 1240px;
  margin-top: 60px;
}
.limitedAreaBox + .limitedAreaBox {
  border-top: 1px solid #979390;
  margin-top: 100px;
  padding-top: 70px;
}
.limitedAreaBox__title {
  font-size: 70px;
  line-height: 1;
  color: #524b46;
  text-align: center;
}

.limitedAreaBox__main {
  margin-top: 50px;
}

.limitedAreaItem {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 60px;
}
.limitedAreaItem__img {
  width: calc(590 / 1200 * 100%);
}
.limitedAreaItem__table {
  width: calc(510 / 1200 * 100%);
}

@media screen and (max-width: 768px) {
  .limitedArea {
    background-image: url(../img/modelroom/bg_limited_sp.webp);
    padding-block: 60px;
  }

  .limitedArea__title {
    width: 137px;
  }

  .limitedAreaHead__copy {
    max-width: 400px;
    font-size: 19px;
    margin-top: 30px;
    padding-block: .2em;
  }
  .limitedAreaHead__copy::before {
    width: calc(100% - 5px);
    height: calc(100% - 5px);
  }

  .limitedAreaHead__text {
    font-size: 16px;
    letter-spacing: 0;
  }
  .limitedAreaHead__text .small {
    font-size: 12px;
  }

  .limitedAreaBox {
    width: 100%;
    max-width: 400px;
    margin-top: 40px;
    padding-inline: 0;
  }
  .limitedAreaBox + .limitedAreaBox {
    border-top: none;
    margin-top: 50px;
    padding-top: 0;
  }
  .limitedAreaBox__title {
    font-size: 42px;
  }

  .limitedAreaBox__main {
    margin-top: 30px;
  }

  .limitedAreaItem {
    flex-direction: column;
    row-gap: 30px;
    width: calc(320 / 375 * 100%);
    margin-top: 30px;
    margin-inline: auto;
  }
  .limitedAreaItem__img {
    width: 100%;
  }
  .limitedAreaItem__table {
    width: 100%;
  }
}