@charset "UTF-8";
/*
 * 分譲ページのテンプレートファイルを記載
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* _remodal.scss -------------------------------------------------- */
html.remodal-is-locked {
  overflow: hidden;
  touch-action: none;
}

.remodal,
[data-remodal-id] {
  display: none;
}

[data-remodal-target] {
  cursor: pointer;
}

.remodal-overlay {
  position: fixed;
  z-index: 9999999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}

.remodal-wrapper {
  position: fixed;
  z-index: 10000000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}

.remodal-overlay,
.remodal-wrapper {
  backface-visibility: hidden;
}

.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

.remodal-is-initialized {
  display: inline-block;
}

.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  filter: blur(3px);
}

.remodal-overlay {
  background: rgba(43, 46, 56, 0.9);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  animation-name: remodal-overlay-closing-keyframes;
}

.remodal-wrapper {
  padding: 0;
}

.remodal {
  box-sizing: border-box;
  width: 100%;
  padding: 0;
  transform: translate3d(0, 0, 0);
  background: #fff;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  animation-name: remodal-closing-keyframes;
}

.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

.remodal-close {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  color: #333;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "×";
  text-align: center;
}

.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

@keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0.95);
    opacity: 0;
    filter: blur(0);
  }
}
@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@media only screen and (min-width: 768px) {
  .remodal.modalMsgWin {
    max-width: 570px;
    padding: 35px;
  }
}
.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}

/* _slick.scss -------------------------------------------------- */
.slick-slider {
  position: relative;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* 共通--------------------------------------------------------------- */
/* _base.scss -------------------------------------------------- */
html {
  overflow-x: hidden;
}

body {
  font-family: "Noto Serif JP", serif-apple-system-body, blinkMacSystemFont, "Helvetica Neue", Arial, "游明朝体", YuMincho, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  background-color: #1B1B1B;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-size: 16px;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-variant-east-asian: proportional-width;
  overflow-wrap: break-word;
  word-wrap: break-word;
  text-rendering: optimizelegibility;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.imgFit {
  overflow: hidden;
  position: relative;
  display: block;
}
.imgFit img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.imgCont {
  display: block;
  position: relative;
}
.imgCont img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

button {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

/* _common.scss -------------------------------------------------- */
.l-container {
  box-sizing: border-box;
  max-inline-size: none;
  margin-inline: 24px;
}
@media (min-width: 1072px) {
  .l-container {
    max-inline-size: 1024px;
    margin-inline: auto;
  }
}
@media (min-width: 1328px) {
  .l-container {
    max-inline-size: 1280px;
  }
}

.l-inner {
  box-sizing: initial;
  max-inline-size: 1000px;
  margin-inline: auto;
  padding-inline: 16px;
}

.l-section {
  padding-block-start: 192px;
}

.l-section-heading {
  margin-block-end: 80px;
}

.l-entry {
  display: flex;
  gap: 0.8px;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.l-entry__block.p-contact-box__entry-box:only-child {
  flex: 1;
  max-width: 200px;
  justify-content: center;
}

.l-scroll-top {
  position: fixed;
  right: 74px;
  bottom: 6px;
  z-index: 1000;
}

.mt00 {
  margin-top: 0px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mt110 {
  margin-top: 110px !important;
}

.mt120 {
  margin-top: 120px !important;
}

.mt130 {
  margin-top: 130px !important;
}

.mt140 {
  margin-top: 140px !important;
}

.mt150 {
  margin-top: 150px !important;
}

.mt160 {
  margin-top: 160px !important;
}

.mt170 {
  margin-top: 170px !important;
}

.mt180 {
  margin-top: 180px !important;
}

.mt190 {
  margin-top: 190px !important;
}

.mt200 {
  margin-top: 200px !important;
}

.mb00 {
  margin-bottom: 0px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mb110 {
  margin-bottom: 110px !important;
}

.mb120 {
  margin-bottom: 120px !important;
}

.mb130 {
  margin-bottom: 130px !important;
}

.mb140 {
  margin-bottom: 140px !important;
}

.mb150 {
  margin-bottom: 150px !important;
}

.mb160 {
  margin-bottom: 160px !important;
}

.mb170 {
  margin-bottom: 170px !important;
}

.mb180 {
  margin-bottom: 180px !important;
}

.mb190 {
  margin-bottom: 190px !important;
}

.mb200 {
  margin-bottom: 200px !important;
}

.l-all__caption {
  line-height: 1.5;
  font-size: 12px;
  font-weight: 500;
}

.l-all__caption-list .l-all__caption {
  line-height: 2.2;
  font-size: 12px;
  padding-left: 1.5em;
  color: #909090;
  position: relative;
}
.l-all__caption-list .l-all__caption::before {
  content: "※";
  position: absolute;
  font-size: 12px;
  left: 0;
}

.l-bg-gray {
  background: #FAFAFB;
}

.l-category__wrap {
  margin-block-end: 1.5rem;
}

.l-category {
  font-size: 1.125rem;
  line-height: 1.6;
  padding-block-end: 1rem;
  border-bottom: 1px solid #B2BBC5;
  position: relative;
}
.l-category::after {
  content: "";
  position: absolute;
  top: 100%;
  display: flex;
  max-width: 4.5rem;
  width: 100%;
  height: 1px;
  background-color: #279FBE;
}

@media screen and (max-width: 1400px) {
  .l-entry {
    display: none;
  }
}
@media screen and (min-width: 0px) and (max-width: 1400px) {
  .l-entry {
    width: 100%;
  }
  .l-scroll-top {
    right: 16px;
    bottom: 90px;
  }
}
/* _l-header.scss -------------------------------------------------- */
.l-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 32px;
  height: 98px;
  color: #ffffff;
  position: fixed;
  z-index: 999;
  background: #0E0E0E;
}

.l-header__logo {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.l-header__logo img {
  width: 100%;
  height: auto;
  max-width: 298px;
  vertical-align: super;
  transition: opacity 0.3s ease;
}
.l-header__logo img:hover {
  opacity: 0.5;
}

.l-header__logo-area {
  display: flex;
  align-items: center;
  gap: 32px;
}
.l-header__logo-area .l-header__link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  line-height: 1;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.l-header__logo-area .l-header__link:hover {
  opacity: 0.5;
  text-decoration: none;
}
.l-header__logo-area .l-header__link img {
  display: block;
  width: 12px;
  height: 12px;
}

.l-header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
  max-width: -moz-max-content;
  max-width: max-content;
  flex-shrink: 0;
  justify-content: flex-end;
}

.l-header__menu {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 16px;
}

.l-header__top-list {
  display: flex;
  gap: 20px;
}

.l-header__top-item:not(:last-child) {
  border-right: 1px solid #707070;
  padding-right: 20px;
}
.l-header__top-item a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  line-height: 1;
  padding-block: 2.5px;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.l-header__top-item a:hover {
  opacity: 0.5;
  text-decoration: none;
}
.l-header__top-item a img {
  display: block;
  width: auto;
  height: auto;
}

.l-header__top-item-back {
  border: 1px solid #EEEEEE;
  width: 204px;
  background: #EDF4F7;
}
.l-header__top-item-back a {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: 21px 17px;
}
.l-header__top-item-back a > span {
  font-weight: 500;
  color: #333333;
}
.l-header__top-item-back img {
  width: 13px;
  height: 13px;
}

.l-header__bottom-menu {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.l-header__bottom-list {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 16px;
  min-height: 45px;
}

.l-header__bottom-item > * {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: opacity 0.3s ease;
}
.l-header__bottom-item > *:hover {
  opacity: 0.5;
}
.l-header__bottom-item > * .ja {
  font-size: 12px;
  color: #ffffff;
}
.l-header__bottom-item > * .en {
  font-size: 10px;
  color: #909090;
  font-family: "Cormorant Garamond", serif, "Yu Mincho", "YuMincho";
}

@media screen and (max-width: 1400px) {
  .l-header__logo-area .l-header__link {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1800px) {
  .l-header__logo img {
    max-width: 200px;
    height: auto;
  }
  .l-header__bottom-list {
    gap: 24px;
  }
}
@media screen and (min-width: 0px) and (max-width: 1400px) {
  .l-header {
    width: 100%;
    height: 55px;
    padding-inline: 16px;
  }
  .l-header__logo {
    z-index: 999999;
    height: 23px;
  }
  .l-header__logo img {
    max-width: 178px;
    flex: 1;
  }
  .l-header__top-item-back {
    width: 160px;
  }
  .l-header__top-item-back > a {
    min-height: 25px;
    font-size: 12px;
  }
  .l-header__top-menu,
  .l-header__bottom-menu {
    display: none;
  }
  .l-header--simple .l-header__top-menu,
  .l-header--simple .l-header__bottom-menu {
    display: block;
  }
  .l-header__top-menu {
    margin-left: auto;
  }
}
/* _l-drawer.scss -------------------------------------------------- */
.l-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 999999;
  background: #1a1a1a;
  color: #fff;
  overflow-x: hidden;
  overflow-y: auto;
}

.l-drawer__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.l-drawer__heading {
  padding: 16px;
}

.l-drawer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.l-drawer__logo > img {
  max-width: 178px;
  width: 100%;
  height: auto;
}

.l-drawer__logo-text {
  font-weight: 600;
  line-height: 1;
  flex-shrink: 0;
}

.l-drawer__nav {
  padding-inline: 24px;
}

.l-drawer__top-menu {
  margin-bottom: 20px;
}

.l-drawer__top-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.l-drawer__top-item a {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  font-size: 12px;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.l-drawer__top-item a:hover {
  opacity: 0.5;
  text-decoration: none;
}
.l-drawer__top-item img {
  width: 14px;
  height: 14px;
}

.l-drawer__bottom-menu {
  margin-block: 48px;
  overflow: scroll;
}

.l-drawer__bottom-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.l-drawer__bottom-item {
  border-bottom: 0.5px solid #626262;
}
.l-drawer__bottom-item a {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 0 8px 16px;
  width: 100%;
  height: 100%;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
  transition: opacity 0.3s ease;
}
.l-drawer__bottom-item a:hover {
  opacity: 0.5;
}
.l-drawer__bottom-item .en {
  color: #909090;
  font-size: 10px;
}

.l-drawer__top-item-back {
  width: 100%;
}
.l-drawer__top-item-back a {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: 21px 17px;
}
.l-drawer__top-item-back a > span {
  font-weight: 500;
  color: #333333;
}
.l-drawer__top-item-back img {
  width: 13px;
  height: 13px;
}

@media screen and (min-width: 0px) and (max-width: 1400px) {
  .l-drawer {
    display: block;
    translate: 0 -100%;
    transition: translate 0.3s ease;
  }
  body.is-drawer-open-noie .l-drawer {
    translate: 0% 0;
  }
  .l-drawer__button {
    display: block;
  }
}
/* _l-drawer-button.scss -------------------------------------------------- */
.l-drawer-button {
  top: 16px;
  right: 8px;
  position: fixed;
  z-index: 9999999;
}

@media screen and (min-width: 0px) and (max-width: 1400px) {
  .l-drawer-button {
    display: block;
  }
  .l-drawer__entry-button {
    display: flex;
    gap: 8px;
  }
}
/* _l-footer.scss -------------------------------------------------- */
.l-footer__inner {
  display: flex;
  flex-direction: column;
}

.l-footer__top {
  background-image: url(/img_bunjo/template_noie/bg-contact.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.l-footer__top::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(53, 53, 53, 0.7);
  z-index: 1;
}

.l-footer__top-inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding-block: 91px 158px;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  max-inline-size: none;
  margin-inline: 24px;
}
@media (min-width: 1072px) {
  .l-footer__top-inner {
    max-inline-size: 1024px;
    margin-inline: auto;
  }
}
@media (min-width: 1328px) {
  .l-footer__top-inner {
    max-inline-size: 1280px;
  }
}

.l-footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.l-footer__item {
  line-height: 1.5;
  font-weight: 500;
}
.l-footer__item > a {
  display: block;
}

.l-footer__copyright {
  font-size: 12px;
  font-weight: 500;
}

.l-footer__bottom-inner {
  padding-block: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #909090;
  box-sizing: border-box;
  max-inline-size: none;
  margin-inline: 24px;
}
@media (min-width: 1072px) {
  .l-footer__bottom-inner {
    max-inline-size: 1024px;
    margin-inline: auto;
  }
}
@media (min-width: 1328px) {
  .l-footer__bottom-inner {
    max-inline-size: 1280px;
  }
}

.l-footer__list {
  font-size: 12px;
  line-height: 2.2;
  display: flex;
  gap: 10px 40px;
}

.l-footer__item {
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.l-footer__item:hover {
  opacity: 0.5;
  text-decoration: none;
}

.l-footer__copyright {
  font-size: 10px;
  line-height: 2.2;
}

/* _l-drawer.scss -------------------------------------------------- */
.l-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 999999;
  background: #1a1a1a;
  color: #fff;
  overflow-x: hidden;
  overflow-y: auto;
}

.l-drawer__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.l-drawer__heading {
  padding: 16px;
}

.l-drawer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.l-drawer__logo > img {
  max-width: 178px;
  width: 100%;
  height: auto;
}

.l-drawer__logo-text {
  font-weight: 600;
  line-height: 1;
  flex-shrink: 0;
}

.l-drawer__nav {
  padding-inline: 24px;
}

.l-drawer__top-menu {
  margin-bottom: 20px;
}

.l-drawer__top-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.l-drawer__top-item a {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  font-size: 12px;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.l-drawer__top-item a:hover {
  opacity: 0.5;
  text-decoration: none;
}
.l-drawer__top-item img {
  width: 14px;
  height: 14px;
}

.l-drawer__bottom-menu {
  margin-block: 48px;
  overflow: scroll;
}

.l-drawer__bottom-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.l-drawer__bottom-item {
  border-bottom: 0.5px solid #626262;
}
.l-drawer__bottom-item a {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 0 8px 16px;
  width: 100%;
  height: 100%;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
  transition: opacity 0.3s ease;
}
.l-drawer__bottom-item a:hover {
  opacity: 0.5;
}
.l-drawer__bottom-item .en {
  color: #909090;
  font-size: 10px;
}

.l-drawer__top-item-back {
  width: 100%;
}
.l-drawer__top-item-back a {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: 21px 17px;
}
.l-drawer__top-item-back a > span {
  font-weight: 500;
  color: #333333;
}
.l-drawer__top-item-back img {
  width: 13px;
  height: 13px;
}

@media screen and (min-width: 0px) and (max-width: 1400px) {
  .l-drawer {
    display: block;
    translate: 0 -100%;
    transition: translate 0.3s ease;
  }
  body.is-drawer-open-noie .l-drawer {
    translate: 0% 0;
  }
  .l-drawer__button {
    display: block;
  }
}
/* _l-access.scss -------------------------------------------------- */
.l-access {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  position: relative;
}

.l-access__header {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 592px;
  width: 100%;
}

.l-access__summary {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  padding-inline: 64px;
  background-color: #414141;
  width: 100%;
}

.l-access__summary-title {
  font-size: 20px;
  font-weight: 600;
}

.l-access__summary-com {
  font-size: 14px;
  line-height: 2;
}

.l-access__map {
  margin: 3rem auto 80px;
  display: flex;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
}
.l-access__map img {
  max-width: 800px;
  max-height: 800px;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-access__map img:not(:first-of-type) {
  margin-block-start: 3rem;
}

.l-access__slider {
  width: 100%;
  height: auto;
}
.l-access__slider .slick-slide {
  background-color: #ffffff;
}
.l-access__slider .slick-slide img {
  aspect-ratio: 544/393;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-access__slider .slick-dots {
  position: absolute;
  inset-inline-start: 0;
  inset-inline-end: 0;
  bottom: -40px;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.l-access__slider .slick-dots li button {
  font-size: 0;
  line-height: 0;
  width: 8px;
  height: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.l-access__slider .slick-dots li button::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  border: 1px solid #909090;
  background-color: transparent;
}
.l-access__slider .slick-dots li.slick-active button::before {
  border: none;
  background-color: #ffffff;
}

.slick-slide.l-access__slider-item {
  display: flex;
}
.slick-slide.l-access__slider-item a {
  max-width: 544px;
  position: relative;
}
.slick-slide.l-access__slider-item a::before {
  content: "";
  background-image: url(/img_bunjo/template_noie/btn-modal.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  width: 34px;
  height: 34px;
  z-index: 1;
  right: 8px;
  bottom: 8px;
}

.l-access__caption {
  line-height: 1.5;
  font-size: 12px;
  font-weight: 500;
  margin-top: 80px;
}

.l-access__content + .l-access__content {
  margin-top: 80px;
}

/* _l-concept.scss -------------------------------------------------- */
.l-concept {
  padding-block-start: 160px;
  position: relative;
  isolation: isolate;
  width: 100vw;
  inset-inline-start: 50%;
  margin-inline-start: -50vw;
}
.l-concept > * {
  position: relative;
  z-index: 2;
  margin-inline: auto;
}

.l-concept__inner {
  padding-block: 196px 192px;
  overflow: hidden;
}
.l-concept__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/img_bunjo/template_noie/bg-concept.jpg");
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.l-concept__body {
  display: flex;
  flex-direction: column;
  gap: 72px;
  box-sizing: border-box;
  max-inline-size: none;
  margin-inline: 24px;
}
@media (min-width: 1072px) {
  .l-concept__body {
    max-inline-size: 1024px;
    margin-inline: auto;
  }
}
@media (min-width: 1328px) {
  .l-concept__body {
    max-inline-size: 1280px;
  }
}

.l-concept__column {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

/* _l-contact.scss -------------------------------------------------- */
.l-contact {
  padding-block: 128px;
  max-inline-size: 1000px;
  margin-inline: auto;
}

.l-contact__button {
  display: flex;
  align-items: center;
  max-width: -moz-max-content;
  max-width: max-content;
  width: 100%;
  margin-inline: auto;
}

.l-contact__inner {
  display: flex;
  flex-direction: column;
  gap: 160px;
}

/* _l-fv.scss -------------------------------------------------- */
.l-fv {
  display: flex;
  align-items: flex-end;
  gap: 148px;
  margin-block-start: 62px;
}

.l-fv__img {
  position: relative;
  z-index: 1;
  max-width: 1049px;
  width: 100%;
  flex: 5 0 500px;
}
.l-fv__img::before {
  content: "";
  position: absolute;
  max-width: calc(100% + 32px);
  width: 100%;
  height: calc(100% - 16px);
  bottom: 40px;
  left: 40px;
  background-image: url(/img_bunjo/template_noie/background.jpg);
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: -1;
}
.l-fv__img-inner {
  aspect-ratio: 4/3;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.l-fv__img-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 47.38% 84.17% at center, rgba(37, 37, 37, 0) 0%, rgba(37, 37, 37, 0.4) 100%);
  z-index: 1;
  pointer-events: none;
}
.l-fv__img-inner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.l-fv-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 57px;
  flex: 3 0 450px;
}
.l-fv-head__ttl {
  line-height: 1;
}
.l-fv-head__ttl--logo {
  font-size: 18px;
  font-weight: 500;
  font-family: "Cormorant Garamond", serif, "Yu Mincho", "YuMincho";
}
.l-fv-head__ttl--name {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  margin-block-start: 9px;
}

.l-fv__grid {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  gap: 0.75rem;
  margin-inline-start: 1rem;
}

@media screen and (min-width: 1920px) {
  .l-fv__img {
    max-width: 100%;
  }
  .l-fv-head {
    flex: 3 0 150px;
  }
}
@media screen and (max-width: 1024px) {
  .l-fv {
    margin-inline: auto;
    flex-direction: column;
    margin-block-start: 41px;
    gap: 48px;
    align-items: center;
  }
  .l-fv__img {
    width: calc(100vw - 24px);
    margin-inline-start: -24px;
    flex: unset;
  }
  .l-fv__img-inner {
    aspect-ratio: 4/3;
    width: 100%;
    height: auto;
  }
  .l-fv__img::before {
    bottom: -8px;
    left: 12px;
  }
  .l-fv-head {
    flex: unset;
    width: auto;
    padding-block: 0;
    padding-inline: 24px;
    align-items: flex-start;
    gap: 40px;
  }
  .l-fv-head__ttl {
    text-align: start;
  }
  .l-fv-head__ttl--logo {
    font-weight: 700;
    font-size: 12px;
  }
  .l-fv-head__ttl--name {
    font-size: 27px;
  }
}
/* _l-information.scss -------------------------------------------------- */
.l-information {
  padding-block: 50px;
  color: #333333;
  border: solid 1px #E1E7EE;
  max-width: 1000px;
  margin: 32px auto;
}

.l-information__grid {
  display: flex;
  justify-content: flex-start;
  gap: 50px;
  margin-inline: auto;
}

.l-information__title {
  font-family: "Arial", "san-serif";
  font-weight: 700;
  padding-top: 7px;
}

.l-information__date {
  white-space: nowrap;
}

.l-information__contents {
  display: flex;
  flex-direction: column;
  gap: 0.5em 0;
}

.l-information__content {
  display: flex;
  gap: 0 40px;
  align-items: baseline;
}

.l-information__article {
  line-height: 2;
  word-break: break-word;
}
.l-information__article > a {
  display: block;
  height: 100%;
}

.l-information__article-box {
  flex-grow: 1;
}

/* _l-location.scss -------------------------------------------------- */
.l-location {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  padding-block-start: 248px;
}

.l-location__inner {
  padding-block: 160px;
  position: relative;
  isolation: isolate;
}
.l-location__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  top: -32px;
  background-image: url(/img_bunjo/template_noie/background.jpg);
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.l-location__inner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(63, 63, 63, 0.8);
  z-index: -1;
}

.l-location__list {
  display: flex;
  flex-wrap: wrap;
  gap: 72px 79px;
}

@media screen and (max-width: 1024px) {
  .l-location__list {
    gap: 40px;
  }
}
/* _l-plan.scss -------------------------------------------------- */
.l-plan {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}

.l-plan__inner {
  padding-block: 168px 224px;
  position: relative;
  isolation: isolate;
}
.l-plan__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(/img_bunjo/template_noie/background.jpg);
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.l-plan__inner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 24px;
  left: 56px;
  background: rgba(63, 63, 63, 0.8);
  z-index: -1;
}

.l-plan__body {
  display: flex;
  justify-content: space-between;
}

.l-plan__body-img {
  max-width: 286px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.l-plan__body-img .l-plan__mv {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.l-plan__body-img .l-plan__mv .l-plan__mv-ttl {
  font-size: 20px;
  line-height: 1.8;
  font-weight: 700;
  width: 100%;
  padding: 8px 16px;
  background-color: #222;
}
.l-plan__body-img .l-plan__mv .l-plan__mv-img {
  max-width: 100%;
  width: 100%;
  aspect-ratio: 1/1;
  margin-inline: auto;
  overflow: hidden;
  position: relative;
  background-color: #ffffff;
}
.l-plan__body-img .l-plan__mv .l-plan__mv-img img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-plan__body-img .l-plan__mv .l-plan__mv-img .modal-target {
  position: absolute;
  width: 34px;
  height: 34px;
  z-index: 1;
  right: 8px;
  bottom: 8px;
}

.l-plan__summary {
  margin-block-start: 24px;
  max-width: 100%;
}

.l-plan__summary-title {
  font-size: 1rem;
}

.l-plan__summary-com {
  margin-block-start: 1rem;
  font-size: 0.875rem;
  color: #ffffff;
  text-align: start;
}
.l-plan__summary-com p {
  display: flex;
}
.l-plan__summary-com p > span:first-child {
  flex-shrink: 0;
}

.l-plan__list-wrap {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 874px;
  width: 100%;
}

.l-plan__list-ttl {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  color: #ffffff;
  background-color: #222;
  padding: 8px 16px;
}

.l-plan__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.l-plan__list .slick-dots {
  position: absolute;
  inset-inline-start: 0;
  inset-inline-end: 0;
  left: 50%;
  transform: translateX(-58%);
  bottom: -38px;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.l-plan__list .slick-dots li button {
  font-size: 0;
  line-height: 0;
  width: 6px;
  height: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.l-plan__list .slick-dots li button::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  border: 1px solid #909090;
  background-color: transparent;
}
.l-plan__list .slick-dots li.slick-active button::before {
  border: none;
  background-color: #ffffff;
}

@media screen and (max-width: 1400px) {
  .l-plan__inner {
    padding-block: 72px 110px;
  }
  .l-plan__inner::after {
    bottom: auto;
    top: 12px;
    left: auto;
    right: -8px;
    height: calc(100% - 16px);
  }
  .l-plan__body {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }
  .l-plan__body-img {
    max-width: 100%;
  }
  .l-plan__body-img .l-plan__mv {
    gap: 32px;
  }
  .l-plan__body-img .l-plan__mv .l-plan__mv-ttl {
    font-size: 16px;
  }
  .l-plan__body-img .l-plan__mv .l-plan__mv-img {
    max-width: 60%;
  }
}
/* _l-quality.scss -------------------------------------------------- */
.l-quality {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}

.l-quality__header {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 96px;
}

.l-quality__columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 80px;
}

.l-quality__body {
  display: flex;
  align-items: center;
  gap: 88px;
  margin-block-start: 72px;
}

.l-quality__label {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.l-quality__label-title {
  font-size: 20px;
  font-weight: 600;
}

.l-quality__label-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.l-quality__label-body .note {
  font-size: 12px;
  color: #909090;
}

.l-quality__label-text {
  font-size: 14px;
}

.l-quality__img {
  max-width: 544px;
  width: 100%;
  height: auto;
}

/* _l-map.scss -------------------------------------------------- */
.l-map {
  padding-top: 134px;
  padding-bottom: 112px;
}

.l-map__heading {
  font-size: 34px;
  text-align: center;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  position: relative;
}
.l-map__heading::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background-color: #909090;
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
}

.l-map__contents {
  width: 100%;
  margin-top: 104px;
  margin-inline: auto;
}

.l-map__content + .l-map__content {
  margin-top: 72px;
}
.l-map__content img {
  max-width: 100%;
  height: auto;
}

.l-map__button {
  margin-top: 80px;
}
.l-map__button > * {
  margin-inline: auto;
}

.l-map__summary {
  margin-block-start: 32px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.l-map__summary .l-map__summary-title {
  font-size: 18px;
  font-weight: 600;
}
.l-map__summary .l-map__summary-com {
  font-size: 14px;
  line-height: 1.8;
}
.l-map__summary .l-map__summary-com p {
  display: flex;
}
.l-map__summary .l-map__summary-com p > span:first-child {
  flex-shrink: 0;
}

/* _l-outline.scss -------------------------------------------------- */
.l-outline {
  padding-top: 134px;
  padding-bottom: 112px;
}

.l-outline__heading {
  font-size: 34px;
  text-align: center;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  position: relative;
}
.l-outline__heading::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background-color: #909090;
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
}

.l-outline__contents {
  margin-top: 104px;
  background: #414141;
  padding: 72px 80px;
}

.l-outline__content + .l-outline__content {
  margin-top: 56px;
}

.l-outline__content-title {
  font-size: 18px;
  font-weight: 600;
}

.l-outline__add_text {
  margin-top: 24px;
  font-size: 14px;
}

.l-outline__list {
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  margin-top: 32px;
}

.l-outline__list-item {
  padding: 16px;
  display: flex;
  align-items: baseline;
  gap: 80px;
}
.l-outline__list-item + .l-outline__list-item {
  border-top: 1px solid #707070;
}
.l-outline__list-item > dt {
  font-weight: 600;
  max-width: 147px;
  width: 100%;
  font-size: 14px;
  line-height: 2;
  flex-shrink: 0;
}
.l-outline__list-item > dd {
  flex: 1;
  font-size: 14px;
  font-weight: 400;
}

.l-outline__caption-list {
  width: 100%;
  margin-block-start: 72px;
  margin-inline: auto;
}

.l-outline__caption {
  line-height: 2.2;
  color: #909090;
  font-size: 12px;
  padding-left: 1.5em;
  position: relative;
}
.l-outline__caption::before {
  content: "※";
  position: absolute;
  font-size: 12px;
  top: 3px;
  left: 0;
}

.l-outline__button {
  margin-top: 80px;
}
.l-outline__button > * {
  margin-inline: auto;
}

/* _l-gallery.scss -------------------------------------------------- */
.l-gallery {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}

.l-gallery__content:not(:first-of-type) {
  margin-block-start: 108px;
}

.l-gallery__heading {
  display: flex;
  flex-direction: column;
  max-width: 1000px;
  width: 100%;
  margin-inline: auto;
}

.l-gallery__category-title {
  font-size: 26px;
  display: flex;
  align-items: center;
  gap: 17px;
  margin-block-end: 48px;
}
.l-gallery__category-title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 30px;
  background-color: #ffffff;
  vertical-align: middle;
}

.l-gallery-tablist-container {
  margin-block-end: 24px;
}

.l-gallery-tablist {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  background: #414141;
}
.l-gallery-tablist > li {
  flex-grow: 1;
  padding: 21px;
  font-size: 14px;
  text-align: center;
  color: #fff;
  background: #414141;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.l-gallery-tablist > li:hover {
  background: rgba(14, 14, 14, 0.2);
}
.l-gallery-tablist > li:not(.active) {
  color: #909090;
}
.l-gallery-tablist > li.active {
  background: #0E0E0E;
}

.l-gallery-slide-wrapper {
  display: none;
}
.l-gallery-slide-wrapper.active {
  display: block;
}
.l-gallery-slide-main {
  margin-inline: auto;
  position: relative;
}
.l-gallery-slide-main .block {
  width: auto;
  padding-inline: 0;
  position: relative;
  background-color: #2B2B2B;
}
.l-gallery-slide-main .block .imgCont {
  width: 100%;
  position: relative;
  aspect-ratio: 1000/563;
}
.l-gallery-slide-main .block .imgCont img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.l-gallery-slide-main .block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(37, 37, 37, 0.6);
  z-index: 1;
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.l-gallery-slide-main .block.slick-center::after {
  opacity: 0;
}
.l-gallery-slide-main .block .l-gallery-slide-main-caption {
  display: none;
  font-size: 14px;
}
.l-gallery-slide-thum {
  max-width: 1000px;
  width: 100%;
  margin-block-start: 40px;
  margin-inline: auto;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 8px;
}
.l-gallery-slide-thum .block {
  margin-inline-end: 0;
  width: 160px !important;
  aspect-ratio: 160/90;
  cursor: pointer;
  position: relative;
}
.l-gallery-slide-thum .block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(37, 37, 37, 0.6);
  z-index: 1;
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.l-gallery-slide-thum .block.slick-active::after {
  opacity: 0;
}
.l-gallery-slide-thum .block .imgFit {
  width: 100%;
  height: 100%;
}
.l-gallery-slide-thum .slick-slide {
  margin-inline: 0;
}
.l-gallery-slide-thum .slick-slide.slick-current .block {
  background: transparent;
}
.l-gallery-slide-thum .slick-track {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  transform: unset !important;
  width: 100% !important;
}
.l-gallery-slide-thum .slick-list {
  margin-inline: 0;
  width: 100% !important;
}
.l-gallery-slide-caption-display {
  max-width: 1000px;
  margin-inline: auto;
  margin-top: 32px;
  color: #ffffff;
}

.l-gallery .slick-track::before {
  display: none;
}
.l-gallery .slick-prev,
.l-gallery .slick-next {
  z-index: 2;
  font-size: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 48px;
  width: 48px;
  cursor: pointer;
  border: none;
  background: transparent;
  transition: opacity 0.3s ease;
}
.l-gallery .slick-prev:hover,
.l-gallery .slick-next:hover {
  opacity: 0.8;
}
.l-gallery .slick-prev::before,
.l-gallery .slick-next::before {
  content: "";
  position: absolute;
  top: 50%;
  inset-inline-start: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}
.l-gallery .slick-prev {
  inset-inline-start: 320px;
}
.l-gallery .slick-prev::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}
.l-gallery .slick-next {
  inset-inline-end: 320px;
}
.l-gallery .slick-next::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-gallery button[aria-disabled=true] {
  display: none !important;
}

@media screen and (max-width: 1440px) {
  .l-gallery .slick-prev {
    inset-inline-start: 10%;
  }
  .l-gallery .slick-next {
    inset-inline-end: 10%;
  }
  .l-gallery .slick-prev,
  .l-gallery .slick-next {
    height: 40px;
    width: 40px;
  }
  .l-gallery .slick-prev::before,
  .l-gallery .slick-next::before {
    width: 36px;
    height: 36px;
  }
  .l-gallery__category-title {
    font-size: 20px;
    margin-block-end: 32px;
    gap: 11px;
  }
  .l-gallery__category-title::before {
    width: 2px;
    height: 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-gallery .slick-prev,
  .l-gallery .slick-next {
    height: 100%;
    width: 24px;
  }
  .l-gallery .slick-prev::before,
  .l-gallery .slick-next::before {
    width: 8px;
    height: 8px;
  }
  .l-gallery .slick-prev {
    inset-inline-start: 0;
  }
  .l-gallery .slick-prev::before {
    transform: translate(-40%, -50%) rotate(-135deg);
  }
  .l-gallery .slick-next {
    inset-inline-end: 0;
  }
  .l-gallery .slick-next::before {
    transform: translate(-75%, -50%) rotate(45deg);
  }
}
/* _base.scss -------------------------------------------------- */
.p-bunjo-column {
  display: flex;
  align-items: center;
}
.p-bunjo-column .c-access-column__caption {
  padding-inline-end: 12px;
}

.p-bunjo-column--left {
  margin-left: calc((100vw - 100%) / 2 * -1);
  flex-direction: row-reverse;
}

.p-bunjo-column--center {
  flex-direction: column;
  width: 100%;
  gap: 40px;
}
.p-bunjo-column__img .p-bunjo-column--center {
  width: 100%;
  max-width: 100%;
  order: -1;
}

.p-bunjo-column__heading {
  max-width: 454px;
  width: 100%;
  flex-shrink: 0;
}
.p-bunjo-column--center .p-bunjo-column__heading {
  max-width: 1000px;
  width: 100%;
}

.p-bunjo-column__heading sup {
  vertical-align: super;
  font-size: 70%;
}
.p-bunjo-column__heading .l-all__caption {
  margin-block-start: 1rem;
}

.p-bunjo-column__heading-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 41px;
}
.p-bunjo-column--center .p-bunjo-column__heading-title {
  font-size: 22px;
  margin-bottom: 10px;
}

.p-bunjo-column__heading-text {
  line-height: 2.4;
  font-size: 14px;
}
.p-bunjo-column__heading-text + .p-bunjo-column__heading-text {
  margin-top: 18px;
}

.p-bunjo-column__heading-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 24px;
  margin-block-start: 64px;
}

.p-bunjo-column__heading-btn {
  display: flex;
  align-items: center;
  gap: 61px;
  position: relative;
  line-height: 2.2;
}
.p-bunjo-column__heading-btn::after {
  content: "";
  width: 60px;
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: right center;
}
.p-bunjo-column__heading-btn .btn-circle {
  aspect-ratio: 1/1;
  width: 47px;
  height: 47px;
  background-color: rgba(219, 219, 219, 0.4);
  border-radius: 9999px;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease;
}
.p-bunjo-column__heading-btn .btn-circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  border-radius: 9999px;
  background-color: #ffffff;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-bunjo-column__heading-btn:hover .btn-circle {
  background-color: rgba(219, 219, 219, 0.1);
  transform: scale(1.5744680851);
}
.p-bunjo-column__heading-btn:hover .btn-circle::before {
  transform: translate(-50%, -50%) scale(0.6351351351);
}

/* _p-contact-box.scss -------------------------------------------------- */
.p-contact-box {
  padding: 40px 40px 16px;
  position: relative;
  border: 1px solid #DEDEDE;
  position: relative;
}
.p-contact-box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 37%;
  translate: 0 -50%;
  width: 5px;
  height: 52.7%;
  background: #DEDEDE;
}

.p-contact-box__body {
  display: flex;
}

.p-contact-box__title {
  min-height: 44px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -22px;
  left: 50%;
  translate: -50%;
  padding-inline: 20px;
}

.p-contact-box__heading {
  padding-right: 40px;
  padding-block: 0 10px;
  width: 37%;
  flex-shrink: 0;
}

.p-contact-box__heading-sub-title {
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 1.7142857143;
  color: #333333;
}

.p-contact-box__heading-title {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
}

.p-contact-box__info {
  display: flex;
  align-items: center;
  gap: 16px 20px;
  padding-left: 63px;
  padding-top: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.p-contact-box__tel-box {
  display: flex;
  gap: 8px;
  font-size: 36px;
  align-items: center;
  color: #279FBE;
  position: relative;
}
.p-contact-box__tel-box a {
  color: currentColor;
}
.p-contact-box__tel-box a::before {
  content: "";
  position: absolute;
  inset: 0;
}
.p-contact-box__tel-box img {
  width: 26px;
  height: 31px;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-contact-box__entry-box {
  flex: 1;
  max-width: 340px;
  min-width: 250px;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  font-size: 18px;
  gap: 6px;
  border-radius: 4px;
  background: #279FBE;
  min-width: 154px;
}
.p-contact-box__entry-box img {
  width: 31px;
  height: 22px;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-contact-box__caption {
  width: 100%;
  font-size: 14px;
  line-height: 1.7142857143;
}
.p-contact-box__caption span {
  display: inline-block;
}
.p-contact-box__caption span + span {
  margin-left: 1em;
}

.l-contact-box__entry-block {
  display: flex;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

@media screen and (max-width: 1150px) {
  .p-contact-box::before {
    left: 50%;
  }
  .p-contact-box__info {
    width: 50%;
    justify-content: center;
  }
  .p-contact-box__heading {
    width: 100%;
    flex-shrink: 1;
  }
  .p-contact-box__tel-box {
    white-space: nowrap;
  }
  .p-contact-box__entry-box {
    flex: 1;
    max-width: 100%;
  }
  .p-contact-box__caption {
    text-align: center;
  }
}
/* _c-heading.scss -------------------------------------------------- */
.c-heading {
  display: flex;
  align-items: flex-end;
  gap: 32px;
}
.l-container-heading .c-heading {
  text-align: start;
  display: flex;
  align-items: center;
  gap: 8px;
}
.l-container-heading .c-heading::before {
  content: "";
  display: inline-block;
  height: 1px;
  width: 32px;
  background-color: #ffffff;
}
.c-heading.--midium {
  gap: 24px;
}
.c-heading.--midium .c-heading__title {
  font-size: 64px;
}

.c-heading__title {
  font-family: "Cormorant Garamond", serif, "Yu Mincho", "YuMincho";
  font-size: 104px;
  font-weight: 400;
  line-height: 0.7;
  color: #ffffff;
}
.l-container-heading .c-heading__title {
  font-weight: 600;
  font-size: 16px;
}

.c-heading__caption {
  font-size: 14px;
  line-height: 1;
  color: #909090;
  display: flex;
  align-items: center;
}
.c-heading__caption::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background-color: #909090;
  transform: rotate(120deg);
}

/* _c-fv-column.scss -------------------------------------------------- */
.c-fv-column {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #414141;
  justify-content: center;
  max-width: 347px;
  width: 100%;
  padding: 24px 16px 24px 40px;
}
.c-fv-column::before {
  content: "";
  position: absolute;
  background-color: #ffffff;
  height: 1px;
  width: 40px;
  top: 50%;
  left: -1rem;
  transform: translateY(-50%);
}

.c-fv-column__title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  width: 400px;
}
.c-fv-column:first-child .c-fv-column__title {
  margin-bottom: 18px;
}

.c-fv-column:nth-child(2) .c-fv-column__title {
  margin-bottom: 26px;
}

.c-fv-column:last-child .c-fv-column__title {
  margin-bottom: 23px;
}

.c-fv-column__txtflex {
  max-width: 800px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.c-fv-column__txtflex .c-fv-column__text--center {
  font-size: clamp(1rem, 0.65rem + 0.8vw, 1.25rem);
}
.c-fv-column__txtflex .c-fv-column__text--center:first-child {
  padding-inline-end: 20px;
}

.c-fv-column__text {
  color: #ffffff;
  font-weight: 600;
  line-height: 1.6;
}

.c-fv-column__text--large {
  font-size: 22px;
}

.c-fv-column__sub-text {
  font-size: 16px;
  color: #fff;
}

.l-fv__cption {
  margin: auto;
}

.c-fv-column__text--center {
  text-align: center;
  line-height: 1.3;
}

/* _c-plan-column.scss -------------------------------------------------- */
.c-plan-column {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-block-end: 24px;
  border-bottom: 1px solid #707070;
}

.c-plan-column__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-plan-column__heading-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.c-plan-column__heading {
  font-weight: 700;
  padding: 1px 16px;
  color: #000000;
  background-color: #ffffff;
}

.c-plan-column__price {
  font-weight: 700;
  font-size: 26px;
}

.c-plan-column__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.c-plan-column__area {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.c-plan-column__area-text {
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.c-plan-column__area-text:not(:last-of-type)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 20px;
  background-color: #909090;
  margin-inline-start: 18px;
}
.c-plan-column__area-text.--plan {
  font-size: 20px;
}
.c-plan-column__area-text.--land, .c-plan-column__area-text.--building {
  font-size: 12px;
}
.c-plan-column__area-text.--land .m2, .c-plan-column__area-text.--building .m2 {
  font-size: 1rem;
  margin-inline-start: 10px;
}

.c-plan-column__img {
  max-width: 225px;
  width: 100%;
  aspect-ratio: 225/162;
  background-color: #ffffff;
  position: relative;
}
.c-plan-column__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-plan-column__img .modal-target {
  position: absolute;
  width: 26px;
  height: 26px;
  z-index: 1;
  right: 8px;
  bottom: 8px;
}

.c-plan-column__price span {
  font-size: 20px;
}

.c-plan-column__com {
  font-weight: 600;
  font-size: 12px;
}

/* _c-quality-column.scss -------------------------------------------------- */
.c-quality-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-self: start;
  width: calc((100% - 160px) / 3);
}

.c-quality-column__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c-quality-column__heading {
  font-weight: 600;
  font-size: 18px;
}

.c-quality-column__text {
  line-height: 1.8;
  display: flex;
  font-size: 14px;
}
.c-quality-column__text > span:first-child {
  flex-shrink: 0;
}

.c-quality-column__img {
  background-color: #2B2B2B;
}
.c-quality-column__img img {
  aspect-ratio: 373/249;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* _c-features-column.scss -------------------------------------------------- */
.c-features-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 8px;
  border: 1px solid #909090;
  background-color: #414141;
  width: calc((100% - 48px) / 4);
}

.c-features-column__text {
  font-size: 14px;
}

/* _c-access-column.scss -------------------------------------------------- */
.c-access-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-access-column--border {
  padding-bottom: 5px;
  border-bottom: 2px solid #DEDEDE;
  justify-content: flex-end;
}

.l-access__grid--2column .c-access-column__info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.c-access-column__sub-text {
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 3px;
}
.l-access__grid--2column .c-access-column__sub-text {
  width: 265px;
}

.c-access-column__text {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 30px;
}
.c-access-column__text > span {
  margin-inline: 11px 18px;
  font-weight: 400;
  font-size: 50px;
  color: #56A412;
  font-family: "Yu Mincho", "YuMincho", "san-serif";
}

.c-access-column__caption {
  font-size: 12px;
  font-weight: 500;
  line-height: 2;
  text-align: right;
}
.l-access__grid--2column .c-access-column__caption {
  width: 100%;
}

.c-access-column__img {
  order: -1;
  aspect-ratio: 384/256;
}

/* _c-location-column.scss -------------------------------------------------- */
.c-location-column {
  display: flex;
  flex-direction: column;
  width: calc((100% - 158px) / 3);
  gap: 24px;
}

.c-location-column__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c-location-column__info-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.c-location-column__title {
  font-size: 18px;
  font-weight: 600;
}

.c-location-column__caption {
  font-size: 12px;
  line-height: 1.8;
  font-weight: 700;
  display: flex;
  align-items: center;
  background-color: #222;
  padding: 2px 14px;
  max-width: -moz-max-content;
  max-width: max-content;
  width: 100%;
}

.c-location-column__text {
  font-size: 14px;
  line-height: 1.8;
}

.c-location-column__img {
  background-color: #ffffff;
  width: 100%;
  order: -1;
}
.c-location-column__img img {
  aspect-ratio: 373/249;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* _c-location-list.scss -------------------------------------------------- */
.c-location-list + .c-location-list {
  margin-top: 42px;
}

.c-location-list__heading {
  font-size: 16px;
  font-weight: 700;
  color: #56A412;
  padding-bottom: 14px;
  border-bottom: 1px dashed #B2BBC5;
}

.c-location-list__item {
  border-bottom: 1px dashed #B2BBC5;
  padding: 8px 9px 14px 11px;
}

.c-location-list__item-name {
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 4px;
}

.c-location-list__item-caption {
  color: #747474;
  text-align: right;
}

/* _c-more-button.scss -------------------------------------------------- */
.c-more-button {
  display: none;
}
.c-more-button > img {
  width: 140px;
  height: 6px;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-more-button > p {
  font-weight: 700;
  font-size: 14px;
  color: #279FBE;
  padding-top: 4px;
}
.c-more-button.is-open > img {
  rotate: 180deg;
}

/* _c-map-button.scss -------------------------------------------------- */
.c-map-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 2.2;
  color: #ffffff;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.c-map-button > img {
  width: 13px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: middle;
}
.c-map-button:hover {
  text-decoration: none;
  opacity: 0.5;
}

/* _c-entry-button.scss -------------------------------------------------- */
.c-entry-button {
  height: 100%;
  display: flex;
  color: #000000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  background: #ffffff;
  gap: 8px;
  padding-inline: 30px;
  transition: opacity 0.3s ease;
}
.c-entry-button:hover {
  opacity: 0.5;
}
.c-entry-button img {
  display: block;
  width: auto;
  height: auto;
}

.c-entry-button__text {
  text-wrap: nowrap;
}

@media screen and (min-width: 0px) and (max-width: 1400px) {
  .c-entry-button {
    flex: 1;
    width: auto;
    padding: 20px 6px;
    line-height: 1;
  }
  .c-entry-button > img {
    width: 14px;
    height: 15px;
  }
  .c-map__button {
    max-width: calc((100% - 12px) / 4);
    display: flex;
    background: #fff;
    color: #000;
    border: #DEDEDE solid 1px;
    flex: unset;
  }
  .c-map__button span {
    text-align: center;
  }
}
/* _c-entry-button.scss -------------------------------------------------- */
.c-drawer-button {
  width: 28px;
  height: 28px;
  position: relative;
}

.c-drawer-button__line {
  height: 1px;
  width: 28px;
  background: #ffffff;
  position: absolute;
  left: 50%;
  translate: -50% 0;
  rotate: 0;
  transition: translate 0.3s ease, rotate 0.3s ease, background-color 0.3s ease, width 0.3s ease, height 0.3s ease, top 0.3s ease;
}
.c-drawer-button__line:first-child {
  top: 9px;
}
body.is-drawer-open-noie .c-drawer-button__line:first-child {
  width: 28px;
  height: 1px;
  top: 50%;
  translate: -50% -50%;
  rotate: 25deg;
}

.c-drawer-button__line:last-child {
  top: 15px;
}
body.is-drawer-open-noie .c-drawer-button__line:last-child {
  width: 28px;
  height: 1px;
  top: 50%;
  translate: -50% -50%;
  rotate: -25deg;
}

@media screen and (min-width: 0px) and (max-width: 1400px) {
  .c-drawer-button {
    display: block;
  }
}
/* _c-scroll-top-button.scss -------------------------------------------------- */
.c-scroll-top-button {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #EEEEEE;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.c-scroll-top-button > img {
  width: 18px;
  height: 18px;
}

/* _c-close-button.scss -------------------------------------------------- */
.c-close-button {
  line-height: 2.2;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.c-close-button img {
  width: 12px;
  height: 12px;
}
.c-close-button:hover {
  opacity: 0.5;
  text-decoration: none;
}

/* _c-footer.scss -------------------------------------------------- */
.c-footer__info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.c-footer__title {
  font-weight: 600;
  font-size: 26px;
}

.c-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c-footer__tel {
  display: flex;
  align-items: baseline;
  max-width: -moz-max-content;
  max-width: max-content;
  width: 100%;
  gap: 2px;
  font-family: "EB Garamond", serif, "Yu Mincho", "YuMincho";
  font-weight: 400;
  line-height: 1;
  font-size: 42px;
  border-bottom: 1px solid #ffffff;
  transition: opacity 0.3s ease;
}
.c-footer__tel .fs {
  font-size: 17px;
}
.c-footer__tel:hover {
  opacity: 0.5;
}

.c-footer__hours {
  font-size: 12px;
}

.c-footer__button-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 320px;
}

.c-footer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  width: 100%;
  text-align: center;
  background-color: #ffffff;
  color: #000000;
  font-weight: 700;
  text-wrap: nowrap;
  transition: opacity 0.3s ease;
}
.c-footer__button:hover {
  opacity: 0.5;
}
.c-footer__button img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* _remodalstyle.scss -------------------------------------------------- */
.remodal {
  padding: 20px 40px;
  max-width: 1200px;
  width: 100%;
  height: 800px;
}
.remodal-wrapper {
  padding: 40px 100px 40px 40px;
}
.remodal-close {
  text-indent: -9999px;
  right: -80px;
  width: 30px;
  height: 30px;
}
.remodal-close::after {
  display: block;
  content: "";
  width: 30px;
  height: 30px;
  background: url(../../img_bunjo/template_noie/icon-close.svg) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.remodal img {
  max-width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* _slickstyle.scss -------------------------------------------------- */
/* _l-visitor.scss -------------------------------------------------- */
.l-visitor_block {
  padding-block-start: 160px;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.l-visitor-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
  padding: 84px 24px 100px 24px;
  background-color: rgba(63, 63, 63, 0.8);
  outline: 1px solid #909090;
  outline-offset: -8px;
  position: relative;
}
.l-visitor-section::after {
  content: "";
  position: absolute;
  max-width: calc(100% - 3px);
  width: 100%;
  height: 100%;
  bottom: -20px;
  left: 30px;
  background-image: url(/img_bunjo/template_noie/background.jpg);
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: -1;
}

.l-visitor-info {
  margin-top: 54px;
  color: #B2B2B2;
  font-size: 20px;
  margin: 0;
}

.l-visitor-title {
  font-weight: 600;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-shadow: 1px 2px 0px #000000;
}
.l-visitor-title .fs {
  font-size: 20px;
  line-height: 1.8;
}
.l-visitor-title .fl {
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.1em;
}

.l-visitor-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #ffffff;
  color: #000000;
  max-width: 446px;
  width: 100%;
  padding-block: 30px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  transition: opacity 0.3s ease;
}
.l-visitor-button img {
  width: 19px;
  height: 22px;
}
.l-visitor-button:hover {
  opacity: 0.5;
}

.l-visitor .p-contact-box__entry-box:only-child {
  flex: 1;
  max-width: 200px;
  justify-content: center;
}

.l-drawer .l-visitor__area {
  gap: 8px;
}

/* _l-vr.scss -------------------------------------------------- */
.l-vr {
  padding-block-end: 160px;
}

.l-vr__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.l-vr__body-inner {
  display: flex;
  max-width: 1002px;
  width: 100%;
}
.l-vr__body-inner iframe {
  aspect-ratio: 3/2;
  width: 100%;
  max-height: 668px;
  height: 100%;
}

/* _l-features.scss -------------------------------------------------- */
.l-features .l-container {
  container-type: inline-size;
}

.l-features__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* _slickstyle.scss -------------------------------------------------- */
.fixedBnr {
  z-index: 9999;
  position: fixed;
  margin: auto 0;
  font-weight: 600;
  bottom: 208px;
  right: 16px;
}

.fixedBnr_item {
  background-color: #0E0E0E;
  border: 1px solid #909090;
  transition: all 0.3s ease;
  padding: 20px 20px 16px 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.fixedBnr_item:hover {
  transform: translateX(-6px);
}

.fixedBnr_item + .fixedBnr_item {
  margin-top: 10px;
}

.fixedBnr_link {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 2;
}

.fixedBnr .closeLogo {
  position: absolute;
  z-index: 3;
  top: 8px;
  right: 8px;
  width: 12px;
  height: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.fixedBnr .fixedBnr_text {
  font-size: 12px;
  line-height: 1.5;
  margin-top: 12px;
  text-align: center;
  font-weight: 600;
}

.fixedBnr .mainLogo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fixedBnr .mainLogo img {
  display: block;
}
.fixedBnr .mainLogo .icon_movie {
  width: 49px;
  height: auto;
}

.fixedBnr .mainLogo svg {
  margin: 0;
}

.fixedBnr_btn {
  margin-top: 12px;
  width: 100%;
}

.fixedBnr_btn-link {
  padding: 0 4px;
  height: 40px;
  line-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: #FFF;
  font-size: 14px;
  letter-spacing: -0.1px;
}

.fixedBnr_btn-link img {
  margin-right: 4px;
  top: 2px;
  position: relative;
}

/* _l-float-sp.scss -------------------------------------------------- */
.l-float-sp {
  display: none;
}

@media screen and (min-width: 0px) and (max-width: 1400px) {
  .l-float-sp {
    position: fixed;
    inset-block-end: 0;
    inset-inline-start: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    background-color: #0E0E0E;
    padding: 12px 16px;
    box-sizing: border-box;
  }
  .l-float-sp.--map {
    padding-block: 16px;
    align-items: center;
    justify-content: center;
  }
  .l-float-sp__inner {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
  }
  .l-float-sp__inner-left {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    flex-shrink: 0;
  }
  .l-float-sp__inner-right {
    display: flex;
    flex: 1;
    gap: 8px;
  }
  .l-float-sp__item {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    transition: opacity 0.3s ease;
  }
  .l-float-sp__item:hover {
    opacity: 0.5;
    text-decoration: none;
  }
  .l-float-sp__item img {
    width: 16px;
    height: 16px;
  }
  .l-float-sp__inner-left .l-float-sp__item {
    color: #ffffff;
    text-decoration: underline;
    gap: 6px;
    font-size: 12px;
  }
  .l-float-sp__inner-right .l-float-sp__item {
    flex: 1;
    justify-content: center;
    gap: 6px;
    background-color: #ffffff;
    color: #000000;
    font-weight: 700;
    text-align: center;
    padding-block: 16px;
    padding-inline: 4px;
  }
  .l-float-sp__inner-right .l-float-sp__item img {
    width: 16px;
    height: 16px;
  }
  .l-float-sp__link {
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
    text-decoration: underline;
    transition: opacity 0.3s ease;
  }
  .l-float-sp__link:hover {
    opacity: 0.5;
    text-decoration: none;
  }
  .l-float-sp__link img {
    width: 12px;
    height: 12px;
  }
}
/* PC---------------------------------------------------------------- */
@media print, screen and (min-width: 769px) {
  /* _base.scss -------------------------------------------------- */
  .pcDisNon {
    display: none !important;
  }
  /* _common.scss -------------------------------------------------- */
  .c-map__button {
    display: none;
  }
  /* _l-header.scss -------------------------------------------------- */
  /* _l-drawer.scss -------------------------------------------------- */
  /* _l-drawer-button.scss -------------------------------------------------- */
  /* _l-footer.scss -------------------------------------------------- */
  /* _l-access.scss -------------------------------------------------- */
  /* _l-concept.scss -------------------------------------------------- */
  /* _l-contact.scss -------------------------------------------------- */
  /* _l-fv.scss -------------------------------------------------- */
  /* _l-information.scss -------------------------------------------------- */
  /* _l-location.scss -------------------------------------------------- */
  /* _l-plan.scss -------------------------------------------------- */
  /* _l-quality.scss -------------------------------------------------- */
  /* _l-map.scss -------------------------------------------------- */
  /* _l-outline.scss -------------------------------------------------- */
  /* _l-gallery.scss -------------------------------------------------- */
  /* _base.scss -------------------------------------------------- */
  /* _p-contact-box.scss -------------------------------------------------- */
  /* _c-heading.scss -------------------------------------------------- */
  /* _c-fv-column.scss -------------------------------------------------- */
  /* _c-plan-column.scss -------------------------------------------------- */
  /* _c-quality-column.scss -------------------------------------------------- */
  /* _c-features-column.scss -------------------------------------------------- */
  /* _c-access-column.scss -------------------------------------------------- */
  /* _c-location-column.scss -------------------------------------------------- */
  /* _c-location-list.scss -------------------------------------------------- */
  /* _c-more-button.scss -------------------------------------------------- */
  /* _c-map-button.scss -------------------------------------------------- */
  /* _c-entry-button.scss -------------------------------------------------- */
  /* _c-entry-button.scss -------------------------------------------------- */
  /* _c-scroll-top-button.scss -------------------------------------------------- */
  /* _c-close-button.scss -------------------------------------------------- */
  /* _c-footer.scss -------------------------------------------------- */
  /* _remodalstyle.scss -------------------------------------------------- */
  /* _slickstyle.scss -------------------------------------------------- */
  /* _l-visitor.scss -------------------------------------------------- */
  /* _l-vr.scss -------------------------------------------------- */
  /* _l-features.scss -------------------------------------------------- */
  /* _l-float-sp.scss -------------------------------------------------- */
}
@media screen and (min-width: 769px) and (min-width: 0px) and (max-width: 1400px) {
  .l-entry {
    width: 100%;
  }
  .l-scroll-top {
    right: 16px;
    bottom: 90px;
  }
}
@media print, screen and (min-width: 769px) {
  .l-drawer-button {
    display: none;
  }
}
@media screen and (min-width: 769px) and (min-width: 1025px) and (max-width: 1800px) {
  .l-header__logo img {
    max-width: 200px;
    height: auto;
  }
  .l-header__bottom-list {
    gap: 24px;
  }
}
@media screen and (min-width: 769px) and (min-width: 0px) and (max-width: 1400px) {
  .l-header {
    width: 100%;
    height: 55px;
    padding-inline: 16px;
  }
  .l-header__logo {
    z-index: 999999;
    height: 23px;
  }
  .l-header__logo img {
    max-width: 178px;
    flex: 1;
  }
  .l-header__top-item-back {
    width: 160px;
  }
  .l-header__top-item-back > a {
    min-height: 25px;
    font-size: 12px;
  }
  .l-header__top-menu,
  .l-header__bottom-menu {
    display: none;
  }
  .l-header--simple .l-header__top-menu,
  .l-header--simple .l-header__bottom-menu {
    display: block;
  }
  .l-header__top-menu {
    margin-left: auto;
  }
}
@media print, screen and (min-width: 769px) {
  .l-drawer {
    display: none;
  }
  .l-drawer__button {
    display: none;
  }
}
@media screen and (min-width: 769px) and (min-width: 0px) and (max-width: 1400px) {
  .l-drawer {
    display: block;
    translate: 0 -100%;
    transition: translate 0.3s ease;
  }
  body.is-drawer-open-noie .l-drawer {
    translate: 0% 0;
  }
  .l-drawer__button {
    display: block;
  }
}
@media print, screen and (min-width: 769px) {
  .l-drawer-button {
    display: none;
  }
}
@media screen and (min-width: 769px) and (min-width: 0px) and (max-width: 1400px) {
  .l-drawer-button {
    display: block;
  }
  .l-drawer__entry-button {
    display: flex;
    gap: 8px;
  }
}
@media print, screen and (min-width: 769px) {
  .l-information__article {
    width: 500px;
  }
  .l-information__title {
    width: 150px;
  }
  .l-information__grid {
    max-width: 800px;
  }
  .l-information__date {
    width: 100px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .l-location__list {
    gap: 40px;
  }
}
@media screen and (min-width: 769px) and (max-width: 767px) {
  .l-gallery .slick-prev,
  .l-gallery .slick-next {
    height: 100%;
    width: 24px;
  }
  .l-gallery .slick-prev::before,
  .l-gallery .slick-next::before {
    width: 8px;
    height: 8px;
  }
  .l-gallery .slick-prev {
    inset-inline-start: 0;
  }
  .l-gallery .slick-prev::before {
    transform: translate(-40%, -50%) rotate(-135deg);
  }
  .l-gallery .slick-next {
    inset-inline-end: 0;
  }
  .l-gallery .slick-next::before {
    transform: translate(-75%, -50%) rotate(45deg);
  }
}
@media screen and (min-width: 769px) and (max-width: 1150px) {
  .p-contact-box::before {
    left: 50%;
  }
  .p-contact-box__info {
    width: 50%;
    justify-content: center;
  }
  .p-contact-box__heading {
    width: 100%;
    flex-shrink: 1;
  }
  .p-contact-box__tel-box {
    white-space: nowrap;
  }
  .p-contact-box__entry-box {
    flex: 1;
    max-width: 100%;
  }
  .p-contact-box__caption {
    text-align: center;
  }
}
@media print, screen and (min-width: 769px) {
  .l-fv__cption {
    width: 1000px;
  }
  .c-plan-column.onePlan {
    width: 600px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 769px) and (min-width: 0px) and (max-width: 1400px) {
  .c-entry-button {
    flex: 1;
    width: auto;
    padding: 20px 6px;
    line-height: 1;
  }
  .c-entry-button > img {
    width: 14px;
    height: 15px;
  }
  .c-map__button {
    max-width: calc((100% - 12px) / 4);
    display: flex;
    background: #fff;
    color: #000;
    border: #DEDEDE solid 1px;
    flex: unset;
  }
  .c-map__button span {
    text-align: center;
  }
}
@media print, screen and (min-width: 769px) {
  .c-drawer-button {
    display: none;
  }
}
@media screen and (min-width: 769px) and (min-width: 0px) and (max-width: 1400px) {
  .c-drawer-button {
    display: block;
  }
}
/* SP---------------------------------------------------------------- */
@media screen and (min-width: 0px) and (max-width: 768px) {
  /* _base.scss -------------------------------------------------- */
  .spDisNon {
    display: none !important;
  }
  body {
    font-size: 14px;
  }
  /* _common.scss -------------------------------------------------- */
  .l-section-heading {
    margin-bottom: 56px;
  }
  .l-entry__block {
    background-color: #fff;
    border: #000;
  }
  .l-entry {
    top: auto;
    bottom: 0;
    gap: 4px;
    padding: 6px 8px;
    border-top: #CCCCCC solid 1px;
    background: #fff;
  }
  .l-section {
    padding-block-start: 96px;
  }
  .p-contact-box__entry-box {
    width: auto !important;
    min-width: 48%;
  }
  .l-contact-box__entry-block .p-contact-box__entry-box:only-child {
    min-width: 100%;
  }
  .l-all__caption-list .l-all__caption {
    line-height: 1.6;
    font-size: 10px;
  }
  /* _l-header.scss -------------------------------------------------- */
  /* _l-drawer.scss -------------------------------------------------- */
  /* _l-drawer-button.scss -------------------------------------------------- */
  /* _l-footer.scss -------------------------------------------------- */
  /* _l-access.scss -------------------------------------------------- */
  /* _l-concept.scss -------------------------------------------------- */
  /* _l-contact.scss -------------------------------------------------- */
  /* _l-fv.scss -------------------------------------------------- */
  /* _l-information.scss -------------------------------------------------- */
  /* _l-location.scss -------------------------------------------------- */
  /* _l-plan.scss -------------------------------------------------- */
  /* _l-quality.scss -------------------------------------------------- */
  /* _l-map.scss -------------------------------------------------- */
  /* _l-outline.scss -------------------------------------------------- */
  /* _l-gallery.scss -------------------------------------------------- */
  /* _base.scss -------------------------------------------------- */
  /* _p-contact-box.scss -------------------------------------------------- */
  /* _c-heading.scss -------------------------------------------------- */
  /* _c-fv-column.scss -------------------------------------------------- */
  /* _c-plan-column.scss -------------------------------------------------- */
  /* _c-quality-column.scss -------------------------------------------------- */
  /* _c-features-column.scss -------------------------------------------------- */
  /* _c-access-column.scss -------------------------------------------------- */
  /* _c-location-column.scss -------------------------------------------------- */
  /* _c-location-list.scss -------------------------------------------------- */
  /* _c-more-button.scss -------------------------------------------------- */
  /* _c-map-button.scss -------------------------------------------------- */
  /* _c-entry-button.scss -------------------------------------------------- */
  /* _c-entry-button.scss -------------------------------------------------- */
  /* _c-scroll-top-button.scss -------------------------------------------------- */
  /* _c-close-button.scss -------------------------------------------------- */
  /* _c-footer.scss -------------------------------------------------- */
  /* _remodalstyle.scss -------------------------------------------------- */
  /* _slickstyle.scss -------------------------------------------------- */
  /* _l-visitor.scss -------------------------------------------------- */
  /* _l-vr.scss -------------------------------------------------- */
  /* _l-features.scss -------------------------------------------------- */
  /* _slickstyle.scss -------------------------------------------------- */
  /* _l-float-sp.scss -------------------------------------------------- */
}
@media screen and (min-width: 0px) and (max-width: 768px) and (min-width: 0px) and (max-width: 1400px) {
  .l-entry {
    width: 100%;
  }
  .l-scroll-top {
    right: 16px;
    bottom: 90px;
  }
}
@media screen and (min-width: 0px) and (max-width: 768px) and (min-width: 1025px) and (max-width: 1800px) {
  .l-header__logo img {
    max-width: 200px;
    height: auto;
  }
  .l-header__bottom-list {
    gap: 24px;
  }
}
@media screen and (min-width: 0px) and (max-width: 768px) and (min-width: 0px) and (max-width: 1400px) {
  .l-header {
    width: 100%;
    height: 55px;
    padding-inline: 16px;
  }
  .l-header__logo {
    z-index: 999999;
    height: 23px;
  }
  .l-header__logo img {
    max-width: 178px;
    flex: 1;
  }
  .l-header__top-item-back {
    width: 160px;
  }
  .l-header__top-item-back > a {
    min-height: 25px;
    font-size: 12px;
  }
  .l-header__top-menu,
  .l-header__bottom-menu {
    display: none;
  }
  .l-header--simple .l-header__top-menu,
  .l-header--simple .l-header__bottom-menu {
    display: block;
  }
  .l-header__top-menu {
    margin-left: auto;
  }
}
@media screen and (min-width: 0px) and (max-width: 768px) and (min-width: 0px) and (max-width: 1400px) {
  .l-drawer {
    display: block;
    translate: 0 -100%;
    transition: translate 0.3s ease;
  }
  body.is-drawer-open-noie .l-drawer {
    translate: 0% 0;
  }
  .l-drawer__button {
    display: block;
  }
}
@media screen and (min-width: 0px) and (max-width: 768px) and (min-width: 0px) and (max-width: 1400px) {
  .l-drawer-button {
    display: block;
  }
  .l-drawer__entry-button {
    display: flex;
    gap: 8px;
  }
}
@media screen and (min-width: 0px) and (max-width: 768px) {
  .l-footer__top-inner {
    padding-block: 96px 88px;
    width: calc(100vw - 48px);
    margin-inline: auto;
  }
  .l-footer__content {
    flex-direction: column;
    gap: 16px;
  }
  .l-footer__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 40px;
    justify-content: center;
    font-size: 10px;
  }
  .l-footer__bottom-inner {
    flex-direction: column;
    gap: 8px;
    padding-block: 8px;
    text-align: center;
  }
  .l-footer__copyright {
    font-size: 8px;
  }
  .l-access__header {
    gap: 24px;
  }
  .l-access__heading {
    margin-block-end: 32px;
  }
  .l-access__slider {
    width: calc(100vw - 24px);
  }
  .l-access__slider .slick-dots {
    gap: 8px;
    bottom: -30px;
  }
  .l-access__slider .slick-dots li button::before {
    width: 6px;
    height: 6px;
  }
  .slick-slide.l-access__slider-item {
    flex-direction: column;
    width: 327px;
    margin-inline-end: 12px;
  }
  .l-access__summary {
    padding: 32px 24px;
    gap: 8px;
  }
  .l-access__summary-title {
    font-size: 16px;
  }
  .l-access__summary-com {
    font-size: 12px;
    line-height: 1.6;
  }
  .l-concept__inner {
    padding-block: 292px 56px;
  }
  .l-concept__inner::before {
    background-image: url("/img_bunjo/template_noie/bg-concept_sp.jpg");
  }
  .l-contact {
    padding-block: 56px;
  }
  .l-contact__inner {
    gap: 56px;
  }
  .l-information {
    padding-block: 40px;
    margin: 24px 0px;
  }
  .l-information__grid {
    flex-direction: column;
    justify-content: flex-start;
    gap: 22px;
    padding-inline: 0px;
  }
  .l-information__title {
    text-align: center;
    font-weight: 700;
  }
  .l-information__contents {
    flex-direction: column;
    gap: 22px;
  }
  .l-information__content {
    flex-direction: column;
    gap: 11px;
  }
  .l-information__article {
    line-height: 1.6;
  }
  .l-information__article + .l-information__article {
    margin-top: 0;
  }
}
@media screen and (min-width: 0px) and (max-width: 768px) and (max-width: 1024px) {
  .l-location__list {
    gap: 40px;
  }
}
@media screen and (min-width: 0px) and (max-width: 768px) {
  .l-location {
    padding-block-start: 112px;
  }
  .l-location__inner {
    padding-block: 72px;
  }
  .l-plan__body-img .l-plan__mv .l-plan__mv-img {
    max-width: 100%;
  }
  .l-plan__list {
    margin-inline-end: -24px;
  }
  .l-plan__summary-title {
    font-size: 14px;
  }
  .l-plan__summary-com {
    font-size: 12px;
  }
  .l-quality__header {
    gap: 24px;
  }
  .l-quality__heading {
    margin-block-end: 32px;
  }
  .l-quality__body {
    flex-direction: column;
    gap: 24px;
    margin-block-start: 48px;
  }
  .l-quality__columns {
    flex-direction: column;
  }
  .l-quality__label {
    gap: 8px;
  }
  .l-quality__label-title {
    font-size: 16px;
  }
  .l-quality__label-text {
    font-size: 12px;
  }
  .l-quality__label-body .note {
    font-size: 10px;
  }
  .l-quality__img {
    margin-inline: auto;
  }
  .l-map {
    padding-top: 64px;
    padding-bottom: 88px;
  }
  .l-map__heading {
    font-size: 22px;
  }
  .l-map__heading::after {
    width: 24px;
    bottom: -12px;
  }
  .l-map__contents {
    margin-top: 60px;
  }
  .l-map__content + .l-map__content {
    margin-top: 48px;
  }
  .l-map__button {
    margin-top: 46px;
  }
  .l-map__summary {
    margin-block-start: 16px;
    gap: 8px;
  }
  .l-map__summary .l-map__summary-title {
    font-size: 1rem;
  }
  .l-map__summary .l-map__summary-com {
    font-size: 12px;
  }
  .l-outline {
    padding-top: 64px;
    padding-bottom: 88px;
    padding-inline: 0;
  }
  .l-outline__heading {
    font-size: 22px;
  }
  .l-outline__heading::after {
    width: 24px;
    bottom: -12px;
  }
  .l-outline__contents {
    margin-top: 60px;
    padding: 32px 24px;
  }
  .l-outline__content + .l-outline__content {
    margin-top: 40px;
  }
  .l-outline__content-title {
    font-size: 16px;
  }
  .l-outline__add_text {
    font-size: 12px;
    margin-block-start: 16px;
  }
  .l-outline__list {
    margin-block-start: 24px;
  }
  .l-outline__list-item {
    padding: 16px 12px;
    display: flex;
    gap: 4px;
    flex-direction: column;
  }
  .l-outline__list-item + .l-outline__list-item {
    border-top: 1px solid #707070;
  }
  .l-outline__list-item > dt {
    max-width: 100%;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 1;
  }
  .l-outline__list-item > dd {
    line-height: 1.6;
    font-size: 12px;
  }
  .l-outline__button {
    margin-top: 40px;
  }
  .l-outline__caption-list {
    line-height: 1.6;
    font-size: 10px;
    margin-block-start: 8px;
  }
  .l-gallery__content:not(:first-of-type) {
    margin-block-start: 64px;
  }
  .l-gallery__heading {
    padding-inline: 24px;
  }
  .l-gallery__category-title {
    font-size: 16px;
    margin-block-end: 32px;
    gap: 11px;
  }
  .l-gallery__category-title::before {
    width: 2px;
    height: 20px;
  }
  .l-gallery-tablist-container {
    margin-block-end: 12px;
  }
  .l-gallery-tablist {
    gap: 2px;
    padding: 2px;
  }
  .l-gallery-tablist > li {
    padding: 8px;
    font-size: 12px;
  }
  .l-gallery-slide-main {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
  .l-gallery-slide-main .block.slick-active::after {
    opacity: 0;
  }
  .l-gallery-slide-thum {
    margin-block-start: 24px;
    padding-inline: 24px;
    gap: 6px 4px;
  }
  .l-gallery-slide-thum .block {
    width: 78px !important;
    aspect-ratio: 78/45;
  }
  .l-gallery-slide-thum .slick-track {
    gap: 6px 4px;
  }
  .l-gallery .slick-prev {
    inset-inline-start: 16px;
  }
  .l-gallery .slick-next {
    inset-inline-end: 16px;
  }
  .l-gallery-slide-caption-display {
    max-width: 100%;
    width: calc(100vw - 48px);
    margin-inline: auto;
  }
}
@media screen and (min-width: 0px) and (max-width: 768px) and (max-width: 767px) {
  .l-gallery .slick-prev,
  .l-gallery .slick-next {
    height: 100%;
    width: 24px;
  }
  .l-gallery .slick-prev::before,
  .l-gallery .slick-next::before {
    width: 8px;
    height: 8px;
  }
  .l-gallery .slick-prev {
    inset-inline-start: 0;
  }
  .l-gallery .slick-prev::before {
    transform: translate(-40%, -50%) rotate(-135deg);
  }
  .l-gallery .slick-next {
    inset-inline-end: 0;
  }
  .l-gallery .slick-next::before {
    transform: translate(-75%, -50%) rotate(45deg);
  }
}
@media screen and (min-width: 0px) and (max-width: 768px) {
  .p-bunjo-column {
    flex-direction: column;
  }
  .p-bunjo-column__heading {
    width: 100%;
  }
  .p-bunjo-column__heading-title {
    font-size: 22px;
    margin-bottom: 32px;
  }
  .p-bunjo-column__heading-text {
    font-size: 12px;
    line-height: 2.25;
  }
  .p-bunjo-column__heading-text + .p-bunjo-column__heading-text {
    margin-top: 1em;
  }
  .p-bunjo-column__heading-btn-wrap {
    margin-block-start: 56px;
    gap: 12px;
  }
  .p-bunjo-column__heading-btn {
    gap: 27px;
  }
  .p-bunjo-column__heading-btn::after {
    width: 32px;
    height: 0.5px;
    right: 17px;
  }
  .p-bunjo-column__heading-btn .btn-circle {
    width: 33px;
    height: 33px;
  }
  .p-bunjo-column__heading-btn .btn-circle::before {
    width: 5px;
    height: 5px;
  }
  .p-contact-box {
    padding: 40px 16px 38px;
  }
  .p-contact-box::before {
    display: none;
  }
  .p-contact-box__body {
    flex-direction: column;
    gap: 20px;
    display: grid;
    grid-template-areas: "p-contact-box__heading" "p-contact-box__caption" "p-contact-box__tel-box" "l-visitor__area";
  }
  .p-contact-box__heading {
    width: 50%;
    padding: 0;
    border-right: none;
    order: -1;
    grid-area: p-contact-box__heading;
  }
  .p-contact-box__caption {
    grid-area: p-contact-box__caption;
  }
  .p-contact-box__tel-box {
    grid-area: p-contact-box__tel-box;
  }
  .l-visitor__area {
    grid-area: l-visitor__area;
  }
  .p-contact-box__heading-sub-title {
    margin-bottom: 3px;
  }
  .p-contact-box__heading-title {
    font-size: 16px;
  }
  .p-contact-box__info {
    width: 50%;
    padding: 0;
    display: contents;
  }
  .p-contact-box__tel-box {
    order: 1;
    border: 1px solid #DEDEDE;
    justify-content: center;
    min-height: 56px;
    border-radius: 4px;
    font-size: 32px;
  }
  .p-contact-box__entry-box {
    order: 2;
    min-height: 56px;
    max-width: 100%;
  }
  .p-contact-box__caption {
    order: 0;
  }
}
@media screen and (min-width: 0px) and (max-width: 768px) and (max-width: 1150px) {
  .p-contact-box::before {
    left: 50%;
  }
  .p-contact-box__info {
    width: 50%;
    justify-content: center;
  }
  .p-contact-box__heading {
    width: 100%;
    flex-shrink: 1;
  }
  .p-contact-box__tel-box {
    white-space: nowrap;
  }
  .p-contact-box__entry-box {
    flex: 1;
    max-width: 100%;
  }
  .p-contact-box__caption {
    text-align: center;
  }
}
@media screen and (min-width: 0px) and (max-width: 768px) {
  .c-heading {
    gap: 12px;
  }
  .c-heading.--midium {
    gap: 12px;
  }
  .c-heading.--midium .c-heading__title {
    font-size: 44px;
  }
  .c-heading__title {
    font-size: 64px;
  }
  .l-container-heading .c-heading__title {
    font-size: 14px;
  }
  .c-heading__caption {
    font-size: 10px;
  }
  .c-heading__caption::before {
    width: 16px;
  }
  .slick-slide.c-plan-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 303px;
    margin-inline-end: 24px;
  }
  .c-plan-column__info {
    margin-inline: 8px;
  }
  .c-plan-column__img {
    max-width: 100%;
    width: 100%;
  }
  .c-plan-column__heading {
    font-size: 16px;
  }
  .c-plan-column__price {
    font-size: 24px;
  }
  .c-plan-column__body {
    gap: 16px;
  }
  .c-plan-column__area {
    gap: 12px;
  }
  .c-plan-column__area-text:not(:last-of-type)::after {
    height: 32px;
    margin-inline-start: 12px;
  }
  .c-plan-column__area-text.--plan {
    font-size: 14px;
  }
  .c-plan-column__area-text.--land, .c-plan-column__area-text.--building {
    font-size: 10px;
  }
  .c-plan-column__area-text.--land .m2, .c-plan-column__area-text.--building .m2 {
    font-size: 14px;
    margin-inline-start: 0;
  }
  .c-plan-column__area-text .area-text__wrap {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .c-quality-column {
    gap: 16px;
    width: 100%;
  }
  .c-quality-column__content {
    gap: 8px;
  }
  .c-quality-column__heading {
    font-size: 16px;
  }
  .c-quality-column__text {
    font-size: 12px;
    line-height: 1.8;
  }
  .c-features-column {
    width: calc((100% - 6px) / 2);
    padding: 8px 6px;
  }
  .c-features-column__text {
    font-size: 12px;
  }
  .c-access-column {
    gap: 10px;
  }
  .l-access__grid--2column .c-access-column__info {
    flex-direction: column;
    gap: 0;
    align-items: normal;
  }
  .c-access-column__sub-text {
    margin-bottom: 6px;
  }
  .c-access-column__text {
    font-size: 20px;
  }
  .c-access-column__text > span {
    font-size: 40px;
    margin-inline: 5px 4px;
  }
  .c-location-column {
    width: 100%;
    gap: 16px;
  }
  .c-location-column__title {
    font-size: 16px;
  }
  .c-location-column__text {
    font-size: 12px;
  }
  .c-location-list__item {
    padding: 8px 0 14px 11px;
  }
  .c-more-button {
    display: block;
  }
}
@media screen and (min-width: 0px) and (max-width: 768px) and (min-width: 0px) and (max-width: 1400px) {
  .c-entry-button {
    flex: 1;
    width: auto;
    padding: 20px 6px;
    line-height: 1;
  }
  .c-entry-button > img {
    width: 14px;
    height: 15px;
  }
  .c-map__button {
    max-width: calc((100% - 12px) / 4);
    display: flex;
    background: #fff;
    color: #000;
    border: #DEDEDE solid 1px;
    flex: unset;
  }
  .c-map__button span {
    text-align: center;
  }
}
@media screen and (min-width: 0px) and (max-width: 768px) {
  .c-drawer-button {
    display: block;
  }
}
@media screen and (min-width: 0px) and (max-width: 768px) and (min-width: 0px) and (max-width: 1400px) {
  .c-drawer-button {
    display: block;
  }
}
@media screen and (min-width: 0px) and (max-width: 768px) {
  .c-close-button {
    line-height: 1.6;
  }
  .c-close-button img {
    width: 10px;
    height: 10px;
  }
  .c-footer__info {
    flex-direction: column;
    gap: 22px;
    width: 100%;
  }
  .c-footer__title {
    text-align: center;
    font-size: 20px;
  }
  .c-footer__inner {
    align-items: center;
    gap: 4px;
    background-color: #000000;
    padding: 24px;
    width: 100%;
  }
  .c-footer__tel {
    border-bottom: none;
    font-size: 32px;
  }
  .c-footer__tel .fs {
    font-size: 18px;
  }
  .c-footer__hours {
    font-size: 10px;
    color: #909090;
  }
  .c-footer__button-list {
    max-width: 100%;
    flex-direction: row;
  }
  .c-footer__button-item {
    width: 100%;
  }
  .c-footer__button {
    max-width: 100%;
    padding: 24px 10px;
    font-size: 14px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .c-footer__button img {
    width: 14px;
    height: 15px;
  }
  .remodal {
    padding: 20px 8px;
    height: calc(100dvh - 80px);
  }
  .remodal-wrapper {
    padding: 64px 8px;
  }
  .remodal-close {
    width: 24px;
    height: 24px;
    top: -32px;
    right: 0;
  }
  .remodal-close::after {
    width: 24px;
    height: 24px;
  }
  .l-visitor_block {
    padding-block-start: 65px;
  }
  .l-visitor-section {
    padding-block: 38px;
  }
  .l-visitor-section::after {
    bottom: -8px;
    left: 8px;
  }
  .l-visitor-title {
    gap: 8px;
  }
  .l-visitor-title .fs {
    font-size: 14px;
  }
  .l-visitor-title .fl {
    font-size: 21px;
  }
  .l-visitor-button {
    padding-block: 16px;
    font-size: 1rem;
  }
  .l-visitor-button img {
    width: 20px;
    height: 20px;
  }
  .l-vr {
    padding-block-end: 70px;
    width: 100vw;
    margin-inline: calc(50% - 50vw);
  }
  .l-vr__body {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
  }
  .l-vr__body-inner iframe {
    aspect-ratio: unset;
    width: 100%;
    height: calc(100dvh - 147px);
  }
  .l-features__list {
    gap: 8px 6px;
  }
  .fixedBnr {
    display: none;
  }
  .l-float-sp__inner-left {
    flex-direction: column;
  }
}