@charset "UTF-8";
.site-body {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.mv-slid {
  position: relative;
  background: url(../../img/bg_stone.jpg);
  margin-top: 100px;
}

.mv-slid .inbox {
  width: 70%;
  overflow: hidden;
  margin-left: 30%;
}

/*メイン画像*/
.mv-slid .slide-media,
.mv-slid .thumb-media {
  position: relative;
  overflow: hidden;
}

.mv-slid .slide-media img,
.mv-slid .thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.mv-slid .slide-media {
  height: 87vh;
}

.mv-slid .slide-media img {
  transition: 3s;
}

/*パララックスの設定*/
.mv-slid .swiper-slide {
  overflow: hidden;
}

.mv-slid .swiper-slide[class*="-active"] .slide-media.clip img {
  transform: scale(1.2);
}

.mv-slid .swiper-slide[class*="-prev"] .slide-media img {
  transform: translateX(60vw);
}

.mv-slid .swiper-slide[class*="-next"] .slide-media img {
  transform: translateX(-60vw);
}

/* 関連表示
----------------------------------------------------*/
.mv-slid .swiper {
  position: relative;
}
.mv-slid .content-wrapper {
  /* width: 700px;
  position: absolute; */
  left: 0px;
  bottom: 0px;
  z-index: 999;
}

.mv-slid .content {
  opacity: 0;
  transition: all 0.3s;
  position: absolute;
  left: 100px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.mv-slid .content.anm-started {
  opacity: 1;
  transition: all 0.3s;
    z-index: 2;
}

.mv-slid .content.anm-finished {
  opacity: 0;
  transition: all 0.3s;
}

/*ロゴ部分*/
.mv-slid .content .logo {
  width: 30vh;
  /* overflow: hidden; */
  margin-bottom: 4rem;
}
.mv-slid .content:first-child .logo {
  margin-bottom: 100px;
}

.mv-slid .content .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}

.mv-slid .content .ttl_en {
  font-size: 70px;
  margin-bottom: 10px;
  display: block;
  height: 70px;
  line-height: 70px;
}
@media (max-width: 767.98px) {
  .mv-slid .content .ttl_en {
    font-size: 32px;
    height: 32px;
    line-height: 1;
  }
  .mv-slid .content:first-child .logo {
    margin-bottom: 25px;
  }
}

.mv-slid .content .ttl_ja {
  font-size: 16px;
  margin-bottom: 10px;
  display: block;
}
@media (max-width: 767.98px) {
  .mv-slid .content .ttl_ja {
    font-size: 13px;
    letter-spacing: 0.1px;
  }
}

.mv-slid .content-text {
  font-size: 25px;
  font-weight: bold;
  line-height: 3em;
  margin-bottom: 15px;
}
.mv-slid .content:first-child .content-text {
  font-size: 18px;
  font-weight: normal;
}
.mv-slid .content-text span {
  background: #fff;
  white-space: nowrap;
  padding: 0px 20px;
  letter-spacing: 2px;
}

.mv-slid .bt-vm {
  position: relative;
  height: 28px;
  margin-top: 0;
  margin-left: 5px;
opacity: 0; visibility: hidden;
  transition: opacity .9s ease .9s,   /* 時間=0.9s, ディレイ=0.4s */
              transform .9s ease .9s,
              visibility 0s 0s; 
  z-index: 1;
}
.mv-slid .anm-started .bt-vm {
 opacity: 1; visibility: visible;
 transition: opacity .9s ease 0s,
              transform .9s ease 0s,
              visibility 0s .9s;
  z-index: 5;
}
.mv-slid .bt-vm a {
  pointer-events: none;
}
.mv-slid .anm-started .bt-vm a {
  pointer-events: auto;
}

/* ページネーション
----------------------------------------------------*/
.mv-slid .swiper-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 0.8rem;
  justify-content: center;
  margin-top: 3.2rem;
  text-align: center;
}

.mv-slid .swiper-pagination-bullet {
  width: 1.6rem;
  height: 2px;
  cursor: pointer;
  transition: var(--transition);
  vertical-align: top;
  background-color: #ccc;
}

.mv-slid .swiper-pagination-bullet-active {
  width: 1.6rem;
  background-color: #000;
}

.mv-slid .swiper-pagination {
  position: absolute;
  left: 105px;
  bottom: 40px;
  z-index: 9999;
}

/*見出し アニメーション　marker*/
.mv-slid .marker {
  position: relative;
  display: inline-block;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}

.mv-slid .marker::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #fff;
}

.mv-slid .anm-started .marker {
  animation: mv05-marker 1s 0.5s both;
}

.mv-slid .anm-started .marker::after {
  animation: mv05-markerBg 1s 0.5s both;
}

.mv-slid .anm-started .content-text .marker,
.mv-slid .anm-started .content-text .marker::after {
  animation-delay: 0.6s;
}

.mv-slid .anm-started .content-link .marker,
.mv-slid .anm-started .content-link .marker::after {
  animation-delay: 0.7s;
}

.mv-slid .anm-finished .marker {
  animation: mv05-markerHide 0.5s both;
}

.mv-slid .anm-finished .marker::after {
  -webkit-clip-path: inset(0 0 0 100%);
  clip-path: inset(0 0 0 100%);
}
@keyframes mv05-marker {
  60%,
  100% {
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}
@keyframes mv05-markerBg {
  60% {
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
  }
}
@keyframes mv05-markerHide {
  0% {
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
  }
}
@media (max-width: 767.98px) {
  .mv-slid {
    position: relative;
    height: 120vw;
    margin-top: 60px;
    max-width: 865px;
    min-height: 830px;
  }
  .mv-slid .inbox {
    width: 75%;
    width: 100%;
    overflow: hidden;
    margin-left: 25%;
    margin-left: 0%;
  }
  /*メイン画像*/
  .mv-slid .slide-media,
  .mv-slid .thumb-media {
    position: relative;
    overflow: hidden;
  }
  .mv-slid .slide-media img,
  .mv-slid .thumb-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .mv-slid .slide-media {
    height: 50vh;
  }
  .mv-slid .slide-media img {
    transition: 3s;
  }
  /*パララックスの設定*/
  .mv-slid .swiper-slide {
    overflow: hidden;
  }
  .mv-slid .swiper-slide[class*="-active"] .slide-media.clip img {
    transform: scale(1.2);
  }
  .mv-slid .swiper-slide[class*="-prev"] .slide-media img {
    transform: translateX(60vw);
  }
  .mv-slid .swiper-slide[class*="-next"] .slide-media img {
    transform: translateX(-60vw);
  }
  /* 関連表示
  ----------------------------------------------------*/
  .mv-slid .content-wrapper {
    width: calc(100% - 40px);
    margin: 0 20px;
    position: static;
    position: relative;
    height: 35vh;
    left: 0px;
    bottom: 0px;
    z-index: 99;
  }
  .mv-slid .content {
    opacity: 0;
    transition: all 0.3s;
    position: absolute;
    width: 100%;
    margin: 0 0;
    left: 0px;
    bottom: auto;
    top: 0;
    z-index: 110;
    transform: translateY(0%);
    padding-top: 1px;
  }
  .mv-slid .content.anm-started {
    opacity: 1;
    transition: all 0.3s;
  }
  .mv-slid .content.anm-finished {
    opacity: 0;
    transition: all 0.3s;
  }
  .mv-slid .content:first-child .content-text {
    font-size: 14px;
  }
  /*ロゴ部分*/
  .mv-slid .content .logo {
    width: 165px;
    height: 120px;
    overflow: hidden;
    background: #fff;
    padding: 3% 20px;
    margin: 0 0 0 auto;
    margin-top: -75px;
    margin-bottom: 35px;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .mv-slid .content .logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    padding: 3px;
    padding-left: 8px;
    margin-left: -10px;
  }
  .mv-slid .content h2.content-title {
    font-size: 20px;
    color: #000;
    margin-bottom: 10px;
    padding: 0px 0px !important;
    text-align: left;
  }
  .mv-slid .content h2.content-title span {
    background: none;
    padding: 0px 0px !important;
    text-align: left;
  }
  .mv-slid .content h2 span:before {
    display: none;
  }
  .mv-slid .content-text {
    font-size: 18px;
    line-height: 1.5em;
    margin-bottom: 10px;
  }
  .mv-slid .content-text span {
    background: none;
    white-space: nowrap;
    padding: 0px 0;
    letter-spacing: 2px;
  }
  /* ページネーション
  ----------------------------------------------------*/
  .mv-slid .swiper-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 0.8rem;
    justify-content: center;
    margin-top: 3.2rem;
    text-align: center;
  }
  .mv-slid .swiper-pagination-bullet {
    width: 1.5rem;
    height: 2px;
    cursor: pointer;
    transition: var(--transition);
    vertical-align: top;
    background-color: #ccc;
  }
  .mv-slid .swiper-pagination-bullet-active {
    width: 1.5rem;
    background-color: #000;
  }
  .mv-slid .swiper-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999 !important;
    width: 100%;
  }
  /*見出し アニメーション　marker*/
  .mv-slid .marker {
    position: relative;
    display: inline-block;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  .mv-slid .marker::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: none;
  }
  .mv-slid .anm-started .marker {
    animation: mv05-marker 1s 0.5s both;
  }
  .mv-slid .anm-started .marker::after {
    animation: mv05-markerBg 1s 0.5s both;
  }
  .mv-slid .anm-started .content-text .marker,
  .mv-slid .anm-started .content-text .marker::after {
    animation-delay: 0.6s;
  }
  .mv-slid .anm-started .content-link .marker,
  .mv-slid .anm-started .content-link .marker::after {
    animation-delay: 0.7s;
  }
  .mv-slid .anm-finished .marker {
    animation: mv05-markerHide 0.5s both;
  }
  .mv-slid .anm-finished .marker::after {
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
  }
  @keyframes mv05-marker {
    60%,
    100% {
      -webkit-clip-path: inset(0);
      clip-path: inset(0);
    }
  }
  @keyframes mv05-markerBg {
    60% {
      -webkit-clip-path: inset(0);
      clip-path: inset(0);
    }
    100% {
      -webkit-clip-path: inset(0 0 0 100%);
      clip-path: inset(0 0 0 100%);
    }
  }
  @keyframes mv05-markerHide {
    0% {
      -webkit-clip-path: inset(0);
      clip-path: inset(0);
    }
    100% {
      -webkit-clip-path: inset(0 0 0 100%);
      clip-path: inset(0 0 0 100%);
    }
  }
  .mv-slid .anm-started {
    z-index: 999 !important;
  }
  .mv-slid .anm-finished {
    z-index: 1 !important;
  }
  .mv-slid .bt-vm {
    position: relative;
    z-index: 999;
    height: 35px;
    margin-top: -14px;
    text-align: right;
  }
  .mv-slid .bt-vm .v-more {
    padding: 6px 28px 5px 0;
    font-size: 14px;
  }
  .mv-slid .bt-vm .v-more::before {
    width: 16px;
    height: 16px;
    top: 7px;
    z-index: 10;
  }
}
@media (max-width: 575.98px) {
.mv-slid {
    height: 81vh;
    min-height: 575px;
}
.mv-slid .swiper-pagination {
    bottom: 27vh;
    left: 20px;
    transform: translate(0);
    justify-content: flex-start;
    padding: 10px 0;
}
}
/*ポイント*/
.point {
  position: relative;
  margin-top: 0;
}
@media (max-width: 767.98px) {
  .point {
    margin-top: 0;
  }
}
.point .mask {
  position: absolute;
  z-index: 10;
  width: 100%;
  top: -5px;
}
.point .point-ttlarea {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  width: 230px;
  margin: 190px auto 30px;
  text-align: center;
}

@media screen and (max-width: 991.98px) {
  .point .point-ttlarea {
    margin: 60px auto 0;
  }
}
.point .point-ttlarea__en {
  width: 100%;
  margin-bottom: 0;
  height: 90px;
}
@media screen and (max-width: 991.98px) {
  .point .point-ttlarea__en {
    height: 80px;
  }
}
.point .point-ttlarea__ttl {
  margin-top: 5px;
  font-size: 20px;
  letter-spacing: 0.1em;
  font-weight: 600;
  line-height: 1.7;
  color: #fff;
  display: block;
}

@media screen and (max-width: 991.98px) {
  .point .point-ttlarea__ttl {
    font-size: 16px;
    margin-bottom: 140px;
  }
}
@media screen and (max-width: 767.98px) {
  .point .point-ttlarea__ttl {
    margin-bottom: 0px;
  }
}
.point .point-slid {
  position: relative;
}

.point .point-slid-button-next,
.point .point-slid-button-prev {
  position: absolute;
  cursor: pointer;
  z-index: 1;
  top: 50%;
  transform: translateY(calc(-50% - 23px));
}

.point .point-slid-button-prev {
  left: -50px;
}
@media (max-width: 991.98px) {
  .point .point-slid-button-next,
  .point .point-slid-button-prev {
    transform: translateY(calc(-50% - 50px));
  }
  .point .point-slid-button-prev {
    left: 15px;
  }
}
@media (max-width: 767.98px) {
  .point .point-slid-button-next,
  .point .point-slid-button-prev {
    transform: translateY(calc(-50% - 80px));
  }
  .point .point-slid-button-prev {
    left: 15px;
  }
}
@media (max-width: 480px) {
  .point .point-slid-button-prev {
    left: 15px;
  }
}
.point .point-slid-button-next {
  right: 0;
}

@media (max-width: 991.98px) {
  .point .point-slid-button-next {
    right: 50px;
  }
}
@media (max-width: 767.98px) {
  .point .point-slid-button-next {
    right: 50px;
  }
}
@media (max-width: 480px) {
  .point .point-slid-button-next {
    right: 50px;
  }
}
.point .point-slid-button-next:before,
.point .point-slid-button-prev:before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}
@media (max-width: 767.98px) {
  .point .point-slid-button-next:before,
  .point .point-slid-button-prev:before {
    width: 35px;
    height: 35px;
  }
}

.point .point-slid-button-next:before {
  transform: rotate(45deg);
}

.point .point-slid-button-prev:before {
  transform: rotate(-135deg);
}

.point .point-slid__item {
  position: relative;
  z-index: 1;
  display: flex;
  /*flex-direction: column;*/
  flex-direction: row;
  width: 100%;
  height: 60vw;
  min-height: 860px;
  max-height: 900px;
  visibility: hidden;
  transition: opacity 1.4s ease, visibility 1.4s ease;
}
@media screen and (max-width: 991.98px) {
  .point .point-slid__item {
    height: auto;
    min-height: 900x;
  }
}

@media screen and (max-width: 767.98px) {
  .point .point-slid__item {
    height: auto;
    min-height: 820px;
  }
}
.point .point-slid__item[class*="-active"] {
  z-index: 2;
  visibility: visible;
}

.point .point-slid__item[class*="-active"] .point-slid__in__copy {
  opacity: 1;
  filter: blur(0px);
  transition-duration: 1.2s;
}

.point .point-slid__item[class*="-active"] .point-slid__img {
  -webkit-clip-path: circle(50% at 50% 50%);
  clip-path: circle(50% at 50% 50%);
  transition-delay: 1s;
}

.point .point-slid__item[class*="-active"] .point-slid__ttl,
.point .point-slid__item[class*="-active"] .point-slid__txt,
.point .point-slid__item[class*="-active"] .point-slid__btn {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-duration: 0.8s;
}

.point .point-slid__item[class*="-active"] .point-slid__ttl {
  transition-delay: 1.8s;
}

.point .point-slid__item[class*="-active"] .point-slid__txt {
  transition-delay: 2s;
}

.point .point-slid__item[class*="-active"] .point-slid__btn {
  transition-delay: 2.2s;
}

.point .point-slid__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  margin-left: calc(50% - 50vw);
}

.point .point-slid__bg img,
.point .point-slid__bg source {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.point .point-slid__in {
  position: relative;
  margin: auto auto 0;
  margin-bottom: 140px;
  width: 100%;
}
@media screen and (max-width: 991.98px) {
  .point .point-slid__in {
    margin-bottom: 100px;
  }
}
.point .point-slid__in .point-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 991.98px) {
  .point .point-slid__in .point-flex {
    display: block;
    align-items: center;
    justify-content: space-between;
  }
}
.point .point-slid__in__copy {
  z-index: 2;
  font-size: 35px;
  margin-bottom: 0;
  font-weight: bold;
  width: 47%;
  color: #fff;
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0s 1.4s ease, filter 0s 1.4s ease;
  /* top: 50%;
  position: absolute;
  transform: translateY(-50%);
  display: flex;
  align-items: center; */
}
@media (max-width: 1199.98px) {
  .point .point-slid__in__copy {
    font-size: 24px;
  }
}
@media (max-width: 991.98px) {
  .point .point-slid__in__copy {
    font-size: 24px;
    position: relative;
    top: auto;
    transform: translateY(0);
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

.point .point-slid__img {
  position: absolute;
  width: 35%;
  margin: 0 auto;
  -webkit-clip-path: circle(0% at 50% 50%);
  clip-path: circle(0% at 50% 50%);
  transition: -webkit-clip-path 1s cubic-bezier(0.49, 0.16, 0.15, 1.04);
  transition: clip-path 1s cubic-bezier(0.49, 0.16, 0.15, 1.04);
  transition: clip-path 1s cubic-bezier(0.49, 0.16, 0.15, 1.04),
    -webkit-clip-path 1s cubic-bezier(0.49, 0.16, 0.15, 1.04);
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 991.98px) {
  .point .point-slid__img {
    width: 53.3333333333vw;
    max-width: 320px;
    margin-top: 3.2vw;
    position: relative;
    left: 0;
    transform: translate(0);
  }
}
.point .point-slid__pic {
  display: block;
  width: 100%;
}

.point .point-slid__pic img,
.point .point-slid__pic source {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.point .point-slid__figtxt {
  position: absolute;
  top: 22px;
  left: 0;
  display: block;
  width: 100%;
  font-size: 35px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
  text-align: center;
}
.point .point-slid__figtxt img {
  width: 54px;
}

@media screen and (max-width: 991.98px) {
  .point .point-slid__figtxt {
    top: 3.4666666667vw;
    font-size: 2rem;
  }
}
.point .point-slid__block {
  width: 31%;
  /* top: 50%;
  right: 0;
  position: absolute;
  transform: translateY(-50%); */
}
@media (max-width: 991.98px) {
  .point .point-slid__block {
    width: 92vw;
    margin: 5.3333333333vw auto 0;
    position: relative;
    top: auto;
    transform: translateY(0);
    width: 85%;
  }
}

.point .point-slid__ttl,
.point .point-slid__txt,
.point .point-slid__btn {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition: opacity 0s 1.4s ease, transform 0s 1.4s ease;
}

.point .point-slid__ttl {
  font-size: 1.7rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  line-height: 1.7;
  color: #fff;
}

@media screen and (max-width: 991.98px) and (-webkit-min-device-pixel-ratio: 0) and (-webkit-min-device-pixel-ratio: 0),
  screen and (max-width: 991.98px) and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  .point .point-slid__ttl {
    font-weight: 700;
  }
}
@media screen and (max-width: 991.98px) {
  .point .point-slid__ttl {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    line-height: 1.65;
  }
}
@media screen and (max-width: 991.98px) {
  .point .point-slid__ttl {
    text-align: center;
  }
}
.point .point-slid__txt {
  color: #fff;
  margin-bottom: 0;
}

@media screen and (max-width: 991.98px) {
  .point .point-slid__txt {
    margin-top: 4vw;
  }
}
.point .point-slid__btn {
  display: block;
  text-align: right;
  position: absolute;
  right: 0;
  bottom: 0;
}
.point .point-slid__btn.v-more {
  color: #fff;
}
.point .point-slid__btn.v-more::before {
  background: url(../../img/top/arrow_w.svg) center center / contain no-repeat;
}
@media screen and (max-width: 991.98px) {
  .point .point-slid__btn {
    position: relative;
    margin-top: 20px;
  }
}
section {
  margin-bottom: 8rem;
}
@media (max-width: 767.98px) {
  section {
    margin-bottom: 4rem;
  }
}

section h2 {
  font-size: 55px;
  font-family: "Oswald";
  letter-spacing: 0.02em;
  line-height: 1.3;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 767.98px) {
  section h2 {
    display: block;
    font-size: 40px;
  }
}
section h2 span {
  font-size: 16px;
  font-family: "ヒラギノ角ゴ ProN W3", "游ゴシック", YuGothic, "メイリオ",
    Meiryo, sans-serif;
  display: block;
  margin-left: 25px;
  margin-top: 10px;
  font-weight: normal;
  line-height: 1.5em;
}
section#insta h2 span {
  margin-top: 4px;
}
@media (max-width: 767.98px) {
  section h2 span {
    margin-left: 0;
  }
}

#news .news_wrap .d-flex {
  align-items: center;
  margin-right: 20px;
}
#news .news_wrap .d-flex img {
  width: 80px;
  aspect-ratio: 1;
  margin-right: 20px;
  display: block;
  border: 0.5px solid #a9a9a9;
}
#news .news_wrap .d-flex .date,
#news .news_wrap .d-flex .ttl {
  display: block;
  color: #666;
  font-size: 15px;
}
#news .news_wrap .d-flex a + a {
  margin-left: 15px;
  flex: 1;
}
#news .news_wrap {
  border-top: 1px solid #d7d8d8;
  border-bottom: 1px solid #d7d8d8;
  padding: 40px 0;
  position: relative;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  #news .news_wrap {
    padding: 20px;
  }
}
#news .news-slid {
  position: relative;
  overflow: hidden;
}
#news .swiper-button-wrap {
  position: absolute;
  top: -50px;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80px;
}
@media (max-width: 767.98px) {
  #news .swiper-button-wrap {
    top: -30px;
    right: -10px;
  }
}
#news .news-slid-button-prev,
#news .news-slid-button-next {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 2px;
  margin: 5.3px 0;
  border-radius: 50vh;
  background-color: #231815;
  cursor: pointer;
}
#news .news-slid-button-prev::before,
#news .news-slid-button-prev::after,
#news .news-slid-button-next::before,
#news .news-slid-button-next::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 2px;
  border-radius: 50vh;
  background-color: #231815;
  transform-origin: calc(100% - 1px) 50%;
}
#news .news-slid-button-prev::before,
#news .news-slid-button-next::before {
  transform: rotate(45deg);
}
#news .news-slid-button-prev::after,
#news .news-slid-button-next::after {
  transform: rotate(-45deg);
}
#news .news-slid-button-prev {
  transform: rotate(180deg);
}
#news .news-slid-button-prev {
  margin-left: 8px;
}
#news .news-slid-button-next {
  margin-right: 8px;
}
#news .news-slid-button-prev:hover,
#news .news-slid-button-next:hover {
  opacity: 0.4;
}
#news .justify-content-end,
#event .justify-content-end {
  padding-right: 5px;
}

#event .event-slid {
  position: relative;
  overflow: hidden;
}
#event .container {
  position: relative;
}
#event .event_wrap {
  margin-bottom: 2rem;
  margin-right: calc(50% - 50vw);
}
#event .event_wrap .d-flex {
  width: 100%;
}
#event .event_wrap a {
  display: block;
  width: 100%;
}
#event .event_wrap h3 {
  font-size: 18px;
  margin-bottom: 5px;
  margin-top: 20px;
}
#event .event_wrap img {
  display: block;
  margin: 0 auto;
}
#event .swiper-button-wrap {
  position: absolute;
  top: 35px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80px;
}
@media (max-width: 767.98px) {
  #event .swiper-button-wrap {
    top: 85px;
    right: 15px;
  }
}
#event .event-slid-button-prev,
#event .event-slid-button-next {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 2px;
  margin: 5.3px 0;
  border-radius: 50vh;
  background-color: #231815;
  cursor: pointer;
}
#event .event-slid-button-prev::before,
#event .event-slid-button-prev::after,
#event .event-slid-button-next::before,
#event .event-slid-button-next::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 2px;
  border-radius: 50vh;
  background-color: #231815;
  transform-origin: calc(100% - 1px) 50%;
}
#event .event-slid-button-prev::before,
#event .event-slid-button-next::before {
  transform: rotate(45deg);
}
#event .event-slid-button-prev::after,
#event .event-slid-button-next::after {
  transform: rotate(-45deg);
}
#event .event-slid-button-prev {
  transform: rotate(180deg);
}
#event .event-slid-button-prev {
  margin-left: 8px;
}
#event .event-slid-button-next {
  margin-right: 8px;
}
#event .event-slid-button-prev:hover,
#event .event-slid-button-next:hover {
  opacity: 0.4;
}
/* #event .event-slid-button-next,
#event .event-slid-button-prev {
  position: absolute;
  cursor: pointer;
  z-index: 1;
  filter: drop-shadow(1px 1px 2px rgba(255, 255, 255, 0.7));
}
#event .event-slid-button-prev {
  left: -50px;
}
@media (max-width: 767.98px) {
  #event .event-slid-button-prev {
    left: 15px;
  }
}
#event .event-slid-button-next {
  right: 0;
}
@media (max-width: 767.98px) {
  #event .event-slid-button-next {
    right: 50px;
  }
}
#event .event-slid-button-next:before,
#event .event-slid-button-prev:before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  border-top: solid 2px #231815;
  border-right: solid 2px #231815;
}
@media (max-width: 767.98px) {
  #event .event-slid-button-next:before,
  #event .event-slid-button-prev:before {
    width: 35px;
    height: 35px;
  }
}
#event .event-slid-button-next:before {
  transform: rotate(45deg);
}
#event .event-slid-button-prev:before {
  transform: rotate(-135deg);
} */

.bg-beige {
  background: #f4f3f3;
}

#aboutus {
  background: url(../../img/top/img2.png) right top no-repeat;
  background-size: 75%;
  background-size: max(1000px, 75%);
  padding: 8rem 0 16rem;
  margin-bottom: 0;
}
@media (max-width: 1690px) {
#aboutus{
  padding-bottom: 10rem;
}
}
@media (max-width: 1190px) {
#aboutus{
   background-size:75%;
}
}
@media (max-width: 767.98px) {
  #aboutus {
    padding: 4rem 0 8rem;
    padding-top: 25vh;
    background-size: 110%;
  }
  #aboutus .container-wrap {
    background-image: linear-gradient(
      180deg,
      rgba(244, 243, 243, 0),
      rgb(244, 243, 243) 20%
    );
    padding-top: 25vh;
  }
}
#aboutus .fs25 {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 5px;
}
#aboutus .fs25.fs30 {
  font-size: 33px;
  line-height: 2em;
  margin-bottom: 10px;
}
@media (max-width: 767.98px) {
  #aboutus .fs25 {
    font-size: 16px;
  }
  #aboutus .fs25.fs30 {
    font-size: 18px;
  }
}
#aboutus .fs25.text-marker span.marker {
  background: #231815;
  color: #fff;
}
#aboutus .fs25.text-marker.bg-none {
  font-weight: normal;
  margin-bottom: 30px;
}
#aboutus .fs25.text-marker.bg-none span.marker {
  background: none;
  color: #231815;
}
#aboutus .fs25 .color {
  display: inline-block;
  color: #cab491;
}
#aboutus .more {
  margin-left: 0;
  margin-top: 60px;
}
@media (max-width: 767.98px) {
  #aboutus .more {
    margin: 60px auto 10px;
  }
}
#aboutus h2 {
  display: block;
  line-height: 1em;
}
#aboutus h2 span {
  margin-left: 0;
}
#aboutus h3 {
  font-size: 35px;
  margin-top: 55px;
  margin-bottom: 0.8rem;
  line-height: 3.4rem;
}
@media (max-width: 767.98px) {
  #aboutus h3 {
    font-size: 28px;
  }
}

#linup {
  text-align: center;
}
#linup h2 {
  display: block;
  line-height: 1em;
}
#linup h2 span {
  margin-left: 0;
}
#linup .ttl {
  font-size: 65px;
  font-weight: bold;
  display: inline-block;
  position: relative;
  line-height: 1.5;
  padding: 15px 50px;
  margin-bottom: 8rem;
}
@media (max-width: 991.98px) {
  #linup .ttl {
    font-size: 48px;
  }
}
@media (max-width: 767.98px) {
  #linup .ttl {
    margin-bottom: 6rem;
    font-size: 40px;
    padding: 15px;
  }
}
#linup .ttl::before,
#linup .ttl::after {
  position: absolute;
  top: -2px;
  width: 10px;
  height: 100%;
  content: "";
  border-top: solid 2px;
  border-bottom: solid 2px;
}
#linup .ttl::before {
  border-left: solid 2px;
  left: 0;
}
#linup .ttl::after {
  border-right: solid 2px;
  right: 0;
}
#linup .ttl span {
  display: block;
  font-weight: bold;
  letter-spacing: 4px;
}
#linup .lead {
  margin-bottom: 40px;
}
#linup .fs25 {
  font-size: 25px;
}
@media (max-width: 767.98px) {
  #linup .fs25 {
    font-size: 16px;
  }
}
#linup .style-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(50% - 50vw);
  align-items: flex-start;
  text-align: left;
  margin-bottom: 8rem;
}
@media (max-width: 767.98px) {
  #linup .style-wrap {
    flex-direction: column-reverse;
    margin-right: 0;
    margin-bottom: 4rem;
  }
}
#linup .style-wrap .style-text {
  width: 30%;
  border-left: 1px solid #231815;
  padding-left: 30px;
}
@media (max-width: 991.98px) {
  #linup .style-wrap .style-text {
    padding-left: 20px;
  }
}
@media (max-width: 767.98px) {
  #linup .style-wrap .style-text {
    width: 100%;
    margin-top: 20px;
  }
}
#linup .style-wrap .style-text h3 {
  font-size: 100px;
  position: relative;
  padding-right: 15px;
  display: inline-block;
  margin-bottom: 0;
  line-height: 1;
}
#linup .style-wrap .style-text h3 img {
  width: 65%;
}
@media (max-width: 991.98px) {
  #linup .style-wrap .style-text h3 {
    font-size: 80px;
    width: 150px;
  }
  #linup .style-wrap .style-text h3 img {
    width: 100%;
  }
}
#linup .style-wrap .style-text h3 span {
  font-size: 14px;
  position: absolute;
  right: 0px;
  top: 10px;
  line-height: 0;
  writing-mode: vertical-rl;
}
#linup .style-wrap .style-text .min {
  margin-bottom: 45px;
}
@media (max-width: 767.98px) {
  #linup .style-wrap .style-text .min {
    margin-bottom: 30px;
  }
}
#linup .style-wrap .style-text .fs20 {
  font-weight: bold;
  margin-bottom: 25px;
}
@media (max-width: 767.98px) {
  #linup .style-wrap .style-text .fs20 {
    margin-bottom: 20px;
  }
}
#linup .style-wrap .style-text .price {
  margin-bottom: 4rem;
  font-size: 15px;
}
#linup .style-wrap .style-text .price .big {
  font-weight: bold;
  font-size: 25px;
  display: inline-block;
  margin-right: 5px;
}
@media (max-width: 767.98px) {
  #linup .style-wrap .style-text .price {
    margin-bottom: 30px;
  }
}
@media (max-width: 767.98px) {
  #linup .style-wrap .style-text .sp-flex {
    display: flex;
    align-items: center;
  }
  #linup .style-wrap .style-text .sp-flex p {
    margin-left: 15px;
    margin-bottom: 0;
  }
}
#linup .style-wrap .style-img {
  width: 70%;
}
@media (max-width: 767.98px) {
  #linup .style-wrap .style-img {
    width: 100%;
  }
}
#linup .style-wrap:nth-child(odd) {
  margin-left: calc(50% - 50vw);
}
@media (max-width: 767.98px) {
  #linup .style-wrap:nth-child(odd) {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    flex-direction: column-reverse;
  }
}
#linup .style-wrap:nth-child(odd) .style-text {
  width: 24%;
  margin-left: 6%;
  order: 2;
}
@media (max-width: 767.98px) {
  #linup .style-wrap:nth-child(odd) .style-text {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    order: 1;
  }
}
#linup .style-wrap:nth-child(odd) .style-img {
  order: 1;
}
@media (max-width: 767.98px) {
  #linup .style-wrap:nth-child(odd) .style-img {
    order: 2;
    width: 100%;
  }
}

/*汎用パララックス*/
.site-body {
  background-color: #fff;
}

.site-body.bg-none {
  background-color: transparent;
}

.parallax {
  height: 75vh;
}
@media (max-width: 767.98px) {
  .parallax {
    height: 65vh;
  }
}

#fixed-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
}

.bg-white {
  padding-bottom: 8rem;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .bg-white {
    padding-bottom: 6rem;
    margin-bottom: 0;
  }
}

/*ここまで*/
#works {
  padding-top: 8rem;
  text-align: center;
}
@media (max-width: 767.98px) {
  #works {
    padding-top: 6rem;
  }
}
#works h2 {
  display: block;
  line-height: 1em;
}
#works h2 span {
  margin-left: 0;
}
#works .works-item {
  text-align: left;
  margin-bottom: 60px;
  position: relative;
}
@media (max-width: 767.98px) {
  #works .works-item {
    margin-bottom: 30px;
  }
}
#works .works-item img {
  aspect-ratio: 705/500;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
#works .works-item .ttl {
  font-size: 15px;
  font-weight: normal;
  margin-top: 0;
  margin-bottom: 5px;
}
#works .works-item h3 {
  font-size: 16px;
  font-weight: normal;
  margin-top: 0;
  margin-bottom: 15px;
}
#works .works-item a.cat {
  display: inline-block;
  background: #333;
  color: #fff;
  font-size: 15px;
  padding: 1px 8px 3px;
  line-height: 15px;
}
#works .works-item hr {
  border: none;
  height: 0.5px;
  width: 100%;
  background: #333;
  margin-top: 20px;
  margin-bottom: 10px;
}
#works .works-item a.link {
  display: block;
  margin: 0 0 0 auto;
  text-align: right;
  width: 95px;
}
#works .works-item .works-item-inner {
  padding: 10px 15px 30px;
  border: 1px solid #e6e6e6;
  border-top: none;
}
#works .works-item .works-item-inner a {
  text-decoration: none;
}
#works .works-item .btn-bk {
  background: #231815;
  color: #fff;
  font-size: 14px;
  display: inline-block;
  padding: 3px 15px;
  margin-top: 5px;
  border-radius: 50vh;
}
#works .works-item a.more.more-s {
  margin-top: 20px;
  border: none;
}
#works .works-item a.link {
  display: block;
  margin: 0 0 0 auto;
  text-align: right;
  width: 95px;
}
#works .works-item a.info {
  display: inline-block;
  font-size: 14px;
  padding-left: 10px;
  position: relative;
  margin-right: 10px;
}
#works .works-item a.info::before {
  content: "#";
  position: absolute;
  left: 0;
}

#modelhouse {
  background: #717171;
  padding: 8rem 0;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  #modelhouse {
    padding: 6rem 0;
  }
}
#modelhouse .model-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#modelhouse .model-wrap h2 {
  display: block;
  line-height: 1em;
}
#modelhouse .model-wrap h2 span {
  margin-left: 0;
}
#modelhouse .model-wrap .text {
  background: #fff;
  padding: 40px 30px;
  width: 30%;
  position: relative;
}
@media (max-width: 991.98px) {
  #modelhouse .model-wrap .text {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  #modelhouse .model-wrap .text {
    padding: 30px 20px;
  }
}
#modelhouse .model-wrap .text p {
  margin-bottom: 10px;
}
#modelhouse .model-wrap .text .fs18 {
  font-weight: bold;
  margin-bottom: 20px;
}
#modelhouse .model-wrap .text .reserve {
  margin: 56px auto 0 0;
  background: #231815;
  color: #fff;
  width: 230px;
  position: absolute;
  bottom: 48px;
}
#modelhouse .model-wrap .text .reserve::before {
  background-image: url(../../img/top/arrow_w.svg);
}
@media (max-width: 1199.98px) {
  #modelhouse .model-wrap .text .reserve {
    bottom: 35px;
  }
}
@media (max-width: 991.98px) {
  #modelhouse .model-wrap .text .reserve {
    margin: 40px auto 0 auto;
    position: relative;
    bottom: 0;
  }
}
#modelhouse .model-wrap .model-slid-wrap {
  width: 65%;
  position: relative;
  background: #fff;
}
@media (max-width: 991.98px) {
  #modelhouse .model-wrap .model-slid-wrap {
    width: 100%;
  }
}
#modelhouse .model-wrap .model-slid-wrap .model-slid {
  overflow: hidden;
}
#modelhouse .model-wrap .model-slid-wrap .slid-item .img {
  position: relative;
}
#modelhouse .model-wrap .model-slid-wrap .slid-item .img img {
  display: block;
  aspect-ratio: 1565 / 853;
      -o-object-fit: cover;
    object-fit: cover;
}
@media (max-width: 991.98px) {
  #modelhouse .model-wrap .model-slid-wrap .slid-item .img img {
    aspect-ratio: 1;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
#modelhouse .model-wrap .model-slid-wrap .slid-item .img .num {
  position: absolute;
  right: 0;
  top: 20px;
  font-size: 100px;
  line-height: 1;
  padding-right: 30px;
  z-index: 2;
}
#modelhouse .model-wrap .model-slid-wrap .slid-item .img .num span {
  font-size: 14px;
  position: absolute;
  right: 20px;
  top: 15px;
  line-height: 0;
  writing-mode: vertical-rl;
  height: 110px;
  letter-spacing: 0.5px;
}
#modelhouse .model-wrap .model-slid-wrap .slid-item .slid-text {
  background: #fff;
  padding: 35px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1199.98px) {
  #modelhouse .model-wrap .model-slid-wrap .slid-item .slid-text {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991.98px) {
  #modelhouse .model-wrap .model-slid-wrap .slid-item .slid-text {
    padding: 25px 20px;
  }
}
#modelhouse .model-wrap .model-slid-wrap .slid-item .slid-text h3 {
  margin-bottom: 0;
  font-size: 28px;
}
@media (max-width: 767.98px) {
  #modelhouse .model-wrap .model-slid-wrap .slid-item .slid-text h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
#modelhouse .model-wrap .model-slid-wrap .slid-item .slid-text h3 span {
  display: block;
  font-size: 16px;
  padding-left: 2px;
}
@media (max-width: 767.98px) {
  #modelhouse .model-wrap .model-slid-wrap .slid-item .slid-text h3 span {
    font-size: 14px;
    letter-spacing: 0px;
  }
}
#modelhouse .model-wrap .model-slid-wrap .slid-item .slid-text .more {
  width: 230px;
  padding-left: 10px;
}
@media (max-width: 1199.98px) {
  #modelhouse .model-wrap .model-slid-wrap .slid-item .slid-text .more {
    margin-top: 25px;
  }
}
#modelhouse .model-wrap .model-slid-wrap .swiper-button-prev,
#modelhouse .model-wrap .model-slid-wrap .swiper-button-next {
  position: absolute;
  cursor: pointer;
  z-index: 1;
  width: 50px;
  height: 50px;
  top: 0;
  background: url(../../img/top/arrow_b.svg) center no-repeat;
  background-size: contain;
}
@media (max-width: 767.98px) {
  #modelhouse .model-wrap .model-slid-wrap .swiper-button-prev,
  #modelhouse .model-wrap .model-slid-wrap .swiper-button-next {
    width: 35px;
    height: 35px;
    top: 160px;
  }
}
#modelhouse .model-wrap .model-slid-wrap .swiper-button-prev {
  left: -25px;
  transform: rotate(-180deg);
}
@media (max-width: 767.98px) {
  #modelhouse .model-wrap .model-slid-wrap .swiper-button-prev {
    left: 0;
  }
}
#modelhouse .model-wrap .model-slid-wrap .swiper-button-next {
  right: -25px;
}
@media (max-width: 767.98px) {
  #modelhouse .model-wrap .model-slid-wrap .swiper-button-next {
    right: 0;
  }
}

#estate {
  background: #f8f8f8;
  padding: 8rem 0;
}
#estate .ttl {
  display: flex;
  align-items: start;
}
@media (max-width: 767.98px) {
  #estate .ttl {
    display: block;
  }
}
@media (max-width: 767.98px) {
  #estate {
    padding: 6rem 0;
  }
}
#estate .tab-area {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: wrap;
  flex: 1;
}
@media (max-width: 767.98px) {
  #estate .tab-area {
    justify-content: space-between;
  }
}
#estate h2 {
  display: block;
  line-height: 1em;
  width: 240px;
  margin-bottom: 0;
}
#estate h2 span {
  margin-left: 0;
}
#estate .tab-area .tab {
  width: 230px;
  border: 0.5px solid #231815;
  text-align: center;
  cursor: pointer;
  margin: 4px 10px 5px;
  z-index: 1;
  color: #231815;
  border-radius: 50vh;
  padding: 13px 20px;
}
@media (max-width: 767.98px) {
  #estate .tab-area .tab {
    width: calc(33.3333333333% - 5px);
    margin: 20px 0px 5px;
    padding: 10px 10px;
  }
}
#estate .tab-area .tab.active {
  color: #fff;
  background: #231815;
  border-color: #231815;
}
#estate .content-area {
  margin-top: 4rem;
}
@media (max-width: 767.98px) {
  #estate .content-area {
    margin-top: 2rem;
  }
}
#estate .content-area .content {
  display: none;
}
#estate .content-area .content.show {
  display: block;
}
#estate .estate-item {
  text-align: left;
  margin-bottom: 60px;
  position: relative;
  background: #fff;
}
#estate .estate-item .btn-bk {
  background: #231815;
  color: #fff;
  font-size: 14px;
  display: inline-block;
  padding: 3px 15px;
  position: absolute;
  top: 0;
  left: 0;
}
#estate .estate-item .btn-bk.open {
  background: #a81f24;
}
#estate .estate-item img {
  aspect-ratio: 705/500;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
#estate .estate-item .estate-item-inner {
  padding: 10px 15px 20px;
  border: 1px solid #e6e6e6;
  border-top: none;
}
#estate .estate-item .estate-item-inner .date {
  font-size: 15px;
  font-weight: normal;
  margin-top: 0;
  margin-bottom: 5px;
}
#estate .estate-item .estate-item-inner h3 {
  font-size: 16px;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 15px;
}

#area h2 {
  display: block;
  line-height: 1em;
}
#area h2 span {
  margin-left: 0;
}
#area .container {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 30vh;
}
@media (max-width: 991.98px) {
  #area .container {
    padding-bottom: 0;
    padding-top: 0;
  }
}
#area .container .fs30 {
  font-weight: bold;
  margin-bottom: 25px;
  font-size: 30px;
  line-height: 1.5em;
}
@media (max-width: 767.98px) {
  #area .container .fs18 {
    font-size: 24px;
  }
}
#area .container .fs18 {
  margin-bottom: 25px;
}
@media (max-width: 767.98px) {
  #area .container .fs18 {
    font-size: 16px;
  }
}
#area .container .text {
  max-width: 460px;
}
#area .container img {
  position: absolute;
  width: auto;
  max-width: 80%;
  right: 45px;
  top: -2rem;
  height: 85vh;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: bottom;
  object-position: bottom;
}
@media (max-width: 1199.98px) {
  #area .container img {
    max-width: 70%;
  }
}
@media (max-width: 991.98px) {
  #area .container img {
    position: relative;
    height: auto;
    width: 100%;
    top: 0;
    right: 0;
    display: block;
    margin: 0 auto;
    max-width: 90%;
  }
}
@media (max-width: 767.98px) {
  #area .container img {
    max-width: 100%;
  }
}

#voice {
  padding: 8rem 0;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  #voice {
    padding: 6rem 0;
  }
}
#voice h2 {
  display: block;
  line-height: 1em;
}
#voice h2 span {
  margin-left: 0;
}
#voice .voice-slid {
  position: relative;
  overflow: hidden;
}
#voice .voice-slid .voice-item {
  text-align: left;
  position: relative;
  background: #fff;
}
#voice .voice-slid .voice-item img {
  aspect-ratio: 705/500;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
#voice .voice-slid .voice-item .voice-item-inner {
  padding: 10px 15px 20px;
  border: 1px solid #e6e6e6;
  border-top: none;
}
#voice .voice-slid .voice-item .voice-item-inner h3 {
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 15px;
}
#voice .voice-slid .voice-item .voice-item-inner p {
  margin-bottom: 10px;
}
#voice .swiper-button-wrap {
  position: absolute;
  top: -50px;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80px;
}
@media (max-width: 767.98px) {
  #voice .swiper-button-wrap {
    top: -30px;
    right: 15px;
  }
}
#voice .voice-slid-button-prev,
#voice .voice-slid-button-next {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 2px;
  margin: 5.3px 0;
  border-radius: 50vh;
  background-color: #231815;
  cursor: pointer;
}
#voice .voice-slid-button-prev::before,
#voice .voice-slid-button-prev::after,
#voice .voice-slid-button-next::before,
#voice .voice-slid-button-next::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 2px;
  border-radius: 50vh;
  background-color: #231815;
  transform-origin: calc(100% - 1px) 50%;
}
#voice .voice-slid-button-prev::before,
#voice .voice-slid-button-next::before {
  transform: rotate(45deg);
}
#voice .voice-slid-button-prev::after,
#voice .voice-slid-button-next::after {
  transform: rotate(-45deg);
}
#voice .voice-slid-button-prev {
  transform: rotate(180deg);
}
#voice .voice-slid-button-prev {
  margin-left: 8px;
}
#voice .voice-slid-button-next {
  margin-right: 8px;
}
#voice .voice-slid-button-prev:hover,
#voice .voice-slid-button-next:hover {
  opacity: 0.4;
}
#voice .voice-link {
  position: absolute;
  bottom: 0;
  left: 20px;
}
#voice .d-flex.pc-none {
  display: none !important;
}
@media (max-width: 767.98px) {
  #voice .voice-link {
    display: none;
  }
  #voice .d-flex.pc-none {
    display: flex !important;
    margin-top: 40px;
  }
}

#insta {
  text-align: center;
}
@media (max-width: 767.98px) {
  #insta {
    padding-top: 6rem;
  }
}
#insta h2 {
  display: block;
  position: relative;
  padding-top: 40px;
}
#insta h2 span {
  margin-left: 0;
}
#insta h2::before {
  content: "";
  width: 35px;
  height: 35px;
  background: url(../../img/icon_ig.svg) center no-repeat;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
#insta .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
/* #insta .wrap img {
  width: calc(16.6666666667% - 2px);
}
@media (max-width: 767.98px) {
  #insta .wrap img {
    width: calc(33.3333333333% - 2px);
    margin-bottom: 3px;
  }
} */

#sb_instagram .sbi_photo {
  height: auto !important;
}

/* Instagram Feed - リール動画のみ表示・6件制限 */
#sb_instagram .sbi_type_image {
  display: none !important;
}

/* Instagram Feed - 再生ボタンを非表示 */
#sb_instagram .sbi_playbtn,
#sb_instagram .svg-inline--fa.fa-play,
#sb_instagram .sbi_type_video .sbi_playbtn,
#sb_instagram .sbi_type_video .svg-inline--fa.fa-play {
  display: none !important;
}

/* Instagram Feed - 6件制限用のJavaScript */

#column {
  padding-top: 8rem;
  text-align: center;
}
@media (max-width: 767.98px) {
  #column {
    padding-top: 6rem;
  }
}
#column h2 {
  display: block;
  line-height: 1em;
}
#column h2 span {
  margin-left: 0;
}
#column .column-item {
  text-align: left;
  margin-bottom: 60px;
  position: relative;
}

#column .column-item img {
  border: 1px solid var(--vk-color-border-image);
}
@media (max-width: 767.98px) {
  #column .column-item {
    margin-bottom: 30px;
  }
}
#column .column-item img {
  aspect-ratio: 705/500;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
#column .column-item h3 {
  font-size: 16px;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 15px;
}
#column .column-item a.cat {
  display: inline-block;
  background: #333;
  color: #fff;
  font-size: 15px;
  padding: 1px 8px 3px;
  line-height: 15px;
}
#column .column-item .column-item-inner {
  padding: 10px 15px 20px;
}
#column .column-item .column-item-inner a {
  text-decoration: none;
}
/* 
#book .container .d-flex {
  background: #717171;
  color: #fff;
  flex-wrap: wrap;
  padding: 60px;
}
@media (max-width: 1199.98px) {
  #book .container .d-flex {
    padding: 50px;
  }
}
@media (max-width: 991.98px) {
  #book .container .d-flex {
    padding: 40px;
  }
}
@media (max-width: 767.98px) {
  #book .container .d-flex {
    padding: 20px;
  }
}
#book .container .d-flex h2 {
  font-size: 35px;
  letter-spacing: 5px;
}
@media (max-width: 1199.98px) {
  #book .container .d-flex h2 {
    display: block;
  }
  #book .container .d-flex h2 span {
    margin-left: 0;
  }
}
@media (max-width: 767.98px) {
  #book .container .d-flex h2 {
    font-size: 28px;
  }
}
#book .container .d-flex h2 u {
  display: inline-block;
  border-bottom: 2px solid;
  text-decoration: none;
}
#book .container .d-flex h2 span {
  font-size: 25px;
  font-weight: bold;
}
@media (max-width: 767.98px) {
  #book .container .d-flex h2 span {
    font-size: 18px;
  }
}
#book .container .d-flex img {
  width: 280px;
  margin-right: 60px;
  -o-object-fit: contain;
  object-fit: contain;
  height: auto;
}
@media (max-width: 1199.98px) {
  #book .container .d-flex img {
    margin-right: 50px;
  }
}
@media (max-width: 991.98px) {
  #book .container .d-flex img {
    margin-right: 40px;
  }
}
@media (max-width: 767.98px) {
  #book .container .d-flex img {
    margin-right: 0;
    width: 100%;
    margin-bottom: 20px;
  }
}
#book .container .d-flex .text {
  flex: 1;
} */

#side-sns {
  position: fixed;
  left: 0;
  padding: 10px 10px 10px 25px;
  height: 100vh;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#side-sns .tate {
  writing-mode: vertical-rl;
  font-size: 11px;
  margin-bottom: 15px;
}
#side-sns img {
  display: block;
  width: 18px;
  height: 18px;
  margin-bottom: 10px;
}
#side-sns .sd {
  height: 100px;
  width: 1px;
  position: relative;
  margin-top: 15px;
}
@media (max-width: 767.98px) {
  #side-sns {
    padding: 10px 10px 10px 8px;
    position: absolute;
    width: 15px;
    height: 70vh;
    top: 0;
    left: 0;
  }
}
#side-sns .sd::before {
  content: "";
  height: 80px;
  width: 0.7px;
  background: #231815;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
#side-sns .sd::after {
  content: "";
  height: 6px;
  width: 6px;
  border-radius: 50vh;
  background: #231815;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  animation: circlemove 3s ease-in-out infinite;
  will-change: transform;
  top: 0;
}
@keyframes circlemove {
  0% {
    transform: translate(-50%, 0);
  }
  100% {
    transform: translate(-50%, 80px);
  }
}
@media (max-width: 767.99px) {
  /* #side-sns .sd::before {
    height: 60px;
    top: 20px;
  }
  #side-sns .sd::after {
    height: 6px;
    width: 6px;
    border-radius: 50vh;
    background: #231815;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 20px);
    animation: circlemove2 3s ease-in-out infinite;
    will-change: transform;
  }
  @keyframes circlemove2 {
    0% {
      transform: translate(-50%, 20px);
    }
    100% {
      transform: translate(-50%, 80px);
    }
  } */
}

/* @media (max-width: 767.98px) {
  div.container,
  section.container {
    padding-left: 30px;
    padding-right: 30px;
  }
} */

#book {
  margin-bottom: 0;
  padding-bottom: 2rem;
}

/*クチコミ*/
#grw h2 {
  display: block;
  line-height: 1em;
}
#grw h2 span {
  margin-left: 0;
}
.gReview {
  /* margin-top: 6rem; */
  padding: 3em;
}

@media screen and (max-width: 767px) {
  .gReview {
    padding: 0;
  }
}

.gReview__text {
  letter-spacing: 0.05em;
  font-size: 1.1em;
}
.wp-gr.wpac {
  font-family: "Sans-M", ProductSans, Roboto, "Noto Sans JP", Arial, sans-serif !important;
  margin-top: 2.5em !important;
  background: #f4f3f3 !important;
  padding: 3em !important;
  border-radius: 10px !important;
}

@media screen and (max-width: 767px) {
  .wp-gr.wpac {
    padding: 3em 1em !important;
  }
}

.wp-gr .wp-google-rating {
  color: #333 !important;
}

@media screen and (max-width: 767px) {
  .wp-gr .wp-google-rating {
    display: block;
    margin-bottom: 5px !important;
    font-size: 24px !important;
    margin-top: 5px;
  }
}

.wp-gr .wp-google-powered {
  display: none;
}

.wp-gr .wp-google-content-inner {
  height: 280px;
  overflow-y: scroll;
  /* border: 1px solid #000 !important; */
  padding: 15px !important;
  background-color: #fff !important;
  margin-top: 20px !important;
}

.wp-gr .wp-google-content-inner::-webkit-scrollbar {
  width: 5px;
  background-color: rgba(170, 170, 170, 0.3);
  border-radius: 4px;
}

.wp-gr .wp-google-content-inner::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 4px;
}

.wp-google-right .wp-google-count {
  margin-top: 0.6em !important;
}

.wp-gr .wp-google-url {
  padding: 0.5em 1em !important;
  white-space: nowrap !important;
  border: solid 1px #424149;
  background-color: #424149 !important;
  color: #fff !important;
  font-size: 1.1rem !important;
  width: 11.79em !important;
  margin: 40px auto !important;
  transition: opacity 0.6s !important;
}
.wp-google-right .bold {
  font-size: 21px !important;
  font-weight: 600 !important;
  margin: 0 6px 0 0 !important;
  vertical-align: middle !important;
}
@media screen and (max-width: 767px) {
  .wp-google-right .bold {
    font-size: 16px !important;
    margin: 0 !important;
  }
}
.slid-item.realsize{
  .noimg{
    position: absolute;
    width: 100%;
    height: 100%;
    /* background: rgba(00,0,0,0.4); */
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.5rem;
  }
  .num{
    color: #fff;
  }
}
