@charset "UTF-8";
/*ルート設定*/
:root {
  --main-color: #D2D8ED;
  --font-color: #2C2C2C;
  --font-en: "EB Garamond", serif;
  --font-ja: "Shippori Mincho", serif;
  --font-gothic: "Noto Sans JP", sans-serif;
  scroll-behavior: smooth;
  font-family: var(--font-ja);
  color: var(--font-color);
}

body {
  color: var(--font-color);
}
body .grecaptcha-badge {
  display: none;
}

/*共通コンテンツ*/
.sp-only{
	display:none;
}
@media screen and (max-width: 640px) {
	.sp-only{
	display:block;
}
}
@media screen and (max-width: 1439px) {
  .cmn-display__xl {
    display: none;
  }
}
@media screen and (min-width: 641px) {
  .cmn-display__sm-max {
    display: none;
  }
}
.cmn-wrap {
  margin-inline: auto;
  padding-inline: min(4rem, 2.9411764706vw);
  max-width: 1280px;
}
@media screen and (max-width: 1023px) {
  .cmn-wrap {
    padding-inline: min(3rem, 6.4vw);
  }
}
@media screen and (max-width: 1279px) {
  .cmn-wrap.--tb-size__full {
    padding-inline: 0;
  }
}
.cmn-ttl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-block: 5rem;
}
@media screen and (max-width: 1023px) {
  .cmn-ttl {
    padding-block: min(3rem, 6.4vw);
  }
}
.cmn-ttl__txt {
  text-align: center;
}
.cmn-ttl__txt-en {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: auto;
  height: 6rem;
  font-size: 1.5rem;
  font-family: var(--font-en);
  z-index: 10;
}
@media screen and (max-width: 1023px) {
  .cmn-ttl__txt-en {
    height: min(6rem, 12.8vw);
    font-size: min(1.75rem, 3.7333333333vw);
  }
}
.cmn-ttl__txt-en.--bg01 {
  text-shadow: 3px 3px 0 #fff, -3px 3px 0 #fff, -3px -3px 0 #fff, 3px -3px 0 #fff;
}
.cmn-ttl__txt-en::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15rem;
  height: 100%;
  border: 0.0625rem solid #2C2C2C;
  border-radius: 100%;
  z-index: -1;
}
@media screen and (max-width: 1023px) {
  .cmn-ttl__txt-en::before {
    width: min(15rem, 32vw);
  }
}
.cmn-ttl__txt-jp {
  margin-top: 0.875rem;
  font-size: 3rem;
}
@media screen and (max-width: 1023px) {
  .cmn-ttl__txt-jp {
    margin-top: min(1.5rem, 3.2vw);
    font-size: min(3rem, 6.4vw);
  }
}
.cmn-ttl__txt-jp span {
  margin-right: 1em;
  font-size: 0.5em;
}
.cmn-ttl__remarks {
  margin-top: 2rem;
  font-size: 1rem;
  font-family: var(--font-gothic);
  line-height: 2;
}
@media screen and (max-width: 1023px) {
  .cmn-ttl__remarks {
    margin-top: min(2rem, 4.2666666667vw);
    font-size: min(2rem, 4.2666666667vw);
  }
}
.cmn-slider__controller {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
@media screen and (max-width: 1023px) {
  .cmn-slider__controller {
    margin-top: min(1.5rem, 3.2vw);
  }
}
.cmn-slider__pagination {
  flex: 1;
  position: relative;
  margin-right: 1.125rem;
}
.cmn-slider__pagination .swiper-pagination-progressbar-fill {
  background: #212121;
}
.cmn-slider__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  background: #fff;
  border-radius: 4rem;
}
@media screen and (max-width: 1023px) {
  .cmn-slider__button {
    width: min(4rem, 8.5333333333vw);
    height: min(4rem, 8.5333333333vw);
  }
}
.cmn-slider__button.--next::before {
  display: block;
  content: "";
  width: 1.25rem;
  height: 1.5rem;
  background: url(../../img/hiraya/slider_arw_icon.svg) no-repeat center center/contain;
  transform: scaleX(-1);
}
.cmn-slider__button.--prev::before {
  display: block;
  content: "";
  width: 1.25rem;
  height: 1.5rem;
  background: url(../../img/hiraya/slider_arw_icon.svg) no-repeat center center/contain;
}
.cmn-slider__button.swiper-button-disabled {
  opacity: 0.4;
}

img:not(.cmn-resize__img) {
  display: block;
  max-width: 100%;
  height: auto;
}

.side-menu {
  position: fixed;
  right: 2.25rem;
  bottom: 3.5rem;
  z-index: 999;
}
@media screen and (max-width: 1023px) {
  .side-menu {
    right: 0.625rem;
    left: 0.625rem;
    bottom: 0.625rem;
  }
}
@media screen and (max-width: 1023px) {
  .side-menu img {
    width: 100%;
  }
}

.banner {
  overflow: hidden;
}
.banner-about {
  position: relative;
}
.banner-about__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  padding-inline: 2.5rem;
  width: 100%;
  max-width: 48.75rem;
  height: 100%;
  background: rgba(210, 216, 237, 0.8);
  backdrop-filter: blur(15px);
}
@media screen and (max-width: 1279px) {
  .banner-about__info {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .banner-about__info {
    padding-inline: min(3rem, 6.4vw);
  }
}
.banner-about__info-ttl {
  position: relative;
  font-size: 2rem;
}
@media screen and (max-width: 1023px) {
  .banner-about__info-ttl {
    font-size: min(2.5rem, 5.3333333333vw);
  }
}
.banner-about__info-txt {
  position: relative;
  margin-top: 1.125rem;
  padding: 0.625rem;
  width: 100%;
  background: #2C2C2C;
  text-align: center;
  font-size: 1rem;
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .banner-about__info-txt {
    margin-top: min(2.25rem, 4.8vw);
    padding: min(1.25rem, 2.6666666667vw);
    font-size: min(2rem, 4.2666666667vw);
  }
}
.banner-about__info-img {
  margin-top: 1.5rem;
}
@media screen and (max-width: 1023px) {
  .banner-about__info-img {
    margin-top: min(1.5rem, 3.2vw);
  }
}
.banner-about__info-btn {
  margin-top: 1.6875rem;
  width: 100%;
  height: 4.625rem;
}
@media screen and (max-width: 1023px) {
  .banner-about__info-btn {
    margin-top: min(1.75rem, 3.7333333333vw);
    height: min(4.625rem, 9.8666666667vw);
  }
}
.banner-about__info-btn-link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-inline: 4.625rem;
  width: 100%;
  height: 100%;
  font-size: 1.5rem;
  background: #fff;
  border: 0.0625rem solid #2C2C2C;
  border-radius: 6.25rem;
  transition: background-color 0.4s 0.2s, color 0.4s 0.2s;
}
@media screen and (max-width: 1023px) {
  .banner-about__info-btn-link {
    padding-inline: min(4.625rem, 9.8666666667vw);
    font-size: min(2rem, 4.2666666667vw);
  }
}
.banner-about__info-btn-link::after {
  content: "";
  position: absolute;
  right: 0.625rem;
  top: 50%;
  transform: translateY(-50%);
  transform-origin: right;
  width: 2.5rem;
  height: 0.0625rem;
  background: #2C2C2C;
  transition: 0.4s;
}
@media screen and (max-width: 1023px) {
  .banner-about__info-btn-link::after {
    right: min(0.625rem, 1.3333333333vw);
    width: min(2.5rem, 5.3333333333vw);
  }
}
.banner-about__info-btn-link:hover {
  background: #2C2C2C;
  color: #fff;
}
.banner-about__info-btn-link:hover::after {
  transform: translateY(-50%) scaleX(0);
}
.banner-about__info-note {
  margin-top: 1.5rem;
  width: 100%;
  height: 7.5rem;
  border: 0.0625rem solid #2C2C2C;
  overflow: auto;
}
@media screen and (max-width: 1023px) {
  .banner-about__info-note {
    margin-top: min(1.5rem, 3.2vw);
    height: 7.5rem;
  }
}
@media screen and (max-width: 640px) {
  .banner-about__info-note {
    height: min(7.5rem, 16vw);
  }
}
.banner-about__info-note-inr {
  padding: 1.5rem;
}
@media screen and (max-width: 1023px) {
  .banner-about__info-note-inr {
    padding: min(1.5rem, 3.2vw);
  }
}
.banner-about__info-note-txt {
  font-size: 0.625rem;
  line-height: 2;
  font-family: var(--font-gothic);
}
.banner-about__img {
  margin-right: calc(50% - 50vw);
  height: 25rem;
}
@media screen and (max-width: 1023px) {
  .banner-about__img {
    height: min(25rem, 66.6666666667vw);
  }
}
.banner-about__img.--resize {
  height: 35.75rem;
}
@media screen and (max-width: 1023px) {
  .banner-about__img.--resize {
    height: min(35.75rem, 89.6vw);
  }
}
.banner-about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*ヘッダー*/
.hd {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.7);
  width: 100%;
  z-index: 1001;
  backdrop-filter: blur(15px);
}
.hd-cnt {
  display: grid;
  grid-template-areas: "hd-name hd-menu";
  grid-template-columns: auto max-content;
  grid-template-rows: 7.5rem;
  align-items: center;
  gap: min(2.5rem, 2.0833333333vw);
  padding-inline: min(3.5rem, 3.8888888889vw);
}
@media screen and (max-width: 1023px) {
  .hd-cnt {
    grid-template-rows: 7.5rem;
    gap: min(2.5rem, 5.3333333333vw);
  }
}
@media screen and (max-width: 640px) {
  .hd-cnt {
    grid-template-rows: 3.75rem;
  }
}
.hd-name {
  position: relative;
  grid-area: hd-name;
  z-index: 1001;
}
.hd-name__logo {
  max-width: 15rem;
}
@media screen and (max-width: 640px) {
  .hd-name__logo {
    max-width: 7.5rem;
  }
}
.hd-menu {
  grid-area: hd-menu;
  display: flex;
  align-items: center;
  gap: min(3.5rem, 2.9166666667vw);
}
.hd-nav {
  display: flex;
  align-items: center;
  gap: min(3.5rem, 2.9166666667vw);
}
@media screen and (max-width: 1439px) {
  .hd-nav {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    padding: 9.375rem min(6rem, 12.8vw) min(6rem, 12.8vw);
    width: 100vw;
    max-width: 40rem;
    height: 100svh;
    background: #fff;
    transition: 0.4s;
  }
}
@media screen and (max-width: 640px) {
  .hd-nav {
    padding-top: 5.625rem;
  }
}
.hd-nav__list {
  display: flex;
  gap: min(2.5rem, 2.0833333333vw);
}
@media screen and (max-width: 1439px) {
  .hd-nav__list {
    display: block;
  }
}
@media screen and (max-width: 1439px) {
  .hd-nav__item + .hd-nav__item {
    margin-top: min(2.5rem, 5.3333333333vw);
  }
}
.hd-nav__link-jp {
  font-size: 1rem;
}
@media screen and (max-width: 1439px) {
  .hd-nav__link-jp {
    font-size: min(2rem, 4.2666666667vw);
  }
}
.hd-nav__link-en {
  display: block;
  margin-top: min(1rem, 2.1333333333vw);
  font-size: min(1.5rem, 3.2vw);
  color: #aaa;
}
@media screen and (min-width: 1440px) {
  .hd-nav__link-en {
    display: none;
  }
}
.open .hd-nav {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.hd-btn {
  margin-left: auto;
  width: 12.75rem;
  height: 3.5rem;
}
@media screen and (max-width: 1439px) {
  .hd-btn {
    margin: min(5rem, 10.6666666667vw) auto 0 0;
    width: min(25.5rem, 54.4vw);
    height: min(7rem, 14.9333333333vw);
  }
}
.hd-btn__link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
  background: #D2D8ED;
}
.hd-btn__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.0625rem;
  height: 100%;
  background: #2C2C2C;
  transition: 0.4s;
}
.hd-btn__link:hover::before {
  width: 100%;
}
.hd-btn__ttl {
  position: relative;
  font-size: 1.125rem;
  transition: 0.4s;
}
@media screen and (max-width: 1439px) {
  .hd-btn__ttl {
    font-size: min(2.25rem, 4.8vw);
  }
}
.hd-btn__link:hover .hd-btn__ttl {
  color: #fff;
}
.hd-toggle {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1001;
  cursor: pointer;
}
@media screen and (min-width: 1440px) {
  .hd-toggle {
    display: none;
  }
}
.hd-toggle__btn {
  position: relative;
}
@media screen and (max-width: 1439px) {
  .hd-toggle__btn {
    width: min(4rem, 8.5333333333vw);
  }
}
.hd-toggle__btn-line {
  display: block;
  width: 100%;
  height: 0.0625rem;
  background: #2C2C2C;
  transition: top 0.2s 0.2s, bottom 0.2s 0.2s, transform 0.4s;
}
.hd-toggle__btn-line:nth-of-type(1) {
  position: absolute;
  left: 0;
  top: max(-1rem, -2.1333333333vw);
}
.hd-toggle__btn-line:nth-of-type(3) {
  position: absolute;
  left: 0;
  bottom: max(-1rem, -2.1333333333vw);
}
.hd-toggle__txt {
  font-size: min(2rem, 4.2666666667vw);
  font-family: var(--font-en);
}
.open .hd-toggle__btn-line {
  transition: top 0.2s, bottom 0.2s, transform 0.4s 0.2s;
}
.open .hd-toggle__btn-line:nth-of-type(1) {
  top: 0;
  transform: rotate(15deg);
}
.open .hd-toggle__btn-line:nth-of-type(2) {
  opacity: 0;
}
.open .hd-toggle__btn-line:nth-of-type(3) {
  bottom: 0;
  transform: rotate(-15deg);
}

/*フッター*/
.ft {
  padding-block: 7.5rem 10rem;
  background: #2C2C2C;
}
@media screen and (max-width: 1023px) {
  .ft {
    padding-block: min(10rem, 21.3333333333vw) min(22.5rem, 48vw);
  }
}
@media screen and (max-width: 1023px) {
  .ft.--comp {
    padding-block: min(10rem, 21.3333333333vw);
  }
}
.ft-cnt {
  display: grid;
  grid-template-areas: "ft-name ft-nav" "ft-btn ft-btn";
  grid-template-columns: auto max-content;
  align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 1023px) {
  .ft-cnt {
    grid-template-areas: "ft-name" "ft-nav" "ft-btn";
    grid-template-columns: 100%;
    gap: min(2.5rem, 5.3333333333vw);
  }
}
.ft-name {
  grid-area: ft-name;
  max-width: 15rem;
}
@media screen and (max-width: 1023px) {
  .ft-name {
    margin: 0 auto min(2.5rem, 5.3333333333vw);
    max-width: min(15rem, 32vw);
  }
}
.ft-nav {
  grid-area: ft-nav;
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 1023px) {
  .ft-nav {
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: min(5rem, 10.6666666667vw);
  }
}
.ft-nav__item {
  font-size: 1.125rem;
}
@media screen and (max-width: 1023px) {
  .ft-nav__item {
    width: 50%;
    font-size: min(2rem, 4.2666666667vw);
  }
}
.ft-nav__link {
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .ft-nav__link {
    display: block;
    padding: min(3.5rem, 7.4666666667vw) min(1.75rem, 3.7333333333vw);
  }
}
.ft-btn {
  grid-area: ft-btn;
  margin-left: auto;
  width: 12.75rem;
  height: 3.5rem;
}
@media screen and (max-width: 1023px) {
  .ft-btn {
    width: 100%;
    height: min(7rem, 14.9333333333vw);
  }
}
.ft-btn__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #D2D8ED;
}
.ft-btn__ttl {
  font-size: 1.125rem;
}
@media screen and (max-width: 1023px) {
  .ft-btn__ttl {
    font-size: min(2rem, 4.2666666667vw);
  }
}

/*メリット*/
.merit {
  padding-block: 0 9.25rem;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .merit {
    padding-block: 0 min(6rem, 12.8vw);
  }
}
.merit-guide {
  margin-top: 4rem;
}
@media screen and (max-width: 1023px) {
  .merit-guide {
    margin-top: min(4rem, 8.5333333333vw);
  }
}
.merit-guide__item {
  display: grid;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 1023px) {
  .merit-guide__item {
    gap: min(4rem, 8.5333333333vw) 0;
  }
}
.merit-guide__item:nth-of-type(odd) {
  grid-template-areas: "merit-ph merit-info";
  grid-template-columns: auto 47.33%;
}
@media screen and (max-width: 1023px) {
  .merit-guide__item:nth-of-type(odd) {
    grid-template-areas: "merit-ph" "merit-info";
    grid-template-columns: 100%;
  }
}
.merit-guide__item:nth-of-type(even) {
  grid-template-areas: "merit-info merit-ph";
  grid-template-columns: 47.33% auto;
}
@media screen and (max-width: 1023px) {
  .merit-guide__item:nth-of-type(even) {
    grid-template-areas: "merit-ph" "merit-info";
    grid-template-columns: 100%;
  }
}
.merit-guide__item + .merit-guide__item {
  margin-top: 7.5rem;
}
@media screen and (max-width: 1023px) {
  .merit-guide__item + .merit-guide__item {
    margin-top: min(6rem, 12.8vw);
  }
}
.merit-guide__item-info {
  grid-area: merit-info;
}
.merit-guide__item-num {
  display: flex;
  align-items: center;
  line-height: 1;
}
.merit-guide__item-num::before {
  content: "MERIT";
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 4.4375rem;
  height: 1.9375rem;
  background: #fff;
  border: 0.0625rem solid #212121;
  border-radius: 100%;
  font-size: 0.875rem;
  font-family: var(--font-en);
}
@media screen and (max-width: 1023px) {
  .merit-guide__item-num::before {
    width: min(7.25rem, 15.4666666667vw);
    height: min(2.875rem, 6.1333333333vw);
    font-size: min(1.25rem, 2.6666666667vw);
  }
}
.merit-guide__item-num-st {
  margin-left: -0.2em;
  font-size: 6rem;
  font-style: italic;
  font-family: var(--font-en);
}
@media screen and (max-width: 1023px) {
  .merit-guide__item-num-st {
    font-size: min(8.875rem, 18.9333333333vw);
  }
}
.merit-guide__item-ttl {
  margin-top: 3.5rem;
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 1023px) {
  .merit-guide__item-ttl {
    margin-top: min(4rem, 8.5333333333vw);
    font-size: min(3rem, 6.4vw);
  }
}
.merit-guide__item-txt {
  margin-top: 2.5rem;
  font-size: 1rem;
  line-height: 2;
}
@media screen and (max-width: 1023px) {
  .merit-guide__item-txt {
    margin-top: min(3rem, 6.4vw);
    font-size: min(2rem, 4.2666666667vw);
  }
}
.merit-guide__item-ph {
  grid-area: merit-ph;
}
.merit-guide__item-ph img {
  width: 100%;
}
.merit-guide__item:nth-of-type(odd) .merit-guide__item-ph {
  margin-left: calc(100% - 50vw);
}
@media screen and (max-width: 1023px) {
  .merit-guide__item:nth-of-type(odd) .merit-guide__item-ph {
    margin-left: calc(50% - 50vw);
  }
}
.merit-guide__item:nth-of-type(even) .merit-guide__item-ph {
  margin-right: calc(100% - 50vw);
}
@media screen and (max-width: 1023px) {
  .merit-guide__item:nth-of-type(even) .merit-guide__item-ph {
    margin-right: calc(50% - 50vw);
  }
}

/*特徴*/
.feature {
  padding-block: 9.25rem;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .feature {
    padding-block: 0 min(6rem, 12.8vw);
  }
}
.feature-guide {
  margin-top: 4rem;
}
@media screen and (max-width: 1023px) {
  .feature-guide {
    margin-top: min(4rem, 8.5333333333vw);
  }
}
.feature-guide__item {
  display: grid;
  gap: 5rem 4rem;
}
@media screen and (max-width: 1023px) {
  .feature-guide__item {
    gap: min(4rem, 8.5333333333vw) 0;
  }
}
.feature-guide__item:nth-of-type(odd) {
  grid-template-areas: "feature-info feature-ph" "feature-scene feature-scene";
  grid-template-columns: auto 47.33%;
}
@media screen and (max-width: 1023px) {
  .feature-guide__item:nth-of-type(odd) {
    grid-template-areas: "feature-ph" "feature-info" "feature-scene";
    grid-template-columns: 100%;
  }
}
.feature-guide__item:nth-of-type(even) {
  grid-template-areas: "feature-ph feature-info" "feature-scene feature-scene";
  grid-template-columns: 47.33% auto;
}
@media screen and (max-width: 1023px) {
  .feature-guide__item:nth-of-type(even) {
    grid-template-areas: "feature-ph" "feature-info" "feature-scene";
    grid-template-columns: 100%;
  }
}
.feature-guide__item + .feature-guide__item {
  margin-top: 7.5rem;
}
@media screen and (max-width: 1023px) {
  .feature-guide__item + .feature-guide__item {
    margin-top: min(6rem, 12.8vw);
  }
}
.feature-guide__item-info {
  grid-area: feature-info;
}
.feature-guide__item-num {
  display: flex;
  align-items: center;
  line-height: 1;
}
.feature-guide__item-num::before {
  content: " FEATURE";
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 4.4375rem;
  height: 1.9375rem;
  background: #fff;
  border: 0.0625rem solid #212121;
  border-radius: 100%;
  font-size: 0.875rem;
  font-family: var(--font-en);
}
@media screen and (max-width: 1023px) {
  .feature-guide__item-num::before {
    width: min(7.25rem, 15.4666666667vw);
    height: min(2.875rem, 6.1333333333vw);
    font-size: min(1.25rem, 2.6666666667vw);
  }
}
.feature-guide__item-num-st {
  margin-left: -0.2em;
  font-size: 6rem;
  font-style: italic;
  font-family: var(--font-en);
}
@media screen and (max-width: 1023px) {
  .feature-guide__item-num-st {
    font-size: min(8.875rem, 18.9333333333vw);
  }
}
.feature-guide__item-ttl {
  margin-top: 3.5rem;
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 1023px) {
  .feature-guide__item-ttl {
    margin-top: min(4rem, 8.5333333333vw);
    font-size: min(3rem, 6.4vw);
  }
}
.feature-guide__item-txt {
  margin-top: 2.5rem;
  font-size: 1.125rem;
  line-height: 2;
}
@media screen and (max-width: 1023px) {
  .feature-guide__item-txt {
    margin-top: min(3rem, 6.4vw);
    font-size: min(2rem, 4.2666666667vw);
  }
}
.feature-guide__item-ph {
  grid-area: feature-ph;
}
.feature-guide__item-ph img {
  width: 100%;
}
.feature-guide__item:nth-of-type(odd) .feature-guide__item-ph {
  margin-right: calc(100% - 50vw);
}
@media screen and (max-width: 1023px) {
  .feature-guide__item:nth-of-type(odd) .feature-guide__item-ph {
    margin-right: calc(50% - 50vw);
  }
}
.feature-guide__item:nth-of-type(even) .feature-guide__item-ph {
  margin-left: calc(100% - 50vw);
}
@media screen and (max-width: 1023px) {
  .feature-guide__item:nth-of-type(even) .feature-guide__item-ph {
    margin-left: calc(50% - 50vw);
  }
}
.feature-guide__item-scene {
  grid-area: feature-scene;
  width: 50%;
  max-height: 21.875rem;
  text-align: center;
}
.feature-guide__item-scene img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.feature-guide__item:nth-of-type(odd) .feature-guide__item-scene {
  margin-right: auto;
}
.feature-guide__item:nth-of-type(even) .feature-guide__item-scene {
  margin-left: auto;
}

/*プラン*/
.plan {
  padding-block: 0 10rem;
  overflow: hidden;
  background: linear-gradient(to bottom, #FFF 0%, #F4F5F6 20%, #FFF 100%);
}
@media screen and (max-width: 1023px) {
  .plan {
    padding-block: 0 min(6rem, 12.8vw);
  }
}
.plan-slide__wrap {
  overflow: visible;
}
.plan-slide__inr {
  padding: 4rem;
  background: #fff;
}
@media screen and (max-width: 1023px) {
  .plan-slide__inr {
    padding: min(3rem, 6.4vw);
  }
}
.plan-slide__gallery {
  display: flex;
  gap: 0.5rem;
}
@media screen and (max-width: 1023px) {
  .plan-slide__gallery {
    flex-direction: column;
    gap: min(1rem, 2.1333333333vw);
  }
}
.plan-slide__img {
  flex: 1;
  display: flex;
  flex-direction: column-reverse;
  gap: 0.5rem;
}
.plan-slide__layout {
  flex: 1;
  position: relative;
}
.plan-slide__layout ::after {
  content: "";
  display: flex;
  position: absolute;
  bottom: min(1.5625vw, 1rem);
  right: min(1.5625vw, 1rem);
  justify-content: center;
  align-items: center;
  width: min(3.75rem, 8vw);
  aspect-ratio: 1/1;
  background: url("../../img/hiraya/icon-loope.svg") no-repeat center center/60% auto;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  z-index: 10;
  pointer-events: none;
}
.plan-slide__info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 1023px) {
  .plan-slide__info {
    flex-direction: column;
    gap: min(1rem, 2.1333333333vw);
    margin-top: min(3rem, 6.4vw);
  }
}
.plan-slide__info-head {
  margin-bottom: 1.5rem;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .plan-slide__info-head {
    margin-bottom: min(3rem, 6.4vw);
  }
}
.plan-slide__info-head-st {
  font-size: 2rem;
}
@media screen and (max-width: 1023px) {
  .plan-slide__info-head-st {
    font-size: min(2.5rem, 5.3333333333vw);
  }
}
.plan-slide__info-data {
  flex: 1;
  font-family: var(--font-gothic);
  line-height: 1.75;
}
.plan-slide__info-data-name {
  font-size: 1rem;
}
@media screen and (max-width: 1023px) {
  .plan-slide__info-data-name {
    font-size: min(2rem, 4.2666666667vw);
  }
}
.plan-slide__info-data-name::after {
  display: block;
  margin-bottom: 1rem;
  content: "ー";
}
@media screen and (max-width: 1023px) {
  .plan-slide__info-data-name::after {
    margin-bottom: min(2rem, 4.2666666667vw);
  }
}
.plan-slide__info-data-st {
  font-size: 1rem;
}
@media screen and (max-width: 1023px) {
  .plan-slide__info-data-st {
    font-size: min(1.75rem, 3.7333333333vw);
  }
}
.plan-slide__info-comment {
  width: calc(50% + 2em);
  font-family: var(--font-gothic);
  line-height: 1.75;
}
.plan-slide__info-comment-st {
  font-size: 1.125rem;
}
@media screen and (max-width: 1023px) {
  .plan-slide__info-comment-st {
    width: auto;
    flex: 1;
    font-size: min(2rem, 4.2666666667vw);
  }
}
@media screen and (max-width: 640px) {
  .plan-slide__info-comment {
  width: 100%;
  }
}

/*店舗*/
.store-guide__item {
  border-top: 0.0625rem solid #212121;
}
.store-guide__item-ttl {
  position: relative;
  padding: 2.5rem 10rem 2.5rem 4rem;
  font-size: 2rem;
  cursor: pointer;
}
@media screen and (max-width: 1023px) {
  .store-guide__item-ttl {
    padding: min(2.5rem, 5.3333333333vw) min(5rem, 10.6666666667vw) min(2.5rem, 5.3333333333vw) min(2rem, 4.2666666667vw);
    font-size: min(2.25rem, 4.8vw);
  }
}
.store-guide__item-ttl::before {
  content: "";
  position: absolute;
  right: 4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 0.0625rem;
  background: #212121;
}
@media screen and (max-width: 1023px) {
  .store-guide__item-ttl::before {
    right: min(2rem, 4.2666666667vw);
    width: min(2rem, 4.2666666667vw);
  }
}
.store-guide__item-ttl::after {
  content: "";
  position: absolute;
  right: 4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 0.0625rem;
  background: transparent;
  transition: 0.4s;
}
@media screen and (max-width: 1023px) {
  .store-guide__item-ttl::after {
    right: min(2rem, 4.2666666667vw);
    width: min(2rem, 4.2666666667vw);
  }
}
.store-guide__item-overview.selected .store-guide__item-ttl::after {
  transform: translateY(-50%) rotate(90deg);
  background: #212121;
}
.store-guide__item-cnt {
  display: none;
  padding: 0 2.5rem 4rem;
}
@media screen and (max-width: 1023px) {
  .store-guide__item-cnt {
    padding: 0 min(2.5rem, 5.3333333333vw) min(4rem, 8.5333333333vw);
  }
}
.store-guide__item-info {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 1023px) {
  .store-guide__item-info {
    flex-direction: column;
    gap: min(2rem, 4.2666666667vw);
    margin-top: min(2.5rem, 5.3333333333vw);
  }
}
.store-guide__item-data {
  flex: 1;
}
.store-guide__item-data-txt {
  font-size: 1.125rem;
  line-height: 1.75;
}
@media screen and (max-width: 1023px) {
  .store-guide__item-data-txt {
    font-size: min(2rem, 4.2666666667vw);
  }
}
.store-guide__item-map {
  width: 50%;
}
@media screen and (max-width: 1023px) {
  .store-guide__item-map {
    width: 100%;
  }
}
.store-guide__item-map-frame {
  aspect-ratio: 536/280;
  background: #ccc;
}
.store-guide__item-map-frame iframe {
  width: 100%;
  height: 100%;
}

/*ファーストビュー*/
.fv {
  position: relative;
  padding-block: 10.625rem;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .fv {
    padding-block: min(15.5rem, 33.0666666667vw) 0;
  }
}
.fv::before {
  content: "";
  position: absolute;
  left: 0;
  text-align: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, #FFF);
  z-index: 10;
}
.fv .fv-slider__pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 0;
  right: 100%;
  left: auto;
  bottom: auto;
  width: 1.875rem;
}
.fv .fv-slider__pagination .swiper-pagination-bullet {
  margin-bottom: 0.3125rem;
  width: 0.0625rem;
  height: 1rem;
  background: #EDEDED;
  border-radius: 0;
  opacity: 1;
  transition: 0.4s 0.2s;
}
.fv .fv-slider__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  height: 2rem;
  background: #212121;
}
.fv-wrap {
  display: grid;
  grid-template-areas: "fv-catch fv-img";
  grid-template-columns: 50% auto;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1023px) {
  .fv-wrap {
    grid-template-areas: "fv-catch" "fv-img";
    grid-template-columns: 100%;
  }
}
.fv-img {
  grid-area: fv-img;
  position: relative;
  flex: 1;
  order: 2;
  z-index: 100;
  margin-right: calc(100% - 50vw);
}
@media screen and (max-width: 1023px) {
  .fv-img {
    margin-right: calc(50% - 50vw);
    margin-bottom: min(8.75rem, 74.6666666667vw);
  }
}
.fv-slider__pagination {
  position: absolute;
  top: 0;
  right: 100%;
  left: auto;
  bottom: auto;
  width: 1.875rem;
}
.fv-catch {
  grid-area: fv-catch;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .fv-catch {
    margin-bottom: min(4rem, 8.5333333333vw);
  }
}
.fv-catch__ttl {
  padding-top: 8.8541666667vw;
}
.fv-catch__ttl-st {
  font-size: min(3rem, 2.5vw);
}
@media screen and (max-width: 1023px) {
  .fv-catch__ttl-st {
    font-size: min(3rem, 6.4vw);
  }
}
.fv-catch__ttl-st small {
  font-size: 0.66em;
}
.fv-catch__ttl-copy {
  margin-top: min(0.5rem, 1.0666666667vw);
  font-size: min(1.125rem, 0.9375vw);
}
@media screen and (max-width: 1023px) {
  .fv-catch__ttl-copy {
    font-size: min(1.5rem, 3.2vw);
  }
}
.fv-slide__item {
  aspect-ratio: 48/31;
}
.fv-slide__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fv-thumb {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .fv-thumb {
    position: relative;
  }
}
.fv-thumb .swiper {
  width: 100%;
}
.fv-thumb .swiper-wrapper {
  transition-timing-function: linear;
}
.fv-thumb__wrap {
  visibility: visible;
  overflow: visible;
}
.fv-thumb__item {
  aspect-ratio: 48/31;
}
.fv-thumb__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fv-thumb .swiper-slide {
  will-change: transform;
}
.fv-thumb .swiper-slide:nth-of-type(odd) {
  position: relative;
  top: -6.25rem;
}
@media screen and (max-width: 1023px) {
  .fv-thumb .swiper-slide:nth-of-type(odd) {
    font-size: min(9.375rem, 20vw);
  }
}

/*コンセプト*/
.concept {
  padding-block: 11rem 10rem;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .concept {
    padding-block: min(8rem, 17.0666666667vw) min(3rem, 6.4vw);
  }
}
.concept-head {
  display: grid;
  grid-template-areas: "concept-h-copy concept-h-img";
  gap: 3.5rem;
  position: relative;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 1023px) {
  .concept-head {
    gap: min(2rem, 4.2666666667vw);
    grid-template-areas: "concept-h-catch concept-h-catch" "concept-h-copy concept-h-img";
  }
}
.concept-head__ttl {
  grid-area: concept-h-catch;
  position: absolute;
  left: 0;
  top: -0.5em;
  font-size: min(9.625rem, 10.6944444444vw);
  font-family: var(--font-en);
  line-height: 0.875;
}
@media screen and (max-width: 1023px) {
  .concept-head__ttl {
    position: relative;
    left: 0;
    top: 0;
    margin-bottom: min(3rem, 6.4vw);
    font-size: min(6.75rem, 14.4vw);
  }
}
.concept-head__copy {
  grid-area: concept-h-copy;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  padding-top: 16.84375rem;
  font-size: 1rem;
}
@media screen and (max-width: 1023px) {
  .concept-head__copy {
    padding-top: 0;
    font-size: min(1.5rem, 3.2vw);
  }
}
.concept-head__img {
  grid-area: concept-h-img;
}
@media screen and (max-width: 1023px) {
  .concept-head__img {
    margin-right: calc(50% - 50vw);
  }
}
.concept-about {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 1023px) {
  .concept-about {
    flex-direction: column-reverse;
  }
}
.concept-about__ph {
  width: 42%;
}
@media screen and (max-width: 1023px) {
  .concept-about__ph {
    width: 100%;
  }
}
.concept-about__info {
  width: 50%;
}
@media screen and (max-width: 1023px) {
  .concept-about__info {
    width: 100%;
  }
}
.concept-about__info-ttl {
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 1023px) {
  .concept-about__info-ttl {
    margin-bottom: min(4rem, 8.5333333333vw);
  }
}
.concept-about__info-ttl-en {
  margin-bottom: 3.5rem;
  font-family: var(--font-en);
  font-size: 1.5rem;
}
@media screen and (max-width: 1023px) {
  .concept-about__info-ttl-en {
    margin-bottom: min(4rem, 8.5333333333vw);
    font-size: min(2.25rem, 4.8vw);
  }
}
.concept-about__info-ttl-jp {
  font-size: 2.5rem;
}
@media screen and (max-width: 1023px) {
  .concept-about__info-ttl-jp {
    font-size: min(3rem, 6.4vw);
  }
}
.concept-about__info-txt {
  font-size: 1.5rem;
  line-height: 2;
}
@media screen and (max-width: 1023px) {
  .concept-about__info-txt {
    margin-bottom: min(6rem, 12.8vw);
    font-size: min(2.25rem, 4.8vw);
  }
}

/*施工事例*/
.works {
  padding-block: 10rem;
  overflow: hidden;
  background: linear-gradient(to bottom, #FFF 0%, #F4F5F6 20%, #F4F5F6 90%, #FFF 100%);
}
@media screen and (max-width: 1023px) {
  .works {
    padding-block: min(6rem, 12.8vw);
  }
}
.works-slide__wrap {
  overflow: visible;
}

/*お問い合わせ*/
.contact {
  padding-block: 4rem 7.5rem;
}
@media screen and (max-width: 1023px) {
  .contact {
    padding-block: min(6rem, 12.8vw);
  }
}
.contact-form {
  padding: min(5rem, 6.6666666667vw) min(5rem, 6.6666666667vw) 0;
  background: #fff;
  font-family: var(--font-gothic);
}
@media screen and (max-width: 1023px) {
  .contact-form {
    padding-inline: 0;
  }
}
.contact .contact-form__item {
  display: none;
}
.contact .contact-form__item.active {
  display: block;
}

/*運営会社*/
.company {
  padding-block: 0 9.25rem;
}
@media screen and (max-width: 1023px) {
  .company {
    padding-block: 0 min(6rem, 12.8vw);
  }
}
.company-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5.25rem 0;
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 1023px) {
  .company-info {
    flex-direction: column-reverse;
    gap: min(5.25rem, 11.2vw);
  }
}
.company-info__box {
  width: 47.6666666667%;
}
@media screen and (max-width: 1023px) {
  .company-info__box {
    width: 100%;
  }
}
.company-info__ph {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 1023px) {
  .company-info__ph {
    margin-bottom: min(2.5rem, 5.3333333333vw);
  }
}
.company-info__ttl {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 1023px) {
  .company-info__ttl {
    margin-bottom: min(2.5rem, 5.3333333333vw);
    font-size: min(2.25rem, 4.8vw);
  }
}
.company-info__txt {
  font-size: 1rem;
  line-height: 2;
  font-family: var(--font-gothic);
}
@media screen and (max-width: 1023px) {
  .company-info__txt {
    font-size: min(1.75rem, 3.7333333333vw);
  }
}
.company-data {
  padding: 4rem;
  background: #F4F5F6;
}
@media screen and (max-width: 1023px) {
  .company-data {
    padding: min(2.5rem, 5.3333333333vw);
  }
}
.company-data__row {
  display: flex;
  font-family: var(--font-gothic);
}
.company-data__row + .company-data__row {
  margin-top: 1.5rem;
}
@media screen and (max-width: 1023px) {
  .company-data__row + .company-data__row {
    margin-top: min(1.5rem, 3.2vw);
  }
}
.company-data__ttl {
  display: flex;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 0.0625rem solid #2C2C2C;
  width: 12.125rem;
  font-size: 1rem;
}
@media screen and (max-width: 1023px) {
  .company-data__ttl {
    padding-bottom: min(1.5rem, 3.2vw);
    width: min(12.125rem, 25.8666666667vw);
    font-size: min(1.75rem, 3.7333333333vw);
  }
}
.company-data__cnt {
  flex: 1;
  padding-left: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 0.0625rem solid #fff;
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (max-width: 1023px) {
  .company-data__cnt {
    padding-left: min(1.5rem, 3.2vw);
    padding-bottom: min(1.5rem, 3.2vw);
    font-size: min(1.75rem, 3.7333333333vw);
    word-break: break-word;
  }
}

/*サンクス*/
.thanks {
  padding-block: 15.5rem 9.25rem;
}
@media screen and (max-width: 1023px) {
  .thanks {
    padding-block: min(9.125rem, 26.1333333333vw);
  }
}
.thanks-about__st {
  line-height: 2;
}

/*フォーム作成*/
form {
  max-width: 1000px;
  width: 100%;
  margin: auto;
}

form ul.clearfix {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  form ul.clearfix {
    margin-bottom: min(1.5rem, 3.2vw);
    font-size: min(1.75rem, 3.7333333333vw);
  }
}

form ul.clearfix::after {
  display: none;
}

form ul.clearfix li:first-of-type {
  width: 20.625rem;
}

form ul.clearfix li:first-of-type div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.125rem;
}
@media screen and (max-width: 1023px) {
  form ul.clearfix li:first-of-type div {
    font-size: min(1.75rem, 3.7333333333vw);
  }
}

form ul.clearfix li:last-of-type {
  width: calc(100% - 350px);
}
@media screen and (max-width: 1023px) {
  form ul.clearfix li:last-of-type {
    margin-top: min(1.75rem, 3.7333333333vw);
    width: 100%;
  }
}

span.item-req {
  background: var(--font-color);
  color: #fff;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 1000px;
}
@media screen and (max-width: 1023px) {
  span.item-req {
    font-size: min(1.5rem, 3.2vw);
  }
}

.privacy-box {
  border: 0.0625rem solid;
  padding: 0.875rem;
  height: 8.75rem;
  overflow-y: scroll;
}

.section-form__check1,
.section-form__check2,
.section-form__check3 {
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

form ul.clearfix li:last-of-type span,
form ul.clearfix li:last-of-type span input[type=text],
form ul.clearfix li:last-of-type span input[type=tel],
form ul.clearfix li:last-of-type span textarea {
  width: 100%;
  display: block;
}

form ul.clearfix li:last-of-type span input[type=text],
form ul.clearfix li:last-of-type span input[type=tel],
form ul.clearfix li:last-of-type span textarea,
form ul.clearfix li:last-of-type span select{
  background-color: #f4f4f4;
  border-radius: 0.5rem;
  padding: 0.9375rem;
}

.item-notice {
  margin-top: 0.875rem;
}

.item-notice p,
.item-notice span,
.item-notice strong {
  font-size: 1.125rem;
}
@media screen and (max-width: 1023px) {
  .item-notice p,
  .item-notice span,
  .item-notice strong {
    font-size: min(1.5rem, 3.2vw);
  }
}

.item-notice p {
  margin-top: 0.5rem;
}

input.submit1,
input.submit2,
input.submit3 {
  background: var(--font-color);
  color: #fff;
  padding: 0.9375rem;
  font-size: 1.125rem;
  max-width: 20.3125rem;
  width: 100%;
  display: block;
  text-align: center;
  margin: auto;
  border-radius: 10000px;
}
@media screen and (max-width: 1023px) {
  input.submit1,
  input.submit2,
  input.submit3 {
    font-size: min(2rem, 4.2666666667vw);
  }
}

.item-form.itemform_add_search {
  display: flex;
  justify-content: space-between;
}

form ul.clearfix li:last-of-type .item-form.itemform_add_search span {
  width: calc(100% - 9.375rem);
}

@media screen and (max-width: 640px) {
  form ul.clearfix li:last-of-type .item-form.itemform_add_search span {
    width: calc(100% - 7.5rem);
  }
}
.item-form.itemform_add_search button {
  background-color: var(--font-color);
  color: #fff;
  border-radius: 0.5rem;
  width: 8.75rem;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .item-form.itemform_add_search button {
    width: 6.25rem;
  }
}

form ul.clearfix li:last-of-type span textarea {
  line-height: 1.5;
}

.privacy-box {
  line-height: 1.5;
}

.privacy-box h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1023px) {
  .privacy-box h3 {
    font-size: min(2rem, 4.2666666667vw);
  }
}

.privacy-box p {
  font-size: 1rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1023px) {
  .privacy-box p {
    font-size: min(1.75rem, 3.7333333333vw);
  }
}

span.wpcf7-not-valid-tip {
  display: none !important;
}

/*# sourceMappingURL=style.css.map */
