@charset "UTF-8";
/* --------------------------------
[コーディングルール]
・SMACSSでCSS設計
・基本classのみ使用し、idはアンカーやJSで使用
・class名、フォルダ名、ファイル名はハイフン(-）区切り
・メディアクエリーはPCファーストで、 @include max {} または @include min {} を使用
-------------------------------- */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

main {
  display: block;
}

html {
  font-size: 10px;
}

body {
  line-height: 1.5;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "メイリオ", Meiryo, serif;
  font-size: 1.3rem;
  color: #000;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
}

a {
  color: #000;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  a:hover {
    color: #000;
  }
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

ul, ol {
  list-style-type: none;
}

th, strong, b {
  font-weight: normal;
}

em, i {
  font-style: normal;
}

body .remodal-overlay {
  background-color: rgba(0, 0, 0, 0.75);
}

body .remodal {
  max-width: 1100px;
  padding: 0;
}

body .remodalMovie {
  background: none;
}

body .remodal-close {
  left: auto;
  right: 0;
  top: -60px;
  width: 45px;
  height: 45px;
}

body .remodal-close:before, body .remodal-close:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 1px;
  background-color: #fff;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

body .remodal-close:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

body .remodal-movie {
  position: relative;
  padding-top: 56.25%;
}

body .remodal-movie iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.fade {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.fade-next {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.fade.is-fade {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade-next.is-fade-next {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.l-header-logo {
  font-size: 4rem;
}

@media screen and (min-width: 768px) {
  .l-header-logo {
    font-size: 6rem;
  }
}

@media screen and (max-width: 767px) {
  .l-header-logo {
    font-size: 2rem;
  }
}

.l-footer-inner {
  padding: 55px 68px;
}

@media screen and (min-width: 768px) {
  .l-footer-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media screen and (max-width: 767px) {
  .l-footer-inner {
    padding: 25px 25px;
    text-align: center;
  }
}

.u-over {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

@media screen and (min-width: 768px) {
  .u-over:hover {
    opacity: 0.7;
  }
}

.u-inline {
  display: inline;
}

.u-inline-block {
  display: inline-block;
}

.u-block {
  display: block;
}

.u-table {
  display: table;
}

.u-table-cell {
  display: table-cell;
}

.u-txt-left {
  text-align: left;
}

.u-txt-center {
  text-align: center;
}

.u-txt-right {
  text-align: right;
}

.u-img-cover {
  display: block;
  height: 0;
  padding-top: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

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

@media screen and (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}

.format a {
  color: #03c;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .format a:hover {
    color: #69f;
  }
}

.format h2 {
  margin: 30px 0 20px;
  font-size: 24px;
  font-weight: bold;
}

.format h3 {
  margin: 30px 0 20px;
  font-size: 18px;
  font-weight: bold;
}

.format p, .format ul, .format ol, .format table {
  margin-bottom: 20px;
}

.format li {
  margin-bottom: 10px;
}

.format ul {
  list-style-type: disc;
  padding-left: 1.5em;
}

.format ol {
  list-style-type: decimal;
  padding-left: 1.5em;
}

.format hr {
  margin: 20px 0;
  border: none;
  border-top: 1px solid #999;
}

.format table {
  width: 100%;
}

.format th {
  width: 150px;
  padding: 10px 20px;
  border: 1px solid #999;
  background-color: #eee;
}

.format td {
  padding: 10px 20px;
  border: 1px solid #999;
}

.wp-classic-editor .aligncenter {
  display: block;
  margin: 0 auto;
}

.wp-classic-editor .alignright {
  float: right;
}

.wp-classic-editor .alignleft {
  float: left;
}

.wp-classic-editor img[class*="wp-image-"],
.wp-classic-editor img[class*="attachment-"] {
  max-width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .f-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.f-logo {
  margin-right: 30px;
}

@media screen and (max-width: 767px) {
  .f-logo {
    margin: 0 0 20px;
  }
}

.f-logo img {
  width: 203px;
}

@media screen and (max-width: 767px) {
  .f-logo img {
    width: 150px;
  }
}

.f-add {
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .f-add {
    font-size: 12px;
  }
}

.f-copy {
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .f-copy {
    margin-top: 20px;
    font-size: 11px;
  }
}

.home {
  /* kv */
  /* menuTtl */
  /* menu */
  /* contact */
  /* bImgs */
}

.home-kv {
  position: relative;
  overflow: hidden;
}

.home-kv-movie {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  -webkit-transition: opacity 1s .5s;
  transition: opacity 1s .5s;
  opacity: 0;
}

.home-kv-movie.is-show {
  opacity: 1;
}

.home-kv-movie iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.home-kv-inner {
  position: relative;
  height: 100%;
  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;
  font-size: 16px;
  color: #fff;
  text-align: center;
  height: 100vh;
  min-height: 610px;
}

@media screen and (max-width: 767px) {
  .home-kv-inner {
    font-size: 12px;
    min-height: 430px;
  }
}

.home-kv-inner:before {
  content: '';
  display: block;
  position: absolute;
  left: 22px;
  top: 22px;
  right: 22px;
  bottom: 22px;
  border: 2px solid #fff;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .home-kv-inner:before {
    left: 10px;
    top: 10px;
    right: 10px;
    bottom: 10px;
    border-width: 1px;
  }
}

@media screen and (max-height: 700px) {
  .home-kv-info {
    margin-top: -70px;
  }
}

@media screen and (max-height: 610px) {
  .home-kv-info {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .home-kv-info {
    margin-top: 0;
  }
}

.home-kv-logo {
  margin-bottom: 65px;
}

@media screen and (max-width: 767px) {
  .home-kv-logo {
    margin-bottom: 40px;
  }
}

.home-kv-logo img {
  width: 180px;
}

@media screen and (max-width: 767px) {
  .home-kv-logo img {
    width: 120px;
  }
}

.home-kv-txt {
  font-size: 24px;
  line-height: 2.0833;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .home-kv-txt {
    margin-bottom: 25px;
    font-size: 14px;
  }
}

.home-kv-play {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.home-kv-play a {
  display: block;
  width: 255px;
  border: 2px solid #fff;
  text-align: center;
  color: #fff;
  padding: 3px;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
}

@media screen and (max-width: 767px) {
  .home-kv-play a {
    width: 180px;
    border-width: 1px;
  }
}

@media screen and (min-width: 768px) {
  .home-kv-play a:hover {
    background-color: rgba(255, 255, 255, 0.3);
  }
}

.home-kv-play i {
  position: relative;
  top: -0.2em;
  font-size: 0.7em;
  margin-right: .7em;
}

.home-kv-sc {
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 100px;
  border-left: 1px solid #fff;
}

@media screen and (max-height: 610px) {
  .home-kv-sc {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .home-kv-sc {
    display: block;
    height: 50px;
  }
}

.home-kv-sc span {
  display: block;
  position: relative;
  top: -1.5em;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
  margin-left: 4px;
}

.home-menuTtl {
  background-color: #eceae7;
}

.home-menuTtl-inner {
  position: relative;
  padding: 310px 0 118px;
}

@media screen and (max-width: 767px) {
  .home-menuTtl-inner {
    padding: 170px 0 60px;
  }
}

.home-menuTtl-inner:before {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100px;
  background-color: #000;
}

@media screen and (max-width: 767px) {
  .home-menuTtl-inner:before {
    height: 50px;
  }
}

.home-menuTtl-ttl {
  position: absolute;
  left: 50%;
  top: 176px;
  z-index: 1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 45px;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 767px) {
  .home-menuTtl-ttl {
    font-size: 22px;
    top: 85px;
  }
}

.home-menuTtl-ttl span {
  display: inline-block;
}

.home-menuTtl-img img {
  width: 100%;
}

.home-menu {
  background-color: #eceae7;
  padding-bottom: 2%;
}

.home-menu-block {
  position: relative;
}

@media screen and (min-width: 1200px) {
  .home-menu-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-right: 8.33%;
    margin-bottom: 13.88%;
  }
}

@media screen and (max-width: 1199px) {
  .home-menu-block {
    margin-bottom: 15%;
  }
}

.home-menu-block:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (min-width: 1200px) {
  .home-menu-block:nth-child(2n) {
    padding-right: 0;
    padding-left: 8.33%;
  }
}

@media screen and (min-width: 1200px) {
  .home-menu-img {
    width: calc(100% - 480px);
  }
}

@media screen and (max-width: 1199px) {
  .home-menu-img {
    margin-right: 10%;
  }
}

@media screen and (max-width: 1199px) {
  .home-menu-block:nth-child(2n) .home-menu-img {
    margin-right: auto;
    margin-left: 10%;
  }
}

.home-menu-info {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #fff;
  padding: 10px;
  font-size: 14px;
}

@media screen and (min-width: 1200px) {
  .home-menu-info {
    margin-left: -50px;
    margin-bottom: -6.25%;
  }
}

@media screen and (max-width: 1199px) {
  .home-menu-info {
    margin: -5% 0 0 10%;
    font-size: 10px;
    padding: 5px;
  }
}

.home-menu-info h2 {
  font-size: 30px;
  letter-spacing: 0.03em;
  margin-bottom: 30px;
}

@media screen and (max-width: 1199px) {
  .home-menu-info h2 {
    font-size: 21px;
    margin-bottom: 15px;
  }
}

.home-menu-info h2:after {
  content: '';
  display: block;
  width: 25px;
  height: 5px;
  background-color: #e8d588;
  margin-top: 10px;
}

@media screen and (max-width: 1199px) {
  .home-menu-info h2:after {
    margin-top: 5px;
    width: 15px;
    height: 3px;
  }
}

.home-menu-info h2 small {
  position: relative;
  top: -5px;
  font-size: 14px;
}

@media screen and (max-width: 1199px) {
  .home-menu-info h2 small {
    font-size: 10px;
  }
}

.home-menu-info h2 i {
  position: relative;
  top: -5px;
  font-size: 14px;
  border: 1px solid #000;
  padding: 5px 26px;
  margin-left: 25px;
}

@media screen and (max-width: 1199px) {
  .home-menu-info h2 i {
    padding: 2px 15px;
    margin-left: 15px;
    font-size: 10px;
  }
}

@media screen and (min-width: 1200px) {
  .home-menu-block:nth-child(2n) .home-menu-info {
    margin-left: 0;
    margin-right: -50px;
  }
}

@media screen and (max-width: 1199px) {
  .home-menu-block:nth-child(2n) .home-menu-info {
    margin: -5% 10% 0 0;
  }
}

.home-menu-infoInner {
  padding: 60px 70px 60px 80px;
  border: 2px solid #e8d588;
}

@media screen and (max-width: 1199px) {
  .home-menu-infoInner {
    padding: 20px 20px;
  }
}

.home-menu-txt {
  font-size: 16px;
  line-height: 1.875;
  margin-bottom: 40px;
}

@media screen and (max-width: 1199px) {
  .home-menu-txt {
    font-size: 12px;
    margin-bottom: 20px;
  }
}

.home-menu-price {
  margin-bottom: 10px;
}

.home-menu-price b {
  font-size: 24px;
}

@media screen and (max-width: 1199px) {
  .home-menu-price b {
    font-size: 18px;
  }
}

.home-contact {
  background-color: #6f6891;
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .home-contact {
    margin-bottom: 50px;
    padding-top: 20px;
  }
}

.home-contact-inner {
  max-width: 900px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .home-contact-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.home-contact-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .home-contact-info {
    text-align: center;
    padding: 35px 0;
  }
}

@media screen and (max-width: 767px) {
  .home-contact-img {
    text-align: center;
  }
}

.home-contact-img img {
  width: 463px;
}

.home-contact-txt1 {
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .home-contact-txt1 {
    font-size: 16px;
  }
}

.home-contact-txt2 {
  font-size: 34px;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .home-contact-txt2 {
    font-size: 28px;
    margin-bottom: 15px;
  }
}

.home-contact-txt3 {
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .home-contact-txt3 {
    font-size: 13px;
  }
}

.home-contact a {
  color: #fff;
}

.home-contact a:hover {
  text-decoration: underline;
}

.home-bImgs {
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .home-bImgs {
    margin-bottom: 50px;
  }
}

.home-bImgs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .home-bImgs ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: -4%;
  }
}

.home-bImgs li {
  width: 25%;
}

@media screen and (max-width: 767px) {
  .home-bImgs li {
    width: 48%;
    margin-bottom: 4%;
  }
}

.home-bImgs li + li {
  margin-left: 3.5%;
}

@media screen and (max-width: 767px) {
  .home-bImgs li + li {
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .home-bImgs li:nth-child(2n) {
    margin-left: 4%;
  }
}

.home-map iframe {
  width: 100%;
  height: 450px;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

@media screen and (max-width: 767px) {
  .home-map iframe {
    height: 300px;
  }
}

/* --------------------------------
[サンプルコード]
-----------------------------------
    白文字が太いとき
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;

    画像文字を縮小してぼやけるとき
    backface-visibility;
    -webkit-backface-visibility;

    自動カーニング
    font-feature-settings : 'palt';

    両端揃え
    text-align: justify;
    text-justify: inter-ideograph;

    クリアーフィックス
    .clearfix {zoom: 1;}
    .clearfix:after {
      content: "";
      display: block;
      clear: both;
    }

    スマホ画像切り替え
    <picture>
      <source media="(max-width:767px)" srcset="image_sp.jpg">
      <img src="image.jpg" alt="">
    </picture>

    ダミー画像 GIF形式（39bytes）
    <img src="data:image/gif;base64,R0lGODlhAQABAGAAACH5BAEKAP8ALAAAAAABAAEAAAgEAP8FBAA7" alt="" height="1" width="1">

    NotoSans
    <link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap" rel="stylesheet">
    <link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap" rel="stylesheet">
-------------------------------- */

/*# sourceMappingURL=styles.css.map */
