/* CSS Reset */
*,:after,:before{box-sizing:border-box}html{line-sizing:normal}body{margin:0}[hidden]{display:none}h1{font-size:2rem}h2{font-size:1.5rem}h3{font-size:1.17rem}h4{font-size:1rem}h5{font-size:.83rem}h6{font-size:.67rem}h1{margin:.67em 0}pre{white-space:pre-wrap}hr{border-style:solid;border-width:1px 0 0;color:inherit;height:0;overflow:visible}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle;max-width:100%}audio:not([controls]){display:none}picture{display:contents}source{display:none}canvas,img,svg,video{height:auto}audio{width:100%}img{border-style:none}svg{overflow:hidden}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}
html {
    font-size: 10px;
    min-height: 100vh;
    height: 100%;
}
*:focus {
  outline: none;
}
.panel {
  height: 100vh;
}
.line {
  width: 100%;
  max-width: 800px;
  height: 8px;
  margin: 0 0 10px 0;
  position: relative;
  display: inline-block;
  background-color: rgba(255,255,255,1);
}

body::-webkit-scrollbar,
.wrapper::-webkit-scrollbar,
main::-webkit-scrollbar,,
main_inner::-webkit-scrollbar, {
      display: none;
      -webkit-appearance: none;
}

body {
    -ms-scroll-chaining: none;
    overscroll-behavior: none;
    position: relative;
    background: #000;
    color: #7a6a56;
    font-family: a-otf-ryumin-pr6n,"游ゴシック Medium","Yu Gothic Medium","游ゴシック体",YuGothic,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
    font-size: 1.4rem;
    line-height: 1.86;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: 'palt' 1;
    font-feature-settings: 'palt' 1;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
    transition: all .6s ease;

}
h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    text-decoration: none;
    list-style-type: none;
}
a {
    color: inherit;
    text-decoration: none;
    background-color: transparent;
}
img {
    max-width: 100%;
    height: auto;
}
img[src$=".svg"] {
    width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    overflow-x: hidden;
}

header {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    background: #23002f;
    margin: 0 auto 0;
}

.header-black {
    background: #010101;
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 225px;
    z-index: 6;
    opacity: 1;
background: -webkit-linear-gradient(to top, rgb(0 0 0 / 0%) 1%, rgba(0,0,0, 1) 28%,rgba(0,0,0, 1) 100%);
    background: linear-gradient(to top, rgb(0 0 0 / 0%) 1%, rgba(0,0,0, 1) 28%,rgba(0,0,0, 1) 100%);
}

.header-contact-title {
    position: fixed;
    width: 100%;
    top: 160px;
    color: #7a6a56;
    font-size: 13px;
    font-family: trajan-pro-3, serif;
    line-height: 1;
    letter-spacing: .4em;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    z-index: 12;
}

.header_logo_box {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-shrink: 0;
    flex-wrap: wrap;
    width: 100%;
    padding: 40px;
}

.header_logo_link {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    overflow: hidden;
    text-indent: -5260px;
    position: relative;
    height: 100%;
    pointer-events: auto;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

.header_logo_title {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    overflow: hidden;
    text-indent: -5260px;
    position: relative;
    height: 100%;
    pointer-events: auto;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    width: 70px;
}
.header_logo_img {
    width: 100%;
    height: auto;
}

.main {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 100%;
}

.main_inner {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 100vh;
    overflow: hidden;
}

.grain-overlay {
  animation: grain 9s steps(10) infinite;
  background-image: url(../img/grainy4.png);
  content: "";
  height: 300%;
  left: -50%;
  opacity: 0.4;
  position: fixed;
  top: -110%;
  width: 300%;
  z-index: 3;
  pointer-events: none;
}

@keyframes grain {
  0%, 100% { transform:translate(0, 0) }
  10% { transform:translate(-5%, -10%) }
  20% { transform:translate(-15%, 5%) }
  30% { transform:translate(7%, -25%) }
  40% { transform:translate(-5%, 25%) }
  50% { transform:translate(-15%, 10%) }
  60% { transform:translate(15%, 0%) }
  70% { transform:translate(0%, 15%) }
  80% { transform:translate(3%, 35%) }
  90% { transform:translate(-10%, 10%) }
}

.section {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    margin: 0 auto;
    transition: all .6s ease;
}

.section_inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: all .6s ease;

}

.section_1 {
    background: #000;
    height: 100vh;
    overflow: hidden;
    transition: all 2s ease;
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-perspective: 1000;
    perspective: 1000;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.section_1-overlay1 {
    background: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, rgba(1, 1, 1, .5) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, rgba(1, 1, 1, .5) 100%);
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    height: 60vh;
    pointer-events: none;
    transition: all .6s ease;
}
.section_1-overlay2 {
     background: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, rgba(1, 1, 1, 1) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, rgba(1, 1, 1, 1) 100%);
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    height: 20vh;
    pointer-events: none;
    transition: all .6s ease;
}
.section_2-overlay {
    background: -webkit-linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    background: linear-gradient(to top, rgba(1, 1, 1, 0) 0%, rgba(1, 1, 1, 1) 100%);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2;
    height: 360px;
    pointer-events: none;
}
.section_2-under {
    background: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .85) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .85) 100%);
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    height: 240px;
    pointer-events: none;
}
.section-overlay {
    background: -webkit-linear-gradient(to top, rgba(1, 1, 1, 0) 0%, rgba(1, 1, 1, .95) 100%);
    background: linear-gradient(to top, rgba(1, 1, 1, 0) 0%, rgba(1, 1, 1, .95) 100%);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2;
    height: 360px;
    pointer-events: none;
}
.section-under {
    background: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 1) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 1) 100%);
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    height: 30vh;
    pointer-events: none;
}

.trigger-1-top,
.trigger-2-top,
.trigger-3-top,
.trigger-4-top,
.trigger-5-top,
.trigger-6-top  {
    top: 0;
    left: 0;
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.trigger-4-top {
    top: 200px;
}
.trigger-1-m,
.trigger-2-m,
.trigger-3-m,
.trigger-4-m,
.trigger-5-m,
.trigger-6-m {
    bottom: 30%;
    left: 0;
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.trigger-1-center,
.trigger-2-center,
.trigger-3-center,
.trigger-4-center,
.trigger-5-center,
.trigger-6-center {
    top: 50%;
    left: 0;
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.trigger-1-bottom,
.trigger-2-bottom,
.trigger-3-bottom,
.trigger-4-bottom,
.trigger-5-bottom,
.trigger-6-bottom {
    bottom: 15vh;
    left: 0;
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.section_2,
.section_3,
.section_4,
.section_5 {
    background: #010101;
    height: 330vh;
    overflow: hidden;
}


.section_6 {
    background: #010101;
    height: 50px;
    overflow: hidden;
}
.section_1_bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background: url(../img/bg-01.jpg) no-repeat center center;
    background-size: cover;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    pointer-events: none;
    transition: all 1.8s ease;
    z-index: 1;
    will-change: filter;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-perspective: 1000;
    perspective: 1000;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.section_11_bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    opacity: 1;
    background: url(../img/bg-011.jpg) no-repeat center center;
    background-size: cover;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    pointer-events: none;
    transition: all 1s ease;
    z-index: 0;
}
.section_1_bg.blured,
.section_2_bg.blured,
.section_3_bg.blured,
.section_4_bg.blured,
.section_5_bg.blured {

}
.section_2_bg,
.section_3_bg,
.section_4_bg,
.section_5_bg,
.section_6_bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background-size: cover;
    transition: all 1.8s ease;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
    will-change: filter;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-perspective: 1000;
    perspective: 1000;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.section_2_bg {
    background: url(../img/bg-02.jpg) no-repeat top center;
    background-size: cover;
}
.section_3_bg {
    background: url(../img/bg-03.jpg) no-repeat center center;
    background-size: cover;
}
.section_4_bg {
    background: url(../img/bg-04.jpg) no-repeat center center;
    background-size: cover;
}
.section_5_bg {
    background: url(../img/bg-05.jpg) no-repeat center center;
    background-size: cover;
}

.section_22_bg,
.section_33_bg,
.section_44_bg,
.section_55_bg {
    display: none;
    position: absolute;
    top: -40px;
    left: -40px;
    bottom: -40px;
    right: -40px;
    width: calc(100% + 80px);
    height: calc(100% + 80px);
    opacity: 1;
    background-size: cover;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    pointer-events: none;
    transition: all 3s ease;
    z-index: 0;
}
.section_22_bg {
    background: url(../img/bg-022.jpg) no-repeat top center;
    background-size: cover;
}
.section_33_bg {
    background: url(../img/bg-033.jpg) no-repeat center center;
    background-size: cover;
}
.section_44_bg {
    background: url(../img/bg-044.jpg) no-repeat center center;
    background-size: cover;
}
.section_55_bg {
    background: url(../img/bg-055.jpg) no-repeat center center;
    background-size: cover;
}

.fix-content {
    z-index: 2;
}

.bg_blur {
    will-change: filter;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-perspective: 1000;
    perspective: 1000;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.blured {
    transition: all 1.8s;
  -webkit-filter: blur(8px);
  filter: blur(8px);

}

.panel {
  height: 100vh;
}
.line {
  width: 100%;
  max-width: 800px;
  height: 8px;
  margin: 0 0 10px 0;
  position: relative;
  display: inline-block;
  background-color: rgba(255,255,255,1);
}

.secton-contents-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-direction: row;
    height: 100%;
    width: 100%;
    transition: all .6s ease;
}

.secton-contents-outer {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-direction: row;
    flex-shrink: 0;
    width: 100%;
    height: auto;
    z-index: 5;
    max-width: 100%;
    mix-blend-mode: difference;
    transition: all .6s ease;
}
.secton-contents-outer.outer-4 {
}

.secton-contents-outer.is-inview {
    opacity: 1;
}

.secton-contents-outer.fixed-box5 {
  mix-blend-mode: difference;
}
.header-area {
    position: relative;
    width: 100%;
    height: auto;
    transition: all .6s ease;
}
.secton-contents-news {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: row;
  flex-shrink: 0;
  width: 100%;
  height: auto;
  max-height: 100%;
  padding: 0;
  width: 640px;
  max-width: 100%;
  margin: 200px auto 160px;
    transition: all .6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.section-title.news {
position: fixed;
  top: 160px;
  color: #7a6a56;
  font-size: 13px;
  font-family: trajan-pro-3, serif;
  line-height: 1;
  padding-left: 0.4em;
  letter-spacing: .4em;
  width: 100%;
  font-weight: 400;
  margin-bottom: 0;
  z-index: 10;
  left: 0;
  right: 0;
  text-align: center;
}

.secton-contents-inner {
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: row;
  flex-shrink: 0;
  width: 100%;
  height: 100vh;
  padding: 0;
  width: 640px;
  max-width: 100%;
  margin: 0 auto;
    transition: all .6s ease;
        will-change: visibility, opacity;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-perspective: 1000;
    perspective: 1000;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.outer-2, .outer-3, .outer-4, .outer-5, .outer-6, 
.inner-2, .inner-3, .inner-4, .inner-5, .inner-6 {
    transition: opacity .5s ease,visibility .5s ease;

}
.is-active{
    visibility:inherit;
    transition: opacity 1s ease,visibility 1s ease;

} 
.secton-contents-inner.inner-3 {
    width: 720px;
}

.secton-contents-inner.inner-4 {
    width: 100%;
}

.secton-contents-inner.inner-5 {
    width: 800%;
}

.section_padding {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-direction: row;
    flex-shrink: 0;
    width: 100%;
    height: auto;
    margin-bottom: 120px;
}

.section-title {
    color: #7a6a56;
    font-size: 13px;
    font-family: trajan-pro-3, serif;
    line-height: 1;
    padding-left: .4em;
    letter-spacing: .4em;
    width: 100%;
    font-weight: 400;
    margin-bottom: 67px;
}

.section-title.section-2 {
    color: #921a0b;
}

.section-title.section-4 {
    text-align: center;
}

.section-title.section-5 {
    text-align: center;
}

.gosign-wrap {
    position: relative;
    width: 100%;
    height: auto;
    transition: opacity .4s cubic-bezier(0.165, 0.84, 0.44, 1),visibility 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
    will-change: visibility, opacity;

    
}
.gosign-img {
    width: 100%;
    height: 100%;
    padding-top: 90px;
    pointer-events: none;
}

.biography-text-wrap {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 60px;
    pointer-events: none;
}

.biography-text {
    color: #921a0b;
    font-size: 13px;
    font-family: trajan-pro-3, serif;
    line-height: 2;
    letter-spacing: .4em;
    width: 50%;
    height: 30px;
}

.section-title.section-3 {
    text-align: center;
}

.information-wrap {
    position: relative;
    width: 100%;
    height: auto;
}
.news-img-wrap {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 80px;
}
.news-img-wrap img {
    width: 100%;
    max-width: 100%;
    height: auto;
}
.news-contents-wrap {
    position: relative;
    width: 100%;
    height: auto;
}
.news-h2 {
color: #7a6a56;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  width: 100%;
  text-align: left;
  font-weight: 700;
  margin: 60px auto 40px;
    font-family: a-otf-ryumin-pr6n,"游ゴシック Medium","Yu Gothic Medium","游ゴシック体",YuGothic,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
}
.news-p {
    color: #7a6a56;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.1em;
  width: 100%;
  text-align: left;
  font-weight: 400;
  margin: 0 auto 30px;
}

.information-ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-direction: row;
    flex-shrink: 0;
    width: 100%;
    height: auto;
    max-width: 100%;
    list-style: none;
    padding: 0;
    margin: 0 auto 0;
}
.information-li {
    position: relative;
    width: 100%;
    height: auto;
    border-bottom: 1px solid #7a6a56;
    transform: translateX(0) ;
    transform-origin: 0 0;
}

.information-li:nth-child(1) {
  transform: translateX(-10%);
}
.information-li:nth-child(2) {
  transform: translateX(0%);
}
.information-li:nth-child(3) {
  transform: translateX(5%);
}
.information-li:nth-child(4) {
  transform: translateX(10%);
}
.information-li:nth-child(5) {
  transform: translateX(15%);
}
.information-li:nth-child(6) {
  transform: translateX(18%);
}

.information-li-link {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-direction: row;
    flex-shrink: 0;
    width: 100%;
    height: auto;
    max-width: 100%;
    padding: 30px 0 32px;
    transition: all .6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.information-li-link:hover {
      filter: brightness(2);
}
.information-date {
    color: #7a6a56;
    font-size: 13px;
    font-family: trajan-pro-3, serif;
    line-height: 1.5;
    letter-spacing: .4em;
    text-transform: uppercase;
    width: 30%;
}
.information-text {
    color: #7a6a56;
    font-size: 13px;
    font-family: trajan-pro-3, serif;
    line-height: 1.5;
    letter-spacing: .4em;
    text-transform: uppercase;
    width: 70%;
}
.information-more-btn {
    position: relative;
  display: inline-block;
  color: #7a6a56;
  font-size: 13px;
  font-family: trajan-pro-3, serif;
  line-height: 1;
  letter-spacing: .4em;
  width: auto;
  height: auto;
  border: 1px solid #7a6a56;
  padding: 10px 40px 10px 46px;
  margin: 45px 0px 0 auto;
  transition: all .6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.information-more-btn:hover {
      filter: brightness(2);
}
.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 55%;
  width: auto;
  height: auto;
  margin-top: 0;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}  
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0!important;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none!important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-next {
  right: 30px;
  left: auto;
}
.swiper-button-prev {
  right: auto;
  left: 30px;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: '';
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: '';
}

.swiper-button-next .arrow p {
  margin: 0 0 10px;
  padding-left: 5px;
    color: #e3c7a4;
    font-size: 9px;
    font-family: trajan-pro-3, serif;
    line-height: 1;
    letter-spacing: .1em;
    padding-left: 0.1em;
text-align: left;
}
.swiper-button-next .arrow span {
  display: block;
  width: 80px;
  height: 1px;
  background-color: #e3c7a4;
  position: relative;
  transform: scale(0, 1);
    transform-origin: top left;
    animation: arrow01 3s ease infinite forwards;
}
@keyframes arrow01 {
    0% { 
        transform: scale(0, 1);
        opacity: 1;
     }
    30% { 
        transform: scale(1, 1); 
    }
    30.1%, 70% { 
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }
    100% {
        opacity: 0;
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}
.swiper-button-next .arrow span::after {
  content: "";
  display: block;
  width: 4px;
  height: 9px;
  border-right: 1px solid #e3c7a4;
  transform: rotate(-45deg) scale(1, 1);
  transform-origin: right bottom;
  position: absolute;
  bottom: 2px;
  right: 1px;
}

.swiper-button-prev .arrow p {
  margin: 0 0 10px;
  padding-left: 5px;
    color: #e3c7a4;
    font-size: 9px;
    font-family: trajan-pro-3, serif;
    line-height: 1;
    letter-spacing: .1em;
    padding-left: 0.1em;
    text-align: right;
}
.swiper-button-prev .arrow span {
  display: block;
  width: 80px;
  height: 1px;
  background-color: #e3c7a4;
  position: relative;
  transform: scale(0, 1);
    transform-origin: top right;
    animation: arrow02 3s ease infinite forwards;
}
@keyframes arrow02 {
    0% { 
        transform: scale(0, 1);
        opacity: 1;
     }
    30% { 
        transform: scale(1, 1); 
    }
    30.1%, 70% { 
        transform: scale(1, 1);
        transform-origin: 100% 0;
    }
    100% {
        opacity: 0;
        transform: scale(1, 0);
        transform-origin: 100% 0;
    }
}
.swiper-button-prev .arrow span::after {
  content: "";
  display: block;
  width: 4px;
  height: 9px;
  border-right: 1px solid #e3c7a4;
  transform: rotate(45deg) scale(1, 1);
  transform-origin: left bottom;
  position: absolute;
  bottom: 4px;
  left: 0px;
}


.gallery-swiper {
    margin-bottom: 80px;
}

.gallery-swiper .swiper-slide {
    width: 100%;
    max-width: 100%;

}
.slide-iframe {
    position: relative;
    width: 100%;
    padding: calc(315 / 560 * 100%) 0 0;
}
.slide-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

.gallery-img {
    width: 100%;
    height: auto;
    max-width: 100%;

}

.fanclub-wrap {
    position: relative;
  width: 640px;
  max-width: 100%;
  height: auto;
  margin: 80px auto 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
  flex-shrink: 0;
}

.fanclub-link {
    position: relative;
    width: 100%;
    height: auto;
    display: inline-block;
    transition: all .5s cubic-bezier(0.165, 0.84, 0.44, 1); 
}

.coming-soon-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    color: #7a6a56;
    font-size: 40px;
    font-family: trajan-pro-3, serif;
    line-height: 1;
    letter-spacing: .4em;
    width: 100%;
    padding-left: 0.4em;
    transition: all .5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2;
    opacity: 0; 
}

.fanclub-link:hover .coming-soon-text {
    opacity: 1;
}

.fanclub-img {
    width: 100%;
    height: auto;
    opacity: 1;
    transition: all .5s cubic-bezier(0.165, 0.84, 0.44, 1); 
    pointer-events: none;
}

.fanclub-link:hover .fanclub-img {
  filter: brightness(0.1);
}


.content {
    position: relative;
    width: 100%;
    height: 100%;
}

.flex {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-direction: row;
    flex-shrink: 0;
}

.flex_column {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-direction: column;
    flex-shrink: 0;
}

.gm-logo {
    opacity: 0;
    position:fixed;
    width: 100%;
    top: 40px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
    flex-shrink: 0;
    flex-wrap: wrap;
    z-index: 10;
    mix-blend-mode: difference;
    transition: all .6s ease;
/*    pointer-events: none;*/
    will-change: visibility, opacity;
}

.gm-logo.in-head {
    display: flex;
    opacity: 1;
}

.gm-logo-link {
    position: relative;
    display: inline-block;
    width: 240px;
    height: auto;
}
.gm-logo-img {
    width: 100%;
    height: auto;
}


.titlelogo-wrap {
    position: fixed;
    width: 100%;
    top: 100px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
    flex-shrink: 0;
    flex-wrap: wrap;
    z-index: 7;
    mix-blend-mode: difference;
    pointer-events: none;
    will-change: visibility, opacity;
    transition: all .6s cubic-bezier(0.165, 0.84, 0.44, 1);

}

.titlelogo-box {
    width: 80%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
    flex-shrink: 0;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 100%;
    transition: all .6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.titlelogo-main {
    font-family: trajan-pro-3, serif;
    font-weight: 700;
    font-style: normal;
    font-size: 14rem;
    line-height: 1.3;
    color: #7a6a56;
    position: relative;
    padding-left: 9.4rem;
    letter-spacing: 9.4rem;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
}
.titlelogo-desc {
    color: #7a6a56;
    font-size: 23px;
    font-family: trajan-pro-3, serif;
    line-height: 1;
    letter-spacing: .7em;
    padding-left: 0.7em;
    text-transform: uppercase;
    margin-top: 75px;
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.moss-logo {
    min-width: 80px;
    width: 120px;
    max-width: 120px;
    height: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all .9s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: fixed;
    top: 30px;
    left: 30px;
    opacity: 1;
    z-index: 15;
    mix-blend-mode: difference;
}

.moss-logo-link {
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    height: 100%;
    pointer-events: auto;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}
.moss-logo-img {
    width: 100%;
    height: auto;
    opacity: 1;
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.moss-logo-bg {
    width: 120px;
    height: 120px;
    opacity: 1;
    background: url(../img/moss-logo.svg) no-repeat center center;
    background-size: cover;
    opacity: .5;
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-perspective: 1000;
    perspective: 1000;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all .1s ease-out;
}

.moss-logo-img.first-date {
    margin-top: 8px;
}

.shop-link-box {
    position: fixed;
    right: 420px;
    bottom: 30px;
    transform-origin: 100% 100%;
    z-index: 20;
    mix-blend-mode: difference;
}
.shop-link {
    overflow: hidden;
    color: #7a6a56;
    font-size: 13px;
    font-family: trajan-pro-3, serif;
    line-height: 1;
    letter-spacing: .3em;
    padding-left: .3em;
    text-decoration: none;
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.shop-link::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: '';
  width: 0;
  height: 1px;
  background-color: #7a6a56;
  transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.shop-link:hover {
filter: brightness(2);
}
.shop-link:hover::after {
  width: 100%;
}


.sns-link-box {
    position: fixed;
    right: 240px;
    bottom: 30px;
    transform-origin: 100% 100%;
    z-index: 20;
    mix-blend-mode: difference;
}
.sns-link {
    overflow: hidden;
    color: #7a6a56;
    font-size: 13px;
    font-family: trajan-pro-3, serif;
    line-height: 1;
    letter-spacing: .3em;
    padding-left: .3em;
    text-decoration: none;
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.sns-link::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: '';
  width: 0;
  height: 1px;
  background-color: #7a6a56;
  transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.sns-link:hover {
filter: brightness(2);
}
.sns-link:hover::after {
  width: 100%;
}


.contact-link-box {
    position: fixed;
  right: 30px;
  bottom: 30px;
    transform-origin: 100% 100%;
    z-index: 20;
    mix-blend-mode: difference;
}
.contact-link {
    overflow: hidden;
    color: #7a6a56;
    font-size: 13px;
    font-family: trajan-pro-3, serif;
    line-height: 1;
    padding-left: .3em;
    letter-spacing: .3em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.contact-link:hover {
filter: brightness(2);
}

.contact-link::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: '';
  width: 0;
  height: 1px;
  background-color: #7a6a56;
  transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.sns-link:hover {
filter: brightness(2);
}
.contact-link:hover::after {
  width: 100%;
}

.scroll-down-wrap {
  position: fixed;
  width: 60px;
  height: 130px;
  z-index: 10;
  bottom: 0;
  left: 0px;
  transform: rotateZ(180deg);
  transform-origin: center center;
    transition: all .3s ease;
    will-change: transform, opacity;

}
.next-1 {
    z-index: 40;
}
.next-2, .next-3, .next-4, .next-5, .next-6 {
    opacity: 0;
    visibility: hidden;
    z-index: 30;
    pointer-events: auto;
    transition: all .5s ease;
}
.next-2 {z-index: 30;}
.next-3 {z-index: 32;}
.next-4 {z-index: 34;}
.next-5 {z-index: 36;}
.next-6 {z-index: 38;} 

a.scroll-down-link {
    position: relative;
  display: inline-block;
  z-index: 2;
  color: #7a6a56;
  font-size: 12px;
  font-family: trajan-pro-3, serif;
  line-height: 1;
  letter-spacing: .3em;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;
  overflow: hidden;
    width: 100%;
  height: 100%;
}
.next-22, .next-33, .next-44, .next-55, .next-66 {
    transition: all .5s ease;
}
.btn__text {
  position: absolute;
  left: 15px;
  top: 35px;
  display: block;
  height: 100%;
  width: 100%;
  color: #7a6a56;
  font-size: 12px;
  font-family: trajan-pro-3, serif;
  line-height: 1;
  letter-spacing: .3em;
  transition: all 0.3s;
}

/* ボタンのテキスト(デフォルトのテキスト) */
.btn__text:nth-child(1) {
    left: 15px;
    opacity: 1;
}

/* ボタンのテキスト(隠れているテキスト) */
.btn__text:nth-child(2) {
  left: 15px;
  opacity: 0;
}

/* ボタンホバーアクション */
.scroll-down-link:hover .btn__text:nth-child(1) {
  left: 15px;
  opacity: 0;
}

.scroll-down-link:hover .btn__text:nth-child(2) {
  left: 15px;
  opacity: 1;
}

a.scroll-down-link::after {
  content: '';
  position: absolute;
  top: 0px;
  left:5px;
  width: 1px;
  height: 130px;
  background: #7a6a56;
}
a.scroll-down-link::after {
  animation: scroll-anime 2s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes scroll-anime {
  0% {
    opacity: 1;
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  30% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  30.1%, 70% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    opacity: 0;
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.scroll-up-wrap {
    opacity: 0;
  visibility: hidden;
  position: fixed;
  width: 50px;
  height: 50px;
  z-index: 50;
  bottom: 0;
  left: 25px;
  transition: all .5s ease;
  transform: rotate( 
270deg);
  transform-origin: center center;
  mix-blend-mode: difference;
}
.scroll-up-link {
    width: 100%;
    height: auto;
    display: inline-block;
    transition: all .5s ease;
}
.scroll-up-link:hover {
      filter: brightness(1.5);
}

a.scroll-up-link p {
  margin: 0 0 10px;
  padding-left: 5px;
  color: #7a6a56;
  font-size: 12px;
  font-family: trajan-pro-3, serif;
  line-height: 1;
  letter-spacing: .1em;
  padding-left: 35px;
  text-align: left;
  padding-right: 20px;
}
a.scroll-up-link span {
  display: block;
  width: 120px;
  height: 1px;
  background-color: #7a6a56;
  position: relative;
  transform: scale(0, 1);
  transform-origin: top left;
  animation: arrow01 3s ease infinite forwards;
}

.scroll-up-link:hover span {
      filter: brightness(2);
}

a.scroll-up-link span::after {
  content: "";
  display: block;
  width: 4px;
  height: 9px;
  border-right: 1px solid #7a6a56;
  transform: rotate(-45deg) scale(1, 1);
  transform-origin: right bottom;
  position: absolute;
  bottom: 1px;
  right: 1px;
}
















.copyright {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
}


.copyright-text {
    overflow: hidden;
    color: #7a6a56;
    font-size: 11px;
    font-family: trajan-pro-3, serif;
    line-height: 1;
    letter-spacing: .2em;
    text-align: center;
    padding: 0 30px 35px;
}



/*# modal   min-height: calc(var(--vh, 1vh) * 100);　*/
.modal {
  position: fixed;
  display: flex;
  align-items: center;
  width: 100vw;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border: none;
  opacity: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 1);
  transition: all .2s ease;
}
.modal .btn-inner {
  margin-top: 23.5px;
}

.modal-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 1);
  z-index: 1;
}

.modal-outer {
    position: relative;
    width: 100vw;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    transition: all .5s ease;
}

.modal-inner {
  width: 100vw;
  max-width: 800px;
  height: auto;
  max-height: 100%;
  margin: 0 auto;
  padding: 30px;
  overflow-y: auto;
  z-index: 1;
}

.modal-list-logo {
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 25px;
  text-align: center;
}
.modal-list-logo p {
  margin-top: 15px;
  font-size: 1.2rem;
}

.modal-title {
    display: block;
    color: #7a6a56;
    font-size: 18px;
    font-family: trajan-pro-3, serif;
    line-height: 1;
    letter-spacing: .4em;
    text-align: center;
    padding: 0px;
}

.modal-content {
    display: flex;
    align-items: center;
    position: relative;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

.modal-sns-link {
    position: relative;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    transition: all .5s cubic-bezier(0.165, 0.84, 0.44, 1);

}
.modal-sns-img {
    width: 100%;
    height: auto;
    max-width: 240px;
    transition: all .5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.modal-sns-link:hover .modal-sns-img {
      filter: brightness(2);
}

.modal-contact-link {
    position: relative;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    margin: 10px auto;
    transition: all .5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.modal-contact-img {
    width: 100%;
    height: auto;
    max-width: 320px;
    transition: all .5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.modal-contact-link:hover .modal-contact-img {
      filter: brightness(2);
}

.modal-close-wrap {
position: absolute;
  bottom: 28px;
  right: 210px;
  width: 100px;
  z-index: 30;
}

.modal-close-wrap.close-contact {
  bottom: 28px;
  right: 32px;
}

.modal-close-btn {
    position: relative;
    display: inline-block;
    width: 100%;
    height: auto;
}

.modal-close-img {
    width: 100%;
    height: auto;
    transition: all .5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.modal-close-btn:hover .modal-close-img{
    filter: brightness(2);
}

.modal.is-open {
  animation: modal_open 0.5s ease forwards;
}
.modal.is-open .modal-inner {
  animation: modal_inner_open 0.5s ease forwards;
}
.modal.is-close {
  animation: modal_close 0.9s ease forwards;
}
.modal.is-close .modal-inner {
  animation: modal_inner_close 0.9s ease forwards;
}

@keyframes modal_open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    z-index: 10000;
  }
}
@keyframes modal_inner_open {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes modal_close {
  0% {
    z-index: 10000;
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes modal_inner_close {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
    opacity: 0;
  }
}

.gallery-swiper .swiper-slide {
    padding: 0 20px;
}
.slide-gif-wrap {
    position: relative;
    width: 100%;
    height: auto;
    min-width: 720px;
    max-width: 100%;
    display: block;
    opacity: 1;
    background: url(../img/gallery-sample1.jpg) no-repeat center center;
    background-size: cover;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-slide .gallery-img-gif {
    width: 100%;
    height: 100%;
    opacity: 1;
    display: block;
    mix-blend-mode: difference;
    transition: all .4s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.swiper-slide .gallery-img-gif img {
    width: 100%;
    height: auto;
    pointer-events: none;
}
.swiper-slide:hover .gallery-img-gif {
opacity: 0;
}

.swiper-slide:hover.gallery-img-gif img {
opacity: 0;
}


.swiper-slide .gallery-img-gif-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    display: block;
    mix-blend-mode: difference;
    transition: all .4s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.swiper-slide .gallery-img-gif-hover img {
    width: 100%;
    height: auto;
    pointer-events: none;
}
.swiper-slide:hover .gallery-img-gif-hover {
    opacity: 1;
}

.swiper-slide .gallery-img-title {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    display: block;
    mix-blend-mode: difference;
    transition: all .4s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.swiper-slide .gallery-img-title img {
    width: 100%;
    height: auto;
}
.swiper-slide:hover .gallery-img-title {
    opacity: 1;
}


svg {
    width: 100%;
    height: 100%;
    fill: inherit;
    overflow: hidden;
    vertical-align: middle;
}
.sns_icon {
    width: 20px;
    height: 20px;
    fill: #fff;
}
img[src$=".svg"].sns_icon {
    width: 100%;
    height: 100%;
    fill: #fff;
}
.footer_sns .sns_link a:hover {
    opacity: .6;
}


@supports (-webkit-touch-callout: none) {
  body {
    height: -webkit-fill-available;
  }
}
@media screen and (max-width: 1024px) {
.section {
    min-width: 100%;
}
}

@media screen and (max-width: 768px) {
.gm-logo {
    top: 24px;
}
.section {
    min-width: 100%;
}
.moss-logo {
    width: 20%;
    min-width: 60px;
    max-width: 60px;
    top: 20px;
    left: 20px;
}
.moss-logo-bg {
    width: 60px;
    height: 60px;
    opacity: 1;
    background: url(../img/moss-logo.svg) no-repeat center center;
    background-size: cover;
    opacity: .5;
}
.titlelogo-wrap {
    top: 150px;
    }
.gm-logo-link {
    width: 140px;
}
.shop-link-box {
    right: 200px;
    bottom: 30px;
}
.sns-link-box {
    right: 130px;
    bottom: 30px;
}
.sns-link {
    font-size: 11px;
}
.contact-link-box {
    position: fixed;
    right: 20px;
    bottom: 30px;
}
.contact-link {
    font-size: 11px;
}

.titlelogo-main {
    font-size: 2.8em;
    line-height: 1.3;
    padding-left: 0.5em;
    letter-spacing: 0.5em;
    margin-top: 50%;
}
.titlelogo-desc {
    font-size: 15px;
    line-height: 1;
    letter-spacing: .7em;
    padding-left: .7em;
    margin-top: 45px;
}
.section_1 {
    height: 100vh;
    overflow: hidden;
}
.section_2, .section_3, .section_4, .section_5 {
    background: #020202;
    height: 190vh;
}
.section_3 {
    height: 190vh;
}
.section_4 {
    height: 180vh;
}

.secton-contents-inner {
    padding: 0 40px 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    opacity: 0;
}
.gosign-wrap {
    margin-top: 0px;
}
.biography-text-wrap {
    margin-top: 60px;
}
.biography-text {
    font-size: 13px;
    line-height: 2;
    letter-spacing: .4em;
    width: 100%;
}
.secton-contents-inner.inner-3 {
    width: 100%;
    margin: 0 auto;

}
.information-li-link {
    justify-content: space-between;
    padding: 15px 0 17px;
}
.information-ul {
    width: 92%;
}
.information-date {
    font-size: 9px;
    line-height: 1.4;
    letter-spacing: 0em;
    width: 22%;
}
.information-text {
    font-size: 10px;
    line-height: 1.4;
    letter-spacing: 0em;
    width: 76%;
}
.information-li:nth-child(1) {
    transform: translateX(-3%);
}
.information-li:nth-child(2) {
    transform: translateX(0%);
}
.information-li:nth-child(3) {
    transform: translateX(3%);
}
.information-li:nth-child(4) {
    transform: translateX(5%);
}
.information-li:nth-child(5) {
    transform: translateX(10%);
}
.information-more-btn {
font-size: 10px;
  letter-spacing: .3em;
  border: 1px solid #7a6a56;
  padding: 9px 28px 9px 30px;
  margin: 30px 20px 0 auto;
}
.secton-contents-inner.inner-4 {
    width: 100%;
    padding: 0;
}
.gallery-swiper {
    margin-top: 50px;
}
.swiper-slide {
    max-width: 100%;
    padding: 0;
    /* padding: 0 20; */
}
.gallery-img {
    width: 100%;
    height: auto;
}
.section_6 {
    background: #010101;
    height: 50px;
}
.modal-contact-link {
    padding: 0;
}
.modal-close-wrap {
  bottom: 28px;
  right: 105px;
  width: 100px;
}
.modal-close-wrap.close-contact {
    bottom: 28px;
    right: 18px;
}
.copyright-text {
    text-align: right;
    font-size: 8px;
    letter-spacing: .1em;
    padding: 0 20px 5px;
}
.coming-soon-text {
    font-size: 22px;
    letter-spacing: .3em;
    padding-left: 0.3em;
}
.swiper-button-next .arrow span {
    width: 60px;
}
.swiper-button-prev .arrow span {
    width: 60px;
}

.arrow p {
  margin: 0 0 10px;
  padding-left: 5px;
  color: #7a6a56;
  font-size: 9px;
  line-height: 1;
  letter-spacing: .1em;
  padding-left: 0.1em;
}
.arrow span {
  width: 60px;
  height: 1px;
}
.swiper-button-next {
  right: 10px;
  left: auto;
}
.swiper-button-prev {
  right: auto;
  left: 10px;
}

.scroll-down-wrap {
  left: -10px;
}

.scroll-up-wrap {
  left: 10px;
}

a.scroll-up-link p {
  font-size: 10px;
}

.fanclub-wrap {
    margin: 0 auto 0;
    width: 100%;
}
.secton-contents-inner.inner-5 {
    margin: 0 auto;
}

.section-title {
    margin-bottom: 47px;
}

.gosign-img {
    padding-top: 70px;
}

.biography-text {
  font-size: 13px;
  line-height: 1;
  letter-spacing: .3em;
  height: 20px;
}

.scroll-down-wrap {
    left: -14px;
}
a.scroll-down-link {
  font-size: 10px;
  letter-spacing: .1em;
}
.btn__text {
  left: 15px;
  top: 35px;
  font-size: 10px;
  letter-spacing: .2em;
}

}

@media screen and (max-width: 860px) {

}

@media screen and (max-width: 540px) {

}
@media screen and (max-height: 667px) {
.section_2, .section_3, .section_4, .section_5 {
  height: 230vh;
}
}
@media screen and (max-width: 340px) {

}

@media screen and (max-width: 280px) {

}



/*# sal.css */
[data-sal]{transition-delay:0s;transition-delay:var(--sal-delay,0s);transition-duration:.2s;transition-duration:var(--sal-duration,.2s);transition-timing-function:ease;transition-timing-function:var(--sal-easing,ease)}[data-sal][data-sal-duration="200"]{transition-duration:.2s}[data-sal][data-sal-duration="250"]{transition-duration:.25s}[data-sal][data-sal-duration="300"]{transition-duration:.3s}[data-sal][data-sal-duration="350"]{transition-duration:.35s}[data-sal][data-sal-duration="400"]{transition-duration:.4s}[data-sal][data-sal-duration="450"]{transition-duration:.45s}[data-sal][data-sal-duration="500"]{transition-duration:.5s}[data-sal][data-sal-duration="550"]{transition-duration:.55s}[data-sal][data-sal-duration="600"]{transition-duration:.6s}[data-sal][data-sal-duration="650"]{transition-duration:.65s}[data-sal][data-sal-duration="700"]{transition-duration:.7s}[data-sal][data-sal-duration="750"]{transition-duration:.75s}[data-sal][data-sal-duration="800"]{transition-duration:.8s}[data-sal][data-sal-duration="850"]{transition-duration:.85s}[data-sal][data-sal-duration="900"]{transition-duration:.9s}[data-sal][data-sal-duration="950"]{transition-duration:.95s}[data-sal][data-sal-duration="1000"]{transition-duration:1s}[data-sal][data-sal-duration="1050"]{transition-duration:1.05s}[data-sal][data-sal-duration="1100"]{transition-duration:1.1s}[data-sal][data-sal-duration="1150"]{transition-duration:1.15s}[data-sal][data-sal-duration="1200"]{transition-duration:1.2s}[data-sal][data-sal-duration="1250"]{transition-duration:1.25s}[data-sal][data-sal-duration="1300"]{transition-duration:1.3s}[data-sal][data-sal-duration="1350"]{transition-duration:1.35s}[data-sal][data-sal-duration="1400"]{transition-duration:1.4s}[data-sal][data-sal-duration="1450"]{transition-duration:1.45s}[data-sal][data-sal-duration="1500"]{transition-duration:1.5s}[data-sal][data-sal-duration="1550"]{transition-duration:1.55s}[data-sal][data-sal-duration="1600"]{transition-duration:1.6s}[data-sal][data-sal-duration="1650"]{transition-duration:1.65s}[data-sal][data-sal-duration="1700"]{transition-duration:1.7s}[data-sal][data-sal-duration="1750"]{transition-duration:1.75s}[data-sal][data-sal-duration="1800"]{transition-duration:1.8s}[data-sal][data-sal-duration="1850"]{transition-duration:1.85s}[data-sal][data-sal-duration="1900"]{transition-duration:1.9s}[data-sal][data-sal-duration="1950"]{transition-duration:1.95s}[data-sal][data-sal-duration="2000"]{transition-duration:2s}[data-sal][data-sal-delay="50"]{transition-delay:.05s}[data-sal][data-sal-delay="100"]{transition-delay:.1s}[data-sal][data-sal-delay="150"]{transition-delay:.15s}[data-sal][data-sal-delay="200"]{transition-delay:.2s}[data-sal][data-sal-delay="250"]{transition-delay:.25s}[data-sal][data-sal-delay="300"]{transition-delay:.3s}[data-sal][data-sal-delay="350"]{transition-delay:.35s}[data-sal][data-sal-delay="400"]{transition-delay:.4s}[data-sal][data-sal-delay="450"]{transition-delay:.45s}[data-sal][data-sal-delay="500"]{transition-delay:.5s}[data-sal][data-sal-delay="550"]{transition-delay:.55s}[data-sal][data-sal-delay="600"]{transition-delay:.6s}[data-sal][data-sal-delay="650"]{transition-delay:.65s}[data-sal][data-sal-delay="700"]{transition-delay:.7s}[data-sal][data-sal-delay="750"]{transition-delay:.75s}[data-sal][data-sal-delay="800"]{transition-delay:.8s}[data-sal][data-sal-delay="850"]{transition-delay:.85s}[data-sal][data-sal-delay="900"]{transition-delay:.9s}[data-sal][data-sal-delay="950"]{transition-delay:.95s}[data-sal][data-sal-delay="1000"]{transition-delay:1s}[data-sal][data-sal-easing=linear]{transition-timing-function:linear}[data-sal][data-sal-easing=ease]{transition-timing-function:ease}[data-sal][data-sal-easing=ease-in]{transition-timing-function:ease-in}[data-sal][data-sal-easing=ease-out]{transition-timing-function:ease-out}[data-sal][data-sal-easing=ease-in-out]{transition-timing-function:ease-in-out}[data-sal][data-sal-easing=ease-in-cubic]{transition-timing-function:cubic-bezier(.55,.055,.675,.19)}[data-sal][data-sal-easing=ease-out-cubic]{transition-timing-function:cubic-bezier(.215,.61,.355,1)}[data-sal][data-sal-easing=ease-in-out-cubic]{transition-timing-function:cubic-bezier(.645,.045,.355,1)}[data-sal][data-sal-easing=ease-in-circ]{transition-timing-function:cubic-bezier(.6,.04,.98,.335)}[data-sal][data-sal-easing=ease-out-circ]{transition-timing-function:cubic-bezier(.075,.82,.165,1)}[data-sal][data-sal-easing=ease-in-out-circ]{transition-timing-function:cubic-bezier(.785,.135,.15,.86)}[data-sal][data-sal-easing=ease-in-expo]{transition-timing-function:cubic-bezier(.95,.05,.795,.035)}[data-sal][data-sal-easing=ease-out-expo]{transition-timing-function:cubic-bezier(.19,1,.22,1)}[data-sal][data-sal-easing=ease-in-out-expo]{transition-timing-function:cubic-bezier(1,0,0,1)}[data-sal][data-sal-easing=ease-in-quad]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-sal][data-sal-easing=ease-out-quad]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-sal][data-sal-easing=ease-in-out-quad]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-sal][data-sal-easing=ease-in-quart]{transition-timing-function:cubic-bezier(.895,.03,.685,.22)}[data-sal][data-sal-easing=ease-out-quart]{transition-timing-function:cubic-bezier(.165,.84,.44,1)}[data-sal][data-sal-easing=ease-in-out-quart]{transition-timing-function:cubic-bezier(.77,0,.175,1)}[data-sal][data-sal-easing=ease-in-quint]{transition-timing-function:cubic-bezier(.755,.05,.855,.06)}[data-sal][data-sal-easing=ease-out-quint]{transition-timing-function:cubic-bezier(.23,1,.32,1)}[data-sal][data-sal-easing=ease-in-out-quint]{transition-timing-function:cubic-bezier(.86,0,.07,1)}[data-sal][data-sal-easing=ease-in-sine]{transition-timing-function:cubic-bezier(.47,0,.745,.715)}[data-sal][data-sal-easing=ease-out-sine]{transition-timing-function:cubic-bezier(.39,.575,.565,1)}[data-sal][data-sal-easing=ease-in-out-sine]{transition-timing-function:cubic-bezier(.445,.05,.55,.95)}[data-sal][data-sal-easing=ease-in-back]{transition-timing-function:cubic-bezier(.6,-.28,.735,.045)}[data-sal][data-sal-easing=ease-out-back]{transition-timing-function:cubic-bezier(.175,.885,.32,1.275)}[data-sal][data-sal-easing=ease-in-out-back]{transition-timing-function:cubic-bezier(.68,-.55,.265,1.55)}[data-sal|=fade]{opacity:0;transition-property:opacity}[data-sal|=fade].sal-animate,body.sal-disabled [data-sal|=fade]{opacity:1}[data-sal|=slide]{opacity:0;transition-property:opacity,transform}[data-sal=slide-up]{transform:translateY(20%)}[data-sal=slide-down]{transform:translateY(-20%)}[data-sal=slide-left]{transform:translateX(20%)}[data-sal=slide-right]{transform:translateX(-20%)}[data-sal|=slide].sal-animate,body.sal-disabled [data-sal|=slide]{opacity:1;transform:none}[data-sal|=zoom]{opacity:0;transition-property:opacity,transform}[data-sal=zoom-in]{transform:scale(.5)}[data-sal=zoom-out]{transform:scale(1.1)}[data-sal|=zoom].sal-animate,body.sal-disabled [data-sal|=zoom]{opacity:1;transform:none}[data-sal|=flip]{-webkit-backface-visibility:hidden;backface-visibility:hidden;transition-property:transform}[data-sal=flip-left]{transform:perspective(2000px) rotateY(-91deg)}[data-sal=flip-right]{transform:perspective(2000px) rotateY(91deg)}[data-sal=flip-up]{transform:perspective(2000px) rotateX(-91deg)}[data-sal=flip-down]{transform:perspective(2000px) rotateX(91deg)}[data-sal|=flip].sal-animate,body.sal-disabled [data-sal|=flip]{transform:none}
@media all and (-ms-high-contrast: none){
    [data-sal|=fade],
    [data-sal|=fade].sal-animate {
      opacity: 1!important;
    }
}

.secton-contents-inner.section-contact {
    width: 800px;

}

.contact-form-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-top: 40px;
    background: #eeeeee;
    padding: 60px;
}
.section-title.section-contact {
    text-align: center;
}

.contact-form-desc {
    color: #7a6a56;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .3em;
    width: 100%;
    text-align: center;
    font-family: a-otf-ryumin-pr6n,YuGothic, "Yu Gothic", 游ゴシック体, 游ゴシック, "Hiragino Kaku Gothic Pro", メイリオ, sans-serif;
    margin-bottom: 30px;
}

.contact-form-main {
    border-top: 1px solid #7a6a56;
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 40px 0;
}

form {
    width: 100%;
}

.form-ul {
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}
.form-li {
    padding: 25px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.form-li.start {
    align-items: flex-start;
}
.form-li label {
    color: #7a6a56;
    margin-bottom: 0;
    text-align: left;
    width: 30%;
    position: relative;
    font-size: 14px;
    letter-spacing: .3em;
}
.form-li label span {
    display: inline-block;
    font-size: 14px;
    padding-left: 12px;
}
form > div > div > p {
    width: 405px;
    float: left;
    margin: 0 15px;
}

form > div input[type=text], form > div input[type=email], form > div textarea, form > div select {
    display: block;
    min-width: 60%;
    max-width: 60%;
    height: 50px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    background-color: #fff;
    border: 1px solid #7a6a56;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    margin: 0;
    font-family: a-otf-ryumin-pr6n,YuGothic, "Yu Gothic", 游ゴシック体, 游ゴシック, "Hiragino Kaku Gothic Pro", メイリオ, sans-serif;
}
.form-li textarea {
    height: auto;
min-height: 240px;
}
input[type=radio] {
    margin-right: 10px;
    margin-top: 0;

}

.form-radio {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    width: 60%;
}
.form-radio-title {
    width: 100%;
    font-size: 14px;
    letter-spacing: .1em;
    margin-bottom: 20px;
}
.form-radio-p {
    width: 50%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    letter-spacing: .1em;
}

.container label + div {
    width: 75%;
    float: left;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.form-btn-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

button.contact-btn {
    padding: 16px 20px;
    font-size: 13px;
    cursor: pointer;
    border-radius: 50px;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    border: none;
    color: #ffffff;
    background: #000;
    font-size: 13px;
    letter-spacing: .2em;
    width: 180px;
        margin-top: 60px;
}
button.contact-btn:hover {
    background: #07a6a56;
}

body > div > a > button {
    margin-left: 0;
    margin: 0 auto;
    display: block;
}
a + button {
    margin-left: 20px
}
a {
    text-decoration: none;
}
a:focus, a:hover {
    outline: none;
    text-decoration: none;
}
input::-webkit-input-placeholder {
    color:   #777;
}

input[type=button] {
    padding: 10px 13px 11px;
    font-size: 18px;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    border-radius: 4px;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    border: 1px solid #c3c3c3;
    color: #7c7c7c;
    background: #ffffff;
    text-shadow: 0px 1px 1px rgba(0,0,0,0.13);
    -moz-box-shadow: 0px 1px 1px rgba(0,0,0,0.28);
    -webkit-box-shadow: 0px 1px 1px rgba(0,0,0,0.28);
    box-shadow: 0px 1px 1px rgba(0,0,0,0.28);
    margin-left: 180px;
    margin-right: 25px;
}
input[type=button] + button {
    display: inline-block;
}
input + div, select + div, textarea + div {
    float: right;
    width: 420px;
    color: red;
    margin-bottom: -10px;
}
.error-form {
    border-color: #fb9a93 !important;
}

@media screen and (max-width: 768px) {

.secton-contents-inner.section-contact {
    width: 100%;
    margin: 120px auto 0;
}
.contact-form-main {
    padding: 20px 0 60px;
}
.contact-form-wrap {
    margin-top: 30px;
    padding: 20px;
}
.secton-contents-inner {
    padding: 0 20px 0;
}
.secton-contents-inner.inner-2 {
    padding: 0 45px 0;
}
.contact-form-desc {
    text-align: left;
    font-size: 13px;
    letter-spacing: .2em;
    text-align: left;
    margin-bottom: 20px;
}
.form-li {
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}
.form-li label {
    width: 100%;
    font-size: 14px;
    letter-spacing: .3em;
    margin-bottom: 5px;
}
form > div input[type=text], form > div input[type=email], form > div textarea, form > div select {
    display: block;
    min-width: 100%;
    max-width: 60%;
    height: 50px;
    padding: 6px 12px;
    font-size: 14px;
}
.form-radio {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}
.form-radio-p {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    letter-spacing: .1em;
    padding: 5px 0;
}
.form-btn-box {
    margin-top: 30px;
}
button.contact-btn {
    margin-top: 30px;
}

.header-contact-title {
    top: 110px;
}
.header-black {
    height: 140px;
}

.section_2-under {
    height: 240px;
}
.section-overlay {
  height: 130px;
}
.secton-contents-news {
  padding: 0 40px 0;
  width: 100%;
  max-width: 100%;
  margin: 160px auto;
}
.section-title.news {
  top: 100px;
  font-size: 12px;
  padding-left: 0.2em;
  letter-spacing: .2em;
}
.news-img-wrap {
  margin-top: 0;
}
.news-h2 {
  font-size: 18px;
  line-height: 1.6;
  margin: 40px auto 20px;
}
.news-p {
  font-size: 13px;
  margin: 0px auto 20px;
}

.header-black {
  background: -webkit-linear-gradient(to top, rgb(0 0 0 / 0%) 1%, rgba(0,0,0, 1) 18%,rgba(0,0,0, 1) 100%);
  background: linear-gradient(to top, rgb(0 0 0 / 0%) 1%, rgba(0,0,0, 1) 18%,rgba(0,0,0, 1) 100%);
}

.slide-gif-wrap {
  position: relative;
  width: 100%;
  height: auto;
  min-width: 100%;
  max-width: 100%;
}


}









