/*////////////////////////////////////////////////////////////////////////
reset
////////////////////////////////////////////////////////////////////////*/
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	vertical-align: top;
}

html {
	/*image-rendering: -webkit-optimize-contrast;*/
}

body{
	overflow-y: scroll; /* スクロールバー常に表示 */
}

html,body {
	font-size-adjust:100%;
	-webkit-font-size-adjust: 100%;
}

body,h1,h2,h3,h4,h5,h6,p,img,
hr,li,ul,dl,dt,dd
{
	padding: 0;
	margin: 0;
	border: 0;
	list-style: none;
}

table th{font-weight:normal;}

img{
	width: 100%;
	border:0px;
	image-rendering:auto;
}

.clear{clear:both;}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

/*////////////////////////////////////////////////////////////////////////
基本カラー
////////////////////////////////////////////////////////////////////////*/
:root{
--red:#8e0000;
--black:#181818;
--gray:#747474;
--white:#fefefe;
	
--lightBlue:#a6bcca;
	
--black50: rgba(0,0,0,0.5);
--black70: rgba(0,0,0,0.7);
--white10: rgba(255,255,255,0.1);
--white30: rgba(255,255,255,0.3);
--white50: rgba(255,255,255,0.5);
--white70: rgba(255,255,255,0.7);
	
}
/*////////////////////////////////////////////////////////////////////////
基本
////////////////////////////////////////////////////////////////////////*/
.non{
	opacity:0.3;
	cursor:default;
	pointer-events: none;
}

ruby {
        display: inline-table;
        border-collapse: collapse;
        margin: 0;
        padding: 0;
        border: none;
        white-space: nowrap;
        text-indent: 0;
        vertical-align: bottom;
        text-decoration: inherit;
        text-align: center;
        }
ruby>rt {
    display: table-header-group;
    height: 25%;
    margin: 0;
    padding: 0 0.125em;
    border: none;
    font: inherit;
    line-height: 1.1em;
	text-align: center;
	font-size: 50%;
	position: relative;
	transform: translateY(0.5em);
    }

br.txtCutNone{display:none;}

a{
	color: var(--white);
	text-decoration:none;
	outline:none;
}

a:hover{
	text-decoration: none;
}

::selection {
	color: #fff;
	background-color:#00b4c8;
}
::-moz-selection {
	color: #fff;
	background-color:#00b4c8;
}

hr.solidLine{
	border-top: solid 1px var(--gray);
}

.txtCutNone{
	display: none;
}

.fadeUp{
	opacity: 0;
	position: relative;
	bottom: -20px;
}

.lSpace{
	letter-spacing: -0.5em;
}

/*////////////////////////////////////////////////////////////////////////
全体ボックス
////////////////////////////////////////////////////////////////////////*/
html{}

body{
	font-family: 'Noto Serif JP',"游明朝", YuMincho, "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif; 
	font-size:16px;
	color: var(--gray);
	min-width: 1300px;
	background-color: var(--white);
	position: relative;
}

.circles{
    position: fixed;
    top: 0;
    left: 0;
	z-index: -2;
    width: 100%;
    height:100%;
    overflow: hidden;
}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    animation: animate linear infinite;
    bottom: -200px;
	/*background-image: url("../img/hex.png");*/
	background-size: 100%;
}

@keyframes animate {
    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
	
	30%{
        opacity: 1;
    }

    100%{
        transform: translateY(-120vh) rotate(720deg);
        opacity: 0;
    }
}

/*////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////*/
#loading{
	width:100%;
	height: 100%;
	position:fixed;
	z-index:99;
	display: flex;
    justify-content: center;
    align-items: center;
	text-align:center;
	pointer-events: none;
}

#loading p{
	display: block;
	width: 100%;
	padding: 5px;
}

#loading p img{
	width: 50%;
	max-width: 300px;
}

#mainBox{
	width: 100%;
	margin: auto;
	opacity: 0;
	text-align: center;
	position: relative;
	z-index: 0;
	background-image:url("../img/bg_top_hex.png"), url(#), url("../img/bg_top.png"), url("../img/bg_bottom.png");
	background-size:50%, 50%, auto, auto;
	background-repeat:no-repeat, no-repeat, no-repeat, no-repeat;
	background-position: right top, right 130%, left top, right bottom;
	overflow: hidden;
}

.inBox{
	max-width: 1300px;
	padding:5em 5em 3em;
	margin: auto;
	text-align: center;
	font-size: 220%;
}

/*////////////////////////////////////////////////////////////////////////
トップ
////////////////////////////////////////////////////////////////////////*/
.logo{
	width: 80%;
	max-width: 1000px;
	margin: auto;
}

p, small{
	vertical-align: baseline;
}

.catch2{
	margin: 3em auto 0;
}

.catch3{
	letter-spacing: 0.3em;
	margin: 4em auto 0;
	text-shadow: 
    #fff 2px 0px 0px, #fff -2px 0px 0px,
    #fff 0px -2px 0px, #fff 0px 2px 0px,
    #fff 2px 2px 0px, #fff -2px 2px 0px,
    #fff 2px -2px 0px, #fff -2px -2px 0px,
    #fff 1px 2px 0px, #fff -1px 2px 0px,
    #fff 1px -2px 0px, #fff -1px -2px 0px,
    #fff 2px 1px 0px, #fff -2px 1px 0px,
    #fff 2px -1px 0px, #fff -2px -1px 0px,
    #fff 1px 1px 0px, #fff -1px 1px 0px,
    #fff 1px -1px 0px, #fff -1px -1px 0px;
}

.rotate-text span {
	display: inline-block;
	opacity: 0;
	transform: rotateY(90deg);
	transform-origin: center;
	transition: none;
}

.rotate-text.inview span {
	animation: rotateIn 0.6s forwards ease-out;
}

@keyframes rotateIn {
  0% {
    opacity: 0;
    transform: rotateY(90deg);
  }
  100% {
    opacity: 1;
    transform: rotateY(0);
  }
}

.catchSet{
	position: relative;
	margin: 2em auto 1.5em;
}

.jewelry{
	position: absolute;
	z-index: 0;
	left: 0;
	right: 0;
	top: -40%;
	width: 100%;
	text-align: center;
	pointer-events: none;
}

.jewelry img{
	width: 20%;
}

.jewelryRote{
	animation:4.5s ease-out forwards rotation1;
}

@keyframes rotation1{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(55deg); }
}

.left, .right{
	z-index: 0;
	left: 0;
	top: -40%;
	width: 100%;
	text-align: center;
	position:absolute;
}

.left img,
.right img {
	clip-path: inset(0 100% 0 0);
	width: 100%;
	height: auto;
	display: block;
	opacity: 0;
	transition: opacity .3s ease;
}

.left.inview img {
	animation: reveal-left 3s ease forwards;
	opacity: 1;
}

.right.inview img {
	animation: reveal-left 3s ease 0.5s forwards;
	opacity: 1;
}

@keyframes reveal-left {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

.txt{
	font-size: 65%;
	margin-bottom: 4em;
}

/* ------------------------------
動画
------------------------------*/
#topMovie {
	
}

#topMovie p{
	font-size: 70%;
	margin-top: 1em;
}

#topMovie .thum{
	margin: auto;
	position: relative;
	border: solid 1px var(--gray);
	overflow: hidden;
	display: inline-block;
}

#topMovie .thum::after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: "";
	display: block;
	background-image: url("../img/icon.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size:80%;
	z-index: 2;
	transition: transform .5s ease;
	transform: scale(0.8);
}

#topMovie .thum:hover::after {
	transform: scale(0.9);
}

#topMovie .thum:before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}

#topMovie .thum:hover::before{
	-webkit-animation: shine .75s;
	animation: shine .75s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/* ------------------------------
タイトル
------------------------------*/
 .titleArea{
	width: 100%;
	max-width: 1100px;
	margin:2em auto;
	padding: 5em 0 0;
	background-image: url("../img/jacket_bg_top.png"),url("../img/jacket_bg_bottom.png");
	background-size: 50%, 50%;
	background-repeat: no-repeat, no-repeat;
	background-position: left top, right 80%;
	text-align: center;
}

.catch4{
	text-align: left;
	font-size: 260%;
	text-shadow: 
    #fff 2px 0px 0px, #fff -2px 0px 0px,
    #fff 0px -2px 0px, #fff 0px 2px 0px,
    #fff 2px 2px 0px, #fff -2px 2px 0px,
    #fff 2px -2px 0px, #fff -2px -2px 0px,
    #fff 1px 2px 0px, #fff -1px 2px 0px,
    #fff 1px -2px 0px, #fff -1px -2px 0px,
    #fff 2px 1px 0px, #fff -2px 1px 0px,
    #fff 2px -1px 0px, #fff -2px -1px 0px,
    #fff 1px 1px 0px, #fff -1px 1px 0px,
    #fff 1px -1px 0px, #fff -1px -1px 0px;
	line-height: 1em;
	margin-bottom: 0.2em;
	margin-left: 6em;
}


 .titleArea .jacket{
	width: 100%;
	margin: auto;
	max-width: 500px;
	position: relative;
}

 .titleArea .jacketImg{
	 border: solid 1px var(--gray);
	 box-shadow: 1.5em 1.5em  #d2d6db;
}

 .titleArea .jacket .titleLogo{
	 width: 105%;
	 position: absolute;
	 bottom: -5em;
	 right: -7em;
}

.titleArea .day{
	margin-top: 3em;
	padding: 0.5em;
	font-size: 150%;
	font-weight: bold;
	position: relative;
	display: inline-block;
	letter-spacing: 0.05em;
}

.titleArea .day:before,
.titleArea .day:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 4em;
    height: 1px;
    background-color: #666;
}

.titleArea .day:before {
    left: -4em;
	background: linear-gradient(-90deg, #666, transparent);
}

.titleArea .day:after {
    right: -4em;
	background: linear-gradient(90deg, #666, transparent);
}


 .titleArea .link{
	background-color: #485b87;
	border-radius: calc(1px/0);
	max-width: 500px;
	margin: auto;
	font-size: 120%;
	letter-spacing: 0.1em;
}

 .titleArea .link a{
	display: block;
	padding: 0.8em;
}

 .titleArea .link:hover{
	background-color: var(--gray);
}

/*######################################################################
メディアクエリ
######################################################################*/
/*//////////////////////////////////////////////////////////////////////*/
@media screen and (max-width: 1300px) {
/*//////////////////////////////////////////////////////////////////////*/
	
	
/*//////////////////////////////////////////////////////////////////////*/
}
@media screen and (max-width: 1000px) {
/*//////////////////////////////////////////////////////////////////////*/
	
	
/*//////////////////////////////////////////////////////////////////////*/
}
@media screen and (max-width: 800px) {
/*//////////////////////////////////////////////////////////////////////*/
br.txtCut{display:none;}
br.txtCutNone{display:block;}
	
body{
	font-size:12px;
	min-width: inherit;
}

#mainBox{
	background-image:url("../img/bg_top_hex.png"), url(#), url("../img/bg_top.png"), url("../img/bg_bottom.png");
	background-size:100%, 100%, 100%, 100%;
	background-position: right top, right bottom, left top, right bottom;
}
	
@keyframes animate {
    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
	
	60%{
        opacity: 1;
    }

    100%{
        transform: translateY(-120vh)  rotate(720deg);
        opacity: 0;
    }
}
	
.inBox{
	padding:5em 1em 3em;
	font-size:min(4vw);
}
	
.catch3{
	font-size: 110%;
}
	
.logo{
	width:90%;
}

.jewelry{
	top: -40%;
}

.jewelry img{
	width: 25%;
}

.txt{
	font-size: 70%;
}

#topMovie p{
	font-size: 85%;
}
	
/* ------------------------------
タイトル
------------------------------*/
 .titleArea{
	margin:2em auto;
	padding: 5em 0 0;
	background-size: 70%, 70%;
	background-repeat: no-repeat, no-repeat;
	background-position: -7em top, 140% 90%;
}

.catch4{
	line-height: 0.9em;
	margin-left:1.2em;
}

 .titleArea .jacket{
	width: 70%;
}

 .titleArea .jacket .titleLogo{
	 width: 100%;
	 bottom: -4em;
	 right: -3em;
}

 .titleArea .link{
	width: 70%;
	max-width: 500px;
}

 .titleArea .link a{
	display: block;
	padding: 1em;
}
	
.titleArea .day{
	font-size: 140%;
}


	
/*//////////////////////////////////////////////////////////////////////*/
}
@media screen and (max-width: 480px) {
/*//////////////////////////////////////////////////////////////////////*/

	
/*//////////////////////////////////////////////////////////////////////*/
/*//////////////////////////////////////////////////////////////////////*/
}