@charset "UTF-8";
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

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

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

.container {
  position: relative;
}

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

ul {
  list-style: none;
}

ul,
li {
  padding: 0;
}

.bold {
  font-weight: 400;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

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

.main_color {
  color: #fafafa;
}

/*===========
SNS
============*/
/* ボタン全体 */
/* ボタン全体 */
.snsbtn {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 50px;
  border: solid 1px rgb(165, 163, 163);
  border-radius: 50%;
  background-color: rgb(35, 34, 34);
  color: #ffffff;
  font-size: 30px;
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* ボタンマウスホバー時のテキスト指定 */
.snsbtn:hover {
  text-decoration: none;
}

/* アイコンをど真ん中に */
.snsbtn i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

/* Twitterマウスホバー時 */
.snsbtn.fl_tw2:hover {
  background: -webkit-linear-gradient(315deg, #13f1fc 0%, #0470dc 100%);
  background: linear-gradient(135deg, #13f1fc 0%, #0470dc 100%);
}

/* Instagramマウスホバー時 */
.snsbtn.insta_btn2:hover {
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: -webkit-linear-gradient(315deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
}

/* Facebookマウスホバー時 */
.snsbtn.fl_fb2:hover {
  background: -webkit-linear-gradient(top, #5c80c6 0%, #34528c 74%);
  background: -webkit-gradient(linear, left top, left bottom, from(#5c80c6), color-stop(74%, #34528c));
  background: linear-gradient(to bottom, #5c80c6 0%, #34528c 74%);
}

/*===========
共通
============*/
.inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 30px;
  text-align: center;
}

a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  text-decoration: underline;
}

/*===========
header
============*/
.header_inner {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 35px 30px;
}

.logo {
  width: 140px;
}

.bar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 20;
}
.bar span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #fafafa;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.bar span::after, .bar span::before {
  content: "";
  display: block;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  width: 30px;
  height: 2px;
  background-color: #fafafa;
}
.bar span::after {
  -webkit-transform: translateY(-12px);
          transform: translateY(-12px);
}
.bar.is_active span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.bar.is_active span::after {
  opacity: 0;
}
.bar.is_active span::before {
  -webkit-transform: translateY(0) rotate(-270deg);
          transform: translateY(0) rotate(-270deg);
}

.g_nav {
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  width: 100%;
  height: 40vh;
  background-color: #050507;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.g_nav.is_active {
  -webkit-transform: none;
          transform: none;
}

.g_nav_inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6vh 0;
  gap: 20px;
}

/*===========
right_nav
============*/
.right_nav {
  opacity: 0;
  position: absolute;
  position: fixed;
  right: 0;
  bottom: 200px;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: 1.5s;
  transition: 1.5s;
}
@media screen and (max-width: 767px) {
  .right_nav {
    display: none;
  }
}

.right_nav_item {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  width: 48px;
  height: 165px;
  border: solid 1px #fafafa;
  font-size: 1.4rem;
  line-height: 46px;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
.right_nav_item:nth-child(2) {
  margin: -1px 0;
}
.right_nav_item:hover {
  background-color: #fafafa;
  color: #333333;
}

/*===========
mv_area
============*/
.mv_area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow-x: hidden;
}
.mv_area img {
  width: 33.3333333333%;
  height: 100vh;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.h1 {
  margin-bottom: 8.3vh;
  font-weight: 300;
  font-size: 10rem;
  font-size: min(6.9vw, 10rem);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .h1 {
    font-size: 12.8vw;
  }
}

.sec_title {
  margin-bottom: 3.4vh;
  font-weight: 300;
  font-size: 6rem;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 8px;
}
@media screen and (max-width: 767px) {
  .sec_title {
    font-size: 3.2rem;
  }
}

/*===========
INFORMATION
============*/
.info {
  margin-bottom: 150px;
}
.info span {
  display: block;
  font-size: 1.8rem;
}

.place {
  margin-bottom: 3rem;
  font-weight: 400;
  font-size: 4rem;
}

.day_en {
  margin-bottom: 3rem;
  font-size: 2.4rem;
}

.day_ja {
  font-size: 1.8rem;
}

/*===========
GALLERY
============*/
.gallery_image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
}
.gallery_image li {
  margin-bottom: 6rem;
}
.gallery_image li img {
  width: 50%;
}
.gallery_image li:nth-child(odd) {
  text-align: left;
}
.gallery_image li:nth-child(even) {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .gallery_image li {
    margin-bottom: 3rem;
  }
  .gallery_image li img {
    width: 100%;
  }
}

/*===========
access
============*/
.access_bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url(../img/access_bg.jpg);
  background-size: cover;
}

.access {
  position: relative;
  z-index: 20;
  margin-bottom: 480px;
}
.access .flex {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
  text-shadow: 0 0 6px black;
  gap: 2.4rem;
}
.access .sec_title {
  text-shadow: 0 0 6px black;
}

.map_btn {
  text-shadow: none;
}
.map_btn a {
  display: inline-block;
  width: 270px;
  padding: 1.8rem 0;
  border: solid 1px #fafafa;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.map_btn:hover a {
  background-color: #050507;
  text-decoration: none;
}

/*===========
CONTACT
============*/
.contact {
  padding-bottom: 200px;
}
.contact .flex {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .contact .flex {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.contact .flex li {
  position: relative;
}
.contact .flex li a {
  display: inline-block;
  width: 400px;
  padding: 3.2rem 0;
  border: solid 1px #fafafa;
  font-size: 1.6rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  transition: 0.3s;
}
.contact .flex li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 125px;
  width: 120px;
  height: 1px;
  background-color: #fafafa;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.contact .flex li a::before {
  content: "";
  display: block;
  position: absolute;
  top: 39px;
  right: 123px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 10px;
  height: 1px;
  background-color: #fafafa;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .contact .flex li a {
    width: 90vw;
  }
  .contact .flex li a::before, .contact .flex li a::after {
    content: unset;
  }
}
.contact .flex li:hover a {
  opacity: 0.8;
  text-decoration: none;
}
.contact .flex li:hover a::after {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}
.contact .flex li:hover a::before {
  -webkit-transform: translateX(9px) rotate(45deg);
          transform: translateX(9px) rotate(45deg);
}

/*===========
footer
============*/
.tooter_inner {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 80px 30px;
}
@media screen and (max-width: 767px) {
  .tooter_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
        -ms-flex-flow: column;
            flex-flow: column;
    gap: 2rem;
    padding: 30px 30px;
  }
}

.footer_item_right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .footer_item_right {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer_item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
}

.address_area {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
  margin-bottom: 3.4rem;
  line-height: 1.4;
}

.sns_area {
  position: relative;
  gap: 1rem;
}
.sns_area::before {
  content: "＼ Follow Me♡ ／";
  position: absolute;
  top: -22px;
  left: 22px;
}
@media screen and (max-width: 767px) {
  .sns_area {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 6rem;
    gap: 2rem;
  }
  .sns_area::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

/*=========

==========*/
.fadein {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.gotop {
  font-size: 1.2rem;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
}
.gotop a {
  text-decoration: none;
}
.gotop a::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  border-top: solid 1px #fafafa;
  border-right: solid 1px #fafafa;
  position: absolute;
  top: -1rem;
  left: 0;
  -webkit-transform: rotate(-45deg) translateX(50%);
          transform: rotate(-45deg) translateX(50%);
}