@charset "UTF-8";
/************************/
/* 全体
/************************/
body {
  position: relative;
  width: 100%;
  height: 100%;
}
body.fixed {
    position: fixed;
}

#ss2019 {
  width: 100%;
  height: 100%;
  font-family: sofia-pro, 游ゴシック, "Yu Gothic", 游ゴシック体, YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/************************/
/* h1 logo
/************************/
h1 {
  position: fixed;
  top: 20px;
  left: 27px;
  width: 103px;
  z-index: 3;
}
h1 img {
  width: 100%;
}
h1 a {
  display: block;
}

/************************/
/* #section_main
/************************/

#section_main {
  width: 100%;
  height: 100%;
  padding-bottom: 15px;
  position: fixed;
  box-sizing: border-box;
}

#section_main figure {
  width: 100%;
  height: 100%;
  display: block;
  background-size: cover;
  background-position: top center;
}
#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: 459px;
}

/************************/
/* #btn_menu
/************************/
#btn_menu {
  position: fixed;
  top: 27px;
  right: 23px;
  z-index: 4;
}

#btn_menu.none {
  opacity: 0;
  pointer-events: none;
}

#btn_menu .menu_trigger {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
  position: relative;
  width: 60px;
  height: 17px;
}

#btn_menu .menu_trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}

#btn_menu .menu_trigger .inner {
  position: absolute;
  width: 60px;
  height: 17px;
}
#btn_menu.active .menu_trigger .inner {
  position: absolute;
  width: 40px;
  height: 17px;
  left: 10px;
}
#btn_menu .menu_trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #FFF;
}

#btn_menu .menu_trigger span:nth-of-type(1) {
  top: 0;
}

#btn_menu .menu_trigger span:nth-of-type(2) {
  bottom: 0;
}

#btn_menu.active .menu_trigger span {
  background-color: #999;
}

#btn_menu.active .menu_trigger span:nth-of-type(1) {
  transform: translateY(7px) rotate(-45deg);
}

#btn_menu.active .menu_trigger span:nth-of-type(2) {
  transform: translateY(-9px) rotate(45deg);
}

/************************/
/* #navigation
/************************/
#navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 74px;
  background-color: #FFF;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#navigation.open {
  opacity: 1;
  pointer-events: all;
}
#navigation ul {
  display: flex;
  align-items: center;
  margin-right: 90px;
  font-weight: normal;
  font-size: 12px;
  letter-spacing: 0.17em;
  line-height: 14.39px;
  color: #999;
}
#navigation ul li {
  margin-left: 19px;
}
#navigation ul li a {
  display:block;
  position: relative;
  padding-bottom: 4px;
}
#navigation ul li.bottomline a:after {
  content: "";
  display: block;
  width: 0%;
  background-color: #999;
  height: 1px;
  position: absolute;
  bottom: 0;
  transition: width 0.3s ease;
}
#navigation ul li.bottomline a:hover:after {
  width: 100%;
}
/************************/
/* #section_contents
/************************/
#section_contents {
  background-color: #FFF;
  position: absolute;
  z-index: 1;
  top: 100vh;
}
/************************/
/* #section_title
/************************/
#section_title {
  padding-top: 80px;
  padding-bottom: 82px;
  text-align: center;
}
#section_title h3 img {
  width: 223px;
}
/************************/
/* #section_list
/************************/
#section_list img,#section_list video {
  width: 100%;
}
#section_list ul {
  display: flex;
  flex-wrap: wrap;
}
#section_list ul li {
  width: 33.333333%;
  position: relative;
  margin-top: -2px;
}
#section_list ul li.fade{
  transition: all .8s ease;
  opacity: 0;
}
#section_list ul li.fade:nth-child(3n + 2){
  transition-delay: .2s;
}
#section_list ul li.fade:nth-child(3n + 3){
  transition-delay: .4s;
}
#section_list ul li.fade.is-fadein{
  opacity: 1;
}
#section_list ul li figure {
  overflow: hidden;
}
#section_list ul li figure video {
  transform: scale(1.01);
}
#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 .btn_online {
  margin-top: 75px;
  margin-bottom: 80px;
}
#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 .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: 5  /* 「オーバーレのHTML要素」よりもスタックレベルを高くする */;
  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: 6;
  display: none;
}
.modal-close.open{
  display: block;
}
.modal-close .menu_trigger {
  display: inline-block;
  transition: all .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 .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: 62.34%;
  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 .8s ease;
}
#modalWindow > ul li.modal-fade.is-fadein{
  opacity: 1;
}
#modalWindow > ul li .photo {
  margin-bottom: 40px;
}
#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: left;
  color: #999;
}
#modalWindow > ul li .credit a {
  text-decoration: underline;
}




@media screen and (max-width:768px) {
  /************************/
/* 全体
/************************/
body {
  position: relative;
  width: 100%;
  height: 100%;
}
body.fixed {
    position: fixed;
}

#ss2019 {
  width: 100%;
  height: 100%;
  font-family: sofia-pro, 游ゴシック, "Yu Gothic", 游ゴシック体, YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/************************/
/* h1 logo
/************************/
h1 {
  position: fixed;
  top: 20px;
  left: 25px;
  width: 103px;
  z-index: 4;
}

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: center;
}
#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: 281px;
}

/************************/
/* #btn_menu
/************************/
#btn_menu {
  position: fixed;
  top: 27px;
  right: 20px;
  z-index: 4;
}

#btn_menu.none {
  opacity: 0;
  pointer-events: none;
}

#btn_menu .menu_trigger {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
  position: relative;
  width: 45px;
  height: 13px;
}

#btn_menu .menu_trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}

#btn_menu .menu_trigger .inner {
  position: absolute;
  width: 45px;
  height: 13px;
}
#btn_menu.active .menu_trigger .inner {
  position: absolute;
  width: 30px;
  height: 16px;
  left: 6px;
}
#btn_menu .menu_trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #FFF;
}

#btn_menu .menu_trigger span:nth-of-type(1) {
  top: 0;
}

#btn_menu .menu_trigger span:nth-of-type(2) {
  bottom: 0;
}

#btn_menu.active .menu_trigger span {
  background-color: #999;
}

#btn_menu.active .menu_trigger span:nth-of-type(1) {
  transform: translateY(7px) rotate(-45deg);
}

#btn_menu.active .menu_trigger span:nth-of-type(2) {
  transform: translateY(-8px) rotate(45deg);
}

/************************/
/* #navigation
/************************/
#navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 74px;
  background-color: #FFF;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#navigation.open {
  opacity: 1;
  pointer-events: all;
}
#navigation ul {
  display: flex;
  align-items: center;
  margin-right: 0;
  font-weight: normal;
  font-size: 12px;
  letter-spacing: 0.17em;
  line-height: 14.39px;
  color: #999;
}
#navigation ul li {
  margin-left: 24px;
}
#navigation ul li a {
  display:block;
  position: relative;
  padding-bottom: 4px;
}
#navigation ul li.bottomline a:after {
  content: "";
  display: block;
  width: 0%;
  background-color: #999;
  height: 1px;
  position: absolute;
  bottom: 0;
  transition: width 0.3s ease;
}
#navigation ul li.bottomline a:hover:after {
  width: 100%;
}
/************************/
/* #section_contents
/************************/
#section_contents {
  background-color: #FFF;
  position: absolute;
  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 img {
  width: 100%;
}
#section_list ul {
  display: flex;
  flex-wrap: wrap;
}
#section_list ul li {
  width: 50%;
  position: relative;
}
#section_list ul li.fade:nth-child(3n + 2),
#section_list ul li.fade:nth-child(3n + 3){
  transition-delay: inherit;
}
#section_list ul li.fade:nth-child(even){
  transition-delay: .2s;
}
#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: 9px;
  right: 9px;
  width: 13px;
  height: 13px;
  display: block;
  z-index: 1;
}

#section_list .btn_online {
  margin-top: 55px;
  margin-bottom: 55px;
  padding: 0 15px;
  box-sizing: border-box;
}
#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: 100%;
  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 .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: 5  /* 「オーバーレのHTML要素」よりもスタックレベルを高くする */;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.modal-close{
  position: fixed;
  top: 19px;
  right: 30px;
  z-index: 6;
}

.modal-close .menu_trigger {
  display: inline-block;
  transition: all .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 .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: 100%;
  margin: 0 auto;
}
#modalWindow > ul li {
  margin-bottom: 60px;
}
#modalWindow > ul li .photo {
  margin-bottom: 30px;
}
#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: left;
  color: #999;
  padding: 0 25px;
}
#modalWindow > ul li .credit a {
  text-decoration: underline;
}


}