@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  line-height: 2;
  letter-spacing: 0.2px;
  font-size: 14px;
  overflow-x: hidden;
  transition: all 1.6s ease 0s;
}
@media screen and (min-width: 769px) {
  body {
    margin: 0 auto !important;
  }
}

img {
  display: block;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .spNone {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .spNone {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .pcNone {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pcNone {
    display: block;
  }
}

/************************/
/* 全体
/************************/
body {
  width: 100%;
  height: 100%;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body.fixed {
  position: fixed;
}

#ss2019 {
  width: 100%;
  height: 100%;
}

#fv {
  height: 100svh;
  height: 100svh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

/************************/
/* h1 logo
/************************/
h1 {
  top: 20px;
  left: 25px;
  width: 45%;
  z-index: 4;
  position: absolute;
  top: 57%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
  color: #CA0018;
  font-size: 14.9333333333vw;
  line-height: 0.8;
}
h1 span {
  font-size: 4vw;
}

h1 img {
  width: 100%;
}

h1 a {
  display: block;
}

/************************/
/* #section_main
/************************/
/************************/
/* #btn_menu
/************************/
/************************/
/* #navigation
/************************/
/************************/
/* #section_contents
/************************/
#section_contents {
  background-color: #FFF;
  margin-top: 100svh;
  width: 100%;
  position: relative;
  z-index: 3;
}

/************************/
/* #section_title
/************************/
#section_title {
  padding-top: 80px;
  padding-bottom: 82px;
  text-align: center;
}

#section_title h3 img {
  width: 223px;
}

/************************/
/* #section_list
/************************/
#section_list {
  position: relative;
  z-index: 1;
  background-color: #FFF;
}

#section_list figure img,
#section_list figure video {
  width: 100%;
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

#section_list ul {
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

#section_list ul li {
  width: 33.333%;
  position: relative;
  margin-top: -2px;
  overflow: hidden;
}

#section_list ul li.fade {
  transition: all 0.8s ease;
  opacity: 0;
}

#section_list ul li.fade.is-fadein {
  opacity: 1;
}

#section_list ul li figure {
  overflow: hidden;
  width: 100%;
  transform: scale(1.004);
}

@supports (-ms-ime-align: auto) {
  #section_list ul li figure {
    width: 101%;
    transform: none;
  }
}
#section_list ul li a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}

#section_list ul li a:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  position: absolute;
  top: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#section_list ul li a:hover:after {
  opacity: 0.3;
}

#section_list ul li a span {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 19px;
  height: 19px;
  display: block;
  z-index: 1;
}

#section_list ul li a span img {
  width: 100%;
}

#section_list .btn_online {
  padding-top: 75px;
  margin-bottom: 80px;
  overflow: hidden;
}

#section_list .btn_online a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 75px;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.11em;
  text-align: center;
  color: #fff;
  width: 426px;
  height: 64px;
  background: #e7d1bb;
  margin: 0 auto;
  transition: opacity 0.3s ease;
}

#section_list .btn_online a:hover {
  opacity: 0.7;
}

#copyright {
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-align: left;
  color: #999;
  margin-left: 24px;
  margin-bottom: 20px;
}

/************************/
/* modal 関連
/************************/
#overlay {
  /* viewpointを相対位置にし、全画面表示にする */
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.9); /* 背景を半透明にする */
  opacity: 0;
  transition: opacity 0.2s ease-out;
  display: none; /* HTML要素を非表示にする */
  z-index: 998; /* 「メインのHTML要素」よりもスタックレベルを高くする */
  pointer-events: none;
}

#modalWindow {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  border: 0px solid #D04255;
  background-color: #FFF;
  z-index: 998;
  overflow-y: scroll;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#modalWindow.open {
  opacity: 1;
  pointer-events: all;
}

.modal-close {
  position: fixed;
  top: 15px;
  right: 34px;
  z-index: 999;
  display: none;
}

.modal-close.open {
  display: block;
}

.modal-close .menu_trigger {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  position: relative;
  width: 40px;
  height: 40px;
}

.modal-close .menu_trigger .inner {
  position: absolute;
  width: 40px;
  height: 40px;
  left: 0;
  top: 0;
}

.modal-close .menu_trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  background-color: #999;
}

.modal-close .menu_trigger span:nth-of-type(1) {
  top: 50%;
  transform: rotate(-45deg);
}

.modal-close .menu_trigger span:nth-of-type(2) {
  top: 50%;
  transform: rotate(45deg);
}

/* bodyにis-menu-openクラスが付いたらモーダル表示 */
body.is-menu-open #overlay {
  opacity: 1;
  display: block;
  pointer-events: auto;
}

#modalWindow > ul {
  width: 45%;
  margin: 0 auto;
  opacity: 0;
}

#modalWindow.open > ul {
  opacity: 1;
  transition: opacity 0.3s ease;
}

#modalWindow > ul li {
  margin-bottom: 100px;
}

#modalWindow > ul li.modal-fade {
  opacity: 0;
  transition: all 0.8s ease;
}

#modalWindow > ul li.modal-fade.is-fadein {
  opacity: 1;
}

#modalWindow > ul li .photo {
  margin-bottom: 20px;
}

#modalWindow > ul li .photo img {
  width: 100%;
}

#modalWindow > ul li .credit {
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 25px;
  text-align: right;
}
#modalWindow > ul li .credit a span {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  /************************/
  /* 全体
  /************************/
  body {
    width: 100%;
    height: 100%;
  }
  /************************/
  /* h1 logo
  /************************/
  h1 {
    top: 20px;
    left: 25px;
    width: 82%;
    z-index: 4;
    position: absolute;
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
    color: #CA0018;
    font-size: 14.9333333333vw;
    line-height: 0.8;
  }
  h1 span {
    font-size: 4vw;
  }
  h1.active a:before {
    opacity: 1;
  }
  h1 img {
    width: 100%;
  }
  h1 a {
    display: block;
  }
  h1.active {
    display: none;
  }
  /************************/
  /* #section_main
  /************************/
  #section_main {
    width: 100%;
    height: 86vh;
    padding-bottom: 0;
    position: fixed;
    top: 0;
    box-sizing: border-box;
  }
  #section_main figure {
    width: 100%;
    height: 100%;
    display: block;
    background-size: cover;
    background-position: top 0 left 37.6%;
  }
  #section_main figure img {
    display: none;
  }
  #section_main .box_title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  #section_main .box_title .title_main {
    text-align: center;
  }
  #section_main .box_title .title_main img {
    width: 125px;
  }
  /************************/
  /* #btn_menu
  /************************/
  /************************/
  /* #navigation
  /************************/
  /************************/
  /* #section_contents
  /************************/
  #section_contents {
    position: relative;
    z-index: 1;
    top: 100%;
  }
  /************************/
  /* #section_title
  /************************/
  #section_title {
    padding-top: 50px;
    padding-bottom: 52px;
    text-align: center;
  }
  #section_title h3 img {
    width: 162px;
  }
  /************************/
  /* #section_list
  /************************/
  #section_list ul {
    display: flex;
    flex-wrap: wrap;
  }
  #section_list ul li {
    width: 50%;
    position: relative;
  }
  #section_list ul li a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
  }
  #section_list ul li a:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  #section_list ul li a:hover:after {
    opacity: 0.3;
  }
  #section_list ul li a span {
    position: absolute;
    bottom: 9px;
    right: 9px;
    width: 13px;
    height: 13px;
    display: block;
    z-index: 1;
  }
  #copyright {
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-align: left;
    color: #999;
    margin-left: 24px;
    margin-bottom: 20px;
  }
  /************************/
  /* modal 関連
  /************************/
  #overlay {
    /* viewpointを相対位置にし、全画面表示にする */
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.9); /* 背景を半透明にする */
    opacity: 0;
    transition: opacity 0.2s ease-out;
    display: none; /* HTML要素を非表示にする */
    z-index: 1; /* 「メインのHTML要素」よりもスタックレベルを高くする */
    pointer-events: none;
  }
  #modalWindow {
    width: 100%;
    height: 100%;
    position: fixed; /* viewpointを相対位置にする */
    top: 0;
    left: 0;
    border: 0px solid #D04255;
    background-color: #FFF;
    z-index: 998;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
  .modal-close {
    position: fixed;
    top: 19px;
    right: 30px;
    z-index: 999;
  }
  .modal-close .menu_trigger {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
    position: relative;
    width: 30px;
    height: 30px;
  }
  .modal-close .menu_trigger .inner {
    position: absolute;
    width: 30px;
    height: 30px;
    left: 0;
  }
  .modal-close .menu_trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
    background-color: #999;
  }
  .modal-close .menu_trigger span:nth-of-type(1) {
    top: 50%;
    transform: rotate(-45deg);
  }
  .modal-close .menu_trigger span:nth-of-type(2) {
    top: 50%;
    transform: rotate(45deg);
  }
  /* bodyにis-menu-openクラスが付いたらモーダル表示 */
  body.is-menu-open #overlay {
    opacity: 1;
    display: block;
    pointer-events: auto;
    z-index: 998;
  }
  #modalWindow > ul {
    width: 100%;
    margin: 0 auto;
  }
  #modalWindow > ul li {
    margin-bottom: 60px;
  }
  #modalWindow > ul li .photo {
    margin-bottom: 20px;
  }
  #modalWindow > ul li .photo img {
    width: 100%;
  }
  #modalWindow > ul li .credit {
    font-weight: normal;
    font-size: 12px;
    letter-spacing: 0.04em;
    line-height: 25px;
    text-align: right;
    padding: 0 25px;
    line-height: 1.5;
  }
}
footer .btn {
  margin: 50% auto 5%;
  text-align: center;
}
@media screen and (min-width: 769px) {
  footer .btn {
    margin: 220px auto 10px;
    font-size: 15px;
  }
}
footer .btn a {
  display: block;
  margin: 5% auto;
  border: 1px solid;
  width: 70%;
  padding: 4% 0;
}
@media screen and (min-width: 769px) {
  footer .btn a {
    margin: 20px auto;
    width: 500px;
    padding: 15px 0;
  }
}
footer .btn a:hover {
  background-color: #000;
  color: #FFF;
  transition: 0.5s;
}

.insta {
  width: 7.7333333333vw;
  margin: 36vw auto 11.2vw;
}
@media screen and (min-width: 769px) {
  .insta {
    width: 40px;
    margin: 150px auto 80px;
  }
}

.logo {
  width: 42.1333333333vw;
  margin: 0 auto 5%;
}
@media screen and (min-width: 769px) {
  .logo {
    width: 150px;
    margin: 0 auto 30px;
  }
}

.copy {
  text-align: center;
  font-size: 10px;
  padding-bottom: 10%;
}
@media screen and (min-width: 769px) {
  .copy {
    padding-bottom: 30px;
  }
}

.slick-slide {
  z-index: 10 !important;
}
.slick-slide div {
  height: 100svh;
  width: 100%;
}
.slick-slide img {
  overflow: hidden;
  height: 100svh;
  width: auto;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
}
@media screen and (max-width: 768px) {
  .slick-slide img {
    height: auto;
    width: 100%;
  }
}

.img_25 {
  width: 70vw;
  margin: 40% auto 30%;
}
@media screen and (min-width: 769px) {
  .img_25 {
    width: 45%;
    margin: 20% auto 13%;
  }
}

.sta_cre {
  text-align: center;
}

strong {
  margin-right: 2%;
}/*# sourceMappingURL=style.css.map */