@charset "UTF-8";
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  color: #050507;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
}

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

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

li {
  list-style: none;
}

/* h1タグ用 */
.site-title {
  font-size: 6.25rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  margin: 100px 0;
}

/* h2タグ用 */
.section-title {
  border-bottom: solid 1px #fff;
  /* 下線をテキストと同じ幅にあわせるために設定 */
  display: inline-block;
  font-size: 3.75rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  margin-bottom: 45px;
}

/* コンテンツ幅を設定するための共通クラス */
.wrapper {
  max-width: 800px;
  padding: 0 30px;
  margin: 0 auto;
}

/* MainとFooter全体を囲むクラス */
.container {
  background: #050507;
  color: #fff;
  text-align: center;
}

/*
サイドボタン
*/
#side-btn {
  border: solid 1px #fff;
  position: fixed;
  right: -144px;
  bottom: 200px;
  -webkit-transform: rotate(-90deg) translateY(60px);
          transform: rotate(-90deg) translateY(60px);
  -webkit-transition: 0.6s;
  transition: 0.6s;
  z-index: 30;
}

#side-btn a {
  width: 165px;
  font-size: 0.875rem;
  display: inline-block;
  letter-spacing: 0.1em;
  padding: 15px 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#side-btn a:last-of-type {
  border-left: solid 1px #fff;
}

#side-btn a:hover {
  opacity: 0.7;
}

/*
Access
*/
.bg {
  background: url("../img/bg.png") center center repeat !important;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 10;
}

/*
フェード表示
*/
.fadein {
  opacity: 0;
  -webkit-transform: translate(0, 50%);
          transform: translate(0, 50%);
  -webkit-transition: 2s;
  transition: 2s;
}

.fadein.show {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

/*-------------------------------------------
Main-visual
-------------------------------------------*/
#main-visual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* スクロールで画像を拡大させた際に、横スクロールが出ないよう設定 */
  overflow-x: hidden;
}

#main-visual img {
  width: calc(100% / 3);
  height: 100vh;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

/*-------------------------------------------
Information
-------------------------------------------*/
#information {
  margin-bottom: 140px;
}

#information .info-date-en {
  display: block;
  font-size: 1.5rem;
}

#information .info-time-en {
  display: block;
  font-size: 1.125rem;
}

#information .info-place {
  font-size: 2.5rem;
  font-weight: 400;
  margin: 20px 0;
}

#information .info-date-ja {
  font-size: 1.125rem;
}

/*-------------------------------------------
Gallery
-------------------------------------------*/
#gallery {
  margin-bottom: 480px;
  /* 奇数のliタグは左寄せ */
  /* 偶数のliタグは右寄せ */
}

#gallery #gallery .list li {
  margin-bottom: 60px;
}

#gallery .list li img {
  width: 48%;
}

#gallery .list li:nth-child(odd) {
  text-align: left;
}

#gallery .list li:nth-child(even) {
  text-align: right;
}

/*-------------------------------------------
Access
-------------------------------------------*/
#access {
  margin-bottom: 480px;
  position: relative;
  z-index: 20;
}

#access .place {
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 20px;
}

#access .address {
  margin-bottom: 20px;
}

#access .contact {
  margin-bottom: 30px;
}

#access .btn {
  border: solid 1px #fff;
  color: #fff;
  display: inline-block;
  padding: 15px 82px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#access .btn:hover {
  background-color: #050507;
}

/*-------------------------------------------
Contact
-------------------------------------------*/
#contact {
  margin-bottom: 200px;
  position: relative;
  z-index: 20;
}

#contact .btn {
  width: 400px;
  border: solid 1px #7d7d7d;
  color: #fff;
  display: block;
  padding: 30px 0;
  margin: 0 auto 20px auto;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  /*
        ボタン矢印
        */
  /*
        矢印の直線部分
        */
  /*
        矢印の先端部分
        「rotate(25deg)」で角度をつける
        */
}

#contact .btn::before, #contact .btn::after {
  content: "";
  position: absolute;
  right: -40px;
  height: 1px;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#contact .btn::before {
  width: 120px;
  top: 48px;
}

#contact .btn::after {
  width: 15px;
  top: 45px;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
}

#contact .btn:hover {
  opacity: 0.7;
}

#contact .btn:hover::before, #contact .btn:hover::after {
  right: -50px;
}

/*-------------------------------------------
Footer
-------------------------------------------*/
#footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: solid 1px #fff;
  font-size: 0.75rem;
  padding: 80px 30px;
  text-align: left;
}

#footer p {
  line-height: 1.6;
}

#footer .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}

#footer .sns li {
  margin-right: 15px;
}

#footer .copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#footer .copyright li:last-child {
  margin-left: 30px;
}

/*-------------------------------------------
ヘッダー
-------------------------------------------*/
/*
ヘッダーロゴ
*/
.logo {
  line-height: 1px;
  position: fixed;
  top: 35px;
  left: 30px;
  /* 一番上にくるように設定 */
  z-index: 40;
  display: none;
}

.logo a {
  display: block;
}

/*
  ハンバーガ―メニュー
  */
.hamburger {
  width: 42px;
  height: 42px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 25px;
  /* 一番上にくるように設定 */
  z-index: 40;
  display: none;
}

.hamburger span {
  width: 30px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 6px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 11px;
}

.hamburger span:nth-child(2) {
  top: 21px;
}

.hamburger span:nth-child(3) {
  top: 31px;
}

.hamburger.active span:nth-child(1) {
  top: 21px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 21px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#navi {
  width: 100%;
  background-color: #fff;
  color: #050507;
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: 0.6s;
  transition: 0.6s;
  /* ロゴ、ハンバーガーより下でAccessページの背景画像よりも上にくるよう設定 */
  z-index: 30;
  /*
    メニュー表示
    */
}

#navi ul {
  width: 100%;
  background-color: #050507;
  padding: 80px 0 30px 0;
}

#navi ul li {
  padding: 10px 0;
}

#navi ul li a {
  display: block;
}

#navi.active {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.main-visual {
  height: 768px;
  width: 100%;
  background-image: url("/img/スクリーンショット 2021-11-23 16.31.29.png");
  position: relative;
}

.main-visual .inner {
  padding: 0 143px;
}

.main-visual a {
  display: inline-block;
}

.main-visual__content {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.main-visual__content p {
  text-shadow: -1px 1px 10px rgba(0, 0, 0, 0.5);
  font-size: 18px;
  letter-spacing: 1em;
  font-weight: bold;
  padding-bottom: 10px;
}

.main-visual__content h2 {
  text-shadow: -1px 1px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 0;
  padding: 15px 0;
  font-size: 6.4rem;
  display: inline-block;
  font-weight: lighter;
}

.main-visual__content h2 span {
  font-size: 6.6rem;
  letter-spacing: 1.65px;
  font-weight: bold;
}

.main-visual__content .border-top {
  border-top: 2px solid #fff;
  -webkit-box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.5);
          box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.5);
}

.main-visual__content .border-bottom {
  border-bottom: 2px solid #fff;
  -webkit-box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.5);
          box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.5);
}

.main-visual__banner {
  position: absolute;
  bottom: 115px;
  left: 70px;
}

@media (max-width: 900px) {
  /*-------------------------------------------
SP
-------------------------------------------*/
  .site-title {
    font-size: 3rem;
    margin: 50px 0;
  }
  .section-title {
    font-size: 2rem;
  }
  /*-------------------------------------------
    Information
    -------------------------------------------*/
  #information {
    margin-bottom: 80px;
  }
  #information .info-date-en, #information .info-time-en, #information .info-date-ja {
    font-size: 1rem;
  }
  #information #information .info-place {
    font-size: 2rem;
  }
  /*-------------------------------------------
    Gallery
    -------------------------------------------*/
  #gallery {
    margin-bottom: 280px;
  }
  #gallery .list li {
    margin-bottom: 30px;
  }
  #gallery .list li img {
    width: 100%;
  }
  /*-------------------------------------------
    Access
    -------------------------------------------*/
  #access {
    margin-bottom: 280px;
  }
  /*-------------------------------------------
    Contact
    -------------------------------------------*/
  #contact .btn {
    width: 100%;
  }
  /*
    スマホの時は矢印を消す
    */
  #contact .btn::before,
  #contact .btn::after {
    content: none;
  }
  /*-------------------------------------------
    Footer
    -------------------------------------------*/
  #footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 60px 30px;
  }
  #footer .sns {
    margin-bottom: 30px;
  }
}
/*# sourceMappingURL=style.css.map */