@charset "UTF-8";

/* 共通設定 */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

::before,
::after {
  box-sizing: inherit;
}

button {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  vertical-align: middle;
  text-align: inherit;
  font: inherit;
  -webkit-appearance: none;
  appearance: none;
}

html {
  overflow: auto;
  font-size: 10px;
  font-family: sans-serif;
  line-height: 1.15;
}

body {
  font-size: 16px;
  color: #333333;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 400;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  width: 100%;
  background-color: #fff;
  letter-spacing: 0.08rem;
  -webkit-text-size-adjust: 100%;
}

li {
  list-style-type: none;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
}

a {
  text-decoration: none;
  color: #000;
  transition: .8s;
}

a:hover {
  /* filter: brightness(1.5); */
  transition: .8s;
  opacity: .5;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

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

.bold {
  font-weight: bold;
}

.wrapper {
  width: 100%;
  max-width: 1245px;
  margin: 0 auto;
  padding: 0 15px;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.none {
  display: none;
}

.c-ttl {
  font-size: 40px;
}

.content {
  width: 100%;
  max-width: 90% !important;
  margin: 0 auto;
}


/* 動き　ふわっ---------------------- */
/* その場で */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 下から */

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(80px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

.delay-time05 {
  animation-delay: 0.5s;
}

.delay-time08 {
  animation-delay: 0.8s;
}

.delay-time1 {
  animation-delay: 1s;
}

.delay-time12 {
  animation-delay: 1.2s;
}

.delay-time14 {
  animation-delay: 1.4s;
}

.delay-time16 {
  animation-delay: 1.6s;
}

.delay-time18 {
  animation-delay: 1.8s;
}

.delay-time15 {
  animation-delay: 1.5s;
}

.delay-time2 {
  animation-delay: 2s;
}

.delay-time25 {
  animation-delay: 2.5s;
}

/* to pagetop */
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 14px;
  line-height: 1;
  z-index: 99;
}

#page-top a {
  background: #b5a25d;
  text-decoration: none;
  color: #fff;
  width: 65px;
  height: 65px;
  padding: 28px 5px;
  text-align: center;
  display: block;
  border-radius: 100px;
  opacity: 0.9;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

#page-top a:hover {
  text-decoration: none;
  opacity: .5;
}


/* header */
h1 {
  z-index: 4;
  padding: 0 25px;
}

.header {
  position: absolute;
  width: 100%;
}

.gnav .header-nav {
  justify-content: space-around;
  align-items: center;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  height: 90px;
  padding: 0 15px;
}

.header-wrap {
  justify-content: space-between;
  align-items: center;
  height: 80px;
  background: #fff;

  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}

.gnav {
  width: 100%;
}

.burger_gnav {
  display: none;
}

.header-wrap-item_right {
  width: 100%;
}

.header-nav-item {
  width: calc((100% - 5px) / 5);
  text-align: center;
  border-left: solid 1px;
  padding: 0 5px;
}

.header-nav-item:last-child {
  border-right: solid 1px;
}

.logo {
  max-width: 100%;
}

.nav-name-en {
  font-size: 18px;
}

.nav-name-ja {
  font-size: 18px;
  /* line-height: 2em; */
}

.top-mv .sp {
  display: none;
}

.mv-pc {
  width: 100%;
}

.burger_gnav {
  display: block;
}

.gnav .header-nav {
  display: none;
}

.folding-cover{
  display:none;
}

.header:has(.burger_header-nav.open) .folding-cover{
  display:block;
  position:fixed;
  top:0;
  left:0;
  width: 100vw;
  height: 100vh;
  background:#000;
  opacity: .35;
  z-index: 900;
}

.container {
  width: 100%;
  max-width: 1340px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.container_m {
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.minion {
  font-family: "minion-pro", serif;
  font-weight: 400;
  font-style: normal;
}

.c-ttl-center_l {
  color: #b5a25d;
  font-size: 45px;
  letter-spacing: 1rem;
  text-align: center;
  margin-bottom: 20px;
}

.right-btn {
  background-color: #b5a25d;
  opacity: .7;
  width: 95px;
  position: fixed;
  right: 0;
  top: 40%;
  z-index: 5;
  height: 230px;
  justify-content: space-around;
  align-items: center;
}

.right-btn p {
  text-align: center;
  padding: 1em 0;
}


/* ハンバーガーメニュー */
.burger_header-nav {
  width: 20%;
  height: 100vh;
  margin-left: auto;
  position: fixed;
  right: -30%;
  /* メニューを縦に */
  display: flex;
  flex-direction: column;
  color: #efefef;
  background-color: rgba(255, 255, 255, 0.8);
  transition: .8s;
  justify-content: flex-start;
  top: 0;
  padding: 5% 10px 25% 10px;
  z-index: 5;
  transition: right 2s cubic-bezier(0.190, 1.000, 0.220, 1.000);
}

.burger_header-nav li {
  text-align: left;
  /* max-width: 220px; */
  margin: 0 auto;
  width: 100%;
  padding-left: 30px;
}

.burger_header-nav-item {
  padding: 2% 4%;
}

.btn {
  /* ボタンの配置位置  */
  position: fixed;
  top: 0;
  right: 0px;
  /* ボタンの大きさ  */
  width: 80px;
  height: 80px;
  /* 最前面に */
  z-index: 1000;
  /* わかりやすいように */
}

/***** 真ん中のバーガー線 *****/
.btn-line {
  display: block;
  position: relative;
  /* バーガー線の位置基準として設定 */
  width: 35px;
  /* 線の長さと高さ */
  height: 2px;
  background-color: #ffffff;
  /* バーガー線の色 */
  transition: .2s;
  left: 24px;
  z-index: 10;
}

/****** 上下のバーガー線 *****/
.btn-line::before,
.btn-line::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 90%;
  background-color: #ffffff;
  transition: .5s;
}

.btn-line::before {
  /* 上の線の位置 */
  transform: translateY(-7px);
}

.btn-line::after {
  /* 下の線の位置 */
  transform: translateY(7px);
}

/***** メニューオープン時 *****/
.btn-line.open {
  background-color: transparent;
  /* 真ん中の線を透明に */
  z-index: 10;
}

.btn-line.open::before,
.btn-line.open::after {
  content: "";
  background-color: #ffffff;
  /* 上下の線の色を変える */
  transition: .2s;
}

.btn-line.open::before {
  transform: rotate(45deg);
  /* 上の線を傾ける */
}

.btn-line.open::after {
  transform: rotate(-45deg);
  /* 下の線を傾ける */
}

.burger_header-nav.open {
  right: 0;
  z-index: 906;
}

.btn:hover {
  cursor: pointer;
}

/* ここまで　ハンバーガーメニュー */

.top-slider {
  position: relative;
  z-index: 0;
  height: 100vh;
}

.slider-item01 {
  background: url(../img/top/mv01.jpg);
}

.slider-item02 {
  background: url(../img/top/mv02.jpg);
}

.slider-item03 {
  background: url(../img/top/mv03.jpg);
}

.slider-item04 {
  background: url(../img/top/mv04.jpg);
}

.slider-item {
  width: 100%;
  /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  height: 100vh;
  /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  background-repeat: no-repeat;
  /*背景画像をリピートしない*/
  background-position: center;
  /*背景画像の位置を中央に*/
  background-size: cover;
  /*背景画像が.slider-item全体を覆い表示*/
}

/*矢印の設定*/

.slick-prev,
.slick-next {
  position: absolute;
  z-index: 3;
  top: 42%;
  cursor: pointer;
  /*マウスカーソルを指マークに*/
  outline: none;
  /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #fff;
  /*矢印の色*/
  border-right: 2px solid #fff;
  /*矢印の色*/
  height: 25px;
  width: 25px;
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: 2.5%;
  transform: rotate(-135deg);
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: 2.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: -50px 0 0 0;
  /*ドットの位置*/
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px;
  /*ドットボタンのサイズ*/
  height: 8px;
  /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #fff;
  /*ドットボタンの色*/
}

.slick-dots .slick-active button {
  background: #333;
  /*ドットボタンの現在地表示の色*/
}

.top-mv .slick-slide {
  height: 100vh;
}

.top-mv {
  position: relative;
}

.logo {
  position: absolute;
  left: 15%;
  padding: 0;
}



.top-slider .slick-dots .slick-active button {
  background-color: #b5a25d;
}

.top-slider .slick-dots button {
  color: transparent;
  outline: none;
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 50%;
  background: #fff;
  border: solid 1px #b5a25d;
}

.top-slider .slick-dots {
  margin-top: 40px;
}






/* news slider */
/* -------------------------------------------- */
.top-news__slider .slider,
.top-photowedding__slider .slider {
  /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 94%;
  margin: 0 auto;
}

.top-news__slider .slider img,
.top-photowedding__slider .slider img {
  width: 100%;
  /*スライダー内の画像を横幅100%に*/
  height: auto;

  object-fit: cover;
  height: 300px;
  width: 300px;
  margin: 0 auto;
}

.top-photowedding__slider .slider img {
  object-fit: cover;
  margin: 0 auto;
  width: 230px;
  height: 230px;
}

.top-news__slider .slider p {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.top-photowedding__slider .slider p {
  width: 100%;
  max-width: 230px;
  margin: 0 auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.top-news__slider .slider .slick-slide,
.top-photowedding__slider .slider .slick-slide {
  margin: 0 10px;
  width: 300px;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.top-news__slider .slick-prev,
.top-news__slider .slick-next,
.top-photowedding__slider .slick-prev,
.top-photowedding__slider .slick-next {
  position: absolute;
  /*絶対配置にする*/
  top: 42%;
  cursor: pointer;
  /*マウスカーソルを指マークに*/
  outline: none;
  /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #666;
  /*矢印の色*/
  border-right: 2px solid #666;
  /*矢印の色*/
  height: 25px;
  width: 25px;
}

.top-news__slider .slick-prev,
.top-photowedding__slider .slick-prev {
  /*戻る矢印の位置と形状*/
  left: -1.5%;
  transform: rotate(-135deg);
}

.top-news__slider .slick-next,
.top-photowedding__slider .slick-next {
  /*次へ矢印の位置と形状*/
  right: -1.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.top-news__slider .slick-dots,
.top-photowedding__slider .slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}

.top-news__slider .slick-dots li,
.top-photowedding__slider .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.top-news__slider .slick-dots button,
.top-photowedding__slider .slick-dots button {
  color: transparent;
  outline: none;
  width: 8px;
  /*ドットボタンのサイズ*/
  height: 8px;
  /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc;
  /*ドットボタンの色*/
}

.top-news__slider .slick-dots .slick-active button,
.top-photowedding__slider .slick-dots .slick-active button {
  background: #333;
  /*ドットボタンの現在地表示の色*/
}

/* ----------------------------------------------------- */
.top-mv {
  margin-bottom: 160px;
}

.mb-110 {
  margin-bottom: 110px;
}

.c-btn {
  display: block;
  text-align: center;
  transition: .8s;
}

.c-btn a:hover {
  background: #000;
  color: #ffffff;
  transition: .8s;
  opacity: 1;
}

.c-btn p {
  display: inline-block;
}

.c-btn p a {
  padding: 5px 20px;
  border: solid 1px #231815;
  width: 175px;
  display: block;
  margin: 2em auto;
}

.c-ttl-flex {
  justify-content: space-between;
  border-bottom: solid 1px #b5a25d;
  line-height: 4em;
  margin-bottom: 2em;
}

.ttl-sub-ja {
  font-size: 27px;
  color: #231815;
}

.c-ttl-flex .c-ttl-center_l {
  margin-bottom: 0;
}

figure {
  margin: 0;
}

.top-plan-flex img {
  width: 100%;
  max-width: 100%;
}

.top-plan-flex {
  gap: 1.5em;
}

.bg-beige {
  background: #eee9da;
}

.plan-name {
  padding: 20px;
  position: relative;
}

.plan-name::after {
  content: url(../img/top/arrow-right.png);
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 35px;
  height: 35px;
  background-color: #b5a25d;
  border-radius: 50px;
  font-weight: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}

.plan-name-ja {
  font-size: 23px;
}

.plan-name-en {
  font-size: 12px;
}

.recommend {
  position: relative;
}

.recommend::before {
  content: "";
  display: block;
  width: 141px;
  height: 141px;
  background-image: url(../img/top/parts_most-popular.png);
  background-position: top right;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
}


/* location slider */
.test-slick {
  width: 100%;
  max-width: 635px;
  margin: 15px auto;
}

.location-slick__item {
  margin-right: 5px;
  margin-left: 5px;
}

.location-slick__item img {
  height: auto;
  width: 100%;
}

.test-slick2 {
  width: 100%;
  max-width: 635px;
  margin-right: auto;
  margin-left: auto;
}

.location-slick2__item {
  margin-right: 5px;
  margin-left: 5px;
}

.location-slick2 .slick-track {
  transform: unset !important;
}

.location-slick2__item img {
  height: auto;
  width: 100%;
  opacity: .4;
  transition: opacity .5s;
}

.location-slick2__item.slick-current img {
  opacity: 1;
}

.slick-prev:before,
.slick-next:before {
  color: #000066;
}

.location-slick2__item img {
  object-fit: cover;
  width: 150px;
  height: 150px;
  margin: 0 auto;
}

.test-slick > .location-slick__item:not(:first-child) {
  display: none;
}

.c-ttl-s {
  font-size: 27px;
  border-bottom: solid 1px #cbbd8c;
  padding-bottom: 10px;
  margin-bottom: 1em;
  font-weight: normal;
}

.c-ttl-s .option {
  font-size: 15px;
}

.top-location-flex {
  justify-content: space-between;
  width: 100%;
  gap: 1em;
  margin-bottom: 70px;
}

.top-location-item {
  width: 100%;
}

.top-location-flex .slick-track {
  width: 700px;
}

.top-location-item .c-text {
  max-width: 442px;
  text-align: left;
  line-height: 2.5em;
  /*font-weight: 600;*/
}

.top-schedule-flex {
  flex-wrap: wrap;
  gap: 1em;
}

.top-schedule-item {
  width: 30%;
  margin: 0 auto;
}

.top-schedule-item .bg-beige {
  padding: 20px;
  margin-bottom: 1em;
  font-size: 23px;
}



.top-gallery-flex {
  gap: 1em;
}

.top-gallery-item {
  height: 270px;
}

.top-gallery-item img {
  object-fit: cover;
  height: 270px;
  width: 100%;
}

.qa .bg-beige {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 20px;
  position: relative;
}

.qa .bg-beige a {
  padding: 30px;
  display: block;
  padding-right: 3em;
  color: #000;
  transition: .8s;
}


.qa .bg-beige a:hover {
  opacity: 1;
  color: #000;
  transition: .8s;
}

.bg-beige {
  transition: .8s;
}

.bg-beige a {
  background: rgb(238, 233, 218);
  border: solid 3px rgb(238, 233, 218);
}

.bg-beige a:hover {
  background: #fff;
  border: solid 3px rgb(238, 233, 218);
  transition: .8s;
}




.qa .bg-beige::after {
  content: url(../img/top/arrow-right.png);
  position: absolute;
  right: 35px;
  bottom: unset;
  top: 1.5em;
  width: 35px;
  height: 35px;
  background-color: #b5a25d;
  border-radius: 50px;
  font-weight: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-bottom: 8px;
}

.footer-gnav {
  padding: 30px;
  justify-content: space-around;
  max-width: 1500px;
  margin: 0 auto;
}

.footer-gnav a {
  color: #b5a25d;
  font-size: 18px;
  font-weight: 400;
  padding: 0 5px;
  text-align: center;
}

.footer-gnav-wrap {
  background-color: #f1ecdf;
}

.footer-gnav li {
  position: relative;
}

.footer-gnav li::after {
  content: "/";
  position: absolute;
  display: block;
  right: -2em;
  bottom: 4px;
  color: #b5a25d;
}

.footer-gnav li:last-child::after {
  display: none;
}

.top-gallery__content {
  margin-bottom: 135px;
}

.footer-flex2 {
  justify-content: space-around;
  align-items: center;
  gap: 1em;
}

.company-name {
  font-size: 27px;
}

.tel-no {
  font-size: 44px;
}

.tel {
  font-size: 22px;
}

.address {
  font-size: 14px;
}

.c-btn-l a {
  width: 570px;
  font-size: 24px;
  padding-right: 3em;
}

.footer-flex2 {
  max-width: 1500px;
  margin: 0 auto;
  margin-top: 115px;
  margin-bottom: 95px;
}

.c-btn-l .bg-beige::after {
  top: 1.7em;
  right: 15px;
}

.footer-flex3 {
  flex-direction: column;
}

.bg-gray {
  background-color: #ededed;
}

.footer-flex3-item {
  border-bottom: solid 1px #808080;
  padding: 40px 0;
}

.footer-flex3-item-wrap {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  gap: 0 60px;
}

.footer-flex3-item-wrap .item-child {
  display: flex;
  justify-content: start;
  width: 85%;
  gap: 1em 30px;
  flex-wrap: wrap;
}

.footer-flex4 {
  max-width: 1100px;
  margin: 0 auto;
  justify-content: center;
  gap: 2em;
  padding: 2em 0;
}

.c-center {
  text-align: center;
  padding-bottom: 90px;
}




@media screen and (min-width: 551px) {
  .logo a {
    pointer-events: none;
  }

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

  .header__spBox {
    display: none;
  }

  .right-btn {
    flex-direction: column;
  }

  .right-btn p:first-child {
    border-bottom: solid 1px #ffffff;
  }

  .right-btn img {
    width: 100%;
    max-width: 56%;
    margin: 0 auto;
  }

  .right-btn__tel {
    display: none;
  }

  .top-schedule-item .c-text {
    height: 150px;
  }

  .header:not(.is-subpage) .btn {
    background: rgba(181, 162, 93, .7);
  }

  .footer-flex4 {
    justify-content: flex-end;
  }

}

@media screen and (min-width: 1126px) {
  .genre{
    width: 110px;
  }
}




/* レスポンシブ */
/* ------------------------------------ */
@media screen and (max-width: 1380px) {
  .footer-flex2 {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 1260px) {
  .c-btn-l .bg-beige a {
    width: 100%;
    padding-right: 2.5em;
    font-size: 22px;
  }

  .footer-gnav li::after {
    right: -1em;
  }
}

/* ⇑ 1260px ⇑ */

@media screen and (max-width: 1125px) {
  .c-ttl-flex {
    flex-direction: column;
  }

  .ttl-sub-ja {
    text-align: center;
  }

  /* .footer-flex2 {
    flex-wrap: wrap;
  } */

  .footer-gnav a {
    padding: 0 10px;
  }

  .footer-gnav li::after {
    right: -.5em;
  }

  .footer-gnav {
    flex-wrap: wrap;
    justify-content: start;
  }

  .footer-flex3-item-wrap {
    flex-wrap: wrap;
    gap: 1em;
  }

  .footer-flex3-item-wrap .item-child {
    width: 100%;
  }

  .genre p {
    font-size: 20px;
  }

  .footer-flex3-item-wrap .item-child a {
    font-size: 15px;
  }



}

/* ⇑ 1125px ⇑ */

/* ↓　////////レスポンシブ（基本） ////////// ↓ */
@media screen and (max-width: 1024px) {
  .top-location-flex {
    flex-direction: column;
    justify-content: center;
  }

  .top-location-item {
    width: 100%;
    max-width: 625px;
    margin: 0 auto;
  }

  .top-location-item .c-text {
    max-width: 100%;
  }




}

/* ⇑ 1024px ⇑ */

@media screen and (max-width: 900px) {
  .top-plan-flex {
    flex-wrap: wrap;
    justify-content: center;
  }

  .top-schedule-item {
    width: 45%;
  }

  .top-gallery-flex {
    flex-wrap: wrap;
    justify-content: center;
  }

  .qa .bg-beige a {
    padding: 20px;
    padding-right: 3em;
  }

  .qa .bg-beige a img {
    width: 125px;
  }

  .qa .bg-beige,
  .c-btn-l .bg-beige a {
    font-size: 18px;
  }

  .qa .bg-beige::after {
    top: 1.5em;
  }

  .c-btn-l .bg-beige::after {
    top: 1em;
  }
}

/* ⇑ 900px ⇑ */


/* ブレークポイント基本　タブレット */
@media screen and (max-width: 768px) {
  .c-ttl-center_l {
    font-size: 30px;
  }

  .ttl-sub-ja {
    font-size: 20px;
  }

  .c-ttl-flex {
    line-height: 2.5em;
  }

  .plan-name-ja {
    font-size: 20px;
  }

  .c-ttl-s {
    font-size: 22px;
  }

  .c-text {
    font-size: 15px;
  }

  .top-schedule-item .bg-beige {
    padding: 16px;
    font-size: 19px;
  }

  .location-slick2__item img {
    width: 100%;
    height: 100%;
  }

  .burger_header-nav {
    right: -45%;
    width: 45%;
  }


}

@media screen and (max-width: 1590px) and (min-width: 551px) {
  .footer-flex2 {
    margin-right: 0;
    padding-right: 105px;
  }
}

/* ⇑ 768px ⇑ */

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

/* ⇑ 690px ⇑ */

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

/* ⇑ 660px ⇑ */

@media screen and (max-width: 550px) {
  .footer-flex2 {
    flex-direction: column;
  }

  .top-schedule-item .bg-beige {
    padding: 10px;
    font-size: 17px;
    margin-bottom: 10px;
  }

  .top-schedule-item {
    width: 100%;
  }

  .top-schedule-flex {
    gap: 30px 0;
  }

  .qa .bg-beige a img {
    width: 100px;
  }

  .qa .bg-beige,
  .c-btn-l .bg-beige a {
    font-size: 16px;
  }

  .qa .bg-beige a {
    padding: 20px 15px;
    padding-right: 3em;
  }

  .c-btn-l .bg-beige a {
    padding-right: 3em;
  }

  .qa .bg-beige::after {
    right: 10px;
  }

  .footer-gnav a {
    font-size: 16px;
  }

  .burger_header-nav {
    right: -80%;
    width: 80%;
  }

  .nav-name-ja {
    font-size: 15px;
  }

  .footer-flex3-item {
    padding: 20px 0;
  }

  #page-top a {
    width: 45px;
    height: 45px;
    padding: 0;
  }

  .top-mv .slick-slide,
  /*.logo img,*/
  .top-slider {
    height: 160vw;
  }

  /*.logo img {
        object-fit: contain;
        width: unset;
    }*/

  .logo {
    position: fixed;
    top: 17px;
    left: 20px;
    z-index: 2;
  }

  .btn-line,
  .btn-line::before,
  .btn-line::after,
  .btn-line.open::before,
  .btn-line.open::after {
    background-color: #231815;
  }

  .header__spBox {
    height: 80px;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
  }

  .header__spBox__insta {
    position: absolute;
    top: 20px;
    right: 80px;
    font-size: 24px;
  }

  .right-btn {
    width: 100%;
    height: auto;
    top: auto;
    bottom: 0;
    display: flex;
    align-items: stretch;
    border-top: 1px solid #fff;
  }

  .right-btn__tel {
    width: 70px;
  }

  .right-btn p:not(.right-btn__tel) {
    width: calc(50% - 35px);
    border-left: 1px solid #fff;
  }

  .right-btn p {
    padding: 0;
  }

  .right-btn a {
    display: block;
    padding: 15px;
  }

  /*.right-btn img {
        max-width: 55%;
    }*/


  /* bottomにくっ付ける場合はコメントアウト外す */
  /* .right-btn {
        right: unset;
        top: unset;
        bottom: 0;
        flex-direction: row;
        width: 100%;
        height: 70px;
    }

    .right-btn img {
        max-width: 40%;
    }

    #page-top {
        bottom: 90px;
    } */

  .qa .bg-beige::after {
    padding-bottom: 0;
  }

  .burger_header-nav {
    padding-top: 25%;
  }

  #page-top {
    bottom: 65px;
    right: 10px;
  }

  .footer-gnav {
    justify-content: center;
    gap: 5px;
  }

  .slick-next {
    right: 15px;
  }

  .slick-prev {
    left: 15px;
  }
}

/* ⇑ 550px ⇑ */

@media screen and (max-width: 410px) {
  .c-btn-l .bg-beige a {
    font-size: 14px;
  }


  .qa .bg-beige::after {
    width: 25px;
    height: 25px;
    transform: scale(.8);
    top: 1.2em;
  }

  .company-name {
    font-size: 25px;
  }

  .tel-no {
    font-size: 35px;
  }
}

/* ⇑ 410px ⇑ */










.header.is-subpage+main {
  margin-top: 80px;
}

.subpage__logo {
  position: absolute;
  top: 25px;
  left: 20px;
  z-index: 2;
}

.header.is-subpage .btn-line,
.header.is-subpage .btn-line::before,
.header.is-subpage .btn-line::after,
.header.is-subpage .btn-line.open::before,
.header.is-subpage .btn-line.open::after {
  background-color: #231815;
}

.header.is-subpage .btn-line.open {
  background-color: transparent;
}

.header.is-subpage .header__spBox {
  height: 80px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  display: block;
}

.header.is-subpage .header__spBox__insta {
  position: absolute;
  top: 20px;
  right: 80px;
  font-size: 24px;
}



.plan-main {
  position: relative;
}

.plan-main__hdg {
  text-align: center;
  color: #fff;
  position: absolute;
  top: 50px;
  left: 50px;
}

.plan-main__hdg__en {
  font-size: 49px;
  font-weight: 500;
  display: block;
  letter-spacing: .1em;
}

.plan-main__hdg__jp {
  font-size: 20px;
  display: block;
  font-weight: 500;
  padding-top: 55px;
  position: relative;
}

.plan-main__hdg__jp:before {
  content: "";
  width: 1px;
  height: 50px;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 0;
}

.plan-main__image {
  width: 100%;
}

.plan-main__link {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  margin-top: 50px;
}

.plan-main__link__item {
  width: calc((100% - 60px) / 3);
}

.plan-main__link__item a {
  display: block;
  background: url("img/plan-l/link_arrow.png") no-repeat right 10px bottom 15px;
  background-color: #ede9d9;
  font-size: 23px;
  padding: 20px 50px 15px 20px;
}

.plan-main__link__item.is-current a {
  pointer-events: none;
  background: #fff;
  border: 1px solid #B5A25D;
}

.plan-main__link__item__en {
  display: block;
  font-size: 14px;
}

.plan-menu {
  font-size: 16px;
  line-height: 1.8;
}

.plan-menu__about {
  font-size: 18px;
  text-align: center;
  line-height: 2.5;
  padding: 70px 0 90px;
}

.plan-menu__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 0;
  margin-bottom: 20px;
}

.plan-menu__list__item {
  /*font-size: 20px;*/
  background: #EEE9DA;
  padding: 0 45px 30px;
  max-width: 600px;
  width: calc(50% - 15px);
  line-height: 1.8;
}

.plan-menu__list__item__hdg {
  font-size: 35px;
  text-align: center;
  border-bottom: 1px solid #231815;
  font-weight: 500;
  padding: 20px 0;
  margin-bottom: 25px;
}

.plan-menu__note__item {
  /*font-size: 20px;*/
  padding-left: 25px;
  background: url("img/plan-l/ico_note.png") no-repeat left 0 top 7px;
}

.plan-menu__box__btn {
  max-width: 270px;
  background: #231815;
  color: #fff;
  text-align: center;
  display: block;
  font-size: 25px;
  padding: 22px 20px;
}

.plan-menu__box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}

.plan-menu__box__btnWrap {
  width: 270px;
}

.plan-option {
  font-size: 16px;
  padding: 70px 0 90px;
}

.plan-option__hdg01 {
  font-size: 35px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
}

.plan-option__hdg01__en {
  display: block;
  font-size: 23px;
  color: #B5A25D;
  letter-spacing: .1em;
}

.plan-option__hdg02 {
  font-size: 28px;
  font-weight: 500;
}

.plan-option__hdg03 {
  font-size: 28px;
  border-bottom: 1px solid #B5A25D;
  font-weight: 500;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.plan-option__detail-kochira {
  border-bottom: 1px solid #231815;
  padding: 10px 0;
  margin-bottom: 30px;
}

.plan-option__detail-kochira:after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  border-bottom: 1px solid #231815;
  border-right: 1px solid #231815;
  margin-left: 20px;
  transform: rotate(45deg) translateY(-6px);
}

.plan-option__table {
  border-collapse: collapse;
  width: 100%;
  font-size: 16px;
  white-space: normal;
}

.plan-option__table tr:nth-of-type(2n+1) {
  background: #F8F6F0;
}

.plan-option__table th,
.plan-option__table td {
  text-align: left;
  padding: 10px 30px;
  font-weight: 500;
  font-size: 16px !important;
  white-space: normal;
}

.plan-option__table .t-center {
  text-align: center;
}

.plan-option__table .t-right {
  text-align: right;
}

.plan-option__addIimage {
  margin: 20px 0;
  display: flex;
  justify-content: space-between;
}

.plan-option__addIimage__list {
  width: calc(50% - 6px);
}

.plan-option__box {
  padding: 10px 30px;
  background: #EEE9DA;
  margin-bottom: 15px;
}

.plan-option__alubm {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 0;
}

.plan-option__alubm__item {
  width: calc((100% - 60px) / 3);
}

.plan-option__alubm__item__hdg {
  padding: 5px 20px;
  background: #EEE9DA;
  text-align: center;
  font-size: 23px;
}

.plan-option__video{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.plan-option__video__item{
  width: calc(50% - 15px);
}
.plan-option__video__item .video-js{
  max-width: 100%;
  height: auto;
  aspect-ratio: 428 / 240;
}

.plan-option__video .video-js .vjs-big-play-button {
    line-height: 1.8em;
    height: 2em;
    width: 2em;
    border-radius: 50px;
    background-color: rgba(43, 51, 63, 0.1);
}
.plan-option__video .video-js:hover .vjs-big-play-button{
  background: rgba(115, 133, 159, 0.5)
}


.plan-option__btn {
  padding: 20px;
  display: block;
  padding-right: 3em;
  color: #000;
  transition: .8s;
  max-width: 570px;
  margin: 0 auto;
  text-align: center;
  font-size: 20px;
  position: relative;
  border: solid 3px rgb(238, 233, 218);
  background: rgb(238, 233, 218);
}

.plan-option__btn:after {
  content: "";
  background: url(../img/top/arrow-right.png) no-repeat center;
  background-color: #b5a25d;
  position: absolute;
  right: 35px;
  bottom: unset;
  top: calc(50% - 18px);
  width: 35px;
  height: 35px;
  border-radius: 50px;
  font-weight: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-bottom: 8px;
  line-height: 35px;
}

.plan-option__btn:hover {
  opacity: 1;
  background: #fff;
}

.plan-2chaku {
  background: #EEE9DA;
  font-size: 20px;
  padding: 40px 0 50px;
  margin-top: 80px;
}

.plan-2chaku__text {
  font-size: 25px;
  margin-bottom: 40px;
}

@media screen and (max-width: 1300px) {
  .plan-option__table {
    width: 1300px;
  }

  .plan-option__tableWrap {
    overflow-x: scroll;
  }
}

@media screen and (max-width: 768px) {
  section[class^="plan"] {
    font-size: 16px;
  }

  .plan-main__link__item {
    width: 100%;
  }

  .plan-menu__list {
    justify-content: center;
  }

  .plan-menu__list__item {
    width: 100%;
    padding: 0 25px 20px;
  }

  .plan-menu__list__item__hdg {
    font-size: 24px;
    padding: 15px 0;
    margin-bottom: 20px;
  }

  .plan-menu__list__item__image {
    text-align: center;
  }

  .plan-option__alubm__item {
    width: 100%;
  }

  .plan-option__video {
    gap: 5px;
  }

  .plan-option__btn {
    font-size: 14px;
    padding: 20px 3em 20px 15px;
  }

  .plan-option__btn:after {
    right: 10px;
    width: 25px;
    height: 25px;
    background-size: 15px 9px;
    top: calc(50% - 12px);
  }

  .plan-main__hdg {
    top: 20px;
    left: 5px;
  }

  .plan-main__hdg__en {
    font-size: 30px;
  }

  .plan-menu__about {
    text-align: left;
    font-size: 16px;
  }

  .plan-option__hdg01 {
    font-size: 28px;
  }

  .plan-option__hdg01__en {
    font-size: 18px;
  }

  .plan-option__hdg02 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .plan-option__hdg03 {
    font-size: 22px;
  }

  .plan-option__alubm__item__hdg {
    font-size: 18px;
  }

  .plan-2chaku__text {
    font-size: 20px;
  }

  .plan-menu__box__btn {
    font-size: 18px;
    padding: 15px 15px;
  }

  .plan-menu__box {
    justify-content: space-around;
  }
  
  .plan-option__video__item{
    width: 100%;
  }
}

.faq {
  padding-bottom: 100px;
}

.faq__hdg {
  color: #b5a25d;
  font-size: 45px;
  letter-spacing: 1rem;
  text-align: center;
  border-bottom: solid 1px #b5a25d;
  font-weight: 500;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.faq__hdg02 {
  background: #EEE9DA;
  border-left: 4px solid #b5a25d;
  padding: 5px 15px 5px 30px;
  font-weight: 500;
  font-size: 35px;
}

.faq__anchor {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 30px;
  margin-bottom: 60px;
}

.faq__dl {
  padding: 0 15px;
  margin: 0 0 50px;
}

.faq__dl__dt {
  position: relative;
  padding-left: 30px;
  margin-top: 20px;
}

.faq__dl__dt:before {
  content: "Q";
  position: absolute;
  top: 0;
  left: 0;
}

.faq__dl__dd {
  color: #b5a25d;
  position: relative;
  padding-left: 30px;
  margin: 0;
}

.faq__dl__dd:before {
  content: "A";
  position: absolute;
  top: 0;
  left: 0;
}

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

  .faq__dl {
    padding: 0 30px;
    margin: 0 0 50px;
  }

  .faq__dl__dt {
    margin-top: 30px;
  }
}

@media screen and (max-width: 550px) {
  .faq__hdg02 {
    font-size: 20px;
    padding-left: 15px;
  }

  .faq__anchor__item {
    width: 100%;
    text-align: center;
  }
}


select {
  padding: 10px;
  border-radius: 0;
}

form button {
  border: solid 2px #eee9da;
  padding: 5px 10px;
  cursor: pointer;
  transition: .8s;
  background: #eee9da;
}

form button:hover {
  background: #fff;
}

.gallerySearch {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 30px;
}

.gallery__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.gallery__list__item {
  width: calc((100% - 60px) / 4);
}

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

  select,
  form button {
    width: 100%;
  }

  form button {
    text-align: center;
  }

  .gallery__list {
    gap: 5px;
  }

  .gallery__list__item {
    width: calc((100% - 5px) / 2);
  }
}

.wp-pagenavi {
  margin: 50px 0 100px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
  border: 1px solid #b5a25d;
  color: #b5a25d;
  font-size: 16px;
  margin: 5px;
  width: 2.6em;
  height: 2.6em;
  line-height: 2.75;
  display: block;
  text-decoration: none;
  padding: 0;
  opacity: 1;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  line-height: 2.65;
}



.wp-pagenavi span.current {
  color: #fff;
  background: #b5a25d;
  border: none;
  border-color: none;
  cursor: default;
}

.wp-pagenavi a:hover {
  opacity: 0.8;
}

.news__list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 20px;
}

.news__list__item {
  width: calc((100% - 60px) / 4);
}

.news__list__item__hdg {
  font-weight: normal;
  font-size: 18px;
}

.news__detail__contents {
  padding: 30px 20px;
}

.news__detail__thum {
  text-align: center;
  padding: 30px 20px 0;
}

.news__list:not(:has(+ .wp-pagenavi)),
.gallery__list:not(:has(+ .wp-pagenavi)) {
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .news__list__item {
    width: calc((100% - 20px) / 2);
  }
}

@media screen and (max-width: 550px) {
  .news__list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 10px;
  }

  .news__list__item {
    width: calc((100% - 10px) / 2);
  }
}

/***************************

utility

***************************/

@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}

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

.t-center {
  text-align: center;
}

.t-left {
  text-align: left;
}

.t-right {
  text-align: right;
}

@media screen and (min-width: 451px) {
  .t-center_pc {
    text-align: center;
  }

  .t-left_pc {
    text-align: left;
  }

  .t-right_pc {
    text-align: right;
  }
}

.f-bold {
  font-weight: bold;
}

.f-normal {
  font-weight: normal;
}

.m-0 {
  margin: 0;
}

.mt-0 {
  margin-top: 0px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-105 {
  margin-top: 105px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-115 {
  margin-top: 115px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-125 {
  margin-top: 125px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-135 {
  margin-top: 135px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-145 {
  margin-top: 145px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-155 {
  margin-top: 155px;
}

.mt-160 {
  margin-top: 160px;
}

.mt-165 {
  margin-top: 165px;
}

.mt-170 {
  margin-top: 170px;
}

.mt-175 {
  margin-top: 175px;
}

.mt-180 {
  margin-top: 180px;
}

.mt-185 {
  margin-top: 185px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-195 {
  margin-top: 195px;
}

.mt-200 {
  margin-top: 200px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-105 {
  margin-bottom: 105px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-115 {
  margin-bottom: 115px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-125 {
  margin-bottom: 125px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-135 {
  margin-bottom: 135px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-145 {
  margin-bottom: 145px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-155 {
  margin-bottom: 155px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mb-165 {
  margin-bottom: 165px;
}

.mb-170 {
  margin-bottom: 170px;
}

.mb-175 {
  margin-bottom: 175px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-185 {
  margin-bottom: 185px;
}

.mb-190 {
  margin-bottom: 190px;
}

.mb-195 {
  margin-bottom: 195px;
}

.mb-200 {
  margin-bottom: 200px;
}

.mr-0 {
  margin-right: 0px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.ml-0 {
  margin-left: 0px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.p-0 {
  padding: 0;
}

.pt-0 {
  padding-top: 0px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pr-0 {
  padding-right: 0px !important;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pl-0 {
  padding-left: 0px !important;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

.txt_link {
  text-decoration: underline;
  color: #b5a25d;
}
@media screen and (min-width: 551px) {
  a[href^='tel:']{
    pointer-events: none;
    text-decoration: none;
  }
}