/* Shared layout and utility rules moved to assets/css/common.css */

/* hero */
.hero-section {
  padding: 0 1em 1em;
  position: relative;
}

.hero {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: var(--lgray);
  height: calc(100vh - var(--hdH) - 2em);
  min-height: 580px;
  max-height: 640px;
  max-width: 1580px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
}

@media screen and (max-width:767px) {
  .hero {
    display: block;
    position: relative;
    background-color: var(--lgray);
    height: max-content;
    min-height: 0;
  }
}

.hero__copy {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3em 1.5em;
  position: relative;
}

@media screen and (max-width:1200px) {
  .hero__copy {
    width: 50%;
  }

  @media screen and (max-width:767px) {
    .hero__copy {
      width: 100%;
      padding: 2em 1.5em 1em;
    }
  }
}

.hero__copy .hero_copy_inner {
  width: 100%;
}

.hero .title.logo {
  width: min(420px, 100%);
  margin: 0 auto;
  padding-bottom: 2em;
}

@media screen and (max-width:767px) {
  .hero .title.logo {
    width: min(320px, 54vw);
    margin-bottom: 1em;
    line-height: 1.5;
  }
}

.hero .title.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__copy .open {
  display: flex;
  justify-content: center;
  align-items: end;
  width: 13em;
  height: 6.5em;
  color: #fff;
  background-color: var(--orange);
  padding: .5em 2em;
  font-size: min(2.5em, 2.2vw);
  font-weight: 600;
  text-align: center;
  letter-spacing: .1em;
  text-indent: 1em;
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: top left;
  transform: translate(-50%, 50%) rotate(-45deg);
}

@media screen and (max-width:767px) {
  .hero__copy .open {
    font-size: min(1.25em, 5vw);
    padding: .25em .75em;
  }
}

.hero__copy .miraion {
  display: block;
  width: 50%;
  max-width: 210px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width:767px) {
  .hero__copy .miraion {
    max-width: 125px;
  }
}

.hero .main-img-wrp {
  width: 60%;
  position: relative;
}

@media screen and (max-width:1200px) {
  .hero .main-img-wrp {
    width: 50%;
  }

  @media screen and (max-width:767px) {
    .hero .main-img-wrp {
      width: 100%;
      height: fit-content;
      aspect-ratio: 1.2/1;
    }
  }
}


.hero .main {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  position: relative;
  overflow: hidden;
}

.hero .main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 2s;
}

.hero.on img {
  transform: scale(1);
}

.main-wrp-btn {
  position: absolute;
  right: 1em;
  bottom: 1em;
  z-index: 10;
}

.main-wrp-btn .slick-pause {
  width: min(2em, 10vw);
  height: min(2em, 10vw);
  border-radius: 100%;
  border: solid 2px;
  color: #fff;
  background-color: rgba(0, 0, 0, .2);
  cursor: pointer;
  position: relative;
}


.hero__button {
  display: inline-flex;
  min-width: 400px;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  bottom: 1em;
  right: 1em;
  font-size: min(1.3em, 4.5vw);
  font-weight: 700;
  color: #fff;
  padding: min(.6em, 1.5vw) min(2.5em, 3vw) min(.6em, 1.5vw) min(5em, 12vw);
  border-radius: 5px;
  z-index: 2;
  border: 2px solid #dfd1b6;
  background-color: var(--orange);
  box-shadow: 0 0 5px rgba(0, 0, 0, .4);
}

@media screen and (max-width:767px) {
  .hero__button {
    width: 90%;
    right: 50%;
    min-width: 1px;
    transform: translateX(50%);
  }
}

.hero__button .showroom-icon {
  display: block;
  width: min(5.2em, 22vw);
  position: absolute;
  bottom: 0;
  left: -.4em;
  z-index: 3;
}


.obs .start_fair_navi-wrp .start_fair_navi {
  opacity: 0;
  transform: translate(100%, -50%);
}

.obs.active .start_fair_navi-wrp .start_fair_navi {
  opacity: 1;
  transform: translate(10px, -50%);
}

@media screen and (max-width:767px) {

  .obs .start_fair_navi-wrp .start_fair_navi {
    transform: translate(0, 100%);
  }

  .obs.active .start_fair_navi-wrp .start_fair_navi {
    transform: translate(0, 0);
  }
}

@media screen and (min-width:767px) {
  @media (hover: hover) {
    .obs.active .start_fair_navi-wrp .start_fair_navi:hover {
      transform: translate(0, -50%);
    }
  }
}


/* concept */
.section.concept .lead {
  margin: 2em auto;
  line-height: 2.2;
}

@media screen and (max-width:767px) {
  .section.concept .lead {
    margin: 1em auto;
    line-height: 2;
  }
}

.banner-subtitle {
  font-size: min(1.8em, 5vw);
  margin-bottom: .5em;
}

.section.concept .banner-subtitle {
  background-color: #fff;
}

.banner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border: min(10px, 2vw) solid #dfd1b6;
  text-align: center;
  background-color: #fff;
  padding: 0 1em;
  font-weight: 700;
  position: relative;
}

.banner .thumb {
  width: 40%;
  overflow: hidden;
}

.banner .text-box {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 60%;
  font-weight: 700;
}

.banner .title {
  width: 100%;
  font-size: min(1.5em, 5.4vw);
  font-weight: 300;
}

.banner-findshowroom {
  background-color: var(--lgray);
}

@media screen and (max-width:767px) {
  .banner-findshowroom {
    padding: 0;
    margin: 1em auto 2em;
  }
}

.banner-findshowroom .benefit-icon {
  display: block;
  position: absolute;
  top: -100px;
  right: -60px;
  width: 120px;
  z-index: 3;
}

@media screen and (max-width:767px) {
  .banner-findshowroom .benefit-icon {
    top: -5px;
    right: 50%;
    width: 50%;
    transform: translate(50%, -70%);
  }
}

.banner-findshowroom .benefit img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.banner-findshowroom .thumb {
  padding: 1.5em 1.5em 0 3em;
}

@media screen and (max-width:767px) {
  .banner-findshowroom .thumb {
    padding: 1.5em 0 0 1em;
  }
}

.banner-findshowroom .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.banner-findshowroom .text-box {}

@media screen and (max-width:767px) {
  .banner .text-box {}
}

.banner .button {
  width: 100%;
  display: block;
  font-weight: 700;
  font-size: min(2em, 5vw);
  padding: 0 3em;
  margin: 1em auto;
  border: none;
  color: var(--orange);
  background-color: transparent;
}

.banner-findshowroom .button {
  padding-left: 2em;
}

@media screen and (max-width:767px) {
  .banner-findshowroom .button {
    margin-bottom: .5em;
    padding-left: 1em;
  }
}

/* banner check */
.banner.banner-shindan {
  background-color: #fff;
}

@media screen and (max-width:767px) {
  .banner.banner-shindan {
    width: min(480px, 100%);
    margin: 0 auto;
    padding: 0;
    flex-direction: column;
  }
}

.banner.banner-shindan .check-1min-wrp {
  position: absolute;
  top: 0;
  right: 0;

}

.banner.banner-shindan .check-1min {
  top: 1em;
  right: 1em;
}

@media screen and (max-width:767px) {
  .banner.banner-shindan .check-1min {
    top: 0;
    right: 0;
  }
}

.banner.banner-shindan .text-box {
  /* width: 55%;
  padding: .5em 1em 2em;
  display: flex;
  align-items: center;
  justify-content: center; */
}

@media screen and (max-width:767px) {
  .banner.banner-shindan .text-box {
    padding-top: 0;
    width: 100%;
  }

  .banner.banner-shindan .text-box-inner {
    width: 100%;
  }
}

.banner.banner-shindan .title.logo {
  width: 80%;
  margin: .75em auto 0;
}

.shindan .banner-subtitle {
  background-color: var(--lgray);
}

@media screen and (max-width:767px) {
  .shindan .banner-subtitle {}
}

.banner.banner-shindan .thumb {
  padding: 0;
}

@media screen and (max-width:767px) {
  .banner.banner-shindan .thumb {
    width: 100%;
    padding: 0 10%;
  }
}

.banner.banner-shindan .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.banner.banner-shindan .button {
  margin: 1em auto;
}



/* benefit / check */
.benefit {
  background-color: #fff;
  padding-bottom: min(3em, 4vw);
}

.benefit .logo {
  display: block;
  width: 94%;
  max-width: 520px;
  margin: .25em auto;
  transform: translateX(-2%);
}

.shindan {
  background-color: var(--lgray);
  padding: 0 1em 2em;
}

.benefit .lead,
.shindan .lead {
  margin-bottom: 1em;
  font-size: min(1.15em, 4vw);
}

.shindan .lead .point-wrp {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5em;
  width: 100%;
  margin: 1em auto;
  font-size: .9em;
}

.shindan .lead .point-wrp .strong {
  color: var(--orange);
  display: inline-flex;
  border: 2px solid;
  border-radius: 5px;
  font-weight: 700;
  padding: .2em 1em;
}

.shindan .logo {
  display: block;
  width: 94%;
  max-width: 470px;
  max-height: 110px;
  margin: 0 auto .2em;
  transform: translate(-2%, -7%);

}

.shindan .logo img,
.benefit .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit-card-wrp {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.benefit-card {
  width: 31%;
  /* border: 1px solid var(--line); */
  padding: 1.25em;
  margin-bottom: 2em;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width:800px) and (min-width: 561px) {
  .benefit-card {
    width: 63%;
    margin: 0;
    padding: 3vw;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);

  }
}

@media screen and (max-width:560px) {
  .benefit-card {
    width: 80%;
    margin: 0 auto;
    padding: 3.5vw;
  }
}

/* 1st card */
.benefit-card.card1 {
  transform: translate(10%, 6%) rotate(-6deg);
  z-index: 3;
}

@media screen and (max-width:800px) and (min-width: 561px) {
  .benefit-card.card1 {
    transform: translate(2%, -5%) rotate(-3deg);

  }
}

@media screen and (max-width:560px) {
  .benefit-card.card1 {
    transform: translate(0, -5%) rotate(-4deg);
  }
}

/* 2nd card */
@media screen and (max-width:800px) and (min-width: 561px) {
  .benefit-card.card2 {
    margin: -15% 0 0 auto;
    transform: translate(0, -5%) rotate(2deg);

  }
}

@media screen and (max-width:560px) {
  .benefit-card.card2 {
    transform: translate(0, -5%) rotate(2deg);
  }
}

/* 3rd card */
.benefit-card.card3 {
  transform: translate(-10%, 5%) rotate(6deg);
  z-index: 0;
}

@media screen and (max-width:800px) and (min-width: 561px) {
  .benefit-card.card3 {
    margin: -16% auto 0;
    transform: translate(-26%, 0) rotate(-3deg);

  }
}

@media screen and (max-width:560px) {
  .benefit-card.card3 {
    transform: translate(0, -5%) rotate(-4deg);
  }
}


.benefit-card__title {
  display: block;
  font-size: min(1em, 4vw);
  text-align: center;
}

.benefit-card__title .jp-label {
  display: block;
  letter-spacing: .1em;
}

.benefit-card__title .number {
  display: block;
  font-size: 3em;
  font-weight: 300;
}

.benefit-card__lead {
  display: block;
  text-align: center;
  font-size: min(.95em, 4vw);
  line-height: 1.8;
}

.benefit-card__lead .strong {
  display: block;
  font-weight: 700;
  font-size: 1.2em;
}

.benefit-thumb-box {
  width: 100%;
}

.benefit-thumb {
  width: 100%;
  height: fit-content;
  aspect-ratio: 4/3;
  background-color: #f4f3ea;
  overflow: hidden;
}

.benefit-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-card__body {
  width: 100%;
  padding: 1em;
}

@media screen and (max-width:980px) {
  .benefit-card__body {
    padding: 0;
  }
}

.benefit-card__body p {
  display: block;
  width: 100%;
  padding: 0;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: anywhere;
  line-break: strict;
}

.benefit-start {
  margin: 1.5em auto 0;
  font-size: min(2.7em, 6vw);
  line-height: 1.4;
  text-align: center;
  color: var(--orange);
}

.line-note {
  width: 100%;
  max-width: 910px;
  margin: 3em auto 0;
}

.start .miraion {
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
}

@media screen and (max-width:767px) {
  .start .miraion {
    max-width: 170px;
  }
}

/* exhibition */
.exhibition-section {
  /* padding-bottom: min(6em, 3vw); */
}

.exhibition-section .illust {
  display: block;
  max-width: 250px;
  margin: -3em auto 0;
}

/* .img-block-wrp {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5em 9%;
}

.img-block-wrp .img-box {
  width: 25%;
  text-align: center;
}

@media screen and (max-width:767px) {
  .img-block-wrp .img-box {
    width: 90%;
    display: flex;
    align-items: center;
    gap: 2em;

  }
}

.img-block-wrp .img-box .thumb {
  position: relative;
  width: 80%;
  margin: 0 auto;
  height: fit-content;
  aspect-ratio: 1/1;
  background-color: var(--lgray);
  border: 1px solid var(--line);
  border-radius: 100%;
  overflow: hidden;
}


@media screen and (max-width:767px) {
  .img-block-wrp .img-box .thumb {
    width: 37%;
  }
}

.img-block-wrp .img-box .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.img-block-wrp .img-box .caption .strong {
  text-align: left;
  display: inline-block;
  font-size: 1.3em;
}

@media screen and (max-width:767px) {
  .img-block-wrp .img-box .caption {
    text-align: left;
    display: block;
    flex-grow: 1;
  }

  .img-block-wrp .img-box .caption .strong {
    text-align: left;
    display: block;
    font-size: 1.3em;
  }
} */