@charset "UTF-8";
/************************************************************
 * reset
 ************************************************************/
*, *::before, *::after {
  box-sizing: border-box;
}
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, picture {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
	font-weight: normal;
}
a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	text-decoration: none;
	vertical-align: baseline;
	background: transparent;
	color: #292b2a;
}
a, img {
	border: none;
	vertical-align: middle;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
body {
	line-height: 1.2;
	-webkit-text-size-adjust: none;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
li {
	list-style: none;
}
ul, ol, li {
	list-style-position: outside;
	vertical-align: bottom;
}
/************************************************************
 * common style
 ************************************************************/
html {
	font-size: 62.5%;
}
html, body {
	overflow-x: hidden;
}
body{
	width: 100%;
	background: #fff;
	font-family: "fot-tsukuaoldmin-pr6n", sans-serif;
	font-weight: 300;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	color: #555;
  font-size: 16px;
	font-size: 1.6rem;
  letter-spacing: 0.03em;
	line-height: 2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-display: swap;
	position: relative;
}
body:before {
	position: fixed;
	content: "";
	width: 100%;
	min-height: 100vh; /* Fallback */
	min-height: calc(var(--vh, 1vh) * 100);
	top: 0;
	left: 0;
	z-index: -1;
	animation: bg 12s ease-in-out infinite;
}
body.fixed {
	position: fixed;
	overflow: hidden;
	width: 100%;
	height: 100%;
	left: 0;
}
.f-en{
	font-family: 'Cormorant Garamond', serif;
}
img {
	width:100%;
}
.pc { display: none !important; }
.sp { display: block !important; }
@media (min-width: 769px) {
  .pc { display: block !important; }
  .sp { display: none !important; }
}
/* font */
.f-small{
  font-size: 85%;
}
.f-large{
  font-size: 140%;
}
.aligncenter{
  text-align: center;
}
.alignleft{
  text-align: left;
}
.alignright{
  text-align: right;
}
.bold{
  font-weight: bold;
}
/* layout */
.inner{
  width: 86%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1260px;
}
.dispflex{
  display: flex;
}
.dispinblock{
  display: inline-block;
}
/* margin */
.mb1{
  margin-bottom: 1rem;
}
.mb2{
  margin-bottom: 2rem;
}
.mb3{
  margin-bottom: 3rem;
}
.mb4{
  margin-bottom: 4rem;
}
/*PC*/
@media (min-width: 769px){
  .mb3{
    margin-bottom: 5rem;
  }
  .mb4{
    margin-bottom: 6rem;
  }
}
/* btn */
.btn a{
  display: block;
  background: #636363;
  color: #FFF;
  text-align: center;
  padding: 1rem 1.5rem;
  position: relative;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  font-size: 2rem;
  letter-spacing: .05em;
  transition: all .3s;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.btn a:before{
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  width: 5%;
  background: #FFF;
  right: 0;
  top: 50%;
}
.btn a:hover{
  background: #333;
}
/************************************************************
 * hover style
 ************************************************************/
@media (min-width: 769px){
	.hov{
		-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
		-webkit-transition: .3s ease-in;
		-moz-transition: .3s ease-in;
		-ms-transition: .3s ease-in;
		transition: .3s ease-in;
		opacity: 1;
		filter: alpha(opacity=100);
	}
	.hov:hover{
		filter: alpha(opacity=70);
		opacity: .7;
		text-decoration: none;
		cursor: pointer!important;
	}
	.hov:hover a{
		text-decoration: none;
	}
}
/************************************************************
 * fade style
 ************************************************************/
.-fadein {
  opacity: 0;  
}
.js-effect__fade {
  animation: fadeIn .8s ease-in-out 0.5s forwards;
}
.-blur {
  opacity: 0;  
}
.js-effect__blur {
  animation: blur .8s ease-in-out 0.5s forwards;
}
@keyframes blur {
  0% {
    opacity: 0;
    -ms-filter: blur(6px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    -ms-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/************************************************************
 * header style
 ************************************************************/
.l-header {
  width: 100%;
  position: fixed;
  z-index: 9999;
  opacity: 0;
  animation: l-header 0.8s ease-in-out 5.0s forwards;
}
body.pages .l-header{
  opacity: 1;
  -webkit-animation: none;
     -moz-animation: none;
       -o-animation: none;
          animation: none;
}
.l-header-logo {
  position: absolute;
  width: 212px;
  height: auto;
  top: 30px;
  left: 60px;
  z-index: 1;
}
.l-header-logo_img {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.l-header-nav{
	position: absolute;
	top: 30px;
	right: 60px;
}
.l-header-nav__ul{
  display: flex;
  -webkit-align-items: start;
          align-items: start;
}
.l-header-nav__li {
	-ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  vertical-align: top;
  text-align: right;
  margin: 0 0 0 10px;
  position: relative;
}
.l-header-nav__li a {
  font-size: 1.7rem;
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: all .3s;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  padding-top: 25px;
}
body.pages .l-header-nav__li a,
.-black .l-header-nav__li a {
  color: #333;
  text-decoration: none;
}
body.pages header.-white .l-header-nav__li a{
  color: #fff;
}
.l-header-nav__li:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 15px;
  background: #fff;
  top: 0;
  right: 50%;
  transition: all .3s;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
body.pages .l-header-nav__li:before,
.-black .l-header-nav__li:before{
	background: #333;
}
body.pages header.-white .l-header-nav__li:before{
  background: #fff;
}
.head-insta{
	position: absolute;
	z-index: 999;
	top: 15px;
	right: 15px;
  opacity: 0;
  animation: l-header 0.8s ease-in-out 5.0s forwards;
}
.head-insta svg{
	fill: #fff;
}
body.pages .head-insta{
  opacity: 1;
  -webkit-animation: none;
     -moz-animation: none;
       -o-animation: none;
          animation: none;
}
body.pages .head-insta svg{
  fill: #333;
}
/*   sp    */
@media screen and (max-width: 768px) {
  .l-header {
    width: 100%;
  }
  .l-header-logo {
  	top: 20px;
  	left: 20px;
    width: 106px;
    height: auto;
  }
  .l-header-menu {
  	position: fixed;
    top: 20px;
    left: inherit;
    right: 20px;
  }
  .head-insta{
  	top: 20px;
  	right: 100px;
  }
}
@keyframes l-header{
  0% {
    opacity: 0;
    -ms-filter: blur(6px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    -ms-filter: blur(0);
    filter: blur(0);
  }
}
/*--c-menu--*/
.c-menu-trigger, .c-menu-trigger span {
  transition: all .4s;
  box-sizing: border-box;
}
.c-menu-trigger {
  position: relative;
  display: block;
	width: 50px;
	height: 50px;
}
.c-menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
}
body.pages .c-menu-trigger span,
.-black .c-menu-trigger span {
  background: #000;
}
body.pages header.-white .c-menu-trigger span{
  background: #fff;
}
.c-menu-trigger span:nth-of-type(1) {
  top: 0;
  width: 50px;
}
.c-menu-trigger span:nth-of-type(2) {
  top: 12px;
  width: 50px;
}
.c-menu-trigger span:nth-of-type(3) {
  top: 24px;
  width: 50px;
}
.c-menu-trigger span:nth-of-type(4),
.c-menu-trigger span:nth-of-type(5){
  color: #fff;
  background: none;
  text-align: center;
  font-size: 0.9rem;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12px;
  line-height: 1.0;
  text-transform: uppercase;
  opacity: 1;
}
.c-menu-trigger span:nth-of-type(5){
  opacity: 0;
  letter-spacing: 0.25em;
}
body.pages .c-menu-trigger span:nth-of-type(4),
body.pages .c-menu-trigger span:nth-of-type(5),
.-black .c-menu-trigger span:nth-of-type(4),
.-black .c-menu-trigger span:nth-of-type(5){
  color: #000;
  background: none;
}
body.pages header.-white .c-menu-trigger span:nth-of-type(4),
body.pages header.-white .c-menu-trigger span:nth-of-type(5){
  color: #fff;
  background: none;
}
.c-menu-trigger span.show {
  opacity: 1;
  transition: all .3s;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.c-menu-trigger span.hide {
  opacity: 0;
}
.c-menu-trigger.active span:nth-of-type(1),
.dl-close .c-menu-trigger span:nth-of-type(1) {
  top: 3px;
  left: 0;
  width: 50px;
  -webkit-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
}
.c-menu-trigger.active span:nth-of-type(2),
.dl-close .c-menu-trigger span:nth-of-type(2) {
  opacity: 0;
}
.c-menu-trigger.active span:nth-of-type(3),
.dl-close .c-menu-trigger span:nth-of-type(3) {
  top: 20px;
  left: 0;
  width: 50px;
  -webkit-transform: translateY(-8px) rotate(45deg);
  transform: translateY(-8px) rotate(45deg);
}
.c-menu-trigger.active span:nth-of-type(4),
.c-menu-trigger.active span:nth-of-type(5){
  opacity: 0;
}
.c-menu-trigger.active span:nth-of-type(5){
  opacity: 1;
}
/*--c-dl-menu--*/
.c-dl-menu {
  display:none;
  width: 100%;
  position:fixed;
  top: 0;
  right: 0;
  z-index: 99999;
  overflow-y: scroll;
  overflow-x: hidden;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);  
  filter: drop-shadow(0 0 0.5rem #bcbbbb);
  background: url("../img/common/start_bg_sp.jpg") no-repeat center center #fff;
  background-size: cover;
}
.c-dl-menu .head-insta{
  opacity: 1;
  -webkit-animation-name: none;
     -moz-animation-name: none;
       -o-animation-name: none;
          animation-name: none;
}
.c-dl-menu .head-insta svg{
  fill: #333;
}
.c-dl-close {
  position: absolute;
  top: 20px;
  right: 20px;
}
.c-dl-menu__wrap {
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  display: flex;
  justify-content: space-between;
}
.c-dl-menu__info {
  width: 100%;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px; 
}
.c-dl-menu__logo {
  width: 100%;
  text-align: center;
  margin-bottom: 6rem;
}
.c-dl-menu__logo img {
  width: 106px;
  height: auto;
}
.c-dl-menu__li {
  margin-bottom: 2rem;
  text-align: center;
}
.c-dl-menu__li a {
  display: block;
  text-decoration: none;
  color: #333;
  font-size: 2rem;
  transition: all .3s;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

/************************************************************
 * footer style
 ************************************************************/
footer{
  padding: 6rem 0;
}
footer nav li{
  vertical-align: middle;
}
footer nav li a{
  font-size: 1.3rem;
}
footer .copy{
  font-size: 1.2rem;
  opacity: 0.5;
}

/*PC*/
@media (min-width: 769px){
  footer nav li{
    margin: 0 15px;
  }
}