@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 70px;
}

.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;
}

@media screen and (max-width: 768px) {
  .tablist {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 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%);
}

.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;
}
.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);
}

.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;
}

@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;
}

.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;
}
.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;
}

@media screen and (max-width: 768px) {
  .tabpanelBottom {
    padding-block: 50px;
  }
  .tabpanelBottom__btn {
    max-width: 280px;
    font-size: 14px;
  }
}