@charset "utf-8";

/* 基本ここから */

* {
  box-sizing: border-box;
}

html {
  margin-top: 0 !important;
}

body {
  margin: 0;
  padding: 0;
}

a,
p,
h1,
h2,
h3,
h4,
h5,
li,
th,
td,
dt,
dd {
  text-decoration: none;
  list-style-type: none;
  font-family: "Noto Serif JP", serif;
  margin: 0;
}

h2 {
  color: #c0ad49;
}

p {
  color: #fff;
}

.NS {
  font-family: "Noto Sans JP", sans-serif;
}

.opa {
  transition: 0.3s;
}

.opa:hover {
  opacity: 0.7;
}

section {
  max-width: 1200px;
  margin: auto;
  padding: 100px 0;
}

.sp {
  display: none !important;
}

@media (max-width: 768px) {
  .sp {
    display: block !important;
  }

  .pc {
    display: none !important;
  }
}

.bold {
  font-weight: bold;
}

/* 下から上にフェードイン */
.fadeInUp.visible {
  animation: fadeInBottom 1s ease 0s 1 normal;
}

@keyframes fadeInBottom {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
  }
}

.tit {
  /* margin-bottom: 50px; */
  margin-bottom: 0.75em;
  @media screen and (min-width: 768px) {
    margin-bottom: 45px;
  }
}

.tit .ja {
  font-size: 14px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.tit .en {
  font-size: 30px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-weight: 100;
}

/* viewmoreボタンここから */

.more-btn {
  background-color: #c0ad49;
  border: 1px solid #1d4556;
  padding: 15px 0;
  position: relative;
  margin: 0 auto;
  width: 181px;
}

.more-btn::after {
  position: absolute;
  content: "";
  border-left: 10px solid transparent;
  border-bottom: 10px solid #1d4556;
  right: 5px;
  bottom: 5px;
}

.more-btn p {
  color: #1d4556;
  letter-spacing: 0.05em;
  text-align: center;
}

/* viewmoreボタンここまで */

@media screen and (max-width: 1200px) {
  section {
    width: 90%;
  }
}

@media screen and (max-width: 1080px) {
  .tit .ja {
    font-size: 12.5px;
  }

  .tit .en {
    font-size: 22.5px;
  }
}

@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }

  section {
    padding: 50px 0;
  }

  .tit {
    /* margin-bottom: 25px; */
  }

  .more-btn {
    background-color: #c0ad49;
    border: 1px solid #1d4556;
    padding: 15px 0;
    position: relative;
    margin: 0 auto;
    width: 170.5px;
  }

  .more-btn::after {
    position: absolute;
    content: "";
    border-left: 9px solid transparent;
    border-bottom: 9px solid #1d4556;
    right: 5px;
    bottom: 5px;
  }
}

/* 基本ここまで */



/* ヘッダーここから */

.header {
  background-color: unset;
  display: flex;
  align-items: center;
  padding: 20px 150px;
  position: fixed;
  width: 100%;
  z-index: 9999;
  top: 0;
  height: 100px;

  &:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;

    top: 0;
    left: 0;
    /* mix-blend-mode: multiply; */
    background-color: #8c3a27;
    opacity: 0.9;
  }

  border-top: 5px solid #0b2232;

  @media screen and (min-width:768px) {
    border-width: 10px;
  }
}
.header .header_inner {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}

.header .logo {
  width: 345px;
  position: relative;
}

.header .logo img {
  width: 100%;
}

.header .right-header {
  margin-left: auto;
  display: flex;
  align-items: center;
  position: relative;
}

.header .right-header nav ul {
  display: flex;
}

.header .right-header nav ul li {
  padding: 0 15px;
  border-left: 1px solid #fff;
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.05em;
}

.header .right-header nav ul li a {
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.05em;

  @media screen and (min-width: 768px) {
    font-size: clamp(12px, 0.9vw, 16px);
  }
}

.header .right-header nav ul li:last-child {
  border-right: 1px solid #fff;
}

.header .right-header .contact-btn {
  margin-left: 30px;
}

.header .right-header .contact-btn a {
  display: inline-block;
  padding: 20px 30px;
  background-color: #c0ad49;
  color: #1d4556;
  font-size: 16px;
  font-weight: 600;
  position: relative;
}

.header .right-header .contact-btn a::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 1px solid #1b444f;
}

@media screen and (max-width: 1750px) {
  .header {
    /* padding: 20px 75px; */
    padding: 20px;
  }

  .header .logo {
    width: 18vw;
  }

  .header .right-header nav ul li a {
    /* font-size: 0.9vw; */
  }

  .header .right-header .contact-btn a {
    font-size: 0.9vw;
    padding: 20px 20px;
  }
}

@media screen and (max-width: 1200px) {
  .header {
    padding: 20px;
  }
}

@media screen and (max-width: 1080px) {
  .header .pc {
    display: none !important;
  }

  .header .sp {
    display: block !important;
  }

  .header .logo {
    width: 377px;
    z-index: 9999;
  }

  .header .right-header-sp {
    display: flex !important;
    margin-left: auto;
    align-items: center;
  }

  .header .right-header-sp .contact-nav {
    border-left: 1px solid #c0ad49;
    border-right: 1px solid #c0ad49;
    z-index: 9999;
  }

  .header .right-header-sp .contact-nav img {
    width: 40px;
    margin: 0 20px;
  }

  .header__nav {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    background-color: #8c3a27;
    /*ハンバーガーメニュークリック時のナビゲーションメニュー背景色*/
    transition: ease 0.4s;
    /*ハンバーガーメニュークリック時のナビゲーションメニュー出現を遅延*/
  }

  /* ハンバーガーメニュー */
  .header__hamburger {
    width: 32px;
    height: 32px;
    padding: 0;
    margin-left: 20px;
  }

  .hamburger {
    background-color: transparent;
    /*buttonタグデフォルトスタイルを打ち消し*/
    border-color: transparent;
    /*buttonタグデフォルトスタイルを打ち消し*/
    z-index: 9999;
  }

  /* ハンバーガーメニューの線 */
  .hamburger span {
    width: 100%;
    height: 2px;
    background-color: #c0ad49;
    position: relative;
    transition: ease 0.4s;
    display: block;
  }

  .hamburger span:nth-child(1) {
    top: 0;
  }

  .hamburger span:nth-child(2) {
    margin: 7px 0;
  }

  .hamburger span:nth-child(3) {
    top: 0;
  }

  /* ハンバーガーメニュークリック後のスタイル */
  .header__nav.active {
    transform: translateX(0);
    overflow-y: scroll;
  }

  .hamburger.active span:nth-child(1) {
    top: 5px;
    transform: rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    top: -13px;
    transform: rotate(-45deg);
  }

  .header ul {
    padding: 100px 80px;
  }

  .header ul li a {
    color: #c0ad49;
    width: 100%;
    display: block;
    text-align: center;
    font-size: 20px;
    border-bottom: 1px solid #c0ad49;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .header ul li .mb-0 {
    margin-bottom: 0;
  }

  .header ul li a span {
    font-size: 12.5px;
  }
}

@media screen and (max-width: 768px) {
  .header {
    padding: 10px;
    height: 50px;
    background-color: rgba(140, 58, 39, 0.9);
    &:before {
      content: none;
    }
  }

  .header .logo {
    width: 188px;
  }

  .header__hamburger {
    width: auto;
    height: 100%;
    padding: 0;
    margin: 0 0 0 10px;
  }

  .hamburger span {
    width: 25px;
    height: 1px;
    background-color: #c0ad49;
    position: relative;
    transition: ease 0.4s;
    display: block;
  }

  .header .right-header-sp .contact-nav img {
    width: 25px;
    margin: 0 10px;
  }

  .hamburger span:nth-child(2) {
    margin: 8px 0;
  }

  .header ul {
    padding: 50px 40px;
  }

  .header ul li a {
    color: #c0ad49;
    width: 100%;
    display: block;
    text-align: center;
    font-size: 20px;
    border-bottom: 1px solid #c0ad49;
    padding-bottom: 20px;
    margin-bottom: 10px;
  }
}


  @media screen and (max-width: 1400px) {
    .header .contact-btn {
      .break {display: block;}
    }
    .header {
      /* padding: 20px 75px; */
      padding: 20px;
    }
    .logo {width: 14px;}
    .nav-links {
      padding-left: 0;
      li {padding: 0 6px;}
    }
  }

  @media screen and (min-width: 1401px) {
    .header {
      padding: 20px 75px;
    }
  }

/* ヘッダーここまで */


/* フッターここから */

footer {
  background-color: #231815;
  background-color: #000;
  position: relative;

  padding-top: 315px;
}

footer section {
  padding: 50px 0 45px;
}

footer .footer-logo {
  width: 380px;
  margin: 0 auto;
}

footer .footer-logo img {
  width: 100%;
}

footer .footer_bnr {
  max-width: 400px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: fit-content;

  opacity: 1;
  transition: opacity 0.4s;

  & img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  &:hover {
    opacity: 0.9;
  }
}

footer .footer-nav nav ul {
  display: flex;
  margin: 50px auto 0;
  padding: 0;
  justify-content: center;
}

footer .footer-nav nav ul {
  display: flex;
}

footer .footer-nav nav ul li {
  padding: 0 15px;
  border-left: 1px solid #fff;
}

footer .footer-nav nav ul li a {
  font-size: 18px;
  color: #fff;
}

footer .footer-nav nav ul li:last-child {
  border-right: 1px solid #fff;
}

footer .noteLists {
  font-size: 16px;
  line-height: 1.75;
  color: #fff;
  margin-top: 45px;

  & li {
    text-indent: -1.5em;
    padding-left: 1.5em;

    &:before {
      content: "※";
      margin-right: 0.5em;
    }
  }
}

footer .copyright {
  font-size: 14px;
  text-align: center;
  color: #fff;
  padding-bottom: 20px;
}

@media screen and (max-width: 1080px) {
  footer .footer-nav nav ul li a {
    font-size: 14px;
    color: #fff;
  }
}

@media screen and (max-width: 768px) {
  footer {
    margin-bottom: 50px;
  }

  footer section {
    padding: 300px 0 50px;
  }

  footer .footer-logo {
    width: 295px;
    margin: 0 auto;
  }

  footer .footer_bnr {
    max-width: 670px;
  }

  footer .copyright {
    font-size: 10px;
    text-align: center;
    color: #fff;
    padding-bottom: 20px;
  }

  footer .kotei {
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 9998;
  }

  footer .f-siryou-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 10px 0;
    background-color: #c0ad49;
    outline: 1px solid #1b4454;
    outline-offset: -5px;
  }

  footer .f-siryou-btn img {
    width: 25px;
  }

  footer .f-siryou-btn p {
    font-size: 20px;
    color: #1d4556;
    letter-spacing: 0.05em;
    padding: 0 40px 0 20px;
  }

  footer .f-siryou-btn .triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 10px solid #1d4556;
    border-right: 0;
  }

  footer .f-siryou-btn::before {
    position: absolute;
    content: "";
    border-left: 19px solid #1d4556;
    border-bottom: 19px solid transparent;
    left: 5px;
    top: 5px;
  }

  footer .f-siryou-btn::after {
    position: absolute;
    content: "";
    border-left: 19px solid transparent;
    border-bottom: 19px solid #1d4556;
    right: 5px;
    bottom: 5px;
  }

  footer .noteLists {
    font-size: 12.5px;
    line-height: 1.8;
  }
}

/* フッターここまで */


/* mvここから */
#mv {
  position: relative;
}

#mv_wrap,
#mv,
.main_visual,
.mv-img,
.mv-img ul,
.mv-img ul li {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}

#mv .mv_txt-pc {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 300px;
  transform: translateY(-50%) translateX(-50%);
  z-index: 10;

  filter: drop-shadow(0px 0px 6px #833b33) drop-shadow(0px 0px 6px #833b33);

  @media screen and (min-width: 768px) {
    position: absolute;
    top: 30%;
    left: 50%;
    width: 533px;
    z-index: 99;
    transform: inherit;
  }

  @media screen and (min-width: 1080px) {
    position: absolute;
    top: 10%;
    left: 4%;
    width: 453px;
  }
}

#mv .mv_txt-pc img {
  width: 100%;
}

.mv-img ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#mv .mv-list {
  /* position: static; */
  background-color: unset;
  padding: 20px 0;

  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  margin-top: -1px;

  &:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #8c3a27;
    /* mix-blend-mode: multiply; */
    opacity: 0.9;
  }
}

#mv .mv-list ul {
  display: flex;
  justify-content: center;
  padding: 0;
  font-weight: 100;

  position: relative;
}

#mv .mv-list ul li {
  font-size: 30px;
  color: #c0ad49;
  letter-spacing: 0.05em;
  padding: 0 20px;
  line-height: 1.4;
  text-align: center;
  border-left: 0.77px solid #c0ad49;
  display: flex;
  flex-direction: column;
  justify-content: center;

  &.size_middle {
    font-size: 20px;
    display: flex;
    flex-direction: row;
    align-items: baseline;

    @media screen and (min-width: 768px) {
      display: flex;
      line-height: 2;
    }

    &.size-tune {
      @media screen and (max-width: 767px) {
        font-size: 16px;
        .LargeItalic {font-size: 26px;}
      }
    }
  }

  .LargeItalic {
    font-size: 28.5px;
    font-style: italic;
    @media screen and (min-width: 768px) {
      font-size: 30px;
    }
  }
}

#mv .mv-list ul li:last-child {
  border-right: 0.77px solid #c0ad49;
}

#mv .mv-list ul li span {
  font-size: 15px;
}

@media screen and (max-width: 1080px) {
  #mv .mv_txt-pc {

  }
  #mv .mv-list {
    position: static;
    background-color: #8c3a27;
    &:before {
      content: none;
    }
  }

  #mv .mv-list ul li {
    font-size: 20px;
  }

  #mv .mv-list ul li span {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  #mv .mv_txt-pc {

  }

  #mv .mv-list {
    position: static;
    background-color: #8c3a27;
    padding: 15px 40px;
    bottom: 0;
    width: 100%;
  }

  #mv .mv-list ul {
    display: block;
    padding: 0;
  }

  #mv .mv-list ul li {
    font-size: 28.5px;
    padding-bottom: 7.5px;
    margin-bottom: 7.5px;
    border-left: none;
    border-right: none;
    position: relative;
    border-bottom: 1px solid #c0ad49;
  }

  /* #mv .mv-list ul li::before {
        position: absolute;
        content: "";
        background-color: #C0AD49;
        width: 1px;
        height: 38px;
        left: 0;
        bottom: 0;
    }

    #mv .mv-list ul li::after {
        position: absolute;
        content: "";
        background-color: #C0AD49;
        width: 1px;
        height: 38px;
        right: 0;
        bottom: 0;
    } */

  #mv .mv-list ul li:last-child {
    border-right: none;
  }
}

/* mvここまで */

/* infoここから */

.info-bg {
  background-image: url(../images/info/info-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  border-top: 10px solid #c0ad49;
  border-bottom: 10px solid #c0ad49;
  position: relative;
}

.info-bg .tit-deco {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 78px;
  background-color: #fff;
}

#info .info-list dl {
  display: flex;
  padding: 20px 0;
  border-top: 1px solid #c0ad49;
  border-bottom: 1px solid #c0ad49;
  margin: 0;
  /* margin: 0 0 50px; */
}

#info .info-list dl dt,
#info .info-list dl dd {
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.05em;
  font-weight: 500;
}

#info .info-list dl dd {
  margin-left: 30px;
}

@media screen and (max-width: 768px) {
  .info-bg {
    border-top: 5px solid #c0ad49;
    border-bottom: 5px solid #c0ad49;
  }

  .info-bg .tit-deco {
    height: 39px;
  }

  #info .info-list dl {
    display: block;
    padding: 15px 0;
    margin: 0;
    /* margin: 0 0 25px; */
  }

  #info .info-list dl dt {
    font-size: 12.5px;
    color: #fff;
    letter-spacing: 0.05em;
    font-weight: 500;
    margin-bottom: 10px;
  }

  #info .info-list dl dd {
    margin-left: 0;
    font-size: 15px;
  }
}

/* infoここまで */

/* pointここから */
.upperLine {
  border-top: 10px solid #c0ad49;
}
@media screen and (max-width: 768px) {
  .upperLine {
    border-top: 5px solid #c0ad49;
  }
}

.point-bg {
  /* background-image: url(../images/point/point-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; */
  background-color: #b1452c;
  width: 100%;
  position: relative;
}

.point-bg::before {
  content: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.point-bg > * {
  position: relative;
  z-index: 2;
}

.point-bg .tit-deco {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 78px;
  background-color: #c0ad49;
}

#point h3 {
  font-size: 30px;
  font-weight: normal;
  text-align: center;
  color: #fff;
  line-height: 1.66;
  letter-spacing: 0.05em;
  margin: 0;
  font-weight: 100;
}

#point .point-werp {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 60px;
}

#point .point-werp .point-list-werp {
  width: calc((100% - 40px) / 3);
  height: 270px;
  margin-right: 20px;
  margin-bottom: 20px;
  background-color: #c0ad49;
  position: relative;
}

#point .point-werp .point-list-werp:nth-child(3n) {
  margin-right: 0;
}

#point .point-werp .point-list-werp:last-child {
  margin-bottom: 0;
}

#point .point-werp .point-list-werp .point-list {
  background-color: #fff;
  padding: 20px;
  position: absolute;
  right: 5px;
  bottom: 5px;
  left: -5px;
  height: 270px;
}

#point .point-werp .point-list-werp .point-list .point-flex {
  display: flex;
}

#point .point-werp .point-list-werp .point-list .point-flex .point-numper {
  width: 54px;
}

#point .point-werp .point-list-werp .point-list .point-flex .point-numper img {
  width: 100%;
}

#point .point-werp .point-list-werp .point-list .point-flex .point-tit {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
}

#point .point-werp .point-list-werp .point-list .point-flex .point-tit h4 {
  font-size: 22px;
  line-height: 1.27;
  letter-spacing: 0.1em;
  color: #231815;
  text-align: center;
  font-weight: normal;
}

#point
  .point-werp
  .point-list-werp
  .point-list
  .point-flex
  .point-tit
  .img-werp {
  height: 100px;
  display: flex;
  align-items: center;
}

#point
  .point-werp
  .point-list-werp
  .point-list
  .point-flex
  .point-tit
  .img-werp
  img {
  max-height: 80px;
  margin: 0 auto;
  display: block;
}

#point .point-werp .point-list-werp .point-list .point-txt {
  max-width: 310px;
  margin: 0 auto;
}

#point .point-werp .point-list-werp .point-list .point-txt p {
  font-size: 15px;
  line-height: 1.66;
  letter-spacing: 0.08em;
  color: #231815;
}

#point .point-werp .point-list-werp .point-list .point-txt p .spacing {
  letter-spacing: 0;
}

/* .point-list-werp:nth-of-type(2).js-trigger-fadeinup.fadeInUp.visible,
.point-list-werp:nth-of-type(5).js-trigger-fadeinup.fadeInUp.visible,
.point-list-werp:nth-of-type(8).js-trigger-fadeinup.fadeInUp.visible,
.point-list-werp:nth-of-type(11).js-trigger-fadeinup.fadeInUp.visible,
.point-list-werp:nth-of-type(14).js-trigger-fadeinup.fadeInUp.visible {
    animation-delay: 100ms;
}

.point-list-werp:nth-of-type(3).js-trigger-fadeinup.fadeInUp.visible,
.point-list-werp:nth-of-type(6).js-trigger-fadeinup.fadeInUp.visible,
.point-list-werp:nth-of-type(9).js-trigger-fadeinup.fadeInUp.visible,
.point-list-werp:nth-of-type(12).js-trigger-fadeinup.fadeInUp.visible,
.point-list-werp:nth-of-type(15).js-trigger-fadeinup.fadeInUp.visible {
    animation-delay: 200ms;
}

.point-list-werp:nth-of-type(4).js-trigger-fadeinup.fadeInUp.visible,
.point-list-werp:nth-of-type(7).js-trigger-fadeinup.fadeInUp.visible,
.point-list-werp:nth-of-type(10).js-trigger-fadeinup.fadeInUp.visible,
.point-list-werp:nth-of-type(13).js-trigger-fadeinup.fadeInUp.visible,
.point-list-werp:nth-of-type(16).js-trigger-fadeinup.fadeInUp.visible {
    animation-delay: 0ms;
} */

.point-list-werp {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.point-list-werp.fadeInUp {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 1080px) {
  #point h3 {
    font-size: 20px;
    line-height: 1.75;
  }

  #point .point-werp .point-list-werp .point-list .point-flex .point-numper {
    width: 33px;
  }

  #point .point-werp .point-list-werp .point-list .point-flex .point-tit h4 {
    font-size: 13.5px;
    line-height: 1.37;
  }

  #point .point-werp .point-list-werp .point-list .point-txt p {
    font-size: 12.5px;
    line-height: 1.4;
    padding: 0 10px;
  }
}

@media screen and (max-width: 768px) {
  .point-bg .tit-deco {
    height: 39px;
  }

  #point .point-werp {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 30px;
    grid-row-gap: 12px;
    justify-content: space-between;
  }

  #point .point-werp .point-list-werp {
    width: calc((100% - 10px) / 2);
    height: 250px;
    /* margin-right: 10px !important;
        margin-bottom: 12.5px; */
    margin-right: 0;
    margin-bottom: 0;
    background-color: #c0ad49;
    position: relative;
  }

  #point .point-werp .point-list-werp:nth-child(2n) {
    margin-right: 0 !important;
    transform: translateX(5px);
  }

  #point .point-werp .point-list-werp:nth-child(15),
  #point .point-werp .point-list-werp:nth-child(16) {
    margin-bottom: 0;
  }

  #point .point-werp .point-list-werp .point-list {
    background-color: #fff;
    padding: 7px;
    position: absolute;
    right: 5px;
    bottom: 5px;
    left: -5px;
    height: 250px;
  }

  #point
    .point-werp
    .point-list-werp
    .point-list
    .point-flex
    .point-tit
    .img-werp {
    height: 75px;
  }

  #point
    .point-werp
    .point-list-werp
    .point-list
    .point-flex
    .point-tit
    .img-werp
    img {
    max-height: 50px;
  }

  #point .point-werp .point-list-werp .point-list .point-flex .point-tit h4 {
    letter-spacing: 0;
    height: 50px;
    align-items: center;
    display: flex;
    justify-content: center;
  }

  #point .point-werp .point-list-werp:nth-child(3),
  #point .point-werp .point-list-werp:nth-child(4),
  #point .point-werp .point-list-werp:nth-child(5),
  #point .point-werp .point-list-werp:nth-child(6) {
    height: 216px;
  }

  #point .point-werp .point-list-werp .point-list03,
  #point .point-werp .point-list-werp .point-list04,
  #point .point-werp .point-list-werp .point-list05,
  #point .point-werp .point-list-werp .point-list06 {
    height: 216px;
  }

  #point .point-werp .point-list-werp:nth-child(7),
  #point .point-werp .point-list-werp:nth-child(8),
  #point .point-werp .point-list-werp:nth-child(15),
  #point .point-werp .point-list-werp:nth-child(16) {
    height: 237px;
  }

  #point .point-werp .point-list-werp .point-list07,
  #point .point-werp .point-list-werp .point-list08,
  #point .point-werp .point-list-werp .point-list15,
  #point .point-werp .point-list-werp .point-list16 {
    height: 237px;
  }

  #point .point-werp .point-list-werp:nth-child(9),
  #point .point-werp .point-list-werp:nth-child(10),
  #point .point-werp .point-list-werp:nth-child(11),
  #point .point-werp .point-list-werp:nth-child(12),
  #point .point-werp .point-list-werp:nth-child(13),
  #point .point-werp .point-list-werp:nth-child(14) {
    height: 245px;
  }

  #point .point-werp .point-list-werp .point-list09,
  #point .point-werp .point-list-werp .point-list10,
  #point .point-werp .point-list-werp .point-list11,
  #point .point-werp .point-list-werp .point-list12,
  #point .point-werp .point-list-werp .point-list13,
  #point .point-werp .point-list-werp .point-list14 {
    height: 245px;
  }

  /* #point .point-list-werp:nth-of-type(2).js-trigger-fadeinup.fadeInUp.visible,
    #point .point-list-werp:nth-of-type(4).js-trigger-fadeinup.fadeInUp.visible,
    #point .point-list-werp:nth-of-type(6).js-trigger-fadeinup.fadeInUp.visible,
    #point .point-list-werp:nth-of-type(8).js-trigger-fadeinup.fadeInUp.visible,
    #point .point-list-werp:nth-of-type(10).js-trigger-fadeinup.fadeInUp.visible,
    #point .point-list-werp:nth-of-type(12).js-trigger-fadeinup.fadeInUp.visible,
    #point .point-list-werp:nth-of-type(14).js-trigger-fadeinup.fadeInUp.visible,
    #point .point-list-werp:nth-of-type(16).js-trigger-fadeinup.fadeInUp.visible {
        animation-delay: 125ms !important;
    }

    #point .point-list-werp:nth-of-type(3).js-trigger-fadeinup.fadeInUp.visible,
    #point .point-list-werp:nth-of-type(5).js-trigger-fadeinup.fadeInUp.visible,
    #point .point-list-werp:nth-of-type(9).js-trigger-fadeinup.fadeInUp.visible,
    #point .point-list-werp:nth-of-type(11).js-trigger-fadeinup.fadeInUp.visible,
    #point .point-list-werp:nth-of-type(13).js-trigger-fadeinup.fadeInUp.visible,
    #point .point-list-werp:nth-of-type(15).js-trigger-fadeinup.fadeInUp.visible {
        animation-delay: 0ms !important;
    } */
}

#point .point-list .point-txt p.note {
    line-height: 1.5;
    margin-top: 0.5em;
    letter-spacing: 0.08em;
    color: #231815;
    font-size: 10px!important;
    @media screen and (min-width: 768px) {
      font-size: 12px!important;
    }
}

/* pointここまで */

/* mapここから */

.map-bg {
  /* background-image: url(../images/map/map-bg.webp);
  background-position: center;
  background-repeat: repeat;
  background-size: contain; */
  background-color: #f6f8f3;
  position: relative;
  width: 100%;
}

.map-bg .tit-deco {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 78px;
  background-color: #c0ad49;
}
#map h2 {color: #c0ad49;}
#map h2.fw100 {color: #fff;}
#map .map-img,
#map .nearby_facilities {
  max-width: 1200px;
  padding: 0;
  margin: 0 auto;
}

#map .map-img img {
  width: 100%;
}

#map .more-btn {
  margin-top: 50px;
}

#map .nearby_facilities {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 30px;

  & li {
    max-width: 272px;
    width: calc(272% / 12.00);
  }
  & figure {
    margin-bottom: 0px;
  }
  & p {
    color: #231815;
    font-size: 15px;
    text-align: center;
    word-break: auto-phrase;
  }
}

#map .nearby_facilities.store {
  & li {
    ul {
      padding-left: 0;
    }

    & li:first-child {
      font-size: 12px;
      position: relative;
      width: 100%;

      & span {
        color: #c0ad49;
        position: relative;
        background-color: #f6f8f3;
        z-index: 1;
        display: block;
        width: fit-content;
        padding-right: 1em;
      }

      &:after {
        content: "";
        max-width: 162px;
        height: 1px;
        width: 100%;
        background-color: #c0ad49;

        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        margin: auto;
      }
    }

    & li:not(:first-child) {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      position: relative;
      margin-top: 5px;

      &:before {
        content: "";
        width: 50%;
        height: 1px;
        border-top: 2px dotted #231815;

        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
      }

      & .facilities,
      & .distance {
        font-size: 10px;
        line-height: 1.5;
        color: #231815;
        background-color: #f6f8f3;
        position: relative;
        z-index: 1;
      }

      & .facilities {
        padding-right: 0.5em;
        text-align: left;
        word-break: auto-phrase;
      }
      & .distance {
        padding-left: 0.25em;
        min-width: 110px;
      }
    }

    &.dot_tune {
      @media screen and (min-width: 768px) {
        &:before {content: none!important;}
      }
    }
  }
}


#map .nearby_facilities.col3 {

  li {

    @media screen and (min-width: 768px) {
        max-width: 380px;
        width: calc(380% / 10);
    }
  }
}

#map .note {
  margin-top: 2em;
  margin-left: auto;
  margin-right: auto;
  font-size: 9pt;

  max-width: 1200px;
  padding: 0;

  p {
    color: #231815;
    text-indent: -1.5em;
    padding-left: 1em;
  }
}

@media screen and (max-width: 768px) {
  .map-bg .tit-deco {
    height: 39px;
  }

  #map .map-img {
    max-width: 1000px;
    width: 100%;
    padding: 0;
    margin: 0 auto;
  }

  #map .more-btn {
    margin-top: 40px;
  }

  #map .nearby_facilities {
    margin-top: 20px;
    gap: 15px;

    & li {
      max-width: 320px;
      width: calc(320% / 6.7);
    }
    & p {
      font-size: 9pt;
    }
  }

  #map .nearby_facilities.store {
    display: block;

    & li {
      max-width: unset;
      width: 100%;
      margin-top: 15px;

      ul {
        padding-left: 0;
      }

      & li:first-child {
        font-size: 17.5px;
        &:after {
          max-width: unset;
          width: 80%;
        }
      }

      & li:not(:first-child) {
        & .facilities,
        & .distance {
          font-size: 14px;
        }
      }
    }
  }
}

/* mapここまで */


/* EQUIPMENT - - - - - - - - */
.equipment-bg {
  background-image: url(../images/map/map-bg.webp);
  background-position: center;
  background-repeat: repeat;
  background-size: contain;
  position: relative;
  width: 100%;

  &.noneBg {background-image: none;}
}

.equipment-bg .tit-deco {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 78px;
  background-color: #C0AD49;
}


.equipment-bg {
  & .equipment_ttl {
    padding: 25px 2em;
    margin-top: 50px;
    margin-bottom: 25px;
  }
  & .equipment_ttl_flex {
    justify-content: space-between;
    align-items: center;

    & .fw100 {font-weight: 100;}
  }
  & .bg-F5F5F3 {
    background-color: #F5F5F3;
  }

  & .bg-1D4556 {
    background-color: #ba512d;
    color: #fff;
  }

  & h2 {color: #fff;}

  & h3 {
    font-size: 30px;
    font-weight: normal;
    text-align: center;
    color: #231815;
    line-height: 1.66;
    letter-spacing: 0.05em;
    margin: 0;
    font-weight: 100;
  }

  & .equipment_wrap {
    & .inner {
      padding: 0 50px;
      /* max-width: 1100px; */
      margin: 0 auto;
    }

    & .equipment_sec01 {
    }
  }

  & .d-flex {
    display: flex;
  }
  & .gap_20 {gap: 20px;}
  & .pc {
    display: block;
  }
  & .sp {
    display: none;
  }

  & img {
    vertical-align: top;
    max-width: 100%;
    width: 100%;
  }

  & .equipment_img01 {width: 100%;}

  & .equipment_ttl2 {
    padding-bottom: 10px;
    position: relative;
    margin-bottom: 40px;

    &:after {
      content: '';
      width: calc(100% + 21px);
      height: 1px;
      position: absolute;
      left: -21px;
      bottom: 0;
      background-color: #000;
    }

    & p {color: #231815;}
  }

  & .equipment_ttl2 h4 {
    flex: 1;
    margin-right: 20px;
  }

  & .equipment_con01 h4 {
    font-size: 16px;
    line-height: 26px;
    font-weight: normal;
  }

  & .equipment_text01 h4 {
    margin-bottom: 15px;
    line-height: 22px;
  }

  & .equipment_text01 p {
    font-size: 12px;
    line-height: 1.5;
    color: #231815;
  }

  & .equipment_tips {
    margin-top: 5px;
  }

  & .ai-e {
    align-items: flex-end;
  }
  & .jc-b {
      justify-content: space-between;
  }

  & .equipment_tips.small, .equipment_tips>.small {
    font-size: 10px;
  }

  & .color-948175 {
    color: #948175;
  }

  & .gap_20>.w_30 {
    width: calc(30% - 10px);
  }

  & .gap_20>.w_33 {
    width: calc((100% - 40px) / 3);
  }

  & .gap_20>.w_40 {
    width: calc(40% - 10px);
  }

  & .gap_20>.w_45 {
    width: calc(45% - 10px);
  }

  & .gap_20>.w_55 {
    width: calc(55% - 10px);
  }

  & .gap_20>.w_60 {
    width: calc(60% - 10px);
  }

  & .gap_20>.w_66 {
    width: calc(100% - (100% - 40px) / 3);
  }

  & .gap_20>.w_70 {
    width: calc(70% - 10px);
  }
  & .flex_column {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
  }
  & .asp_1_3 img {
    aspect-ratio: 1.3;
    object-fit: contain;
  }

  & .asp_1_5 img {
    /* aspect-ratio: 1.5; */
    object-fit: contain;
  }

  & .mt_20 {
    margin-top: 20px;
  }
  & .mb_20 {
    margin-bottom: 20px;
  }

  & .d-flex_50.gap_20>* {
    width: calc(50% - 10px);
  }

  & .gap_20>.w_55 {
    width: calc(55% - 10px);
  }

  & .equipment_item01_img img {
    width: 130px;
  }
  & .tx-c {
    text-align: center;
  }
  & .equipment_item01_img+.equipment_item01_txt {
    margin-top: 10px;
  }

  & .mt_10 {
    margin-top: 10px;
  }

  & .mt_50 {
    margin-top: 50px;
  }

  & .equipment_bot_t {
    border-top: 1px solid #948175;
    padding-top: 20px;
  }

  & .same_h_1 {
    display: flex;
    align-items: center;
  }

  & .kitchen21_box {
    position: relative;
    margin-top: -102px;
  }
}

@media screen and (max-width:768px) {
  .equipment-bg .tit-deco {
    height: 39px;
  }

  .equipment-bg h3 {
    font-size: 20px;
    line-height: 1.75;
  }

  .equipment-bg .equipment_wrap {
    & .inner {
      padding: 0 0px;
    }

    & .equipment_sec01 {}


    & .d-flex.gap_20 {
      flex-wrap: wrap;
    }

    & .pc {
      display: none;
    }
    & .sp {
      display: block;
    }


    & .d-flex_50.gap_20>* {
      width: 100%;
    }

    .gap_20>.w_70, .gap_20>.w_66, .gap_20>.w_60, .gap_20>.w_55, .gap_20>.w_45, .gap_20>.w_40, .gap_20>.w_33, .gap_20>.w_30 {
      width: 100%;
    }

    & .same_h_1 {
      height: fit-content!important;
    }

    & .same_h_2 {
      height: fit-content!important;
      margin-top: 20px;
    }

    & .mt_50 {
      margin-top: 40px;
    }
  }

  .equipment-bg {
    & .equipment_ttl {
      margin-bottom: 25px;
      padding: 1em 1em;
    }
    & .equipment_ttl_flex {
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      gap: 8px;
      /* word-break: keep-all; */
    }
    & .equipment_ttl_flex h2 {
      font-size: 17px;
      color: #fff;
    }
    & .equipment_ttl_flex h4 {
      font-size: 15px;
    }

    & .kitchen21_box {
      margin-top: 0;
    }
  }

  .hide-sp {display: none;}
}


.equipment_wrap {
  .l-flex-md {
    display: flex;
    flex-direction: column;
    gap: 20px;

    @media screen and (min-width: 768px) {
      flex-direction: row;
      align-items: flex-start;
      justify-content: flex-start;
    }
  }

  .tornado_image {

    @media screen and (min-width: 768px) {
      max-width: 164px;
    }
  }

  .mdh80 {
    @media screen and (min-width: 768px) {
      height: 80px;
    }
  }
  .mdh90 {
    @media screen and (min-width: 768px) {
      height: 90px;
    }
  }
  .mdh95 {
    @media screen and (min-width: 768px) {
      height: 95px;
    }
  }
  .mdh155 {
    margin-top: 1em;
    margin-bottom: 1em;
    @media screen and (min-width: 768px) {
      height: 140px;
      margin-top: inherit;
      margin-bottom: inherit;
    }
  }
  .mt20 {margin-top: 20px;}

  .sentence.equipment_text01 {
    .same_h_2 {
      @media screen and (max-width: 767px) {
        margin-top: 0;
      }
    }
  }

  .lflex {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    span{margin-left: auto;font-size: 10px;}
  }
}
/* equipment_wrap */

/* END EQUIPMENT - - - - - - */
/* outlineここから */

.outline-bg {
  background-image: url(../images/outline/outline-bg.webp);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  width: 100%;
}

.outline-bg::before {
  content: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.outline-bg > * {
  position: relative;
  z-index: 2;
}

.outline-bg .tit-deco {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 78px;
  background-color: #c0ad49;
}

#outline {
  padding: 100px 0 330px;
}

#outline .outline-maintxt {
  margin: 0 auto;
}

#outline .outline-maintxt p {
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
}

#outline .more-btn {
  margin-top: 50px;
}

@media screen and (max-width: 1080px) {
  #outline .outline-maintxt p {
    font-size: 15px;
  }
}

@media screen and (max-width: 768px) {
  .outline-bg .tit-deco {
    height: 39px;
  }

  #outline {
    padding: 50px 0 140px;
  }
}

/* outlineここまで */

/* contactここから */

.top-contact {
  position: absolute;
  /* top: -40%; */
  top: -230px;
  background-color: #0b2232;
  padding: 30px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  z-index: 99;
  right: 0;
  left: 0;
}

.top-contact .top-contact-werp {
  background-color: #0b2232;
  border: 4px solid #c0ad49;
  outline: 1px solid #c0ad49;
  outline-offset: -10px;
  padding: 60px 0;
  position: relative;
}

.top-contact .top-contact-werp .tit-deco02 {
  position: absolute;
  content: "";
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 47px;
  background-color: #c0ad49;
}

.top-contact .top-contact-werp .tit {
  margin-bottom: 30px;
}

.top-contact .top-contact-werp p {
  font-size: 20px;
  color: #c0ad49;
  letter-spacing: 0.05em;
  text-align: center;
  font-weight: 100;
}

.top-contact .top-contact-werp a {
  font-size: 60px;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: center;
  color: #c0ad49;
  display: block;
  margin: 10px 0 30px;
  font-weight: 100;
}

.top-contact .top-contact-werp a span {
  font-size: 40px;
  margin: 20px 0 30px;
}

.top-contact .top-contact-werp .contact-btn {
  background-color: #c0ad49;
  padding: 20px 30px;
  width: 500px;
  margin: 0 auto;
  display: flex;
}

.top-contact .top-contact-werp .contact-btn img {
  width: 50px;
  margin-right: 30px;
}

.top-contact .top-contact-werp .contact-btn .yajirusi-btn {
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.top-contact .top-contact-werp .contact-btn p {
  font-size: 25px;
  color: #0b2232;
  font-weight: bold;
  letter-spacing: 0.05em;
  font-weight: 100;
}

.top-contact .top-contact-werp .contact-btn .yajirusi-btn .yazirusi {
  margin-left: 10px;
  width: 40px;
  height: 8px;
  border-bottom: 1px solid #1b444f;
  border-right: 1px solid #1b444f;
  transform: skew(45deg);
}

@media screen and (max-width: 1200px) {
  .top-contact {
    width: 90%;
  }
}

@media screen and (max-width: 1080px) {
  .top-contact .top-contact-werp p {
    font-size: 14px;
  }

  .top-contact .top-contact-werp a {
    font-size: 30px;
  }

  .top-contact .top-contact-werp a span {
    font-size: 19px;
  }
}

@media screen and (max-width: 768px) {
  footer {
    padding-top: 0;
  }
  .top-contact {
    position: absolute;
    /* top: -25%; */
    top: -90px;
    background-color: #0b2232;
    padding: 15px;
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
    z-index: 99;
    right: 0;
    left: 0;
  }

  .top-contact .top-contact-werp {
    background-color: #0b2232;
    border: 2px solid #c0ad49;
    outline: 1px solid #c0ad49;
    outline-offset: -10px;
    padding: 60px 0 30px;
    position: relative;
  }

  .top-contact .top-contact-werp .tit-deco02 {
    position: absolute;
    content: "";
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 39px;
    background-color: #c0ad49;
  }

  .top-contact .top-contact-werp .tit {
    margin-bottom: 25px;
  }

  .top-contact .top-contact-werp a {
    margin: 10px 0 20px;
  }

  .top-contact .top-contact-werp .contact-btn {
    background-color: #c0ad49;
    padding: 10px 15px;
    width: 260px;
    margin: 0 auto;
    display: flex;
    align-items: center;
  }

  .top-contact .top-contact-werp .contact-btn img {
    width: 26px;
    margin-right: 15px;
  }

  .top-contact .top-contact-werp .contact-btn p {
    font-size: 13px;
    color: #1d4556;
    font-weight: bold;
    letter-spacing: 0.05em;
  }

  .top-contact .top-contact-werp .contact-btn .yajirusi-btn .yazirusi {
    margin-left: 10px;
    width: 18px;
    height: 5px;
    border-bottom: 1px solid #1b444f;
    border-right: 1px solid #1b444f;
    transform: skew(45deg);
  }
}

/* contactここまで */

/* page基本ここから */

/*mv2*/
#mv2 {
  padding-top: 80px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 10px solid #c0ad49;
}

#mv2 #mv2_tit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  min-width: 280px;
}

#mv2 #mv2_tit strong {
  width: 100%;
  font-size: 18px;
  line-height: 1em;
  padding: 0 0.5em 0.125em;
  margin-bottom: 20px;
  font-weight: normal;
  letter-spacing: 0.05em;
  font-family: "Noto Serif JP", serif;
  color: #c0ad49;
}

#mv2 #mv2_tit span {
  width: 100%;
  font-size: 45px;
  line-height: 1em;
  letter-spacing: 0.05em;
  font-family: "Noto Serif JP", serif;
  color: #c0ad49;
  font-weight: bold;
}

@media screen and (max-width: 1799px) {
  #mv2 {
    padding-top: 60px;
  }
}

@media screen and (max-width: 768px) {
  #mv2 {
    padding-top: 8.5vw;
    height: 200px;
  }

  #mv2 #mv2_tit {
    min-width: 66.66%;
  }

  #mv2 #mv2_tit strong {
    font-size: 12.5px;
    border-width: 2px;
    margin-bottom: 10px;
  }

  #mv2 #mv2_tit span {
    font-size: 27.5px;
    letter-spacing: 0.05em;
  }
}

/*pankuzu*/
#pankuzu {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0.25em 0;
  font-size: 16px;
}

#pankuzu ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}

#pankuzu ul li:not(:last-child):after {
  content: ">";
  margin: 0.5em;
}

#pankuzu ul li {
  margin: 0.25em 0;
  color: #231815;
  letter-spacing: 0.15em;
  font-size: 16px;
}

#pankuzu ul li a {
  font-size: 16px;
  color: #231815;
  letter-spacing: 0.15em;
}

#pankuzu ul li a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1200px) {
  #pankuzu {
    width: 90%;
  }
}

@media screen and (max-width: 768px) {
  #pankuzu {
    width: 90%;
    font-size: 10.5px;
  }

  #pankuzu ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 0;
    margin-top: 15px;
  }

  #pankuzu ul li {
    font-size: 10.5px;
  }

  #pankuzu ul li a {
    font-size: 10.5px;
  }
}

/* page基本ここまで */

/* page-outlineここから */

.outline #mv2 {
  background: url(../images/design/desigin04-bg.webp) center center no-repeat;
  background-size: cover;
}

#page-outline {
  padding: 100px 0 330px;
}

#page-outline .page-outline-box {
  margin-bottom: 50px;
}

#page-outline .page-outline-box:last-child {
  margin-bottom: 0;
}

#page-outline .page-outline-box h2 {
  font-size: 25px;
  letter-spacing: 0.1em;
  color: #231815;
  margin-bottom: 20px;
  font-weight: 500;
}

#page-outline .page-outline-box table {
  width: 100%;
  border-collapse: collapse;
}

#page-outline .page-outline-box table tr:first-child {
  border-top: 0.75px solid #c0ad49;
}

#page-outline .page-outline-box table tr {
  width: 100%;
  border-bottom: 0.75px solid #c0ad49;
  height: 65px;
}

#page-outline .page-outline-box table tr th {
  font-size: 16px;
  color: #1d4556;
  letter-spacing: 0.15em;
  text-align: left;
  padding: 0px 30px;
  background-color: rgba(192, 173, 73, 0.2);
  width: 25%;
  font-weight: normal;
}

#page-outline .page-outline-box table tr td {
  font-size: 16px;
  color: #231815;
  letter-spacing: 0.15em;
  text-align: left;
  padding: 0px 30px;
  width: 75%;
}

/* page-outlineここまで */

/* page-contactここから */

.contact #mv2,
.confirm #mv2,
.thanks #mv2 {
  background: url(../images/info/info-bg.webp) center center no-repeat;
  background-size: cover;
}

#page-contact {
  padding: 100px 0 330px;
}

#page-contact .tel_box {
  padding-bottom: 40px;
  border-bottom: 1px solid #c0ad49;
  width: 100%;
}

#page-contact .tel_box h3 {
  font-size: 20px;
  color: #231815;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 30px;
  font-weight: normal;
}

#page-contact .tel_box a {
  font-size: 60px;
  font-weight: bold;
  color: #c0ad49;
  text-align: center;
  display: block;
  letter-spacing: 0.05em;
}

#page-contact .tel_box a span {
  font-size: 40px;
}

/* フォーム */
#page-contact #form {
  padding: 50px 100px 0;
}

#page-contact #form table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 20px;
  margin-bottom: 30px;
}

#page-contact #form table tr {
  width: 100%;
}

#page-contact #form table tr th {
  width: 25%;
}

#page-contact #form table tr th .js-span-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  color: #231815;
  letter-spacing: 0.05em;
  font-weight: normal;
  height: 50px;
}

#page-contact #form table tr th p .required {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: #b1452c;
  padding: 3px 10px;
}

#page-contact #form table tr th p .any {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #b1452c;
  background-color: #fff;
  border: 1px solid #b1452c;
  padding: 3px 10px;
}

#page-contact #form table tr td {
  padding-left: 50px;
  width: 75%;
}

#page-contact #form table tr td input {
  font-size: 16px;
  padding: 20px;
  background-color: #f2f2f2;
  letter-spacing: 0.05em;
  width: 100%;
  border: none;
  height: 50px;
  font-family: "Noto Serif JP", serif;
}

#page-contact #form table tr td textarea {
  font-size: 16px;
  padding: 20px;
  background-color: #f2f2f2;
  letter-spacing: 0.05em;
  border: none;
  width: 100%;
  font-family: "Noto Serif JP", serif;
}

#page-contact .btnBox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.contact .mw_wp_form_input .btn_wrap.-back {
  display: none !important;
}

#page-contact .btnBox .btn_wrap {
  display: inline-block;
  position: relative;
}

#page-contact .btnBox .btn_wrap::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 6px;
  border-right: 1px solid #1b444f;
  border-bottom: 1px solid #1b444f;
  transform: skew(45deg);
  right: 15px;
  top: 45%;
}

#page-contact .btnBox .btn_wrap input {
  margin: 0 auto;
  display: block;
  background-color: #c0ad49;
  padding: 15px 20px;
  width: 220px;
  color: #1b444f;
  border: none;
  font-family: "Noto Serif JP", serif;
  text-align: left;
  font-size: 16px;
}

@media screen and (max-width: 1024px) {
  #page-contact #form {
    padding: 50px 0;
  }
}

/* page-contactここまで */

/* confirmここから */

.confirm .mw_wp_form_input .btn_wrap.-back {
  display: block !important;
}

#page-contact .btnBox .-back {
  display: inline-block;
  position: relative;
}

#page-contact .btnBox .-back::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 6px;
  border-right: 1px solid #c0ad49;
  border-bottom: 1px solid #c0ad49;
  transform: skew(45deg);
  right: 15px;
  top: 45%;
}

#page-contact .btnBox .-back .btn-back {
  margin: 0 auto;
  display: block;
  background-color: #0b2232;
  padding: 15px 20px;
  width: 220px;
  color: #c0ad49;
  border: 1px solid #c0ad49;
  font-family: "Noto Serif JP", serif;
  text-align: left;
}

/* confirmここまで */

/* thanksここから */

#page-contact .tel_box .thanks-tit {
  font-size: 35px;
  color: #c0ad49;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 0;
  font-weight: 600;
}

#page-contact .thanks-txt {
  font-size: 16px;
  color: #231815;
  letter-spacing: 0.05em;
  line-height: 1.68;
  text-align: center;
  margin: 50px 0 100px;
}

#page-contact .back-home {
  margin: 0 auto;
  display: block;
  background-color: #c0ad49;
  padding: 15px 20px;
  width: 220px;
  border: none;
  font-family: "Noto Serif JP", serif;
  text-align: left;
  position: relative;
}

#page-contact .back-home a {
  color: #1b444f;
  font-size: 16px;
  letter-spacing: 0.1em;
}

#page-contact .back-home::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 6px;
  border-right: 1px solid #1b444f;
  border-bottom: 1px solid #1b444f;
  transform: skew(45deg);
  right: 15px;
  top: 45%;
}

/* thanksここまで */

@media screen and (max-width: 768px) {
  #page-outline {
    padding: 20px 0 140px;
  }

  #page-outline .page-outline-box h2 {
    font-size: 20px;
    letter-spacing: 0.1em;
    color: #231815;
    margin-bottom: 15px;
    font-weight: 500;
  }

  #page-outline .page-outline-box table tr {
    width: 100%;
    border-bottom: none;
    border-top: 0.75px solid #c0ad49;
    height: auto;
    display: flex;
    flex-direction: column;
  }

  #page-outline .page-outline-box table tr:last-child {
    border-bottom: 0.75px solid #c0ad49;
  }

  #page-outline .page-outline-box table tr th {
    font-size: 15px;
    color: #1d4556;
    letter-spacing: 0.1em;
    text-align: left;
    padding: 10px;
    background-color: rgba(192, 173, 73, 0.2);
    width: 100%;
    font-weight: normal;
  }

  #page-outline .page-outline-box table tr td {
    font-size: 15px;
    color: #231815;
    letter-spacing: 0.05em;
    text-align: left;
    padding: 10px;
    width: 100%;
  }

  #page-contact {
    padding: 20px 0 140px;
  }

  #page-contact .tel_box h3 {
    font-size: 12.5px;
    color: #231815;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 15px;
    font-weight: normal;
  }

  #page-contact .tel_box a {
    font-size: 34px;
    font-weight: bold;
    color: #c0ad49;
    text-align: center;
    display: block;
    letter-spacing: 0.05em;
  }

  #page-contact .tel_box a span {
    font-size: 22.5px;
  }

  #page-contact .tel_box {
    padding-bottom: 25px;
    border-bottom: 1px solid #c0ad49;
    width: 100%;
  }

  #page-contact #form {
    padding: 0;
  }

  #page-contact #form table tr {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
  }

  #page-contact #form table tr:last-child {
    margin-bottom: 0;
  }

  #page-contact #form table tr th {
    width: 100%;
  }

  #page-contact #form table tr th .js-span-wrap {
    display: flex;
    align-items: center;
    justify-content: left;
    font-size: 14px;
    color: #231815;
    letter-spacing: 0.05em;
    font-weight: normal;
    height: auto;
    margin-bottom: 15px;
  }

  #page-contact #form table tr th p .required {
    font-size: 12.5px;
    letter-spacing: 0.1em;
    color: #fff;
    background-color: #1b444f;
    padding: 3px 10px;
    margin-left: 20px;
  }

  #page-contact #form table tr th p .any {
    font-size: 12.5px;
    letter-spacing: 0.1em;
    color: #1b444f;
    background-color: #fff;
    border: 1px solid #1b444f;
    padding: 3px 10px;
    margin-left: 20px;
  }

  #page-contact #form table tr td {
    padding-left: 0;
    width: 100%;
    font-size: 15px;
  }

  #page-contact #form table tr td input {
    font-size: 15px;
    padding: 15px 10px;
    background-color: #f2f2f2;
    letter-spacing: 0.05em;
    width: 100%;
    border: none;
    height: auto;
    font-family: "Noto Serif JP", serif;
  }

  #page-contact #form table tr td textarea {
    font-size: 15px;
    padding: 10px;
    background-color: #f2f2f2;
    letter-spacing: 0.05em;
    border: none;
    width: 100%;
    font-family: "Noto Serif JP", serif;
    height: 275px;
  }

  #page-contact #form table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 20px;
    margin-bottom: 50px;
  }

  #page-contact .btnBox .btn_wrap input {
    margin: 0 auto;
    display: block;
    background-color: #c0ad49;
    padding: 15px 20px;
    width: 198px;
    color: #1b444f;
    border: none;
    font-family: "Noto Serif JP", serif;
    text-align: left;
    font-size: 15px;
    -webkit-appearance: none;
    border-radius: 0;
  }

  #page-contact .btnBox .btn_wrap::after {
    position: absolute;
    content: "";
    width: 28px;
    height: 5px;
    border-right: 1px solid #1b444f;
    border-bottom: 1px solid #1b444f;
    transform: skew(45deg);
    right: 15px;
    top: 45%;
  }

  #page-contact .btnBox {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    margin: 0 auto;
  }

  #page-contact .btnBox .-back .btn-back {
    margin: 0 auto;
    display: block;
    background-color: #0b2232;
    padding: 15px 20px;
    width: 198px;
    color: #c0ad49;
    border: 1px solid #c0ad49;
    font-family: "Noto Serif JP", serif;
    text-align: left;
    -webkit-appearance: none;
    border-radius: 0;
  }

  #page-contact .btnBox .-back::after {
    position: absolute;
    content: "";
    width: 28px;
    height: 5px;
    border-right: 1px solid #c0ad49;
    border-bottom: 1px solid #c0ad49;
    transform: skew(45deg);
    right: 15px;
    top: 45%;
  }

  #page-contact .tel_box .thanks-tit {
    font-size: 22.5px;
    color: #c0ad49;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 0;
    font-weight: 600;
  }

  #page-contact .tel_box {
    padding-bottom: 15px;
    border-bottom: 1px solid #c0ad49;
    width: 100%;
  }

  #page-contact .thanks-txt {
    font-size: 15px;
    color: #231815;
    letter-spacing: 0.05em;
    line-height: 1.53;
    text-align: left;
    margin: 25px 0 50px;
  }

  #page-contact .back-home {
    margin: 0 auto;
    display: block;
    background-color: #c0ad49;
    padding: 15px 20px;
    width: 198px;
    border: none;
    font-family: "Noto Serif JP", serif;
    text-align: left;
    position: relative;
    border-radius: 0;
  }

  #page-contact .back-home::after {
    position: absolute;
    content: "";
    width: 28px;
    height: 5px;
    border-right: 1px solid #1b444f;
    border-bottom: 1px solid #1b444f;
    transform: skew(45deg);
    right: 15px;
    top: 45%;
  }
}

/* conceptここから */
#is_concept {
  position: relative;
}
.concept-image {
  background: url(../images/concept/concept-bg.webp) no-repeat top center;
  width: 100%;
  height: 39%;
  background-size: cover;

  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;

  @media screen and (min-width: 768px) {
    background-size: contain;
    height: 1082px;
  }
}

.concept-bg {
  background-image: url(../images/concept/concept-bgimg.webp);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  position: relative;
  min-height: 1082px;
}

.concept-bg::before {
  background: linear-gradient(
    rgb(35, 24, 21, 0.3),
    rgb(35, 24, 21, 0.15),
    rgb(35, 24, 21, 0)
  );
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.concept-bg .tit-deco {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 78px;
  background-color: #fff;
  z-index: 6;
}

#concept {
  position: relative;
  z-index: 5;
  width: fit-content;
  padding: 50px 1em 0;

  background-color: #8c3a27;
  /* mix-blend-mode: multiply; */
  opacity: 0.75;

  .tit .en,.tit .ja {color: #fff;}
  .concept-bg .tit-deco {background-color: #fff;z-index: 6;}

  @media screen and (min-width: 768px) {
    width: 300px;
    padding-top: 100px;
    padding-bottom: 0;
  }


  &:before {
    /* content: ""; */
    width: 100%;
    height: 100%;
    display: block;

    position: absolute;
    top: 0;
    left: 0;

    background-color: #8c3a27;
    /* mix-blend-mode: multiply; */
    z-index: -1;
  }

}

.concept-sentence_wrap {
  position: relative;

  width: calc(670% / 7.50);
  margin-left: auto;
  margin-right: auto;

  .sentenceLead {
    font-size: 15px;
    line-height: 1.75;
    margin-top: 45px;

    &:not(:first-child) {margin-top: 1em;}

    @media screen and (min-width: 768px) {
      margin-top: 95px;
      font-size: 16px;
      text-align: center;
    }
  }
}

.authentic_threepoint {
  margin-top: 45px;
  width: calc(670% / 7.50);
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 50px;

  @media screen and (min-width: 768px) {
    margin-top: 95px;
    padding-bottom: 100px;
    max-width: 1200px;
  }

  h2 {
    text-align: center;
    color: #fff;
    font-weight: normal;
    line-height: 1.15;

    @media screen and (min-width: 768px) {
      font-size: 28px;
    }


    .number {
      color: #c0ad49;
      @media screen and (min-width: 768px) {
        font-size: 60px;
        font-style: italic;
      }
    }
  }

}
/* authentic_threepoint */


.authentic_threepoint_list {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 40px;
  margin-top: 25px;
  margin-bottom: 0;
  padding: 0;

  @media screen and (min-width: 768px) {
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
    margin-top: 40px;
  }


  li {
    picture {
      display: block;
      margin-top: .75em;

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

    @media screen and (min-width: 768px) {
      width: 32%;
      max-width: 380px;
    }
  }

  .listTitle {
    font-size: 18px;
    font-weight: bold;
    color: #c0ad49;

    @media screen and (min-width: 768px) {
      font-size: 20px;
    }
  }
  .sentenceTitle {
    font-size: 20px;
    margin-top: 0.5em;

    @media screen and (min-width: 768px) {
      font-size: 22px;
    }
  }
  .sentence {
    font-size: 15px;
    line-height: 1.75;
    margin-top: 0.5em;

    @media screen and (min-width: 768px) {
      font-size: 16px;
    }
  }
}
/* authentic_threepoint_list */

#concept .concept-wrap h2 {
  color: #fff;
  letter-spacing: 0.1em;
  text-align: center;
  font-size: 40px;
  font-weight: normal;

  span {
    text-align: left;
    writing-mode: vertical-rl;
  }
}

@media screen and (max-width: 768px) {
  .concept-bg {
    /* height: 541px; */
  }

  .concept-bg .tit-deco {
    height: 39px;
  }

  #concept .concept-wrap h2 {
    font-size: 25px;
    font-weight: 100;


  }

  #concept-txt .concept-txt-wrap p {
    font-size: 15px;
    font-weight: 100;
  }
}

/* txtここから */


.concept-txt-bg {
    background-image: url(../images/info/info-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    border-top: 10px solid #C0AD49;
    border-bottom: 10px solid #C0AD49;
    position: relative;
}

#concept-txt .concept-txt-wrap p {
    font-size: 16px;
    color: #fff;
    letter-spacing: 0.05em;
    line-height: 1.75;
    text-align: center;
}

@media screen and (max-width:768px) {
    .info-bg {
        border-top: 5px solid #C0AD49;
        border-bottom: 5px solid #C0AD49;
    }
}

/* txtここまで */

/* conceptここまで */

/* design-location */
#design-location {
  picture {
    display: block;
  }

  .tit {
    margin-bottom: 2em;
  }

  .mt2550 {
    margin-top: 20px;
    @media screen and (min-width: 768px) {
      margin-top: 45px;
    }

  }
  .maw700 {
    width: calc(670% / 7.50);
    margin-left: auto;
    margin-right: auto;
    display: block;

    @media screen and (min-width: 768px) {
      max-width: 700px;
    }

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

  .fz20 {
    font-size: 18px;
    line-height: 1.75;

    @media screen and (min-width: 768px) {
      font-size: 20px;
    }
  }

  .side_description {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #c0ad49;

    @media screen and (min-width: 768px) {
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
      gap: 60px;
      margin-top: 45px;
      padding-bottom: 50px;
    }

    picture {
      display: block;

      @media screen and (min-width: 768px) {
        min-width: 590px;
        width: 100%;
      }
    }
  }

  .sentence {

  }

  .sentenceBody {
    font-size: 15px;
    line-height: 1.75;

    p {margin-top: 1em;}

    @media screen and (min-width: 768px) {
      font-size: 16px;
    }
  }


  .parking_description {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: .75em;

    color: #fff;
    padding: 25px 0;

    @media screen and (min-width: 768px) {
      flex-direction: row;
      align-items: center;
      padding: 45px 0;
    }

    h3 {
      font-size: 18px;
      @media screen and (min-width: 768px) {
        font-size: 25px;
        min-width: 520px;
      }
    }
    .description {
      font-size: 15px;
      line-height: 1.75;
      font-family: "Noto Serif JP", serif;

      @media screen and (min-width: 768px) {
        font-size: 16px;
      }
    }
  }




  .txt-right.fz14 {
    font-size: 14px;
    line-height: 1;
    text-align: right;
    margin-top: 0.5em;
  }
}

.sectionTitle {
  color: #fff;
  font-size: 30px;
  font-weight: normal;
  text-align: center;
  @media (min-width: 768px){font-size: 40px;}

  &.mt50100 {
    margin-top: 45px;
    @media screen and (min-width: 768px) {
      margin-top: 95px;
    }
  }


  &:before {
    display: block;
    padding-bottom: 0.35em;
    content: attr(data-en);
    color: #fff;
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
  }
}
/* sectionTitle */

.lightbox_zoom {
  position: relative;
  display: block;

  &:after {
    content: "";
    width: 20px;
    height: 20px;

    position: absolute;
    display: block;
    right: 1em;
    bottom: 1em;

    background: url("../images/design/icon_zoom.png") no-repeat center center;
    background-size: contain;

    @media screen and (min-width: 768px) {
      width: 30px;
      height: 30px;
    }
  }
}

.design-location-bg {
  min-height: 900px;
  width: 100%;
  position: relative;

  border-top: 5px solid #c0ad49;
  background-color: #0b2232;

  @media screen and (min-width: 768px) {
    border-width: 10px;
  }


  &:before {
    content: "";
    background-image: url(../images/design/desigin-bg.webp);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
  }
}



#plan {
  .room-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 30px;

    @media screen and (min-width: 768px) {
      flex-direction: row;
      gap: 50px;
      align-items: flex-start;

      margin-top: 50px;

      &.reverse {flex-direction: row-reverse;}
    }

    .lightbox_zoom {
      display: block;
      img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
    }


    .room-plan {
      @media screen and (min-width: 768px) {
        width: 600px;
        width: 50%;
      }
    }

  }
}

.design-location-bg::before {
    /* background: rgba(35, 24, 21, 0.7);
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
     */
}

.design-location-bg .tit-deco {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 78px;
    background-color: #c0ad49;
    z-index: 6;
}

#design-location {
  position: relative;
  z-index: 5;

  .design-location_sentence {
    font-size: 15px;
    line-height: 1.75;
    text-align: left;

    @media screen and (min-width: 768px) {
      font-size: 16px;
      text-align: center;
    }
  }


  .locationList {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: calc(670% / 7.50);
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    padding: 0;

    picture {
      display: block;

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

    @media screen and (min-width: 768px) {
      flex-direction: row;
      justify-content: space-between;
      max-width: 830px;
      margin-top: 45px;
      gap: 30px;

      li {
        max-width: 400px;
      }
    }
  }

  .locationDescription {
    font-size: 16px;
    line-height: 1;

    span {
      font-size: 30px;
      @media screen and (min-width: 768px) {
        font-size: 46px;
      }
    }

    @media screen and (min-width: 768px) {
      font-size: 19px;
    }
  }

  .location_description {
    font-size: 15px;
    line-height: 1.5;
    margin-top: 2em;
    text-align: left;

    @media screen and (min-width: 768px) {
      max-width: 640px;
      font-size: 16px;
      text-align: center;

      margin-left: auto;
      margin-right: auto;
    }
  }
}

#design-location .design-location-wrap {
  padding-top: 0;

  h2 {
    margin-bottom: 1em;
  }
  /* margin-top: 1em; */
}

#design-location .design-location-wrap h2 {
    color: #fff;
    letter-spacing: 0.1em;
    line-height: 1.75;
    text-align: center;
    font-size: 40px;
    font-weight: normal;
    font-weight: 100;
}

@media screen and (max-width:768px) {
    .design-location-bg {}

    .design-location-bg .tit-deco {
        height: 39px;
    }

    #design-location .design-location-wrap h2 {
        font-size: 20px;
        letter-spacing: 0.5px;
    }

}

/* design-location02 */

/* .design-location02-bg {
    background-image: url(../images/design/desigin02-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
} */

/* #design-location02 .design-location02-main {
    width: 100%;
    padding-bottom: 50px;
    border-bottom: 1px solid #C0AD49;
}

#design-location02 .design-location02-main img {
    width: 700px;
    height: 646px;
    margin: 0 auto;
    display: block;
    object-fit: cover;
    object-position: bottom;
}

#design-location02 .design-location02-zumen {
    margin-top: 60px;
}

#design-location02 .design-location02-zumen .design-location02-zumen-txt {
    display: flex;
    margin-bottom: 50px;
    width: 100%;
    align-items: center;
}

#design-location02 .design-location02-zumen .design-location02-zumen-txt p:first-child {
    font-size: 25px;
    margin-right: 60px;
    font-weight: 100;
}

#design-location02 .design-location02-zumen .design-location02-zumen-txt p:last-child {
    font-size: 16px;
}

#design-location02 .design-location02-zumen .design-location02-zumen-txt p {
    color: #231815;
}

#design-location02 .design-location02-zumen .design-location02-zumen-img {
    display: flex;
    gap: 20px;
}

#design-location02 .design-location02-zumen .design-location02-zumen-img a img {
    width: 100%;
}

#design-location02 .design-location02-zumen .design-location02-zumen-warning {
    margin-top: 10px;
    font-size: 14px;
    color: #231815;
    text-align: right;
    letter-spacing: 0.1em;
}

@media screen and (max-width:768px) {
  #design-location02 .design-location02-zumen .design-location02-zumen-txt {
    display: block;
    margin-bottom: 25px;
  }
  #design-location02 .design-location02-zumen .design-location02-zumen-txt p:first-child {
    font-size: 17px;
    text-align: center;
    margin-right: unset;
  }
  #design-location02 .design-location02-zumen .design-location02-zumen-txt p:last-child {
    font-size: 15px;
    line-height: 1.5;
    margin-top: 20px;
  }
  #design-location02 .design-location02-zumen .design-location02-zumen-img {
    display: block;

    & a:last-child {display: block;margin-top: 13px;}
  }
  #design-location02 .design-location02-zumen .design-location02-zumen-warning {
    font-size: 12.5px;
    text-align: left;
  }
} */

/* design-location03 */

/* .design-location03-bg {
    background-image: url(../images/design/desigin03-bg@1.5x.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
}

.design-location03-bg::before {
    background: rgba(35, 24, 21, 0.7);
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

#design-location03 {
  position: relative;
  z-index: 5;
  padding: 150px 0;

  min-height: 500px;

  h2 {
    color: #fff;
    font-size: 30px;
    line-height: 1;
    font-weight: 100;
    letter-spacing: 1.2px;
  }
  .inline_text {
    display: block;
    padding-left: 265px;
    position: relative;
    font-size: 50px;
    letter-spacing: 2px;

    margin-top: 23px;

    &:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      margin: auto;

      width: 14vw;
      height: 1px;
      background-color: #C0AD49;

      min-width: 225px;
      max-width: 228px;
    }
  }

  .sentence {
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 2px;

    margin-top: 45px;
  }
}

#design-location03 .design-location03-wrap h2 {
    font-size: 30px;
    color: #FFF;
    margin-bottom: 10px;
}

#design-location03 .design-location03-wrap .line {
    font-size: 50px;
    position: relative;
    gap: 10px;
    display: flex;
    align-items: center;
    font-weight: normal;
    margin-bottom: 0;
}

#design-location03 .design-location03-wrap .line::before {
    content: "";
    display: block;
    width: 250px;
    height: 1px;
    background-color: #C0AD49;
    flex-shrink: 0;
}

#design-location03 .design-location03-wrap p {
    margin-top: 40px;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 1.75;
} */

/* design-location04 */


#plan {
  .mt50100 {
    margin-top: 50px;
    @media screen and (min-width: 768px) {
      margin-top: 100px;
    }
  }

  .LargeLeadTitle {
    position: relative;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1em;

    @media screen and (max-width: 767px) {overflow: clip;}
    @media screen and (min-width: 768px) {
      height: 110px;
      margin-top: inherit;
    }

    p {
      text-align: center;
      color: #231815;
      font-size: 15px;
      line-height: 1.75;

      @media screen and (min-width: 768px) {
        font-size: 16px;
        .hide_pc {display: none;}
      }
    }


    &:before {
      content: attr(data-en);
      display: block;

      font-family: "Noto Serif JP", serif;
      font-size: 75px;
      color: #ea5514;
      font-weight: normal;
      line-height: 1;
      opacity: 0.12;

      position: absolute;
      width: fit-content;
      height: 150px;
      top: 0;
      left: 50%;
      bottom: 0;
      margin: auto;
      transform: translateX(-50%);

      @media screen and (min-width: 768px) {
        font-size: 200px;
        height: 220px;
      }
    }

    @media screen and (min-width: 768px) {
      margin-top: 15px;
    }

  }



  .room-info {
    flex: 1;

    h2 {
      color: #231815;
      font-weight: 100;
      line-height: 1;
      padding-bottom: .5em;

      span {font-size: 35px;}

      border-bottom: 1px solid #9fa0a0;
      @media screen and (min-width: 768px) {
      }
    }

    .room-subject {
      font-size: 14px;
      line-height: 1;
      color: #3e3a39;
      margin-top: 1em;
      width: fit-content;
      font-family: "Noto Serif JP", serif;

      span {
        text-align: right;
        font-size: 80%;
        display: block;
        margin-top: 0.5em;
        padding-right: 1em;
      }
    }

    &.red {
      h2 {
        color: #ba512d;
      }
      .room_description li .numberTitle::before {
        background-color: #ba512d;
      }
    }
  }


  .room_description {
    margin-top: 20px;
    padding: 0;

    list-style: none;
    padding-left: 0;
    counter-reset: room-counter;

    @media screen and (min-width: 768px) {
      margin-top: 40px;
    }

    li {
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
      gap: 1em;
      position: relative;
      flex-direction: column;

      @media screen and (min-width: 768px) {
        flex-direction: row;
      }

      .numberTitle::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);

        width: 1rem;
        height: 1rem;
        background-color: #231815;
        border-radius: 50%;

        display: flex;
        justify-content: center;
        align-items: center;
      }

      .numberTitle {
        padding-left: 1.25em;
        position: relative;
      }

      .numberTitle::after {
        counter-increment: room-counter;
        content: counter(room-counter);

        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);

        color: #fff;
        font-size: 0.6rem;
        width: 1rem;
        text-align: center;
        line-height: 1;
      }

      &:not(:first-child){
        margin-top: 20px;
      }
      @media screen and (min-width: 768px) {
        &:not(:first-child){
          margin-top: 35px;
        }
      }
    }

    picture {
      display: block;

      img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }

      @media screen and (max-width: 767px) {
        width: 100%;
      }

      @media screen and (min-width: 768px) {
        min-width: 200px;
        width: 200px;
      }
    }

    .sentence {
      font-size: 15px;
      line-height: 1.75;
      color: #231815;

      @media screen and (min-width: 768px) {
        font-size: 16px;
      }


      .numberTitle {
        color: #0b2232;
        font-size: 16px;
        display: flex;
        align-items: center;
        gap: 0.5em;
        margin-bottom: 0.25em;

        @media screen and (min-width: 768px) {
          font-size: 18px;
        }
      }

      .title {
        font-size: 18px;
        color: #907f2e;
        line-height: 1;
        /* margin-bottom: 0.75em; */
      }

      .description {
        margin-top: 0.5em;
        font-size: 15px;
        line-height: 1.75;
        color: #231815;

        @media screen and (min-width: 768px) {
          font-size: 16px;

        }
      }
    }

  }
  /* room_description */

  .is_note {
    font-size: 13px;
    line-height: 1.7;

    p {
      color: #231815!important;
    }

  }
}
/* plan */

.room_switch_tabs__wrapper {
  max-width: 1072px;
  padding: 0 36px 100px;
  margin-left: auto;
  margin-right: auto;
}
.room_switch_tabs {
  h2 {
    font-size: 30px;
    text-align: center;
    font-weight: 100;

    padding-top: 95px;
    line-height: 1;

    &.is_white {color: #fff;}
  }
  .hide-pc {display: none;}


  .btn_tabs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-column-gap: 20px;
    margin-top: 45px;
  }

  .btn_tabs .tabs_a,
  .btn_tabs .tabs_b,
  .btn_tabs .tabs_c,
  .btn_tabs .tabs_d
   {
    cursor: pointer;
    display: block;
    color: #1D4556;
    text-align: center;
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 50px;
    position: relative;

    background-color: #C0AD49;
    /* border: 1px solid #C0AD49; */

    max-width: 320px;
    width: 100%;

    & span {font-size: 30px;padding: 0 .15em;}


    &:after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      right: 27px;
      width: 10px;
      height: 10px;
      margin: auto;
      border-top: 2px solid #1D4556;
      border-right: 2px solid #1D4556;
      transform: rotate(45deg);
      box-sizing: border-box;
    }

    &.current {
      background-color: #1B4454;
      color: #C0AD49;

      &:after {border-color: #fff;transform: rotate(135deg);}
    }


  }

  .tabView_a,
  .tabView_b,
  .tabView_c,
  .tabView_d
   {
    display: none;

    & p {color: #231815;}

    & .rooms {

      /* display: flex;
      justify-content: center;
      align-items: flex-start;
      grid-column-gap: 30px; */
      margin-top: 40px;
      margin-bottom: 0;
      padding-left: 0;

      & li {
        background-color: #fff;
        /* max-width: 380px; */
        max-width: 840px;
        width: 100%;
        padding: 40px 30px 30px;
        margin-left: auto;
        margin-right: auto;

        @media screen and (min-width: 768px) {
          padding: 45px 50px 50px;
        }

        .flex-wrap {
          display: flex;
          flex-direction: column;
          gap: 30px;

          @media screen and (min-width: 768px) {
            flex-direction: row;
            justify-content: flex-start;

          }
        }
      }

      .is_LeftView {
        max-width: 320px;

      }

      .is_RightView {
        max-width: 386px;
      }
    }
    & .roomType {
      font-size: 20px;
      color: #818c63;
      text-align: center;

      & span {font-size: 35px;margin-right: 0.15em;}
    }

    & .information_wrap {
      & .space {
        display: flex;
        align-items: center;
        justify-content: space-between;

        font-size: 15px;
        line-height: 40px;
        border-bottom: 1px solid #231815;
      }
      & .num {
        font-size: 14px;
        & span {font-size: 25px;}
      }

      & .other .space {
        & p {font-size: 9px;}
        & .num {font-size: 9px;}
        & .num .large {font-size: 17px;}
        & .num .middle {font-size: 11px;margin-left: 0.15em;}
      }

      & .other.OneLine .floor {
        align-items: center;
        justify-content: space-between;

        & p {font-size: 9px;}
        & .num {font-size: 9px;}
        & .num .large {font-size: 17px;}
        & .num .middle {font-size: 11px;margin-left: 0.15em;}
      }

      & .other.OneLine {
        display: flex;
        align-items: center;
        justify-content: space-between;

        border-bottom: 1px solid #231815;
        & .space {
          border-bottom: none;
          max-width: 185px;
          width: 100%;
        }
        & .floor {
          display: flex;
          justify-content: space-between;
          width: 42%;
          margin-left: 0.35em;
          padding-left: 0.5em;
          position: relative;

          &:before {
            content: "";
            position: absolute;
            width: 1px;
            height: 20px;
            background-color: #231815;
            top: 0;
            left: 0;
            bottom: 0;
            margin: auto;
          }
        }
      }

      & .note {font-size: 10px;line-height: 1.5;margin-top: 5px;}
      & .mt1em {margin-top: 1em;}


      & .roomTypeA,
      & .roomTypeB,
      & .roomTypeC,
      & .roomTypeD {
        position: relative;

        &:after {
          /* content: "";
          width: 30px;
          height: 30px;

          position: absolute;
          right: 0;
          bottom: 0;

          background-image: url('/wp/wp-content/themes/avenirtakara/images/roomtype/zoom.png');
          background-repeat: no-repeat;
          background-size: contain;
          background-position: center; */
        }
      }


      & .roomTypeA,
      & .roomTypeB {
        margin-top: 25px;
      }

      & .roomTypeA {}
      & .roomTypeB {
        max-width: 256px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0;
      }
      & .roomTypeB1 {
        margin-top: 25px;
        max-width: 252px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0;
      }


      .roomTypeC,
      .roomTypeD {
        margin-left: auto;
        margin-right: auto;
      }

      .roomTypeC {
        margin-top: 25px;
        max-width: 278px;
      }
      .roomTypeC2 {
        margin-top: 25px;
        max-width: 262px;
      }

      .num {
        &:before {
          content: attr(data-floor);
          font-size: 10px;
          line-height: 1;
          font-family: "Noto Serif JP", serif;
          font-optical-sizing: auto;
          font-weight: 200;
          font-style: normal;

          color: #231815;
        }
        &.offset {
          line-height: 1;
          /* padding: 13px 0; */
          padding: 14px 0 5px;
          position: relative;

          width: fit-content;
          margin-left: auto;

          &:before {
            position: absolute;
            top: 4px;
            left: 0;
          }
        }
      }
    }
    & .viewMore {
      display: block;
      max-width: 300px;
      width: 100%;
      margin-top: 25px;
      margin-left: auto;
      margin-right: auto;

      line-height: 50px;
      background-color: #C0AD49;
      color: #1D4556;
      font-size: 16px;
      text-align: center;
      letter-spacing: 2px;
      position: relative;

      &:after {
        content: "";
        position: absolute;
        right: 5px;
        bottom: 5px;

        width: 10px;
        aspect-ratio: 1;
        clip-path: polygon(0 100%,100% 0,100% 100%);
        background-color: #1D4556;
      }
    }

    &.current {display: block;}
  }
}

.tabView_a .rooms .sold,
.tabView_b .rooms .sold,
.tabView_c .rooms .sold
 {
  position:relative;
}

.tabView_a .rooms .sold:before,
.tabView_b .rooms .sold:before,
.tabView_c .rooms .sold:before
 {
content: "";
    background: rgba(0, 0, 0, .5019607843);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.tabView_a .rooms .sold:after,
.tabView_b .rooms .sold:after,
.tabView_c .rooms .sold:after
 {
  content: "SOLD OUT";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: rgb(255, 255, 255);
    font-size: min(5vw, 32px);
    letter-spacing: 0.1em;
    line-height: 1;
    padding: 0.5em 0.8em;
    background: #C0AD49;
    white-space: nowrap;
}

@media screen and (max-width:767px) {
  .room_switch_tabs {
    & .tabView_a, & .tabView_b, & .tabView_c, & .tabView_d {
      & .information_wrap {
        & .roomTypeA,
        & .roomTypeB,
        & .roomTypeC,
        & .roomTypeD {
          position: relative;

          &:after {
            /* content: "";
            width: 20px;
            height: 20px;

            position: absolute;
            right: 0;
            bottom: 0;

            background-image: url('/wp/wp-content/themes/avenirtakara/images/roomtype/zoom.png');
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center; */
          }
        }
      }
    }
  }

}



.design-location04-bg {
    background-image: url(../images/design/desigin04-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
}

#design-location04 .design-location04-bbline {
    padding-bottom: 100px;
    border-bottom: 1px solid #C0AD49;
}

#design-location04 .design-location04-wrap {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
}

#design-location04 .design-location04-wrap:last-child {
    margin-bottom: 0;
    flex-direction: row-reverse;
}

#design-location04 .design-location04-wrap .design-location04-img {
    display: flex;
    gap: 20px;
}

#design-location04 .design-location04-wrap .design-location04-img .ab-txt {
    position: relative;
    height: 186px;
}

#design-location04 .design-location04-wrap .design-location04-img .ab-txt img {
    width: 288px;
    height: 186px;
    object-fit: cover;
}


#design-location04 .design-location04-wrap .design-location04-img .ab-txt p {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    color: #1D4556;
    letter-spacing: 0.1em;
    padding: 5px 15px;
    text-align: center;
}

#design-location04 .design-location04-wrap .design-location04-txt h2 {
    font-size: 30px;
    color: #C0AD49;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #C0AD49;
    padding-bottom: 10PX;
    margin-bottom: 10px;
    font-weight: 100;
}

#design-location04 .design-location04-wrap .design-location04-txt p {
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 1.75;
    font-weight: 100;
}

#design-location04 .design-location04-02-wrap {
    padding-top: 100px;
}

#design-location04 .design-location04-02-wrap h2 {
    font-size: 30px;
    letter-spacing: 0.05em;
    text-align: center;
    font-weight: normal;
}

#design-location04 .design-location04-02-wrap p {
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 1.75;
    text-align: center;
    margin: 40px 0;
}

#design-location04 .design-location04-02-wrap img {
    width: 1000px;
    display: block;
    margin: 0 auto;
}

#design-location04 .design-location04-02-wrap .s-txt {
    font-size: 16px;
    text-align: right;
    letter-spacing: 0.05em;
    width: 1000px;
    margin: 20px auto 0;
}


@media screen and (max-width:767px) {
  #design-location04 .design-location04-wrap .design-location04-img .ab-txt {
    aspect-ratio: 322 / 208;
    width: 48%;
    height: 120px;
  }

  #design-location04 .design-location04-wrap .design-location04-img .ab-txt img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  #design-location04 .design-location04-wrap {
    margin-bottom: 20px;
    gap: 40px;
  }

  #design-location04 .design-location04-wrap .design-location04-txt h2 {
    font-size: 20px;
  }

  #design-location04 .design-location04-bbline {
    padding-bottom: 45px;
  }
}

@media screen and (max-width:767px) {
    #design-location02 .design-location02-main img {
        width: 100%;
        height: 309px;
        margin: 0 auto;
        display: block;
        object-fit: cover;
        object-position: bottom;
    }

    #design-location02 .design-location02-zumen {
        margin-top: 50px;
    }


    #design-location04 .design-location04-wrap .design-location04-txt:last-child {margin-top: 20px;}

    #design-location03 {
      min-height: 265px;
      height: 265px;
      padding: 40px 0;

      h2 {
        font-size: 17.5px;
      }
      .inline_text {
        padding-left: 150px;
        font-size: 30px;

        &:before {
          width: 35vw;
          min-width: unset;
          max-width: 143px;
        }
      }

      .sentence {
        font-size: 15px;
        line-height: 1.5;
        letter-spacing: 1.5px;

        margin-top: 20px;
      }
    }

    .room_switch_tabs__wrapper {
      max-width: unset;
      padding: 0 15px 50px;
      margin-left: auto;
      margin-right: auto;
    }
    .room_switch_tabs {
      h2 {font-size: 20px;padding-top: 45px;line-height: 1.75;}
      .hide-pc {display: block;}
    }

    .room_switch_tabs .btn_tabs {
      display: block;
      margin-top: 20px;
    }
    .btn_tabs .tabs_a,
    .btn_tabs .tabs_b,
    .btn_tabs .tabs_c,
    .btn_tabs .tabs_d {
      max-width: unset!important;
      font-size: 18px;
      line-height: 46px;
      position: relative;

      & span {font-size: 22.5px;}
    }

    .tabs_b,.tabs_c,.tabs_d {margin-top: 15px;}


    & .rooms {
      display: block!important;
      margin-top: 45px;
      padding-left: 0;

      & li:last-child {margin-top: 25px;}

    }
    .rooms .roomType {
      font-size: 17.5px;
      text-align: center;

      & span {font-size: 30.5px;margin-right: 0.15em;}
    }

    .rooms .information_wrap {
      & .space {
        font-size: 13px;
      }
      & .num {
        font-size: 12.5px;

        & span {font-size: 22px;}
      }
    }

    .roomTypeA,
    .roomTypeB,
    .roomTypeC,
    .roomTypeD
     {
      margin-top: 25px;
    }

    .roomTypeA {}
    .roomTypeB {
      /* margin-left: auto;
      margin-right: auto; */
    }

    #design-location04 .design-location04-wrap {
      flex-direction: column-reverse;
      gap: 15px;
    }

    #design-location04 .design-location04-wrap:last-child {
      flex-direction: column-reverse;
      gap: 15px;
    }

    #design-location04 .design-location04-02-wrap {
      padding-top: 45px;

      & h2 {
        font-size: 20px;
        text-align: left;
        line-height: 1.375;
      }

      & p {
        font-size: 15px;
        line-height: 1.5;
        text-align: left;
        margin-top: 20px;
        margin-bottom: 20px;
      }

      & .s-txt {
        font-size: 10pt;
        margin-top: 6px;
      }
    }

    #design-location04 .design-location04-02-wrap img {
        width: 100%;
    }

    #design-location04 .design-location04-02-wrap .s-txt {
        width: 100%;
    }

}

/* design-locationここまで */

/* plan */

.plan-bg {
    /* background-image: url(../images/map/map-bg.webp);
    background-position: center;
    background-repeat: repeat;
    background-size: contain; */
    background-color: #f6f8f3;
    width: 100%;
    position: relative;
}

.plan-bg .tit-deco {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 78px;
    background-color: #C0AD49;
    z-index: 5;
}

#plan {
  position: relative;
  z-index: 5;
}

#plan .plan-maintxt h2 {
  font-size: 20px;
  letter-spacing: 0.05em;
  text-align: center;
  font-weight: 100;
  color: #231815;

  @media screen and (min-width: 768px) {
    font-size: 25px;
  }


  .small {
    color: #b1452c;
    font-size: 15px;
    line-height: 1;
    display: block;
    margin-bottom: .75em;
    @media screen and (min-width: 768px) {
      font-size: 18px;
    }
  }
}


#plan .plan-mainroom {
    margin: 50px auto;
}

#plan .plan-mainroom h3 {
    color: #1D4556;
    letter-spacing: 0.05em;
    font-size: 25px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 0.74px solid #1D4556;
    width: 550px;
    margin: 0 auto 10px;
    font-weight: 100;
}

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

  #plan .plan-mainroom h3 {
    width: 100%;
  }

  #plan .plan-mainroom {
    margin: 25px auto;
  }
}

#plan .plan-mainroom h3 span {
    font-size: 35px;
}

#plan .plan-mainroom p {
    color: #3E3A39;
    font-size: 14px;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 50px;
}

#plan .plan-mainroom img {
    width: 622px;
    margin: 0 auto;
    display: block;
}
@media screen and (max-width:767px) {
  #plan .plan-mainroom img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

#plan .plan-point-wrap {
    display: flex;
    gap: 30px;
    width: 890px;
    justify-content: center;
    margin: 0 auto;
}

#plan .plan-point-wrap .plan-point {
    width: 430px;
    background-color: #1B4454;
    border: 1px solid #C0AD49;
    padding: 25px;
}



#plan .plan-point-wrap .plan-point .en {
    color: #C0AD49;
    font-size: 15px;
    text-align: center;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

#plan .plan-point-wrap .plan-point .ja {
    color: #fff;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1.17px solid #C0AD49;
    position: relative;
    font-weight: 100;
}

#plan .plan-point-wrap .plan-point .ja span {
    font-size: 9px;
    position: absolute;
    right: 0;
    bottom: 10px;
}

#plan .plan-point-wrap .plan-point p {
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.05em;
}

#plan .plen-point02-wrap {
    display: flex;
    width: 100%;
    margin-top: 50px;
}

#plan .plen-point02-wrap .plen-point02 {
    width: calc((100% - 120px) / 5);
    margin-right: 30px;
}

#plan .plen-point02-wrap .plen-point02:last-child {
    margin-right: 0;
}

#plan .plen-point02-wrap .plen-point02 h2 {
    font-size: 17px;
    text-align: center;
    color: #003F3E;
    background-color: #CDCAA4;
    padding: 5px 0;
    width: 100%;
    margin-bottom: 10px;
}

#plan .plen-point02-wrap .plen-point02 img {
    width: 100%;
    height: 144px;
    object-fit: cover;
}

#plan .plen-point02-wrap .plen-point02 h3 {
    font-size: 17.36px;
    color: #907F2E;
    text-align: center;
    letter-spacing: 0.1em;
    padding: 10px 0 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #C0AD49;
}

#plan .plen-point02-wrap .plen-point02 p {
    font-size: 16px;
    color: #231815;
    letter-spacing: 0.05em;
    line-height: 1.75;
}

#plan .plen-point02-wrap .plen-point02 .right {
    text-align: right;
    padding-top: 10px;
}

#plan .plen-point02-wrap .plen-point02 p span {
    font-size: 13.5px;
}


@media screen and (max-width:768px) {
    .plan-bg .tit-deco {
        height: 39px;
    }

    #plan .plan-point-wrap {
      width: 100%;
      flex-wrap: wrap;
      justify-content: space-between;
    }

    #plan .plan-point-wrap .plan-point .en {font-size: 12.5px;}
    #plan .plan-point-wrap .plan-point .ja {font-size: 17.5px;}
    #plan .plan-point-wrap .plan-point p {
      font-size: 15px;
      line-height: 1.5;
    }

    .plen-point02-wrap {
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 15px;

      .plen-point02 {
        width: 47%!important;
        margin-right: unset!important;
      }
      h2 {font-size: 15px!important;font-weight: 100;}
      h3 {text-align: left!important;font-weight: 100;}

      p {font-size: 15px!important;line-height: 1.5!important;}
      span {font-size: 10px!important;}
    }
}

/* pointここまで */


.hide-pc {display: none;}
@media screen and (max-width:768px) {
  .hide-pc {display: block;}
}

#lightbox .lb-outerContainer .lb-container {padding: 2em;}
#lightbox .lb-outerContainer .lb-image {width: 100%;height: 100%;}
@media screen and (max-width:768px) {
  /* #lightbox .lb-outerContainer {padding: 2em;} */
}
