@charset "UTF-8";
/*=======================================
	breakpoint
=======================================*/
/*=======================================
	hover
=======================================*/
/*=======================================
	中央配置
=======================================*/
/*=======================================
	可変レスポンシブ
=======================================*/
/* PC */
/* TB */
/* SP */
/*=======================================
	ブラウザ別
=======================================*/
/* Safari */
/* Firefox */
/* ----------------------
- base
- bottom_spacing
- color
- header
- 共通見出し
- 共通ボタン
- 見出し
- 本文テキスト
- キャプション
- 注釈
- コピー
- 整列
- 余白
- 下層MV
---------------------- */
/*=======================================
　base
=======================================*/
body {
  font-family: "游明朝", YuMincho, "Noto Serif JP", "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  overflow-x: hidden;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: var(--main_black);
  font-weight: 400;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/*アンカーリンク*/
.anchor {
  padding-top: 170px;
  margin-top: -170px;
  display: block;
}
@media screen and (max-width: 768px) {
  .anchor {
    padding-top: 100px;
    margin-top: -100px;
  }
}

.anchor_pad {
  padding-top: 95px;
  margin-top: -95px;
  display: block;
}
@media screen and (max-width: 768px) {
  .anchor_pad {
    padding-top: 50px;
    margin-top: -50px;
  }
}

/*コンテンツ幅*/
.inner {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}

/* PCではTELのリンク無効 */
@media only screen and (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
main {
  margin-top: 95px;
}
@media screen and (max-width: 768px) {
  main {
    margin-top: 50px;
  }
}

/*=======================================
　bottom_spacing
=======================================*/
.bottom_spacing {
  margin-bottom: 300px;
}
@media screen and (max-width: 768px) {
  .bottom_spacing {
    margin-bottom: 150px;
  }
}

/*=======================================
　color
=======================================*/
:root {
  --main_black: #222;
  --sub_color: #19150c;
  --main_navy: #151F41;
}

/*=======================================
　header
=======================================*/
header {
  width: 100%;
  height: 95px;
  z-index: 2;
  position: fixed;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  header {
    height: 50px;
  }
}
header .flex_area {
  background: #fff;
  -webkit-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 0 117px 0 21px;
  z-index: 1;
}
header .flex_area .hd_logo {
  width: 200px;
}
@media screen and (max-width: 768px) {
  header .flex_area .hd_logo {
    width: 120px;
  }
}
header .flex_area .hd_logo a span {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #000;
  text-align: center;
  display: block;
  margin-top: 4px;
}
@media screen and (max-width: 768px) {
  header .flex_area .hd_logo a span {
    font-size: 7px;
    letter-spacing: 0.07em;
  }
}
header .flex_area .cmn_re_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .flex_area > .cmn_re_btn_wrap > .cmn_re_btn {
  -webkit-column-gap: 14px;
     -moz-column-gap: 14px;
          column-gap: 14px;
}
@media screen and (max-width: 768px) {
  header .flex_area > .cmn_re_btn_wrap > .cmn_re_btn {
    display: none;
  }
}
header .flex_area > .cmn_re_btn_wrap > .cmn_re_btn li {
  width: 220px;
  height: 57px;
}
@media screen and (max-width: 1024px) {
  header .flex_area > .cmn_re_btn_wrap > .cmn_re_btn li {
    width: 180px;
  }
}
header .flex_area > .cmn_re_btn_wrap > .cmn_re_btn li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
header .flex_area > .cmn_re_btn_wrap > .cmn_re_btn li a span {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.2em;
  color: #fff;
}
header {
  /* ハンバーガーメニューボタン */
}
header .openbtn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 96px;
  height: 96px;
  background: var(--main_navy);
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  header .openbtn {
    width: 50px;
    height: 50px;
  }
}
header .openbtn span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 33px;
  height: 1px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  header .openbtn span {
    width: 18px;
  }
}
header .openbtn span:nth-of-type(1) {
  top: 35px;
}
@media screen and (max-width: 768px) {
  header .openbtn span:nth-of-type(1) {
    top: 17px;
  }
}
header .openbtn span:nth-of-type(2) {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
header .openbtn span:nth-of-type(3) {
  bottom: 35px;
}
@media screen and (max-width: 768px) {
  header .openbtn span:nth-of-type(3) {
    bottom: 17px;
  }
}
header .openbtn.active span:nth-of-type(1) {
  top: 45px;
  -webkit-transform: translateX(-50%) rotate(-40deg);
          transform: translateX(-50%) rotate(-40deg);
}
@media screen and (max-width: 768px) {
  header .openbtn.active span:nth-of-type(1) {
    top: 24px;
  }
}
header .openbtn.active span:nth-of-type(2) {
  display: none;
}
header .openbtn.active span:nth-of-type(3) {
  bottom: 50px;
  -webkit-transform: translateX(-50%) rotate(40deg);
          transform: translateX(-50%) rotate(40deg);
}
@media screen and (max-width: 768px) {
  header .openbtn.active span:nth-of-type(3) {
    bottom: 25px;
  }
}
header {
  /* ハンバーガーメニュー中身 */
}
header .g_nav {
  width: 450px;
  height: calc(100vh - 95px);
  font-size: 20px;
  opacity: 0;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.9);
  position: fixed;
  right: 0;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  top: 95px;
  -webkit-transform: translateX(3%);
          transform: translateX(3%);
  scrollbar-width: none;
}
@media screen and (max-width: 768px) {
  header .g_nav {
    width: 100%;
    height: calc(100vh - 50px);
    top: 50px;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
header .g_nav.panelactive {
  pointer-events: painted;
  opacity: 1;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
header .g_nav .g_nav_inn {
  height: 100%;
  overflow-y: scroll;
  padding: 71px 55px;
}
header .g_nav .g_nav_inn::-webkit-scrollbar {
  display: none;
}
header .g_nav .g_nav_inn nav {
  margin-bottom: 50px;
}
header .g_nav .g_nav_inn nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  height: 100%;
}
header .g_nav .g_nav_inn nav ul li {
  width: 100%;
  padding: 19.2px 22px;
  border-bottom: 1px solid #676fb4;
  -o-border-image: linear-gradient(to left, rgba(103, 111, 180, 0) 0%, #676fb4 51.04%, #676fb4 100%) 1;
     border-image: -webkit-gradient(linear, right top, left top, from(rgba(103, 111, 180, 0)), color-stop(51.04%, #676fb4), to(#676fb4)) 1;
     border-image: linear-gradient(to left, rgba(103, 111, 180, 0) 0%, #676fb4 51.04%, #676fb4 100%) 1;
}
header .g_nav .g_nav_inn nav ul li:first-child {
  padding-top: 0;
}
header .g_nav .g_nav_inn nav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
}
header .g_nav .g_nav_inn nav ul li a img {
  width: auto;
  height: 7px;
}
header .g_nav .g_nav_inn nav ul li a.new {
  position: relative;
}
header .g_nav .g_nav_inn nav ul li a.new::after {
  content: "New";
  display: block;
  color: red;
  font-size: 10px;
  position: absolute;
  left: 0;
  top: -12px;
}
header .g_nav .g_nav_inn nav ul li.grayout a {
  -webkit-filter: brightness(0) saturate(100%) invert(89%) sepia(1%) saturate(59%) hue-rotate(314deg) brightness(93%) contrast(90%);
          filter: brightness(0) saturate(100%) invert(89%) sepia(1%) saturate(59%) hue-rotate(314deg) brightness(93%) contrast(90%);
  pointer-events: none;
}
header .g_nav .g_nav_inn .cmn_re_btn_wrap .cmn_re_btn {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 11px;
}
header .g_nav .g_nav_inn .cmn_re_btn_wrap .cmn_re_btn li {
  width: 100%;
  height: 76px;
}
@media screen and (max-width: 768px) {
  header .g_nav .g_nav_inn .cmn_re_btn_wrap .cmn_re_btn li {
    width: 240px;
    height: 52px;
  }
}
header .g_nav .g_nav_inn .cmn_re_btn_wrap .cmn_re_btn li a {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.2em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  header .g_nav .g_nav_inn .cmn_re_btn_wrap .cmn_re_btn li a {
    font-size: 16px;
  }
}

/*=======================================
　共通ボタン
=======================================*/
/* 来場予約・資料請求 */
.cmn_re_btn a {
  font-family: "Shippori Mincho", serif;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.cmn_re_btn .grayout a {
  background: #707070;
  pointer-events: none;
}

.reservation_btn a {
  background: -webkit-gradient(linear, left top, right top, from(#89e2e2), to(#3352ac));
  background: linear-gradient(90deg, #89e2e2 0%, #3352ac 100%);
}

.request_btn a {
  background: -webkit-gradient(linear, left top, right top, from(#ff9f85), to(#31457e));
  background: linear-gradient(90deg, #ff9f85 0%, #31457e 100%);
}

/* 矢印 */
.cmn_re_btn .btn_arrow {
  position: relative;
}
.cmn_re_btn .btn_arrow::after {
  content: "";
  background: url("../img/common/arrow01.svg") no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*=======================================
　見出し
=======================================*/
.cmn_ttl01 {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 34px;
  letter-spacing: 0.15em;
  line-height: 1.441;
  text-align: center;
  color: #07183b;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .cmn_ttl01 {
    font-size: 20px;
    margin-bottom: 25px;
  }
}

.cmn_ttl_img01 {
  height: 34.75px;
}
@media screen and (max-width: 768px) {
  .cmn_ttl_img01 {
    height: 20px;
  }
}
.cmn_ttl_img01 img {
  width: auto;
  height: 100%;
}

/*=======================================
　本文テキスト
=======================================*/
.cmn_txt01 {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 2.0625;
  color: #333;
}
@media screen and (max-width: 768px) {
  .cmn_txt01 {
    font-size: 14px;
  }
}

.cmn_txt02 {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 2.333;
}
@media screen and (max-width: 768px) {
  .cmn_txt02 {
    font-size: 13px;
  }
}

/*=======================================
　キャプション
=======================================*/
.cmn_caption01 {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
  .cmn_caption01 {
    font-size: 12px;
  }
}

/*=======================================
　注釈
=======================================*/
.cmn_notes01 {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.cmn_notes01 a {
  text-decoration: underline;
}

.cmn_notes02 {
  font-size: 10px;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

/*=======================================
　コピー
=======================================*/
.cmn_copy01 {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 34px;
  letter-spacing: 0.15em;
  line-height: 1.441;
  color: #07183b;
}

.cmn_copy02 {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.708;
  color: #635f4c;
}

/*=======================================
　整列
=======================================*/
.align_L {
  text-align: left;
  margin-left: 0 !important;
}

.align_C {
  text-align: center;
}

.align_R {
  text-align: right;
  margin-right: 0 !important;
}

/*=======================================
　余白
=======================================*/
.mb5 {
  margin-bottom: 5px !important;
}

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

.mb15 {
  margin-bottom: 15px !important;
}

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

.mb30 {
  margin-bottom: 30px !important;
}
@media screen and (max-width: 768px) {
  .mb30 {
    margin-bottom: 15px !important;
  }
}

.mb40 {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 768px) {
  .mb40 {
    margin-bottom: 20px !important;
  }
}

.mb50 {
  margin-bottom: 50px !important;
}
@media screen and (max-width: 768px) {
  .mb50 {
    margin-bottom: 25px !important;
  }
}

.mb60 {
  margin-bottom: 60px !important;
}
@media screen and (max-width: 768px) {
  .mb60 {
    margin-bottom: 30px !important;
  }
}

.mb70 {
  margin-bottom: 70px !important;
}
@media screen and (max-width: 768px) {
  .mb70 {
    margin-bottom: 35px !important;
  }
}

.mb80 {
  margin-bottom: 80px !important;
}
@media screen and (max-width: 768px) {
  .mb80 {
    margin-bottom: 40px !important;
  }
}

.mb90 {
  margin-bottom: 90px !important;
}
@media screen and (max-width: 768px) {
  .mb90 {
    margin-bottom: 45px !important;
  }
}

.mb100 {
  margin-bottom: 100px !important;
}
@media screen and (max-width: 768px) {
  .mb100 {
    margin-bottom: 50px !important;
  }
}

.mb110 {
  margin-bottom: 110px !important;
}
@media screen and (max-width: 768px) {
  .mb110 {
    margin-bottom: 55px !important;
  }
}

.mb120 {
  margin-bottom: 120px !important;
}
@media screen and (max-width: 768px) {
  .mb120 {
    margin-bottom: 60px !important;
  }
}

.mb140 {
  margin-bottom: 140px !important;
}
@media screen and (max-width: 768px) {
  .mb140 {
    margin-bottom: 70px !important;
  }
}

.mb160 {
  margin-bottom: 160px !important;
}
@media screen and (max-width: 768px) {
  .mb160 {
    margin-bottom: 80px !important;
  }
}

.mb200 {
  margin-bottom: 200px !important;
}
@media screen and (max-width: 768px) {
  .mb200 {
    margin-bottom: 100px !important;
  }
}

/*=======================================
　下層MV
=======================================*/
.main_ttl {
  background: url("../img/common/main_img.jpg") no-repeat;
  background-size: cover;
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 22px;
  padding-top: 117px;
  margin-bottom: 201px;
}
@media screen and (max-width: 768px) {
  .main_ttl {
    height: 150px;
    padding-top: 55px;
    row-gap: 10px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .main_ttl img {
    width: auto;
    height: 25px;
  }
}
.main_ttl p {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.15em;
  line-height: 1.6875;
  color: #07183b;
}
@media screen and (max-width: 768px) {
  .main_ttl p {
    font-size: 13px;
  }
}/*# sourceMappingURL=common.css.map */