@charset "UTF-8";
/****************************************

目次 
1.ベース
2.ヘッダー
3.フッター
4.トップページ
5.CONCEPT
6.MOVIE
7.PARTY SCENE
8.FACILITY
9.GALLERY
10.ACCESS

*****************************************/
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;700&display=swap");
/****************************************


1.ベース


*****************************************/
body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, figure {
  border: 0 none;
  font-size: 16px;
  font-style: normal;
  margin: 0;
  outline: 0 none;
  padding: 0;
  vertical-align: top;
  font-family: 'Noto Serif JP', "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 500;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: auto;
  color: #FFFFFF;
  -webkit-text-size-adjust: none;
  letter-spacing: 2px; }

html {
  width: 100%;
  height: 100%; }

body {
  background: #000000; }

.inner {
  width: 80%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto; }

.spBr {
  display: none; }
  @media all and (max-width: 1024px) {
    .spBr {
      display: block; } }

.tit {
  margin-bottom: 70px; }
  .tit h3 {
    font-family: "stilson-display", serif;
    font-size: 50px;
    font-weight: bold;
    letter-spacing: 4.8px;
    padding-bottom: 30px;
    position: relative; }
    @media all and (max-width: 768px) {
      .tit h3 {
        font-size: 30px;
        padding-bottom: 25px; } }
    .tit h3::before {
      content: "";
      display: inline-block;
      border-bottom: 5px solid #FFF;
      width: 120px;
      height: 5px;
      position: absolute;
      bottom: 0;
      left: 0; }
      @media all and (max-width: 1024px) {
        .tit h3::before {
          border-bottom: 2.5px solid #FFF;
          width: 60px;
          height: 2.5px; } }

a:hover {
  opacity: 0.8;
  color: #dadada;
  transition: all 0.7s; }

/*CONTACTボタン*/
.contactBtn {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  bottom: 50px;
  right: 33px;
  z-index: 99;
  transition: all 0.8s; }
  @media all and (max-width: 768px) {
    .contactBtn {
      opacity: 1;
      visibility: visible;
      width: 95%;
      bottom: 1.5%;
      right: auto;
      left: 50%;
      transform: translateX(-50%); } }
  .contactBtn.fixed {
    opacity: 1;
    visibility: visible;
    transition: all 0.8s; }
  .contactBtn a {
    padding: 9px 30px;
    box-sizing: border-box;
    background: #6A1616;
    border: 1px solid #FFFFFF;
    border-radius: 40px;
    text-align: center;
    transition: all 0.7s; }
    @media all and (max-width: 768px) {
      .contactBtn a {
        width: 100%;
        padding: 20px 0;
        border-radius: 10px; } }
    .contactBtn a:hover {
      opacity: 1;
      background: #B01313;
      transition: all 0.7s; }
    .contactBtn a span {
      font-family: "stilson-display", serif;
      font-size: 30px;
      font-weight: bold; }

/*トップへ戻る*/
.totop {
  opacity: 0;
  visibility: hidden;
  width: 80px;
  height: 80px;
  position: fixed;
  bottom: 123px;
  right: 38px;
  z-index: 99;
  transition: all 0.7s; }
  @media all and (max-width: 768px) {
    .totop {
      width: 50px;
      height: 50px;
      bottom: 100px;
      right: 15px; } }
  .totop a img {
    width: 100%; }
  .totop.fixed {
    opacity: 1;
    visibility: visible;
    transition: all 0.8s; }

/*インビュー関係*/
.inview {
  transition: all 5000ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-property: transform,opacity;
  opacity: 0; }
  .inview.left {
    transform: translateX(-30px); }
  .inview.right {
    transform: translateX(30px); }
  .inview.bottom {
    transform: translateY(20px); }
  .inview.delay {
    transition-delay: 350ms; }
  .inview.action {
    opacity: 1;
    transform: translate(0px); }
  .inview.inview2 {
    transition-delay: 0.5s; }
  .inview.inview3 {
    transition-delay: 0.9s; }

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


2.ヘッダー


*****************************************/
header {
  width: 100%;
  height: 85px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
  box-sizing: border-box;
  /***ナビボタン***/ }
  @media all and (max-width: 1280px) {
    header {
      position: fixed;
      top: 0;
      bottom: auto;
      justify-content: flex-start; } }
  @media all and (max-width: 768px) {
    header {
      height: 60px;
      padding: 10px 30px; } }
  header.fixed {
    position: fixed;
    top: 0;
    bottom: auto;
    background-color: rgba(0, 0, 0, 0.8);
    transition: 0.8s; }
    @media all and (max-width: 1280px) {
      header.fixed {
        background-color: rgba(0, 0, 0, 0.7); } }
  header .logo {
    position: relative;
    z-index: 2;
    width: 170px; }
    @media all and (max-width: 768px) {
      header .logo {
        width: 120px; } }
    header .logo a {
      transition: all 0.7s; }
    header .logo nav {
      position: relative;
      z-index: 1; }
  header .nav.open {
    height: 100%;
    opacity: 1;
    visibility: visible; }
  header .nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none; }
    @media all and (max-width: 1280px) {
      header .nav {
        background-image: url("img/navBgSp.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 0;
        padding-top: 95px;
        padding-bottom: 0;
        overflow: auto;
        position: fixed;
        display: flex;
        flex-direction: column;
        justify-content: center;
        top: 0;
        left: 0;
        opacity: 0;
        visibility: hidden;
        transition: all .5s ease-in-out;
        box-sizing: border-box; } }
    header .nav li {
      margin-right: 50px; }
      @media all and (max-width: 1280px) {
        header .nav li {
          width: 60%;
          line-height: 1;
          margin-left: auto;
          margin-right: auto;
          margin-bottom: 3vw; } }
      @media all and (max-width: 768px) {
        header .nav li {
          width: 70%; } }
    header .nav li:last-child {
      margin-right: 0; }
      @media all and (max-width: 1280px) {
        header .nav li:last-child {
          margin-right: auto; } }
    header .nav li a:hover {
      opacity: 0.7; }
    header .nav li a {
      transition: all 0.8s;
      padding: 15px 0;
      display: block; }
    header .nav li a span {
      color: #FFFFFF;
      font-family: "stilson-display", serif;
      font-weight: bold;
      font-size: 22px; }
    header .nav .pcTelInsta {
      margin-right: 0; }
      @media all and (max-width: 1280px) {
        header .nav .pcTelInsta {
          display: none; } }
      header .nav .pcTelInsta ul {
        display: flex;
        align-items: center; }
        header .nav .pcTelInsta ul li {
          margin-right: 15px; }
          header .nav .pcTelInsta ul li a {
            width: 30px;
            height: 30px; }
            header .nav .pcTelInsta ul li a img {
              width: 100%; }
    header .nav .spTelInsta {
      display: none; }
      @media all and (max-width: 1280px) {
        header .nav .spTelInsta {
          display: block;
          border-top: 2px solid #FFFFFF; } }
      header .nav .spTelInsta ul {
        padding-top: 40px; }
        header .nav .spTelInsta ul li {
          width: 100%; }
          header .nav .spTelInsta ul li:nth-child(1) {
            margin-bottom: 10px; }
          @media all and (max-width: 1280px) {
            header .nav .spTelInsta ul li a {
              padding-left: 40px;
              padding-top: 10px;
              padding-bottom: 10px;
              background-repeat: no-repeat;
              background-position: center left 5px;
              background-size: 28px; } }
          @media all and (max-width: 1280px) {
            header .nav .spTelInsta ul li a.spTel {
              background-image: url(img/iconTelWhite.svg); } }
          @media all and (max-width: 1280px) {
            header .nav .spTelInsta ul li a.spInstagram {
              background-image: url("img/iconInstaWhite.svg"); } }
          @media all and (max-width: 1280px) {
            header .nav .spTelInsta ul li .spTel span, header .nav .spTelInsta ul li .spInstagram span {
              font-size: 18px; } }
    header .nav .headerContact {
      padding: 5px 15px;
      background: #6A1616;
      border: 1px solid #FFFFFF;
      border-radius: 20px;
      transition: all 0.8s; }
      @media all and (max-width: 1280px) {
        header .nav .headerContact {
          padding: 0 30px;
          background: #6A1616;
          border-radius: 50px;
          display: flex;
          justify-content: center; } }
      header .nav .headerContact:hover {
        opacity: 1;
        background: #B01313;
        transition: all 0.7s; }
      header .nav .headerContact span {
        font-size: 18px; }
        @media all and (max-width: 1280px) {
          header .nav .headerContact span {
            font-size: 20px;
            line-height: 50px;
            letter-spacing: 4.2px; } }
  header .navBtnBg {
    display: none; }
    @media all and (max-width: 1280px) {
      header .navBtnBg {
        background-color: #972D15;
        width: 78px;
        height: 78px;
        border-radius: 80px; } }
  header .navBtn {
    display: none;
    /**javascript**/ }
    @media all and (max-width: 1280px) {
      header .navBtn {
        display: block;
        width: 27px;
        position: fixed;
        top: 15px;
        right: 20px;
        cursor: pointer;
        z-index: 999;
        padding: 15px 13px;
        border-radius: 40px; } }
  @media all and (max-width: 1280px) and (max-width: 768px) {
    header .navBtn {
      top: 4px; } }

    @media all and (max-width: 1280px) {
      header .navBtn span {
        display: block;
        height: 3px;
        width: 100%;
        background: #FFF;
        border-radius: 2px;
        transition: all .5s ease-in-out; } }
    @media all and (max-width: 1280px) {
      header .navBtn span:nth-child(1) {
        margin-bottom: 5px; } }
    @media all and (max-width: 1280px) {
      header .navBtn span:nth-child(2) {
        margin-bottom: 5px; } }
    @media all and (max-width: 1280px) {
      header .navBtn.active span:nth-child(1) {
        -webkit-transform: translateY(8px) translateX(0) rotate(45deg);
        -ms-transform: translateY(8px) translateX(0) rotate(45deg);
        transform: translateY(8px) translateX(0) rotate(45deg);
        background: #FFFFFF; } }
    @media all and (max-width: 1280px) {
      header .navBtn.active span:nth-child(2) {
        margin-top: 5px;
        opacity: 0;
        -webkit-transform: translateY(8px);
        -ms-transform: translateY(8px);
        transform: translateY(8px); } }
    @media all and (max-width: 1280px) {
      header .navBtn.active span:nth-child(3) {
        -webkit-transform: translateY(-8px) translateX(0) rotate(-45deg);
        -ms-transform: translateY(-8px) translateX(0) rotate(-45deg);
        transform: translateY(-8px) translateX(0) rotate(-45deg);
        background: #FFFFFF; } }
  header .img {
    position: absolute;
    top: 10px;
    left: 35px; }
    @media all and (max-width: 768px) {
      header .img {
        width: 55px;
        top: 20px;
        left: 25px; } }
    @media all and (max-width: 768px) {
      header .img img {
        width: 100%; } }

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


3.フッター


*****************************************/
footer {
  padding: 100px 0 100px;
  background: linear-gradient(180deg, #000000 0%, #8F7B41 98%, #8F7B41 100%); }
  footer .footLogo {
    width: 40vw;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 250px; }
    @media all and (max-width: 768px) {
      footer .footLogo {
        margin-bottom: 100px; } }
    footer .footLogo img {
      width: 100%; }
  footer .telInsta {
    display: flex;
    justify-content: center;
    margin-bottom: 80px; }
    footer .telInsta .box {
      display: flex;
      justify-content: center; }
      @media all and (max-width: 1024px) {
        footer .telInsta .box {
          display: block; } }
      footer .telInsta .box a {
        background-repeat: no-repeat;
        background-position: top 0px left 5px;
        background-size: 33px;
        padding-left: 60px;
        padding-top: 1px;
        padding-bottom: 5px;
        display: block; }
        footer .telInsta .box a span {
          font-family: "stilson-display", serif;
          font-weight: bold;
          font-size: 26px; }
          @media all and (max-width: 768px) {
            footer .telInsta .box a span {
              font-size: 22px; } }
      footer .telInsta .box .tel {
        background-image: url(img/iconTelWhite.svg); }
        @media all and (max-width: 1024px) {
          footer .telInsta .box .tel {
            margin-bottom: 20px; } }
      footer .telInsta .box .instagram {
        background-image: url("img/iconInstaWhite.svg");
        margin-left: 60px; }
        @media all and (max-width: 1024px) {
          footer .telInsta .box .instagram {
            margin-left: 0; } }
  footer .custom-logo-link {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 30px; }
  footer .footCopy p {
    font-family: "stilson-display", serif;
    font-weight: bold;
    font-size: 14px;
    text-align: center; }

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


4.トップページ


*****************************************/
.topImg {
  width: 100%;
  height: calc( 100vh - 85px );
  position: relative; }
  @media all and (max-width: 1280px) {
    .topImg {
      height: 100vh; } }
  .topImg .topLogo {
    width: 100%;
    max-width: 165px;
    min-width: 105px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1; }
    @media all and (max-width: 768px) {
      .topImg .topLogo {
        width: 35%; } }
    .topImg .topLogo h2 img {
      width: 100%; }
  .topImg .topImgBg {
    width: 100%;
    height: calc( 100vh - 85px ); }
    @media all and (max-width: 1280px) {
      .topImg .topImgBg {
        height: 100vh; } }
    .topImg .topImgBg.bg1 {
      background: url("img/top_01.jpg");
      background-repeat: no-repeat;
      background-position: center center;
      background-size: cover; }
    .topImg .topImgBg.bg2 {
      background: url("img/top_02.jpg");
      background-repeat: no-repeat;
      background-position: center center;
      background-size: cover; }
    .topImg .topImgBg.bg3 {
      background: url("img/top_03.jpg");
      background-repeat: no-repeat;
      background-position: center center;
      background-size: cover; }
    .topImg .topImgBg.bg4 {
      background: url("img/top_04.jpg");
      background-repeat: no-repeat;
      background-position: center center;
      background-size: cover; }

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


5.CONCEPT


*****************************************/
.concept {
  background-image: url("img/conceptBg.png");
  background-repeat: no-repeat;
  background-position: top;
  background-size: auto;
  padding-top: 300px; }
  @media all and (max-width: 1280px) {
    .concept {
      background-image: none;
      padding-top: 150px; } }
  .concept .flex {
    display: flex;
    flex-flow: row-reverse;
    justify-content: flex-start;
    margin-bottom: 100px; }
    @media all and (max-width: 1024px) {
      .concept .flex {
        display: block; } }
    .concept .flex .img {
      width: 50%; }
      @media all and (max-width: 1024px) {
        .concept .flex .img {
          width: 91%;
          margin-left: auto; } }
      .concept .flex .img img {
        width: 100%; }
    .concept .flex .txtWrap {
      width: 50%;
      margin-left: 10%; }
      @media all and (max-width: 1024px) {
        .concept .flex .txtWrap {
          width: 90%;
          margin-left: auto;
          margin-right: auto; } }
      .concept .flex .txtWrap .tit {
        margin-bottom: 40px; }
        .concept .flex .txtWrap .tit .en {
          font-family: "stilson-display", serif;
          font-size: 82px;
          font-weight: bold;
          letter-spacing: 10px;
          margin-bottom: 20px; }
          @media all and (max-width: 1024px) {
            .concept .flex .txtWrap .tit .en {
              transform: translateY(-47px); } }
          @media all and (max-width: 768px) {
            .concept .flex .txtWrap .tit .en {
              font-size: 64px;
              letter-spacing: 7px;
              line-height: 70px; } }
        .concept .flex .txtWrap .tit .ja {
          font-size: 26px;
          font-weight: bold; }
          @media all and (max-width: 768px) {
            .concept .flex .txtWrap .tit .ja {
              font-size: 20px; } }
      .concept .flex .txtWrap .txt {
        line-height: 2; }
        @media all and (max-width: 1024px) {
          .concept .flex .txtWrap .txt {
            line-height: 1.8; } }

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


6.MOVIE


*****************************************/
.gradationBg1 {
  background: linear-gradient(156deg, #000000 0%, #000000 18%, #D0B35D 45%, #000000 72%, #000000 100%); }
  @media all and (max-width: 1024px) {
    .gradationBg1 {
      background: linear-gradient(156deg, #000000 0%, #000000 18%, #D0B35D 38%, #000000 58%, #000000 100%); } }

.movie {
  margin-bottom: 300px; }
  @media all and (max-width: 1024px) {
    .movie {
      margin-bottom: 130px; } }
  @media all and (max-width: 768px) {
    .movie {
      margin-bottom: 50px; } }
  .movie .iframe {
    position: relative;
    width: 80%;
    padding-top: 42.25%;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto; }
    @media all and (max-width: 1024px) {
      .movie .iframe {
        width: 90%;
        padding-top: 49.25%; } }
    .movie .iframe iframe {
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 100%; }

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


7.PARTY SCENE


*****************************************/
.partyscene.one {
  padding-top: 100px; }

.partyscene.two {
  padding-bottom: 300px; }
  @media all and (max-width: 1024px) {
    .partyscene.two {
      padding-bottom: 0; } }

.partyscene {
  /*BANQUET UN*/
  /*BANQUET DEUX*/ }
  .partyscene .tit {
    margin-left: 10%; }
  .partyscene .flex {
    display: flex;
    margin-bottom: 200px; }
    @media all and (max-width: 1024px) {
      .partyscene .flex {
        display: block; } }
    @media all and (max-width: 768px) {
      .partyscene .flex {
        margin-bottom: 150px; } }
    .partyscene .flex h4 {
      font-family: "stilson-display", serif;
      font-weight: bold;
      font-size: 70px;
      letter-spacing: 8px;
      transform: translateX(-300px);
      width: calc( 100% + 300px );
      margin-bottom: 60px; }
      @media all and (max-width: 1024px) {
        .partyscene .flex h4 {
          font-size: 60px;
          transform: translateX(0);
          width: 100%; } }
      @media all and (max-width: 768px) {
        .partyscene .flex h4 {
          font-size: 40px;
          letter-spacing: 4px; } }
    .partyscene .flex .box:nth-child(1) {
      width: 50%;
      padding-left: 10%;
      box-sizing: border-box; }
      @media all and (max-width: 1024px) {
        .partyscene .flex .box:nth-child(1) {
          width: 80%;
          padding-left: 0;
          margin-right: auto; } }
      .partyscene .flex .box:nth-child(1) .img img {
        width: 100%; }
    .partyscene .flex .box:nth-child(2) {
      width: 50%;
      padding-top: 130px;
      padding-left: 100px;
      box-sizing: border-box; }
      @media all and (max-width: 1024px) {
        .partyscene .flex .box:nth-child(2) {
          width: 90%;
          padding-top: 0;
          padding-left: 0;
          margin-left: auto;
          transform: translateY(-70px); } }
      @media all and (max-width: 768px) {
        .partyscene .flex .box:nth-child(2) {
          transform: translateY(-49px); } }
      .partyscene .flex .box:nth-child(2) p {
        line-height: 2;
        margin-bottom: 150px; }
        @media all and (max-width: 768px) {
          .partyscene .flex .box:nth-child(2) p {
            margin-bottom: 80px; } }
    .partyscene .flex .swiper-container {
      padding-top: 100px;
      overflow: hidden;
      position: relative;
      /* swiperボタン */
      /* swiper青矢印消す */ }
      .partyscene .flex .swiper-container .swiper-slide a {
        transition: all 0.7s; }
      .partyscene .flex .swiper-container .swiper-button-prev,
      .partyscene .flex .swiper-container .swiper-button-next {
        width: 50px;
        height: 50px;
        background-size: 50px 50px; }
      .partyscene .flex .swiper-container .swiper-button-next {
        background-image: url("img/iconFeather-arrow-right-circle.svg");
        background-repeat: no-repeat;
        top: 30px;
        left: 95px;
        z-index: 12;
        transition: all 0.7s; }
        .partyscene .flex .swiper-container .swiper-button-next:hover {
          opacity: 0.7;
          transition: all 0.7s; }
        @media all and (max-width: 768px) {
          .partyscene .flex .swiper-container .swiper-button-next {
            right: 25%;
            bottom: 22px; } }
      .partyscene .flex .swiper-container .swiper-button-prev {
        background-image: url("img/iconFeather-arrow-right-circle.svg");
        background-repeat: no-repeat;
        transform: scale(-1, 1);
        top: 30px;
        left: 0;
        z-index: 12;
        transition: all 0.7s; }
        .partyscene .flex .swiper-container .swiper-button-prev:hover {
          opacity: 0.7;
          transition: all 0.7s; }
      .partyscene .flex .swiper-container .swiper-button-prev:after,
      .partyscene .flex .swiper-container .swiper-button-next:after {
        display: none; }
  .partyscene .flex.banquetUn {
    flex-flow: row-reverse;
    margin-right: 10%; }
    @media all and (max-width: 1024px) {
      .partyscene .flex.banquetUn {
        margin-right: 0; } }
    .partyscene .flex.banquetUn h4 {
      transform: translateX(0);
      width: 100%;
      margin-bottom: 40px; }
    @media all and (max-width: 1024px) {
      .partyscene .flex.banquetUn .box:nth-child(1) {
        margin-left: auto;
        margin-right: 0; } }
    .partyscene .flex.banquetUn .box:nth-child(2) {
      padding-left: 0; }
      @media all and (max-width: 1024px) {
        .partyscene .flex.banquetUn .box:nth-child(2) {
          padding-top: 0;
          padding-left: 0;
          margin-left: 0;
          margin-right: auto;
          transform: translateY(-20px); } }
      .partyscene .flex.banquetUn .box:nth-child(2) p {
        margin-bottom: 90px; }
    .partyscene .flex.banquetUn .box .txt {
      padding-left: 250px;
      box-sizing: border-box; }
      @media all and (max-width: 1024px) {
        .partyscene .flex.banquetUn .box .txt {
          padding: 0 10%; } }
    .partyscene .flex.banquetUn .swiper-button-next {
      right: 0; }
    .partyscene .flex.banquetUn .swiper-button-prev {
      right: 95px; }
  @media all and (max-width: 768px) {
    .partyscene .flex.banquetDeux {
      margin-bottom: 80px; } }
  .partyscene .flex.banquetDeux h4 {
    transform: translateX(-155px);
    width: calc( 100% + 155px );
    margin-bottom: 40px; }
    @media all and (max-width: 1024px) {
      .partyscene .flex.banquetDeux h4 {
        transform: translateX(0);
        width: 100%; } }
  @media all and (max-width: 1024px) {
    .partyscene .flex.banquetDeux .box:nth-child(2) {
      transform: translateY(-26px); } }

.gradationBg2 {
  background: linear-gradient(180deg, #000000 0%, #000000 30%, #D0B35D 55%, #000000 95%, #000000 100%); }
  @media all and (max-width: 1024px) {
    .gradationBg2 {
      background: linear-gradient(180deg, #000000 0%, #000000 30%, #D0B35D 65%, #000000 95%, #000000 100%); } }

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


8.FACILITY


*****************************************/
.facility {
  padding-top: 100px;
  margin-bottom: 200px; }
  @media all and (max-width: 768px) {
    .facility {
      margin-bottom: 60px; } }
  .facility .inner {
    display: flex;
    justify-content: space-between; }
    @media all and (max-width: 1024px) {
      .facility .inner {
        display: block; } }
    .facility .inner .left {
      width: 30%; }
      @media all and (max-width: 1024px) {
        .facility .inner .left {
          width: 100%;
          margin-bottom: 30px; } }
      @media all and (max-width: 768px) {
        .facility .inner .left .tit {
          margin-bottom: 35px; } }
      @media all and (max-width: 1024px) {
        .facility .inner .left p {
          font-size: 20px; } }
    .facility .inner .right {
      width: 70%; }
      @media all and (max-width: 1024px) {
        .facility .inner .right {
          width: 100%; } }

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


9.GALLERY


*****************************************/
.gallery {
  margin-left: 10%;
  padding-top: 100px;
  margin-bottom: 400px;
  /* swiperボタン */
  /* swiper青矢印消す */ }
  @media all and (max-width: 1024px) {
    .gallery {
      margin-bottom: 150px; } }
  @media all and (max-width: 768px) {
    .gallery {
      margin-bottom: 50px; } }
  .gallery .gallerySlide {
    padding-top: 100px;
    overflow: hidden;
    position: relative; }
  .gallery .swiper-slide a {
    transition: all 0.7s; }
  .gallery .swiper-button-prev,
  .gallery .swiper-button-next {
    width: 50px;
    height: 50px;
    background-size: 50px 50px; }
  .gallery .swiper-button-next {
    background-image: url("img/iconFeather-arrow-right-circle.svg");
    background-repeat: no-repeat;
    top: 30px;
    left: 95px;
    z-index: 12;
    transition: all 0.7s; }
    .gallery .swiper-button-next:hover {
      opacity: 0.7;
      transition: all 0.7s; }
  .gallery .swiper-button-prev {
    background-image: url("img/iconFeather-arrow-right-circle.svg");
    background-repeat: no-repeat;
    transform: scale(-1, 1);
    top: 30px;
    left: 0;
    z-index: 12;
    transition: all 0.7s; }
    .gallery .swiper-button-prev:hover {
      opacity: 0.7;
      transition: all 0.7s; }
  .gallery .swiper-button-prev:after,
  .gallery .swiper-button-next:after {
    display: none; }

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


10.ACCESS


*****************************************/
.access {
  padding-top: 100px;
  margin-bottom: 400px; }
  @media all and (max-width: 768px) {
    .access {
      margin-bottom: 200px; } }
  .access .inner {
    display: flex;
    justify-content: space-between; }
    @media all and (max-width: 1024px) {
      .access .inner {
        display: block; } }
    .access .inner .txtWrap {
      width: 50%; }
      @media all and (max-width: 1024px) {
        .access .inner .txtWrap {
          width: 100%;
          margin-bottom: 100px; } }
      @media all and (max-width: 768px) {
        .access .inner .txtWrap {
          margin-bottom: 60px; } }
      .access .inner .txtWrap .txt {
        margin-bottom: 100px; }
        @media all and (max-width: 768px) {
          .access .inner .txtWrap .txt {
            margin-bottom: 50px; } }
        .access .inner .txtWrap .txt .address {
          font-size: 30px;
          margin-bottom: 30px; }
          @media all and (max-width: 768px) {
            .access .inner .txtWrap .txt .address {
              font-size: 22px; } }
        .access .inner .txtWrap .txt p:nth-child(2) {
          line-height: 2; }
      .access .inner .txtWrap .btn.googleMap {
        font-family: "stilson-display", serif;
        font-weight: bold;
        font-size: 22px;
        border: 1px solid #FFFFFF;
        border-radius: 24px;
        padding: 5px 20px;
        transition: all 0.7s; }
        .access .inner .txtWrap .btn.googleMap:hover {
          opacity: 1;
          background: #FFFFFF;
          color: #000000;
          transition: all 0.7s; }
    .access .inner .iframe {
      position: relative;
      width: 50%;
      padding-top: 50%;
      overflow: hidden;
      margin-left: auto; }
      @media all and (max-width: 1024px) {
        .access .inner .iframe {
          width: 100%;
          padding-top: 95%; } }
      .access .inner .iframe iframe {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%; }

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