@charset "UTF-8";
/*==========================================================================

   mixin

===========================================================================*/
/*--------------------------------------------------------------------------
   overwrite
---------------------------------------------------------------------------*/
/* xxx
-----------------------------------------------------------------*/
html {
  overflow-y: scroll !important;
  overscroll-behavior: none;
}
html.is-fixed.browser-safari {
  overscroll-behavior-y: contain;
}
/*html.is-fixed.dev-sd {
  overflow-y: hidden !important;
}*/
html[data-no='1'] {
  overflow-y: inherit !important;
}
html[data-no='1'] body {
  overflow: inherit !important;
}
html[data-no='1'] .l-page-wrapper {
  overflow: inherit !important;
}
html[data-no='1'] .l-page {
  overflow: inherit !important;
}

body {
  width: 100%;
  height: auto;
  overflow: hidden;
}

/*.load-complete body {
  height: auto;
}

.is-fixed.load-complete body {
  height: 100%;
  overflow: hidden;
}

body {
  opacity: 0;
}

.load-complete body {
  opacity: 1;
  -webkit-transition: opacity 1.5s ease-in-out;
  transition: opacity 1.5s ease-in-out;
}*/

.l-page__header {
  height: 0;
}

.top-page .l-page__main {
  padding-top: 135px;
}
@media only screen and (max-width: 767px) {
.top-page .l-page__main {
  padding-top: 75px;
}
}

/*--------------------------------------------------------------------------
   mv
---------------------------------------------------------------------------*/
.mv {
  overflow:hidden;
}
.mv_wrap {
  z-index: 99;
  position: relative;
  overflow: hidden;
}
.mv_wrap img {
  width: 100%;
}
.mv_wrap .kv00 {
  position: relative;
}

.mv_wrap li {
  opacity: 0;
  position: absolute;
  top:0;
  left:0;
}

.mv_wrap .cap {
  font-size:12px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8),-1px -1px 2px rgba(0, 0, 0, 0.8),0 0 2px rgba(0, 0, 0, 0.8);
  opacity: 0;
  position: absolute;
  bottom:1em;
  right: 1em;
}

.kv02_0 {
background: #4A362B;
background: linear-gradient(130deg, rgba(74, 54, 43, 1) 51%, rgba(46, 30, 21, 1) 100%);
}

.mv_sec04 li {
  animation-fill-mode: forwards;
}
.kv04_1.animate {
  animation: slideUp 4s ease-in-out 0s forwards;
}
@keyframes slideUp {
  0% {
    top: 0;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    top: -24%;
    opacity: 1;
  }
}

@media only screen and (max-width: 767px) {
.mv_wrap .cap {
  font-size:10px;
  bottom:.25em;
  right: .5em;
}
.kv04_1.animate {
  animation: slideUp 3s ease-in-out 0s forwards;
}
@keyframes slideUp {
  0% {
    top: 0;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    top: -28%;
    opacity: 1;
  }
}
}


/*--------------------------------------------------------------------------
   sec-mv
---------------------------------------------------------------------------*/
.sec-mv {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #000;
}
@media only screen and (max-width: 767px) {
  .sec-mv {
    height: calc(var(--vh) * 100);
  }
}
.sec-mv__scroll {
  position: absolute;
  left: 50%;
  bottom: 30px;
  translate: -50% 0;
  font-size: 14px;
  font-family: 'Times New Roman', 'Cormorant Garamond', 'Noto Serif JP', serif;
  font-weight: 700;
  color: #fff;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
  /*下からの距離が変化して全体が下→上→下に動く*/
}
@media only screen and (max-width: 767px) {
  .sec-mv__scroll {
    bottom: 30px;
  }
}
.sec-mv__scroll::before {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid;
  border-color: #fff #fff transparent transparent;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translate(-50%, 0) rotate(135deg);
  transform: translate(-50%, 0) rotate(135deg);
  -webkit-transition: top 0.2s;
  transition: top 0.2s;
  content: '';
  -webkit-transition: border-color 0.4s;
  transition: border-color 0.4s;
  -webkit-animation: arrowmove 1.5s ease-in-out infinite;
  animation: arrowmove 1.5s ease-in-out infinite;
}
@-webkit-keyframes arrowmove {
  0% {
    bottom: -10px;
  }
  40% {
    bottom: -15px;
  }
  80% {
    bottom: -10px;
  }
}
@keyframes arrowmove {
  0% {
    bottom: -10px;
  }
  40% {
    bottom: -15px;
  }
  80% {
    bottom: -10px;
  }
}
.sec-mv__content {
  position: absolute;
  top: 135px;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: calc(100vh - 135px);
  overflow: hidden;
  translate: 0 0;
  -webkit-transition: translate 1s cubic-bezier(0.86, 0, 0.07, 1);
  transition: translate 1s cubic-bezier(0.86, 0, 0.07, 1);
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .sec-mv__content {
    top: 75px;
    height: calc(100vh - 75px);
  }
}
@media only screen and (max-width: 767px) {
  .sec-mv__content {
    display: block;
    top: 75px;
    height: calc(var(--vh) * 100 - 75px);
  }
}
.sec-mv__content figure {
  position: relative;
  top: 0;
  left: 0;
  background: none;
  translate: 0 0;
}
.sec-mv__content .gaikan {
  width: 50%;
  overflow: hidden;
  background-color: #203475;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .sec-mv__content .gaikan {
    height: calc(100vh - 75px);
  }
}
@media only screen and (max-width: 767px) {
  .sec-mv__content .gaikan {
    width: 100%;
    height: calc(var(--vh) * 100 - 292px);
  }
}
.sec-mv__content .gaikan picture {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background-color: #203475;
}
.sec-mv__content .gaikan picture::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#203475),
    color-stop(20%, rgba(32, 52, 117, 0)),
    color-stop(80%, rgba(32, 52, 117, 0)),
    to(#203475)
  );
  background: linear-gradient(
    to right,
    #203475 0%,
    rgba(32, 52, 117, 0) 20%,
    rgba(32, 52, 117, 0) 80%,
    #203475 100%
  );
  z-index: 1;
}
.sec-mv__content .gaikan img {
  width: auto;
  height: calc(100vh - 135px);
  -webkit-transition: scale 10s;
  transition: scale 10s;
  z-index: 2;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .sec-mv__content .gaikan img {
    height: calc(100vh - 75px);
  }
}
@media only screen and (max-width: 767px) {
  .sec-mv__content .gaikan img {
    height: calc(var(--vh) * 100 - 292px);
  }
}
.sec-mv__content .gaikan figcaption {
  position: absolute;
  right: 20px;
  bottom: 10px;
  color: #fff;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .sec-mv__content .gaikan figcaption {
    font-size: 12px;
  }
}
.sec-mv__content .copy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50%;
  padding: 32px 15px;
  text-align: center;
  background: url('../../images/index/bg_mv.jpg') no-repeat 50% 50% / cover;
}
@media only screen and (max-width: 767px) {
  .sec-mv__content .copy {
    display: block;
    width: 100%;
    padding: 21px 15px;
  }
}
.sec-mv__content .copy img {
  max-width: 95%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .sec-mv__content .copy img {
    width: 225px;
    height: auto;
  }
}

/*--------------------------------------------------------------------------
   sec-action
---------------------------------------------------------------------------*/
.sec-action {
  position: relative;
  overflow: hidden;
}
.sec-action__info {
  padding: 40px 70px;
  padding: 35px 70px;
  background: url(../../images/index/bg_action_info_pc.png) center center/cover
    no-repeat;
  background-color: #694a3d;
}
@media screen and (max-height: 1350px) {
  .sec-action__info {
    padding: 2.6vw 5.18vw;
  }
}
@media only screen and (max-width: 767px) {
  .sec-action__info {
    padding: 35px 5.334%;
    background-image: url(../../images/index/bg_action_info_sp.png);
  }
}
.sec-action__info .img {
  text-align: center;
}
.sec-action__info img {
  max-width: 1055px;
  width: 100%;
  height: auto;
}
.sec-action__info .txt {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.sec-action__request {
  position: relative;
  overflow: hidden;
  padding: 127px 0 180px;
  background: url('../../images/index/bg_action_request_pc.jpg') no-repeat 50%
    50% / cover;
}
@media only screen and (max-width: 767px) {
  .sec-action__request {
    padding: 110px 5.33vw 150px;
  }
}
.sec-action__request .hdg {
  margin-bottom: 40px;
  font-family: 'Times New Roman', 'Cormorant Garamond', 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 500;
  color: #c9bd6a;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .sec-action__request .hdg {
    margin-bottom: 38px;
    font-size: 18px;
  }
}
.sec-action__request .txt {
  margin-bottom: 48px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .sec-action__request .txt {
    margin-bottom: 42px;
  }
}
.sec-action__request .txt img {
  max-width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .sec-action__request .txt img {
    max-width: 481px;
    width: 90%;
    height: auto;
  }
}
.sec-action__request .c-btn {
  margin: 0 auto;
}
.sec-action__request .loop-txt {
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100vw;
}
.sec-action__request .loop-txt__slide {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  overflow: hidden;
}
.sec-action__request .loop-txt__txt {
  opacity: 0.4;
  font-family: 'Times New Roman', 'Cormorant Garamond', 'Noto Serif JP', serif;
  font-size: 160px;
  font-weight: 300;
  color: #907a6e;
  line-height: 1;
  letter-spacing: 4px;
  white-space: nowrap;
  -webkit-animation: loop1 100s -50s linear infinite;
  animation: loop1 100s -50s linear infinite;
  width: 2250px;
}
@media only screen and (max-width: 767px) {
  .sec-action__request .loop-txt__txt {
    font-size: 130px;
    letter-spacing: 2px;
  }
}
.sec-action__request .loop-txt__txt--02 {
  -webkit-animation: loop2 100s linear infinite;
  animation: loop2 100s linear infinite;
}
@-webkit-keyframes loop1 {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes loop1 {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}
@keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}
.sec-action__merit {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 80px;
  background: #9a8852;
}
.sec-action__merit > li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 0 0 0 1px #b8ac86;
  box-shadow: 0 0 0 1px #b8ac86;
}
.sec-action__merit > li > span img {
  width: 100%;
  max-width: none;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .sec-action__merit {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 70px;
  }
  .sec-action__merit > li {
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .sec-action__merit > li:last-child {
    border-bottom: none;
  }
}

/*--------------------------------------------------------------------------
   sec-rebasic
---------------------------------------------------------------------------*/
.sec-rebasic {
  padding: 160px 0 170px;
  background: url('../../images/index/bg_rebasic_pc.jpg') no-repeat 50% 50% /
    cover;
}
@media only screen and (max-width: 767px) {
  .sec-rebasic {
    padding: 160px 0;
    background: url('../../images/index/bg_rebasic_sp.jpg') no-repeat 50% 50% /
      cover;
  }
}
.sec-rebasic .hdg {
  margin-bottom: 58px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .sec-rebasic .hdg img {
    max-width: 279px;
    height: auto;
  }
}
.sec-rebasic .txt {
  text-align: center;
  font-size: 18px;
  color: #694a3d;
  line-height: 2.5;
}
@media only screen and (max-width: 767px) {
  .sec-rebasic .txt {
    font-size: 16px;
  }
}
.sec-rebasic .txt:not(:first-of-type) {
  margin-top: 1em;
}
.sec-rebasic .txt br.mi-sp {
  display: none;
}
@media screen and (max-width: 570px) {
  .sec-rebasic .txt br.mi-sp {
    display: block;
  }
}
.sec-rebasic .c-btn {
  margin: 0 auto;
}
.sec-rebasic__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 100px;
}
@media screen and (max-width: 1248px) {
  .sec-rebasic__link {
    margin: 0 24px;
  }
}
@media only screen and (max-width: 767px) {
  .sec-rebasic__link {
    display: block;
    margin: 0;
    padding-top: 77px;
  }
}
.sec-rebasic__link .item {
  position: relative;
  width: 50%;
  aspect-ratio: 600/371;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .sec-rebasic__link .item {
    width: 100%;
    aspect-ratio: 75/66;
  }
}
.sec-rebasic__link .item__catch {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sec-rebasic__link .item__catch img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
  -webkit-transition: scale 0.6s ease;
  transition: scale 0.6s ease;
}
.sec-rebasic__link .item__catch figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 14px;
  z-index: 3;
}
.sec-rebasic__link .item--coming .item__catch::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(105, 74, 61, 0.85);
  content: '';
  z-index: 2;
}
.sec-rebasic__link .item--coming .item__catch::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% 70px;
  padding: 5px 0;
  width: 280px;
  border: 1px solid #fff;
  content: 'COMING SOON';
  font-size: 26px;
  color: #fff;
  font-family: 'Times New Roman', 'Cormorant Garamond', 'Noto Serif JP', serif;
  line-height: 1;
  text-align: center;
  z-index: 3;
}
@media screen and (max-width: 1248px) {
  .sec-rebasic__link .item--coming .item__catch::after {
    translate: -50% 5.6vw;
    width: 22.4vw;
    font-size: 2.1vw;
  }
}
@media only screen and (max-width: 767px) {
  .sec-rebasic__link .item--coming .item__catch::after {
    translate: -50% 55px;
    width: 300px;
    font-size: 21px;
  }
}
.sec-rebasic__link .item__ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  text-align: center;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .sec-rebasic__link .item__ttl {
    translate: -50% -65%;
  }
}
.sec-rebasic__link .item__ttl .en {
  display: block;
  font-size: 70px;
  font-family: 'Times New Roman', 'Cormorant Garamond', 'Noto Serif JP', serif;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1248px) {
  .sec-rebasic__link .item__ttl .en {
    font-size: 5.6vw;
  }
}
@media only screen and (max-width: 767px) {
  .sec-rebasic__link .item__ttl .en {
    font-size: 60px;
    letter-spacing: 0.18em;
  }
}
@media screen and (max-width: 500px) {
  .sec-rebasic__link .item__ttl .en {
    font-size: 12vw;
  }
}
.sec-rebasic__link .item__ttl .ja {
  display: block;
  margin-top: 10px;
  font-size: 24px;
  line-height: 1;
}
@media screen and (max-width: 1248px) {
  .sec-rebasic__link .item__ttl .ja {
    font-size: 1.9vw;
  }
}
@media only screen and (max-width: 767px) {
  .sec-rebasic__link .item__ttl .ja {
    font-size: 21px;
  }
}
.sec-rebasic__link .item--access .item__ttl .en {
  font-size: 60px;
}
@media screen and (max-width: 1248px) {
  .sec-rebasic__link .item--access .item__ttl .en {
    font-size: 4.8vw;
  }
}
@media only screen and (max-width: 767px) {
  .sec-rebasic__link .item--access .item__ttl .en {
    font-size: 50px;
  }
}
.sec-rebasic__link .item a::before {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 10px;
  background: url('../../images/common/ico_arrow.svg') no-repeat 50% 50% / cover;
  content: '';
  z-index: 2;
  -webkit-transition: right 0.2s ease-in-out;
  transition: right 0.2s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .sec-rebasic__link .item a::before {
    bottom: 25px;
    right: 25px;
    width: 48px;
    height: 12px;
  }
}
.mode-pc .sec-rebasic__link .item a:hover img,
.mode-sp .sec-rebasic__link .item a:active img {
  scale: 1.1;
}
.mode-pc .sec-rebasic__link .item a:hover::before,
.mode-sp .sec-rebasic__link .item a:active::before {
  right: 16px;
}
@media only screen and (max-width: 767px) {
  .mode-pc .sec-rebasic__link .item a:hover::before,
  .mode-sp .sec-rebasic__link .item a:active::before {
    right: 13px;
  }
}
.sec-rebasic__link--3col .item {
  width: 33.3333333333%;
  aspect-ratio: 4/5;
}
@media only screen and (max-width: 767px) {
  .sec-rebasic__link--3col .item {
    width: 100%;
    aspect-ratio: 75/66;
  }
}
.sec-rebasic__link--3col .item__ttl .en {
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .sec-rebasic__link--3col .item__ttl .en {
    letter-spacing: 0.2em;
  }
}
.sec-rebasic__link--3col .item a::before {
  bottom: 20px;
  right: 20px;
}
@media only screen and (max-width: 767px) {
  .sec-rebasic__link--3col .item a::before {
    bottom: 25px;
    right: 25px;
  }
}

/*--------------------------------------------------------------------------
   sec-appeal
---------------------------------------------------------------------------*/
.sec-appeal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
  padding: 78px 0;
}
@media only screen and (max-width: 767px) {
  .sec-appeal {
    display: block;
    padding: 70px 20px;
  }
}
.sec-appeal__box {
  width: 360px;
}
@media screen and (max-width: 1280px) {
  .sec-appeal__box {
    width: 28%;
  }
}
@media only screen and (max-width: 767px) {
  .sec-appeal__box {
    margin: 0 auto 70px;
    max-width: 335px;
    width: 100%;
  }
  .sec-appeal__box:last-of-type {
    margin-bottom: 0;
  }
}
.sec-appeal__box .hdg {
  margin-bottom: 25px;
  font-size: 20px;
  font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
  font-weight: 500;
  list-style: 1;
  color: #c9bd6a;
  text-align: center;
}
.sec-appeal__box .catch img {
  width: 100%;
  height: auto;
}

/*--------------------------------------------------------------------------
   sec-map
---------------------------------------------------------------------------*/
.sec-map {
  position: relative;
  padding: 140px 84px;
  background-color: #efe8d8;
}
@media screen and (max-width: 1200px) {
  .sec-map {
    padding: 140px 5vw;
  }
}
@media only screen and (max-width: 767px) {
  .sec-map {
    padding: 110px 5.33vw 200px;
  }
}
.sec-map__inline {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  max-width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .sec-map__inline {
    display: block;
  }
}
.sec-map__hdg {
  width: 380px;
  padding: 74px 50px 0;
}
@media screen and (max-width: 1200px) {
  .sec-map__hdg {
    padding: 6.17vw 2.17vw 0;
  }
}
@media only screen and (max-width: 767px) {
  .sec-map__hdg {
    width: 100%;
    padding: 0;
  }
}
.sec-map__hdg .hdg {
  margin-bottom: 50px;
  color: #694a3d;
}
@media screen and (max-width: 1200px) {
  .sec-map__hdg .hdg {
    margin-bottom: 4.17vw;
  }
}
@media only screen and (max-width: 767px) {
  .sec-map__hdg .hdg {
    margin-bottom: 40px;
    text-align: center;
  }
}
.sec-map__hdg .hdg__en {
  display: block;
  margin-bottom: 20px;
  font-size: 100px;
  font-family: 'Times New Roman', 'Cormorant Garamond', 'Noto Serif JP', serif;
  line-height: 1;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 1000px) {
  .sec-map__hdg .hdg__en {
    font-size: 10vw;
  }
}
@media only screen and (max-width: 767px) {
  .sec-map__hdg .hdg__en {
    margin-bottom: 10px;
    font-size: 70px;
  }
}
.sec-map__hdg .hdg__ja {
  display: block;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1000px) {
  .sec-map__hdg .hdg__ja {
    font-size: 2.4vw;
  }
}
@media only screen and (max-width: 767px) {
  .sec-map__hdg .hdg__ja {
    font-size: 21px;
  }
}
@media screen and (max-width: 1200px) {
  .sec-map__hdg .c-btn {
    min-width: 100%;
    width: 28.33vw;
  }
}
@media only screen and (max-width: 767px) {
  .sec-map__hdg .c-btn {
    position: absolute;
    left: calc(50% - 140px);
    bottom: 100px;
    min-width: auto;
    width: 280px;
  }
}
.sec-map__img {
  padding-right: 50px;
}
@media screen and (max-width: 1200px) {
  .sec-map__img {
    padding-right: 4.17vw;
  }
}
@media only screen and (max-width: 767px) {
  .sec-map__img {
    padding-right: 0;
  }
}
.sec-map__img img {
  width: 100%;
  height: auto;
}

/*--------------------------------------------------------------------------
   sec-plan
---------------------------------------------------------------------------*/
.sec-plan {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 560px;
  padding: 0 110px;
  background: url('../../images/index/bg_plan_pc.jpg') no-repeat 50% 50% / cover;
}
@media only screen and (max-width: 767px) {
  .sec-plan {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: auto;
    padding: 50vw 5.33vw;
  }
}
@media only screen and (max-width: 767px) {
  .sec-plan {
    background: url('../../images/index/bg_plan_sp.jpg') no-repeat 50% 50% /
      cover;
  }
}
.sec-plan .hdg {
  margin-bottom: 66px;
}
@media only screen and (max-width: 767px) {
  .sec-plan .hdg {
    margin-bottom: 40px;
    text-align: center;
  }
}
.sec-plan .hdg__en {
  display: block;
  margin-bottom: 20px;
  font-size: 100px;
  font-family: 'Times New Roman', 'Cormorant Garamond', 'Noto Serif JP', serif;
  line-height: 1;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 1000px) {
  .sec-plan .hdg__en {
    font-size: 10vw;
  }
}
@media only screen and (max-width: 767px) {
  .sec-plan .hdg__en {
    margin-bottom: 10px;
    font-size: 70px;
  }
}
.sec-plan .hdg__ja {
  display: block;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1000px) {
  .sec-plan .hdg__ja {
    font-size: 2.4vw;
  }
}
@media only screen and (max-width: 767px) {
  .sec-plan .hdg__ja {
    font-size: 21px;
    line-height: 2;
  }
}
@media screen and (max-width: 1000px) {
  .sec-plan .c-btn {
    width: 34vw;
  }
}
@media only screen and (max-width: 767px) {
  .sec-plan .c-btn {
    margin: 0 auto;
    width: 280px;
  }
}
.sec-plan__cap {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 14px;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .sec-plan__cap {
    right: 8px;
    bottom: 8px;
    font-size: 12px;
  }
}

/*--------------------------------------------------------------------------
   sec-brand
---------------------------------------------------------------------------*/
.sec-brand {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 560px;
  padding: 0 110px;
  background: url('../../images/index/bg_brand_pc.jpg') no-repeat 50% 50% /
    cover;
}
@media only screen and (max-width: 767px) {
  .sec-brand {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: auto;
    padding: 50vw 5.33vw;
  }
}
@media only screen and (max-width: 767px) {
  .sec-brand {
    background: url('../../images/index/bg_brand_sp.jpg') no-repeat 50% 50% /
      cover;
  }
}
.sec-brand .hdg {
  margin-bottom: 66px;
}
@media only screen and (max-width: 767px) {
  .sec-brand .hdg {
    margin-bottom: 40px;
    text-align: center;
  }
}
.sec-brand .hdg__en {
  display: block;
  margin-bottom: 20px;
  font-size: 100px;
  font-family: 'Times New Roman', 'Cormorant Garamond', 'Noto Serif JP', serif;
  line-height: 1;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 1000px) {
  .sec-brand .hdg__en {
    font-size: 10vw;
  }
}
@media only screen and (max-width: 767px) {
  .sec-brand .hdg__en {
    margin-bottom: 10px;
    font-size: 70px;
  }
}
.sec-brand .hdg__ja {
  display: block;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1000px) {
  .sec-brand .hdg__ja {
    font-size: 2.4vw;
  }
}
@media only screen and (max-width: 767px) {
  .sec-brand .hdg__ja {
    font-size: 21px;
    line-height: 2;
  }
}
@media screen and (max-width: 1000px) {
  .sec-brand .c-btn {
    width: 34vw;
  }
}
@media only screen and (max-width: 767px) {
  .sec-brand .c-btn {
    margin: 0 auto;
    width: 280px;
  }
}
.sec-brand__cap {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 14px;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .sec-brand__cap {
    right: 8px;
    bottom: 8px;
    font-size: 12px;
  }
}

/*--------------------------------------------------------------------------
   sec-branchera
---------------------------------------------------------------------------*/
.sec-branchera {
  padding: 82px 50px;
  background-color: #694a3d;
}
@media only screen and (max-width: 767px) {
  .sec-branchera {
    padding: 35px 5.33vw 30px;
  }
}
.sec-branchera__inline {
  max-width: 890px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .sec-branchera__inline {
    max-width: 600px;
  }
}
.sec-branchera__hdg {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #fff;
  text-align: center;
  font-size: 18px;
}
.sec-branchera .swiper {
  padding-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .sec-branchera .swiper {
    padding-bottom: 30px;
  }
}
.sec-branchera .swiper .swiper-slide img {
  width: 100%;
  height: auto;
}
.sec-branchera .swiper .swiper-slide a {
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.mode-pc .sec-branchera .swiper .swiper-slide a:hover,
.mode-sp .sec-branchera .swiper .swiper-slide a:active {
  opacity: 0.75;
}
.sec-branchera .swiper .swiper-pagination {
  bottom: 0;
}
.sec-branchera .swiper .swiper-pagination .swiper-pagination-bullet {
  margin: 0 15px;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: #968178;
  opacity: 1 !important;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media only screen and (max-width: 767px) {
  .sec-branchera .swiper .swiper-pagination .swiper-pagination-bullet {
    margin: 0 10px;
    width: 4px;
    height: 4px;
  }
}
.sec-branchera .swiper .swiper-pagination .swiper-pagination-bullet-active,
.mode-pc
  .sec-branchera
  .swiper
  .swiper-pagination
  .swiper-pagination-bullet:hover,
.mode-sp
  .sec-branchera
  .swiper
  .swiper-pagination
  .swiper-pagination-bullet:active {
  background-color: #fff;
}

/*--------------------------------------------------------------------------
   sec-info
---------------------------------------------------------------------------*/
.sec-info {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 50px 0;
  background-color: #eee6d6;
}
@media screen and (max-width: 1248px) {
  .sec-info {
    margin: 0 24px;
  }
}
@media only screen and (max-width: 767px) {
  .sec-info {
    margin: 0 20px 70px;
    padding: 45px 35px;
  }
}
.sec-info__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .sec-info__box {
    display: block;
  }
}
.sec-info__hdg {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 41%;
  font-size: 24px;
  font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
  font-weight: 500;
  list-style: 1;
  color: #c9bd6a;
}
@media only screen and (max-width: 767px) {
  .sec-info__hdg {
    width: 100%;
    margin-bottom: 25px;
    font-size: 25px;
    text-align: center;
  }
}
.sec-info__link {
  width: 59%;
  border-left: 1px solid #dbd1c1;
}
@media only screen and (max-width: 767px) {
  .sec-info__link {
    width: 100%;
    border-left: none;
  }
}
.sec-info__link .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.5em;
  padding: 0 50px 0 100px;
  color: #4a342a;
  line-height: 1.5;
}
@media screen and (max-width: 1248px) {
  .sec-info__link .item {
    padding: 0 4vw 0 8vw;
  }
}
@media only screen and (max-width: 767px) {
  .sec-info__link .item {
    display: block;
    margin-bottom: 13px;
    padding: 0 0 13px;
    border-bottom: 1px solid #dbd1c1;
  }
  .sec-info__link .item:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
}
.sec-info__link .item__date {
  width: 140px;
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  .sec-info__link .item__date {
    width: 120px;
  }
}
@media only screen and (max-width: 767px) {
  .sec-info__link .item__date {
    display: block;
    width: 100%;
    margin-bottom: 0.5em;
    font-size: 14px;
    line-height: 1;
  }
}
.sec-info__link .item__hdg {
  width: calc(100% - 140px);
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  .sec-info__link .item__hdg {
    width: calc(100% - 120px);
  }
}
@media only screen and (max-width: 767px) {
  .sec-info__link .item__hdg {
    width: 100%;
    font-size: 14px;
  }
}
.sec-info__link .item a {
  text-decoration: underline;
}
.sec-info__link .item a:hover {
  text-decoration: none;
}

/* modal
-----------------------------------------------------------------*/
.modal {
  /*opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;*/
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999999;
}
.modal.active {
  opacity: 1;
  visibility: visible;
}


.modal img {
  width: 100%;
  height: auto;
}

.modal .w-camp a:hover {
  opacity: 0.8 !important;
}


.modal .close-btn {
  position: absolute;
  right: 0px;
  top: -32px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 100;
}

.modal .close-btn::before,
.modal .close-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background-color: #fff;
  transform-origin: center;
}

.modal .close-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal .close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
/*.modal .close-btn:hover {
  scale: 1.2;
}

@media (max-width: 800px) {
  .modal .close-btn {
    right: -3vw;
    top: -13vw;
  }
}*/
.modal .modal-bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
  left: 0;
}

.modal .modal-bg:hover {
  cursor: pointer;
}

.modal .modal-box {
  /* background: #fff;*/
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 720px;
}

@media (max-height: 750px) {
  .modal .modal-box {
    width: 640px;
  }
}
@media (max-width: 1060px) {
  .modal .modal-box {
    width: 720px;
  }
}
@media (max-width: 1550px) and (max-height: 600px) {
  .modal .modal-box {
    width: 500px;
  }
}
@media (max-width: 1550px) and (max-height: 500px) {
  .modal .modal-box {
    width: 400px;
  }
}
@media (max-width: 800px) {
  .modal .modal-box {
    width: 75%;
    max-height: 88vh;
    /* padding: 5%;*/
  }
}
@media (max-width: 900px) and (max-height: 500px) {
  .modal .modal-box {
    width: auto;
    max-height: calc(100vh - 100px);
    /* padding: 5%;*/
  }
  .modal .modal-box img {
    width: auto;
    height: calc(100vh - 100px);
  }
}

/*--------------------------------------------------------------------------
   custom animation
---------------------------------------------------------------------------*/
/* opening
-----------------------------------------------------------------*/
.opening {
  /***************************************************
   * Generated by SVG Artista on 4/1/2024, 7:56:28 PM
   * MIT license (https://opensource.org/licenses/MIT)
   * W. https://svgartista.net
   **************************************************/
}
.opening svg .svg-elem-1 {
  stroke-dashoffset: 511.0443115234px;
  stroke-dasharray: 511.0443115234px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715)
      0s,
    fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s,
    fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
}
.opening svg.active .svg-elem-1 {
  stroke-dashoffset: 0;
  fill: rgb(87, 58, 41);
}
.opening svg .svg-elem-2 {
  stroke-dashoffset: 265.5094604492px;
  stroke-dasharray: 265.5094604492px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715)
      0.12s,
    fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s,
    fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
}
.opening svg.active .svg-elem-2 {
  stroke-dashoffset: 0;
  fill: rgb(87, 58, 41);
}
.opening svg .svg-elem-3 {
  stroke-dashoffset: 211.2270202637px;
  stroke-dasharray: 211.2270202637px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715)
      0.24s,
    fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s,
    fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s;
}
.opening svg.active .svg-elem-3 {
  stroke-dashoffset: 0;
  fill: rgb(87, 58, 41);
}
.opening svg .svg-elem-4 {
  stroke-dashoffset: 138.5911712646px;
  stroke-dasharray: 138.5911712646px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715)
      0.36s,
    fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s,
    fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s;
}
.opening svg.active .svg-elem-4 {
  stroke-dashoffset: 0;
  fill: rgb(87, 58, 41);
}
.opening svg .svg-elem-5 {
  stroke-dashoffset: 197.8504486084px;
  stroke-dasharray: 197.8504486084px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715)
      0.48s,
    fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s,
    fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s;
}
.opening svg.active .svg-elem-5 {
  stroke-dashoffset: 0;
  fill: rgb(87, 58, 41);
}
.opening svg .svg-elem-6 {
  stroke-dashoffset: 520.8025512695px;
  stroke-dasharray: 520.8025512695px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715)
      0.6s,
    fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s,
    fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s;
}
.opening svg.active .svg-elem-6 {
  stroke-dashoffset: 0;
  fill: rgb(87, 58, 41);
}
.opening svg .svg-elem-7 {
  stroke-dashoffset: 246.4183349609px;
  stroke-dasharray: 246.4183349609px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715)
      0.72s,
    fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s,
    fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s;
}
.opening svg.active .svg-elem-7 {
  stroke-dashoffset: 0;
  fill: rgb(87, 58, 41);
}
.opening svg .svg-elem-8 {
  stroke-dashoffset: 265.5101318359px;
  stroke-dasharray: 265.5101318359px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715)
      0.84s,
    fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.84s,
    fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s;
}
.opening svg.active .svg-elem-8 {
  stroke-dashoffset: 0;
  fill: rgb(87, 58, 41);
}
.opening svg .svg-elem-9 {
  stroke-dashoffset: 211.5158691406px;
  stroke-dasharray: 211.5158691406px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715)
      0.96s,
    fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.96s,
    fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s;
}
.opening svg.active .svg-elem-9 {
  stroke-dashoffset: 0;
  fill: rgb(87, 58, 41);
}
.opening svg .svg-elem-10 {
  stroke-dashoffset: 33.1436386108px;
  stroke-dasharray: 33.1436386108px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715)
      1.08s,
    fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.08s,
    fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7s;
}
.opening svg.active .svg-elem-10 {
  stroke-dashoffset: 0;
  fill: rgb(87, 58, 41);
}

/* mv
-----------------------------------------------------------------*/
html[data-scene='mv'] .sec-mv__content .gaikan picture {
  -webkit-animation: gaikan 6s ease-in-out;
  animation: gaikan 6s ease-in-out;
}
@-webkit-keyframes gaikan {
  0% {
    scale: 1.2;
  }
  100% {
    scale: 1;
  }
}
@keyframes gaikan {
  0% {
    scale: 1.2;
  }
  100% {
    scale: 1;
  }
}

/* appeal
-----------------------------------------------------------------*/
.sec-appeal__box--residence.is-animated {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
@media only screen and (max-width: 767px) {
  .sec-appeal__box--residence.is-animated {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }
}

.sec-appeal__box--parking.is-animated {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}
@media only screen and (max-width: 767px) {
  .sec-appeal__box--parking.is-animated {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }
}

/* sec-rebasic
-----------------------------------------------------------------*/
.sec-rebasic .hdg.is-animate {
  opacity: 0;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
.sec-rebasic .hdg.is-animate + .c-btn {
  opacity: 0;
}
.sec-rebasic .hdg.is-animated {
  opacity: 1;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
  -webkit-filter: blur(0);
  filter: blur(0);
  -webkit-transition: opacity 1s ease-in-out, -webkit-filter 1s ease;
  transition: opacity 1s ease-in-out, -webkit-filter 1s ease;
  transition: opacity 1s ease-in-out, filter 1s ease;
  transition: opacity 1s ease-in-out, filter 1s ease, -webkit-filter 1s ease;
}
.sec-rebasic .hdg.is-animated + .c-btn {
  opacity: 1;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}


/* closed
-----------------------------------------------------------------*/

.biz_closed {
  border:1px solid rgba(255, 255, 255, .3);
  font-size:16px;
  margin:3em auto 0;
  max-width: 720px;
  padding: 2em;
  text-align: center;
  width: 100%;
}

@media only screen and (max-width: 800px) {
.biz_closed {
  font-size:14px;
  padding: 1em;
}
}

/* float
-----------------------------------------------------------------*/
.float-banner {
  position: fixed;
  bottom: 80px;
  right: 0;
  z-index: 9;
  transition: opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
  }
  .float-banner.is-visible {
  opacity: 1;
  pointer-events: all;
  }
  .float-banner .banner-space {
  max-width: 320px;
  position: relative;
  }
  .float-banner img {width:100%;}
  .weekday-bnr {
  cursor: pointer;
  }
  .float-close {
  background-color: #444;
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  right: 0;
  top: -24px;
  z-index: 800;
  cursor: pointer;
  }
  .float-close::before,
  .float-close::after {
  width: 16px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  content: '';
  background: #fff;
  }
  .float-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
  }
  .float-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
  }
  
  @media only screen and (max-width: 767px) {
  .float-banner {
  bottom: 144px;
  }
  .float-banner .banner-space {max-width: 240px;}
  }

/* video
-----------------------------------------------------------------*/
.remodal {
  max-width: 960px!important;
  padding: 0!important;
}
.remodal-close {z-index: 999999;}
.videowrap {
width: 100%;
}

.videowrap video {
aspect-ratio: 16 / 9;
width: 100%;
height: auto;
}


/* banner
-----------------------------------------------------------------*/
.sec-banner {
  max-width: 900px;
  margin: 0 auto 40px;
}

.sec-banner .item {
  cursor: pointer;
  margin-bottom: 32px;
}

.sec-banner img {
  width: 100%;
}

@media only screen and (max-width: 901px) {
  .sec-banner {margin:0 24px 24px;}

  .sec-banner .item {margin-bottom: 24px;}
}
