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

目次 
1.ベース
2.ヘッダー
3.フッター
4.トップページ
4-1.CONCEPT
4-2.MOVIE
4-3.GALLERY
4-4.VENUE

*****************************************/
@import url("https://fonts.googleapis.com/css?family=Bodoni+Moda:100,300,400,500,700,900&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: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: normal;
  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-color: #f6f4e9; }

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

.tit h2 {
  font-size: 24px;
  font-weight: bold;
  font-family: 'Bodoni Moda', serif;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 40px; }
  @media all and (max-width: 768px) {
    .tit h2 {
      font-size: 16px;
      margin-bottom: 50px; } }

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

.inview {
  transition: all 3000ms 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: 250ms; }
  .inview.action {
    opacity: 1;
    transform: translate(0px); }

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


2.ヘッダー


*****************************************/
header .inner {
  width: 90%;
  display: flex;
  justify-content: space-between;
  padding-top: 50px; }
  @media all and (max-width: 768px) {
    header .inner {
      display: block;
      padding-top: 20px; } }
header .logo {
  display: flex;
  align-items: center;
  justify-content: center; }
  @media all and (max-width: 768px) {
    header .logo {
      display: block; } }
@media all and (max-width: 768px) {
  header .logo h1 a {
    width: 30%; } }
header .logo h1 a img {
  width: 100%; }
header .navWrap {
  display: flex;
  align-items: center;
  justify-content: center; }
  @media all and (max-width: 768px) {
    header .navWrap {
      align-items: flex-start;
      overflow: auto;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: rgba(0, 0, 0, 0.8);
      opacity: 0;
      z-index: -1;
      transition: all .5s ease-in-out; } }
@media all and (max-width: 768px) {
  header .navWrap.open {
    z-index: 999;
    opacity: 1; } }
header ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  @media all and (max-width: 768px) {
    header ul {
      display: block;
      width: 60%;
      margin-top: 100px; } }
header ul li {
  margin-left: 40px;
  line-height: 21px; }
  @media all and (max-width: 768px) {
    header ul li {
      margin-bottom: 30px;
      margin-left: 0; } }
@media all and (max-width: 768px) {
  header li:nth-child(3) {
    border-bottom: 0.5px solid #FFFFFF;
    padding-bottom: 50px; } }
header ul li a {
  color: #FFFFFF;
  font-size: 14px;
  font-family: 'Bodoni Moda', serif;
  letter-spacing: 1px; }
  @media all and (max-width: 768px) {
    header ul li a {
      font-size: 16px; } }
header ul li:last-child a {
  background: #B61825;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 20px;
  padding-right: 20px;
  transition: all 0.8s; }
header ul li:last-child a:hover {
  opacity: 0.8; }
header li a.tel {
  background-image: url("img/iconTel.svg");
  background-repeat: no-repeat;
  background-position: top 2px left 10px;
  background-size: 12%;
  padding-left: 36px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 12px; }
  @media all and (max-width: 768px) {
    header li a.tel {
      background-position: top 2px right 100%;
      padding-left: 30px;
      font-size: 16px;
      margin-bottom: 3px; } }
header li a.instagram {
  background-image: url("img/iconInsta.svg");
  background-repeat: no-repeat;
  background-position: top 2px left 10px;
  background-size: 12%;
  padding-left: 36px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 12px; }
  @media all and (max-width: 768px) {
    header li a.instagram {
      background-position: top 2px right 100%;
      padding-left: 30px;
      font-size: 18px; } }
header .navBtn {
  display: none; }
  @media all and (max-width: 768px) {
    header .navBtn {
      display: block;
      width: 30px;
      position: absolute;
      top: 24px;
      right: 30px;
      cursor: pointer;
      z-index: 9999; } }
@media all and (max-width: 768px) {
  header .navBtn span {
    display: block;
    height: 2px;
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    transition: all .5s ease-in-out; } }
@media all and (max-width: 768px) {
  header .navBtn span:nth-child(1) {
    margin-bottom: 10px; } }
@media all and (max-width: 768px) {
  header .navBtn span:nth-child(2) {
    margin-bottom: 10px; } }
@media all and (max-width: 768px) {
  header .navBtn.active {
    right: 0;
    left: 30px;
    position: fixed; } }
@media all and (max-width: 768px) {
  header .navBtn.active span:nth-child(1) {
    -webkit-transform: translateY(9px) translateX(0) rotate(45deg);
    -ms-transform: translateY(9px) translateX(0) rotate(45deg);
    transform: translateY(9px) translateX(0) rotate(45deg);
    background: white;
    height: 1px; } }
@media all and (max-width: 768px) {
  header .navBtn.active span:nth-child(2) {
    margin-top: 5px;
    opacity: 0;
    -webkit-transform: translateY(12px);
    -ms-transform: translateY(12px);
    transform: translateY(12px); } }
@media all and (max-width: 768px) {
  header .navBtn.active span:nth-child(3) {
    -webkit-transform: translateY(-14px) translateX(0) rotate(-45deg);
    -ms-transform: translateY(-14px) translateX(0) rotate(-45deg);
    transform: translateY(-14px) translateX(0) rotate(-45deg);
    background: white;
    height: 1px; } }

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


3.フッター


*****************************************/
footer {
  background-color: #600F16;
  padding-top: 120px;
  padding-bottom: 120px; }
  @media all and (max-width: 768px) {
    footer {
      padding-top: 100px;
      padding-bottom: 60px; } }
  footer .inner {
    width: 80%;
    display: flex;
    justify-content: space-between; }
    @media all and (max-width: 768px) {
      footer .inner {
        width: 65%;
        display: block; } }
  @media all and (max-width: 768px) {
    footer .leftWrap {
      margin-bottom: 100px;
      text-align: center; } }
  footer .leftWrap a {
    width: 300px;
    margin-bottom: 35px; }
    @media all and (max-width: 768px) {
      footer .leftWrap a {
        width: 70%;
        margin-right: auto;
        margin-left: auto;
        display: inline-block;
        margin-bottom: 20px; } }
  footer .leftWrap a img {
    width: 100%; }
  footer .copy {
    color: #FFFFFF;
    font-family: 'Bodoni Moda', serif;
    font-size: 12px;
    letter-spacing: 2px; }
    @media all and (max-width: 768px) {
      footer .copy {
        text-align: center;
        font-size: 6px;
        letter-spacing: 0.5px; } }
  footer ul {
    margin-bottom: 50px; }
  footer li a {
    color: #FFFFFF;
    font-family: 'Bodoni Moda', serif; }
  footer li a.tel {
    background-image: url("img/iconTel.svg");
    background-repeat: no-repeat;
    background-position: top 8px right 100%;
    background-size: 12%;
    padding-left: 45px;
    font-size: 20px;
    line-height: 34px;
    letter-spacing: 1px; }
    @media all and (max-width: 768px) {
      footer li a.tel {
        font-size: 16px; } }
  footer li a.instagram {
    background-image: url("img/iconInsta.svg");
    background-repeat: no-repeat;
    background-position: top 8px right 100%;
    background-size: 12%;
    padding-left: 45px;
    font-size: 23px;
    line-height: 40px;
    letter-spacing: 1.15px; }
    @media all and (max-width: 768px) {
      footer li a.instagram {
        font-size: 20px; } }
  footer .weddingCircus {
    width: 207px; }
    @media all and (max-width: 768px) {
      footer .weddingCircus {
        width: 190px; } }
  footer .weddingCircus a img {
    width: 100%; }

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


4.トップページ


*****************************************/
.mainImg {
  width: 100%;
  height: 100vh;
  background: url("img/mainImg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative; }
  @media all and (max-width: 768px) {
    .mainImg {
      height: 60vh; } }

/***************
4-1.CONCEPT
****************/
.concept {
  width: 650px;
  max-width: 90%;
  position: absolute;
  top: 550px;
  left: 50%;
  transform: translateX(-50%); }
  @media all and (max-width: 768px) {
    .concept {
      top: 250px; } }
  .concept .inner {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    padding-top: 100px;
    padding-bottom: 100px; }
    @media all and (max-width: 768px) {
      .concept .inner {
        width: 90%;
        padding-top: 50px;
        padding-bottom: 50px; } }
  @media all and (max-width: 768px) {
    .concept .txtWrap {
      width: 80%;
      margin-left: auto;
      margin-right: auto; } }
  .concept .txtWrap .conceptImg {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 120px; }
    @media all and (max-width: 768px) {
      .concept .txtWrap .conceptImg {
        width: 70%;
        margin-bottom: 50px; } }
  .concept .txtWrap .conceptImg img {
    width: 100%; }
  .concept .txtWrap .conceptTxt p {
    color: #FFFFFF;
    text-align: center;
    line-height: 60px;
    letter-spacing: 3.2px; }
    @media all and (max-width: 768px) {
      .concept .txtWrap .conceptTxt p {
        line-height: 36px;
        letter-spacing: 1px;
        font-size: 14px;
        text-align: center; } }

/***************
4-2.MOVIE
****************/
.movie {
  background: #600f16;
  background-image: url("img/bg01.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 500px; }
  @media all and (max-width: 768px) {
    .movie {
      padding-top: 350px; } }
  .movie .iframe {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    margin-top: 300px; }
    @media all and (max-width: 768px) {
      .movie .iframe {
        margin-top: 220px; } }
  .movie .iframe iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%; }

/***************
4-3.GALLERY
****************/
.gallery {
  background-image: url("img/bg02.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  margin-top: 200px; }
  @media all and (max-width: 768px) {
    .gallery {
      margin-top: 80px; } }
  .gallery .swiper-container {
    margin-bottom: 200px;
    padding-top: 190px;
    padding-bottom: 100px; }
    @media all and (max-width: 768px) {
      .gallery .swiper-container {
        margin-bottom: 74px;
        padding-top: 154px;
        padding-bottom: 38px; } }
  .gallery .swiper-button-prev,
  .gallery .swiper-button-next {
    width: 127px;
    /* ボタンの幅 */
    height: 57px;
    /* ボタンの高さ */
    background-size: cover;
    /* 背景画像としてのサイズ（＝表示したい画像サイズ） */
    top: 25px; }
  .gallery .swiper-button-next {
    background-image: url(img/iconSlideArrow.svg);
    background-repeat: no-repeat; }
    @media all and (max-width: 768px) {
      .gallery .swiper-button-next {
        background-size: 80px;
        background-position: right; } }
  .gallery .swiper-button-prev:after,
  .gallery .swiper-button-next:after {
    display: none; }
  .gallery .swiper-wrapper .swiper-slide:nth-child(2n-1) {
    transform: scale(0.7, 0.7) translateY(-200px); }
    @media all and (max-width: 768px) {
      .gallery .swiper-wrapper .swiper-slide:nth-child(2n-1) {
        transform: scale(0.9, 0.9) translateY(-100px); } }
  .gallery .swiper-wrapper .swiper-slide:nth-child(2n) {
    transform: translateY(25px); }
    @media all and (max-width: 768px) {
      .gallery .swiper-wrapper .swiper-slide:nth-child(2n) {
        transform: translateY(25px); } }

/***************
4-4.VENUE
****************/
.venue {
  background-image: url("img/bg03.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  margin-bottom: 150px; }
  .venue .inner {
    width: 60%; }
    @media all and (max-width: 768px) {
      .venue .inner {
        width: 70%; } }
  .venue .venueImgBg {
    background-color: #600F16;
    padding: 120px;
    padding-bottom: 100px;
    margin-bottom: 200px; }
    @media all and (max-width: 768px) {
      .venue .venueImgBg {
        padding: 10%;
        margin-bottom: 100px; } }
  .venue .venueImgBg img {
    width: 100%;
    margin-bottom: 45px;
    height: auto; }
  .venue .venueImgBg a {
    display: flex;
    align-items: flex-start;
    justify-content: center; }
  .venue .venueImgBg a span {
    color: #FFFFFF;
    border-bottom: 1px solid #FFFFFF; }
    @media all and (max-width: 768px) {
      .venue .venueImgBg a span {
        font-size: 14px; } }
  .venue .contactBtn {
    width: 360px;
    margin-left: auto;
    margin-right: auto; }
    @media all and (max-width: 768px) {
      .venue .contactBtn {
        width: 60%; } }
  .venue .contactBtn a {
    width: 100%;
    background-color: #600F16;
    color: #FFFFFF;
    font-family: 'Bodoni Moda', serif;
    font-size: 36px;
    font-weight: bold;
    line-height: 63px;
    letter-spacing: 7.2px;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: all 0.8s; }
    @media all and (max-width: 768px) {
      .venue .contactBtn a {
        font-size: 18px;
        letter-spacing: 3px;
        padding-top: 13px;
        padding-bottom: 13px;
        line-height: 1; } }
  .venue .contactBtn a:hover {
    background-color: #470A0F; }

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