@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Noto+Serif+JP:wght@400;700&display=swap');

* {
  box-sizing: border-box;
}
html,body {}
body {
  font-family: yu-mincho-pr6n,/*"Yu Mincho", "游明朝", "YuMincho", "游明朝体";*/ sans-serif;
  font-weight: 400;
  font-style: normal;

  width: 100%;
  margin: auto;
  color: #707070;
  overflow-x: hidden;
  opacity: 0;
}

a {
  color: #333;
}
img {
  max-width: 100%;
}
::selection {
  background: rgba(0,0,0,.5);
  color: #fff;
}


.inner_wrap {
  margin: 0 auto;
}


.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1ch;
}

@media screen and (max-width: 767px) { /* sp */
  
  html {
    font-size: 62.5%;
  }
  body {
    /* padding-bottom: 50px; */
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  main {
    /* margin-top: 60px; */
  }
  .inner_wrap {
    /* width: 92%; */
    width: 89.3%;
  }
  .menu_btn {
    display: block;
  }


}

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

  body {
    font-size: 14px;
  }
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
  main {}
  .common_inner.inner_wrap {
    width: 94.07%;
    max-width: 1204px;
  }
  .inner_wrap {
    width: 91.57%;
    max-width: 1172px;
  }

  .menu_btn {
    visibility: hidden;
    display: none;
  }



}






main.active header {
  display: block;
}
header {
  position: absolute;
  z-index: 9;
  top: 0;
  width: 100%;
  display: none;
}
header .logo_wrap {}
header .nav_list {}
header .nav_list a {
  display: block;
  position: relative;
  color: #fff;
}




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

  header {
    position: fixed;
    z-index: 5;
    width: 100%;
    /* background: #fff; */
  }
  header .inner_wrap {
    margin-right: auto;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1ch;
    height: 60px;
  }
  header .logo_wrap {
    width: calc(100% - 150px);
    display: block;
    margin: 0 auto 0 0;
  }



  /* ハンバーガーボタン */
  .menu_btn {
    position: absolute;
    top: 0px;
    right: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1ch;
    width: 60px;
    height: 60px;
    box-shadow: 0 0 5px 2px rgba(0,0,0,.3);
  }
  .menu_btn span,
  .menu_btn span:before,
  .menu_btn span:after {
    width: 28px;
    height: 2px;
    display: block;
    background: #fff;
    position: absolute;
    transition: transform .6s ease-in-out, top .5s ease;
    -webkit-transition: transform .6s ease-in-out, top .5s ease;
    -ms-transition: transform .6s ease-in-out, top .5s ease;
  }
  .menu_btn span:before,
  .menu_btn span:after {
    content: "";
  }
  .menu_btn span:before {
    margin-top: -10px;
  }
  .menu_btn span:after {
    margin-top: 10px;
  }

  header .nav_wrap {
    position: absolute;
    display: block;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    top: -100vh;
    left: 0;
    opacity: 0;
    background: rgba(0,0,0,.8);
    transition: all .3s;
    -webkit-transition: all .3s;
    -ms-transition: all .3s;
  }
  .nav_wrap nav {
    width: 89.3%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1ch;
    width: 100%;
    height: 100vh;
    height: 100dvh;
  }
  .nav_wrap ul {
    width: 80%;
  }
  .nav_wrap li {
    margin: 1em 0;
    -webkit-transform: translateY(-1em);
    -ms-transform: translateY(-1em);
    transform: translateY(-1em);
    filter: blur(10px);
    -webkit-filter: blur(10px);
  }
  .nav_wrap li a {
    display: block;
    font-size: 1.8rem;
    text-align: center;
    padding: 2em 0;
    position: relative;
    letter-spacing: .14em;
  }
  .nav_wrap li a:before,
  .nav_wrap li a:after {
    content: "";
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    opacity: 0;
    transition: all .3s;
    -webkit-transition: all .3s;
    -ms-transition: all .3s;
    transition-delay: .5s;

  }
  .nav_wrap li a:before {
    top: 0;
    right: 100%;
  }
  .nav_wrap li a:after {
    bottom: 0;
    left: 100%;
  }
  body.menu_open {
    height: 100vh;
    overflow: hidden;
  }
  body.menu_open header .nav_wrap {
    top: 0vh;
    opacity: 1;
    visibility: visible;
  }
  body.menu_open .menu_btn span::before {
    margin-top: 0;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
  }
  .menu_open .menu_btn span::after {
    margin-top: 0;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
  }
  .menu_open .contents_wrap,
  .menu_open footer {
    filter: blur(10px);
    -webkit-filter: blur(10px);
  }
  .menu_open .nav_wrap li {
		transition-delay: .1s;
    transition-duration: 0.5s;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    filter: blur(0);
    -webkit-filter: blur(0);
}
	.menu_open .nav_wrap li:nth-child(2) {
		transition-delay: .2s;
	}
	.menu_open .nav_wrap li:nth-child(3) {
		transition-delay: .3s;
	}
  .menu_open .nav_wrap li a:before,
  .menu_open .nav_wrap li a:after {
    opacity: 1;
  }
  .menu_open .nav_wrap li a:before {
    right: 0;
  }
  .menu_open .nav_wrap li a:after {
    left: 0;
  }




  .levin .menu_btn {
    background: rgba(129,26,73,.5);
  }
  .menu_open .levin .menu_btn {
    background: #811A49;
  }
  .menu_open .levin .menu_btn span {
    background: #811A49;
  }
  .levin .nav_wrap ul {}
  .levin .nav_wrap li {
  }
  .levin .nav_wrap li a {

  }


  .deuxieme .menu_btn {
    background: rgba(54,13,52,.5);
  }
  .menu_open .deuxieme .menu_btn {
    background: #360D34;
  }
  .menu_open .deuxieme .menu_btn span {
    background: #360D34;
  }






}

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

  main.active header {
  background: -moz-linear-gradient(top,  rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  background: -webkit-linear-gradient(top,  rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%);
  background: linear-gradient(to bottom,  rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000',GradientType=0 );
}
  header .inner_wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  header .nav_wrap {
    text-align: right;
    margin: 0 0 0 auto;
    /* max-width: 630px;
    width: 76%; */
  }
  header .nav_list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  header .nav_list li {
    margin-left: 2.5em;
  }
  header .nav_list a {
    font-size: 18px;
    line-height: 88px;
    height: 88px;
    padding: 0 .2em;
    text-shadow: -1px -1px 5px rgb(0 0 0 / 40%), 0 -1px 5px rgb(0 0 0 / 40%), 1px -1px 5px rgb(0 0 0 / 40%), 1px 0 5px rgb(0 0 0 / 40%), 1px 1px 5px rgb(0 0 0 / 40%), 0 1px 5px rgb(0 0 0 / 40%), -1px 1px 5px rgb(0 0 0 / 40%), -1px 0 5px rgb(0 0 0 / 40%);
    position: relative;
  }
  .nav_list a:before,
  .nav_list a:after {
    content: "";
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    opacity: 0;
    transition: all .3s;
    -webkit-transition: all .3s;
    -ms-transition: all .3s;
  }
  .nav_list a:before {
    top: 1em;
    right: 100%;
  }
  .nav_list a:after {
    bottom: 1em;
    left: 100%;
  }
  .nav_list a:hover:before,
  .nav_list a:hover:after {
    opacity: 1;
  }
  .nav_list a:hover:before {
    right: 0;
  }
  .nav_list a:hover:after {
    left: 0;
  }

}







/* -----------------------------------------------
    footer
----------------------------------------------- */

footer {
  background: #000;
  color: #fff;
  display: none;
}
main.active + footer {
  display: block;
}

footer .footer_nav_wrap {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.footer_nav_wrap a {
  color: #fff;
}
.footer_nav_wrap > a {
  display: none;
}
.levin .footer_nav_wrap > a.levin,
.deuxieme .footer_nav_wrap > a.deuxieme {
  display: inline-block;
}
footer p.copy {}

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

  footer {
    padding: 10% 0;
  }
  .footer_nav_list {
    /* display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center; */
    margin: 0 0 10%;
  }
  .footer_nav_list li:nth-child(2) {
    margin: 2em auto;
  }
  .footer_nav_list a {
    font-size: 1.6rem;
    letter-spacing: .1em;
    display: block;
    padding: 1em 0;
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  .footer_nav_list a:before,
  .footer_nav_list a:after {
    content: "";
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
  }
  .footer_nav_list a:before {
    top: 0;
    right: 0;
  }
  .footer_nav_list a:after {
    bottom: 0;
    left: 0;
  }
  footer p.copy {
    font-size: 1.2rem;
    margin-top: 10%;
  }



}

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

  footer {
    padding-bottom: 30px;
  }
  .footer_nav_list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 32px 0 26px;
  }
  .footer_nav_list li:nth-child(2) {
    margin: 0 2em;
  }
  .footer_nav_list a {
    font-size: 18px;
    letter-spacing: .16em;
    display: inline-block;
    padding: 10px 1.4em;
    position: relative;
    overflow: hidden;
  }
  .footer_nav_list a:before,
  .footer_nav_list a:after {
    content: "";
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    opacity: 0;
    transition: all .3s;
    -webkit-transition: all .3s;
    -ms-transition: all .3s;
  }
  .footer_nav_list a:before {
    top: 0;
    right: 100%;
  }
  .footer_nav_list a:after {
    bottom: 0;
    left: 100%;
  }
  .footer_nav_list a:hover:before,
  .footer_nav_list a:hover:after {
    opacity: 1;
  }
  .footer_nav_list a:hover:before {
    right: 0;
  }
  .footer_nav_list a:hover:after {
    left: 0;
  }
  footer p.copy {
    font-size: 15px;
    margin-top: 25px;
  }



}

