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

目次 
1.ベース
2.ヘッダー
3.フッター
4.トップページ


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


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: 游ゴシック体, 'Yu Gothic', YuGothic, メイリオ, Meiryo,'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-weight: 500;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: auto;
  color: #333333;
  -webkit-text-size-adjust: none; }

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

body {
  background: #F7F7F7; }

.tit {
  margin-bottom: 72px;
  text-align: center;
  position: relative; }
  .tit h1 {
    font-family: 'Rozha One', serif;
    font-weight: bold;
    font-size: 36px; }
    @media all and (max-width: 768px) {
      .tit h1 {
        font-size: 20px; } }
  .tit .h1Img {
    position: absolute;
    top: 27px;
    left: calc( 50% - 35px ); }
    @media all and (max-width: 768px) {
      .tit .h1Img {
        top: 12px;
        left: calc( 50% - 20px ); } }
    @media all and (max-width: 768px) {
      .tit .h1Img img {
        width: 70%; } }

.tit {
  text-align: center;
  position: relative; }
  .tit h2 {
    font-family: 'Cinzel', serif;
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 2.4px; }
    @media all and (max-width: 768px) {
      .tit h2 {
        font-size: 18px; } }
  .tit .h2Img {
    position: absolute;
    top: 10px;
    left: calc( 50% - 40px ); }
    @media all and (max-width: 768px) {
      .tit .h2Img {
        width: 20%;
        top: 12px;
        left: calc( 50% - 26px ); } }

.txt {
  text-align: center; }

.tabContent .txt p {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 2.8px; }

.facilitiesTab label {
  font-family: 'Cinzel', serif;
  font-weight: bold;
  font-size: 16.08px;
  letter-spacing: 1.61px; }

.inner {
  width: 1000px;
  margin-left: auto;
  margin-right: auto; }
  @media all and (max-width: 1280px) {
    .inner {
      width: 90%; } }

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

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

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


2.ヘッダー


*****************************************/
header {
  width: 100%;
  height: 40px;
  display: flex;
  background: #2D2D2D;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0; }
  @media all and (max-width: 768px) {
    header {
      height: 45px; } }
  header .headNavWrap {
    width: 100%;
    display: flex;
    position: relative;
    align-items: center; }
  header .logo {
    padding-left: 30px;
    height: 13px; }
    @media all and (max-width: 768px) {
      header .logo {
        padding-left: 20px; } }
  header .logo a {
    display: inline-block;
    width: 155px; }
  header .logo a img {
    width: 100%; }
  header .navWrap {
    display: flex;
    margin-left: auto; }
    @media all and (max-width: 768px) {
      header .navWrap {
        display: block; } }
  header .navBtn {
    display: none; }
    @media all and (max-width: 768px) {
      header .navBtn {
        display: block;
        width: 22px;
        position: absolute;
        top: 12px;
        right: 20px;
        cursor: pointer;
        z-index: 10000; } }
  header .navBtn span {
    display: block;
    width: 100%;
    height: 1px;
    background: #FFFFFF;
    border-radius: 1px;
    margin-bottom: 8px;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out; }
  header .navBtn.active span:nth-of-type(1) {
    -webkit-transform: translateY(9px) translateX(0) rotate(45deg);
    -ms-transform: translateY(9px) translateX(0) rotate(45deg);
    transform: translateY(9px) translateX(0) rotate(45deg); }
  header .navBtn.active span:nth-of-type(2) {
    margin-top: 5px;
    opacity: 0;
    -webkit-transform: translateY(9px);
    -ms-transform: translateY(9px);
    transform: translateY(9px); }
  header .navBtn.active span:nth-of-type(3) {
    -webkit-transform: translateY(-9px) translateX(0) rotate(-45deg);
    -ms-transform: translateY(-9px) translateX(0) rotate(-45deg);
    transform: translateY(-9px) translateX(0) rotate(-45deg); }
  header .navBtn span:nth-child(3) {
    margin-bottom: 0; }
  header .nav .navBtn span:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    transform: rotate(90deg); }
  header .nav {
    display: flex; }
    @media all and (max-width: 768px) {
      header .nav {
        display: block;
        overflow: auto;
        position: fixed;
        top: 0;
        right: -70%;
        width: 70%;
        max-width: 320px;
        height: 100%;
        background: rgba(45, 45, 45, 0.9);
        opacity: 0;
        z-index: 9999; } }
    header .nav.open {
      opacity: 1;
      right: 0; }
    header .nav nav {
      border-right: 1px solid #FFFFFF;
      margin-right: 30px; }
      @media all and (max-width: 768px) {
        header .nav nav {
          border-right: none;
          margin-right: 0;
          margin-left: 45px;
          margin-top: 85px; } }
      @media all and (max-width: 576px) {
        header .nav nav {
          margin-left: 25px; } }
    header .nav nav ul {
      display: flex;
      list-style: none; }
      @media all and (max-width: 768px) {
        header .nav nav ul {
          display: block; } }
    header .nav nav ul li {
      margin-right: 30px;
      height: 24px; }
      @media all and (max-width: 768px) {
        header .nav nav ul li {
          margin-bottom: 20px;
          margin-right: 137px;
          padding-top: 5px;
          padding-bottom: 5px; } }
      @media all and (max-width: 576px) {
        header .nav nav ul li {
          margin-right: 0px; } }
    header .nav nav ul li:nth-child(4) a {
      background: #D87373;
      padding-right: 8px;
      padding-left: 8px; }
      @media all and (max-width: 768px) {
        header .nav nav ul li:nth-child(4) a {
          padding-top: 5px;
          padding-bottom: 5px; } }
    header .nav nav ul li a {
      color: #FFFFFF;
      font-family: 'Cinzel', serif;
      font-weight: bold;
      font-size: 14px;
      letter-spacing: 0.7px;
      vertical-align: middle; }
      @media all and (max-width: 768px) {
        header .nav nav ul li a {
          font-size: 15px; } }
    @media all and (max-width: 768px) {
      header .nav nav ul li:nth-child(4) a {
        font-size: 20px;
        padding-left: 15px;
        padding-right: 15px; } }
    @media all and (max-width: 768px) {
      header .nav .headContact {
        margin-left: 45px; } }
    @media all and (max-width: 576px) {
      header .nav .headContact {
        margin-left: 25px; } }
    header .nav .headContact ul {
      display: flex; }
      @media all and (max-width: 768px) {
        header .nav .headContact ul {
          display: block; } }
    header .nav .headContact li:nth-child(1) {
      margin-right: 20px; }
    header .nav .headContact li:nth-child(2) {
      margin-right: 30px; }
    header .nav .headContact a {
      vertical-align: middle; }
      @media all and (max-width: 768px) {
        header .nav .headContact a {
          display: flex; } }
    header .nav .headContact a span {
      color: #FFFFFF;
      font-family: 'Cinzel', serif;
      font-weight: bold;
      letter-spacing: 0.9px;
      margin-left: 13px; }

.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  opacity: 0;
  transition: opacity .5s; }

.overlay.open {
  width: 100%;
  height: 100%;
  opacity: 1; }

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


3.フッター


*****************************************/
footer .contact {
  background: #2D2D2D;
  text-align: center;
  padding-top: 108px;
  padding-bottom: 35px; }
footer img {
  display: inline-block;
  margin-bottom: 41px; }
  @media all and (max-width: 768px) {
    footer img {
      width: 75%; } }
footer .contactIcon {
  display: flex;
  justify-content: center;
  margin-bottom: 80px; }
  @media all and (max-width: 768px) {
    footer .contactIcon {
      display: block; } }
footer .tel a {
  background-image: url("img/tel.svg");
  background-repeat: no-repeat;
  background-position: top 4px right 90%;
  padding-left: 45px;
  margin-right: 37px;
  color: #FFFFFF;
  font-family: 'Cinzel', serif;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.9px; }
footer .insta a {
  background-image: url("img/insta.svg");
  background-repeat: no-repeat;
  background-position: top 4px right 94%;
  padding-left: 45px;
  color: #FFFFFF;
  font-family: 'Cinzel', serif;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.9px; }
footer .copy {
  color: #FFFFFF;
  font-family: 'Cinzel', serif;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0.6px; }

.bottomFairBtn {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 1000;
  width: 260px; }
  .bottomFairBtn a {
    display: block; }
  .bottomFairBtn img {
    display: block;
    width: 100%;
    height: auto; }
  @media all and (max-width: 1024px) {
    .bottomFairBtn {
      left: 50%;
      right: auto;
      bottom: 15px;
      width: 95%;
      transform: translateX(-50%); } }

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


4.トップページ


*****************************************/
.mainVisual {
  padding-top: 40px;
  position: relative; }
  .mainVisual .mainBg {
    background-image: url("img/mainImg01.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: calc( 100vh - 40px ); }
    @media all and (max-width: 768px) {
      .mainVisual .mainBg {
        background-position: left 62% center; } }
  .mainVisual .imgWrap {
    width: 300px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
    @media all and (max-width: 768px) {
      .mainVisual .imgWrap {
        width: 160px; } }
  .mainVisual .imgWrap img {
    width: 100%; }
  .mainVisual .scrollWrap {
    position: absolute;
    bottom: 125px;
    left: 50%;
    transform: translateX(-50%); }
  .mainVisual .scroll span {
    color: #FFF;
    font-family: 'Cinzel', serif;
    font-weight: bold;
    font-size: 16px;
    position: relative; }
  .mainVisual .scroll span:before {
    position: absolute;
    content: "";
    height: 90px;
    width: 1px;
    background: #FFF;
    top: 40px;
    left: 32px; }

.concept .conceptBg {
  background-image: url("img/conceptImg02_back.png");
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 153px; }
.concept .conceptTxtWrap {
  padding-top: 154px;
  text-align: center; }
.concept img {
  display: inline-block;
  margin-bottom: 80px; }
.concept .conceptTxt {
  width: 30%;
  margin-right: auto;
  margin-left: auto; }
  @media all and (max-width: 768px) {
    .concept .conceptTxt {
      width: 65%; } }
.concept .conceptTxt p {
  margin-bottom: 10%; }

.movie {
  background-image: url("img/movie_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center; }
  .movie .movieBg {
    position: relative;
    padding-bottom: 43.25%;
    height: 0;
    overflow: hidden; }
  .movie iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.facilities {
  margin-bottom: 104px; }
  .facilities .facilitiesBg {
    width: 100%;
    background-image: url("img/facilitiesImg02_bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 174px;
    padding-bottom: 180px; }
  .facilities .floorMap {
    text-align: center; }
    .facilities .floorMap img {
      display: inline-block;
      padding-left: 60px; }
      @media all and (max-width: 1024px) {
        .facilities .floorMap img {
          padding-left: 0;
          width: 90%; } }
  .facilities .facilitiesTab {
    width: 100%;
    padding-bottom: 40px;
    transform: translateY(-21px); }
    @media all and (max-width: 768px) {
      .facilities .facilitiesTab {
        transform: translateY(-82px); } }
  .facilities .tabItemWrap {
    display: flex;
    justify-content: space-between;
    width: 65%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 75px; }
    @media all and (max-width: 1024px) {
      .facilities .tabItemWrap {
        width: 80%; } }
    @media all and (max-width: 768px) {
      .facilities .tabItemWrap {
        width: 90%;
        flex-wrap: wrap; } }
  .facilities .tabItem {
    width: calc( (100% - 114px) / 4 );
    height: 40px;
    border-bottom: 3px solid #2D2D2D;
    background-color: #2D2D2D;
    line-height: 45px;
    font-size: 16.8px;
    color: #FFFFFF;
    float: left;
    text-align: center;
    transition: all 0.2s ease; }
    @media all and (max-width: 768px) {
      .facilities .tabItem {
        width: calc( (100% - 38px) / 2 );
        margin-bottom: 18px; } }
  .facilities .tabItem:hover {
    opacity: 0.75; }
  .facilities input[name="tabItem"] {
    display: none; }
  .facilities .tabContent {
    height: 0;
    padding: 0;
    clear: both;
    overflow: hidden; }
  .facilities .tabContentWrap .tabContent.active {
    height: auto; }
  .facilities .facilitiesTab .tabItem.active {
    background-color: rgba(255, 255, 255, 0);
    color: #2D2D2D; }
  .facilities .tabContent .txt {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 100px; }
    @media all and (max-width: 1024px) {
      .facilities .tabContent .txt {
        width: 80%; } }
  .facilities .swiper-button-prev, .facilities .swiper-container-rtl .swiper-button-next {
    background-image: url(img/iconLeftArrow.svg);
    left: 20%; }
    @media all and (max-width: 1000px) {
      .facilities .swiper-button-prev, .facilities .swiper-container-rtl .swiper-button-next {
        left: 10%; } }
    @media all and (max-width: 750px) {
      .facilities .swiper-button-prev, .facilities .swiper-container-rtl .swiper-button-next {
        display: none; } }
  .facilities .swiper-button-next, .facilities .swiper-container-rtl .swiper-button-prev {
    background-image: url(img/iconRightArrow.svg);
    right: 20%; }
    @media all and (max-width: 1000px) {
      .facilities .swiper-button-next, .facilities .swiper-container-rtl .swiper-button-prev {
        right: 10%; } }
    @media all and (max-width: 750px) {
      .facilities .swiper-button-next, .facilities .swiper-container-rtl .swiper-button-prev {
        display: none; } }
  .facilities .swiper-slide {
    position: relative; }
  .facilities .swiper-slide:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); }
  .facilities .swiper-slide-active:before {
    background: rgba(0, 0, 0, 0); }

.freedomForWedding {
  background-image: url("img/freedomforweddingImg01.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  text-align: center;
  height: 409px;
  position: relative; }
  @media all and (max-width: 768px) {
    .freedomForWedding {
      height: 200px; } }
  .freedomForWedding img {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0; }
    @media all and (max-width: 768px) {
      .freedomForWedding img {
        width: 70%;
        height: auto; } }

.access {
  background-image: url("img/access_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left 0 top 70%; }
  .access .accessInfo {
    padding-top: 173px;
    padding-bottom: 370px; }
    @media all and (max-width: 768px) {
      .access .accessInfo {
        padding-top: 83px;
        padding-bottom: 100px; } }
    .access .accessInfo .address {
      width: 650px;
      margin-right: auto;
      margin-left: auto;
      text-align: center;
      margin-bottom: 60px; }
      @media all and (max-width: 768px) {
        .access .accessInfo .address {
          width: 100%; } }
      .access .accessInfo .address .txt {
        display: flex;
        justify-content: space-between;
        margin-bottom: 44px; }
        @media all and (max-width: 768px) {
          .access .accessInfo .address .txt {
            display: block; } }
      .access .accessInfo .address span {
        text-align: left; }
        @media all and (max-width: 768px) {
          .access .accessInfo .address span {
            display: block;
            text-align: center; } }
      .access .accessInfo .address span:nth-child(1) {
        height: 46px;
        border-right: 1px solid;
        padding-right: 7%; }
        @media all and (max-width: 768px) {
          .access .accessInfo .address span:nth-child(1) {
            height: 0;
            border-right: none;
            padding-right: 0;
            margin-bottom: 100px; } }
        @media all and (max-width: 576px) {
          .access .accessInfo .address span:nth-child(1) {
            margin-bottom: 130px; } }
      .access .accessInfo .address .accessTel {
        width: 137px;
        background-image: url("img/tel_bk.svg");
        background-repeat: no-repeat;
        font-family: 'Cinzel', serif;
        font-weight: bold;
        line-height: 16px;
        letter-spacing: 0.8px;
        padding-left: 25px;
        margin-right: auto;
        margin-left: auto; }
  .access .map {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    transform: translateY(-45%); }
  .access .map iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0; }

.totop {
  position: fixed;
  bottom: 110px;
  right: 25px; }
  @media all and (max-width: 768px) {
    .totop {
      bottom: 95px;
      right: 15px; } }
  .totop a {
    width: 80px; }
    @media all and (max-width: 768px) {
      .totop a {
        width: 50px; } }
  .totop img {
    width: 100%; }

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