@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@500;700&family=EB+Garamond:wght@500&display=swap');
.en {
 font-family: "EB Garamond", serif;
 font-optical-sizing: auto;
 font-weight: 500;
 font-style: normal;
 letter-spacing: .5px;
}
/*------------------------------------------------------------
	Reset
------------------------------------------------------------*/
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, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, nav, section, time, mark, audio, video {
 font-size: 1em;
 margin: 0;
 padding: 0;
 border: 0;
 outline: 0;
 -webkit-box-sizing: border-box;
 box-sizing: border-box;
 background: transparent;
 vertical-align: bottom;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
 display: block;
}
html {
 font-size: 62.5%;
}
body {
 -webkit-text-size-adjust: 100%;
}
body, table, input, textarea, select, option, h1, h2, h3, h4, h5, h6, p {
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
 margin: 0;
 padding: 0;
}
h1, h2, h3, h4, h5, h6 {
 font-weight: 700;
 transition: all 1000ms;
}
table, input, textarea, select, option {
 line-height: 1.1;
}
ol, ul {
 list-style: none;
}
blockquote, q {
 quotes: none;
}
:focus {
 outline: 0;
}
ins {
 text-decoration: none;
}
del {
 text-decoration: line-through;
}
hr {
 height: 0;
 margin: 0;
 padding: 0;
 border: 0;
}
a {
 color: inherit;
 text-decoration: none;
 -webkit-transition: all 300ms;
 transition: all 300ms;
 word-wrap: break-word;
}
a:hover {
 cursor: pointer;
 color: #e70012;
}
img {
 vertical-align: bottom;
 -webkit-backface-visibility: hidden;
 max-width: 100%;
 width: auto;
 height: inherit;
 pointer-events: none;
 transition: all 1000ms;
}
figure img {
 pointer-events: none;
}
ruby > rt {
 text-align: center;
}
/* スクロールバー */ ::-webkit-scrollbar {
 width: 3px;
 height: 4px;
}
::-webkit-scrollbar-thumb {
 background: #fff;
 border-radius: 2px;
}
::-webkit-scrollbar-track {
 background: rgba(0, 0, 0, 0.8);
}
.guard {
 pointer-events: none;
 cursor: default;
}
.loading {
 width: 100%;
 height: 100%;
 position: fixed;
 background-color: #fff;
 top: 0;
 left: 0;
 z-index: 10000;
}
.loading img {
 position: absolute;
 top: 50%;
 left: 50%;
 margin-top: -30px;
 margin-left: -30px;
 width: 60px;
}
.fadein {
 opacity: 0;
 transition: all 1000ms;
}
.fadein.in, .fadein.active {
 opacity: 0;
 animation-name: fadeInMove;
 animation-duration: 1s;
 animation-fill-mode: forwards;
}
.fadein.in {
 animation-delay: .5s; /* 遅延 */
}
@keyframes fadeInMove {
 from {
  opacity: 0;
  filter: blur(20px);
 }
 to {
  opacity: 1;
  filter: blur(0px);
 }
}
.fade {
 opacity: 0;
 transition: all 1000ms;
}
.fade.active {
 animation-name: fadeIn;
 animation-duration: 1.5s;
 animation-delay: .5s; /* 遅延 */
 animation-fill-mode: forwards;
}
@keyframes fadeIn {
 from {
  opacity: 0;
  transform: translate(0, 60px);
 }
 to {
  opacity: 1;
  transform: translate(0, 0);
 }
}
.bright-in {
 overflow: hidden;
 opacity: 1;
 transition: 2s;
 filter: brightness(30%);
 width: 100%;
 background-color: #fff;
 animation-delay: .5s; /* 遅延 */
}
.bright-in img {
 transition: 10s;
 transform: scale(1.1);
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center;
}
.bright-in.active {
 filter: brightness(100%);
 opacity: 1;
}
.bright-in.active img {
 transform: scale(1);
}
.shrink {
 width: 100%;
 height: 100%;
 transform: scale(1.05);
}
.shrink img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center bottom;
}
.shrink.in {
 animation: shrink 10s linear forwards;
}
@keyframes shrink {
 0% {
  transform: scale(1.05);
 }
 100% {
  transform: scale(1);
 }
}
.blur {
 opacity: 0;
 transition: all 1000ms;
}
.blur.in {
 opacity: 0;
 animation-name: fadeInMove;
 animation-duration: 1s;
 animation-fill-mode: forwards;
 animation-delay: 1s; /* 遅延 */
}
@keyframes fadeInMove {
 from {
  opacity: 0;
  filter: blur(20px);
 }
 to {
  opacity: 1;
  filter: blur(0px);
 }
}
/*------------------------------------------------------------
	layout
------------------------------------------------------------*/
/* support iOS */
html {
 height: -webkit-fill-available;
}
body {
 font-family: "Zen Old Mincho", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
 font-size: 1.5rem;
 font-weight: 500;
 line-height: 2em;
 background-color: #fff;
 color: #fff;
 width: 100%;
 height: 100%;
 padding: 0;
 font-style: inherit;
 font-weight: inherit;
 font-weight: 500;
 -webkit-user-select: none;
 -moz-user-select: none;
 -khtml-user-select: none;
 -webkit-user-drag: none;
 -khtml-user-drag: none;
 /* iPhoneポップアップ無効 */
 -webkit-touch-callout: none;
 -ms-text-size-adjust: 100%;
 -webkit-text-size-adjust: 100%;
 text-rendering: geometricPrecision;
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
 -webkit-tap-highlight-color: transparent;
 overflow-x: hidden;
 -webkit-overflow-scrolling: touch;
 min-height: -webkit-fill-available;
}
b, strong, .bold {
 font-weight: 700;
}
.flex {
 display: -webkit-box;
 display: -ms-flexbox;
 display: -webkit-flex;
 display: flex;
 -webkit-box-lines: multiple;
 -moz-box-lines: multiple;
 box-sizing: border-box;
}
.flexbox {
 display: -webkit-box;
 display: -ms-flexbox;
 display: -webkit-flex;
 display: flex;
 -webkit-box-lines: multiple;
 -moz-box-lines: multiple;
 -webkit-flex-wrap: wrap;
 -ms-flex-wrap: wrap;
 flex-wrap: wrap;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
}
.wrap {
 -webkit-flex-wrap: wrap;
 -ms-flex-wrap: wrap;
 flex-wrap: wrap;
}
.mv {
 position: relative;
}
#container {
 width: 100%;
 min-height: 100vh;
 min-height: 100lvh;
 height: -webkit-fill-available;
 padding: 0;
 margin: 0 auto;
 position: relative;
 z-index: 1;
}
.section_bg {
 background-color: #000;
}
.slide {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 object-fit: cover;
 background-size: cover;
 background-position: center bottom;
 background-repeat: no-repeat;
 opacity: 0;
 transform: scale(1.1);
 animation: imageTransition 20s infinite;
 will-change: opacity, transform;
}
/* 各スライドの背景画像を設定 */
.slide-1 {
 background-image: url('../images/kaede.jpg?v1.2');
 animation-delay: 0s;
}
.slide-2 {
 background-image: url('../images/sky.jpg?v1.1');
 animation-delay: 10s;
}
@media screen and (max-width : 912px) {
 .slide-2 {
  background-position: bottom right;
 }
}
/* アニメーションの定義 */
@keyframes imageTransition {
 /* 0% - 5.55% (0s - 1s): フェードイン */
 0% {
  opacity: 0;
  transform: scale(1.1);
 }
 5.55% { /* 1s / 18s * 100% */
  opacity: .85;
  transform: scale(1.1); /* ズームイン完了 */
 }
 44.44% { /* 8秒時点 (1s (フェードイン) + 7s (表示維持) = 8s) / 18s * 100% */
  opacity: .85;
  transform: scale(1); /* 表示維持終了、フェードアウト開始 */
 }
 55.55% { /* 10s / 18s * 100% */
  opacity: 0;
  transform: scale(1);
 }
 100% {
  opacity: 0;
  transform: scale(1.1); /* 最初の状態に戻る */
 }
}
/* --- コンテンツエリア --- */
.main {
 position: relative; /* 背景の上に表示されるように */
 z-index: 1; /* 背景より前面 */
 text-align: center;
 width: 100%;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 min-height: 100%;
 min-height: 100vh;
 min-height: 100lvh;
}
.fullscreen-slideshow {
 position: absolute;
 top: 0;
 bottom: 0;
 left: 0;
 right: 0;
 overflow: hidden;
 background-color: #fff;
 width: 100%;
 min-height: 100%;
 min-height: 100vh;
 min-height: 100lvh;
}
/* タイトル */
.main-header {
 position: relative;
 z-index: 1;
 width: 26%;
 aspect-ratio: 1 / 1.58;
 top: 0;
 left: 0;
 display: flex;
 align-items: center;
 flex-direction: column;
 justify-content: flex-end;
 grid-gap: clamp(20px, 5vw, 30px);
}
.main .catch01 {
 width: 4%;
 max-width: 30px;
 position: absolute;
 top: 120px;
 right: 4%;
 aspect-ratio: 16.4 / 75;
 display: flex;
 align-items: end;
}
.billing {
 position: relative;
 z-index: 1;
 padding: 70px 0 5px;
}
.billing .billing-inner {
 max-width: 1200px;
 width: 100%;
 margin: 0 auto;
}
.billing .main-roadshow-sp {
 max-width: 320px;
 width: 70%;
 margin: 2vh auto;
}
.billing .copyright {
 font-size: clamp(1rem, 1.2vw, 1.1rem);
 line-height: 1.6em;
 margin: 2rem auto 1.4rem;
 text-align: center;
}
.cybersecurity {
 display: flex;
 justify-content: center;
 align-items: center;
}
.cybersecurity img {
 max-width: 100px;
}
@media screen and (min-width : 1025px) {
 .shrink .kv-img {
  object-position: 50% 100%;
  aspect-ratio: 1.9;
  min-height: 920px;
 }
 .billing .billing-inner {
  width: 80%;
 }
}
@media screen and (min-width : 1600px) {
 .shrink .kv-img {
  object-position: 50% 90%;
 }
}
@media screen and (min-width : 1800px) {
 .shrink .kv-img {
  object-position: 50% 80%;
 }
}
.bg-white {
 position: relative;
 color: #000;
 background: rgba(255, 255, 255, .6);
 -webkit-backdrop-filter: blur(8px);
 backdrop-filter: blur(8px);
 padding-top: 5vh;
}
#comment::before {
 content: "";
 aspect-ratio: 2.6 / 1;
 background: url("../images/txt-comment.png") no-repeat left top;
 background-size: 100% auto;
 display: block;
 width: 74%;
 max-width: 640px;
 position: absolute;
 z-index: 1;
 top: 40px;
 left: 0;
 opacity: .9;
}
#music::before {
 content: "";
 aspect-ratio: 2.6 / 1;
 background: url("../images/txt-music.png") no-repeat left top;
 background-size: 100% auto;
 display: block;
 width: 64%;
 max-width: 540px;
 position: absolute;
 top: 0;
 left: 0;
 opacity: .9;
}
.section_inner .modal__content {
 min-height: inherit;
}
#comment, #music {
 padding-top: 40px;
}
@media screen and (min-width : 913px) {
 #comment::before, #music::before {
  left: 4%;
 }
 .main-header {
  min-width: 300px;
  left: 2%;
  aspect-ratio: 1 / 1.6;
 }
 .main .catch01 img {
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 1));
 }
}
@media screen and (min-width : 1025px) {
 .bg-white {
  padding-bottom: 5vh;
 }
 .main-header {
  min-width: 380px;
  left: 4%;
 }
 .section_inner .scroll_area, .section_inner .wrapp .content .content-inner {
  margin: 100px 0;
 }
 .section_inner .wrapp .content {
  margin: 50px auto;
  max-width: 800px;
 }
 .section_inner .wrapp .profile {
  padding-left: 40px;
 }
}
@media screen and (max-width : 1024px) {
 .section_inner .wrapp .content {
  width: 100%;
 }
 .section_inner .content-inner:not(.bright-in) {
  width: 84%;
 }
}
@media screen and (min-width: 913px) and (max-height: 1080px) and (orientation: landscape) { /* 横向き */
 .main-header {}
}
@media screen and (max-width: 912px) and (orientation: portrait) { /* 縦向き */
}
@media screen and (max-width : 912px) {
 #top.main {
  aspect-ratio: 1 / 1.414;
  object-fit: cover;
 }
 .main .catch01 {
  max-width: 20px;
  top: 80px;
 }
 .main-header {
  width: 60%;
  max-width: 320px;
  aspect-ratio: 1 / 1.32;
  right: 0;
  margin: 0 auto;
 }
 .main-header .main-title {
  width: 90%;
  margin: 0 auto;
  order: 2;
 }
 .main-header .main-billing {
  order: 1;
 }
 .main-header .main-roadshow {
  display: none;
 }
 #music {
  padding-top: 80px;
 }
 #comment {
  padding-top: 60px;
 }
 #top .billing {
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1), transparent);
  background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1), transparent);
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1), transparent);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1), transparent);
 }
}
@media screen and (max-width : 520px) {
 #music, #comment {
  padding-top: 40px;
 }
}
.intro {
 position: relative;
 min-height: 100vh;
 min-height: 100lvh;
}
.intro .section_bg {
 width: 100%;
 height: 100vh;
 height: 100lvh;
 top: 0;
 left: 0;
 position: sticky;
 overflow: hidden;
 transition: 1s;
}
.intro .section_inner {
 position: relative;
 margin-top: -100vh;
 margin-top: -100lvh;
}
.intro .section_inner .title {
 font-size: clamp(6rem, 10vw, 12rem);
 line-height: 1em;
 text-align: center;
 margin-bottom: 4rem;
 padding-top: 40px;
 color: #e9c468;
}
.intro .section_inner .section_main {
 padding: 120px 50px;
}
.intro .section_inner .section_main .section_body {
 max-width: 800px;
 margin: 0 auto;
}
@media screen and (max-width: 1024px) {
 .intro .section_inner .section_main {
  padding: 80px 30px;
 }
 .intro .section_inner .section_main .section_body {
  max-width: 500px;
 }
}
.imgsbox {
 display: flex;
 align-items: center;
 justify-content: center;
 width: 100%;
 overflow: hidden;
 flex-wrap: wrap;
}
.imgsbox div {
 width: 50%;
}
@media screen and (max-width: 1024px) {
 .imgsbox div {
  width: 100%;
 }
}
.imgsbox3 {
 display: flex;
 align-items: center;
 justify-content: center;
 width: 100%;
 overflow: hidden;
 flex-wrap: wrap;
}
.imgsbox3 div {
 width: 33.33%;
}
@media screen and (max-width: 1024px) {
 .imgsbox3.first div:first-of-type {
  order: 2;
  width: 50%;
 }
 .imgsbox3.first div:nth-of-type(2) {
  order: 1;
  width: 100%;
 }
 .imgsbox3.first div:last-of-type {
  width: 50%;
  order: 3;
 }
}
.imgsbox2 {
 display: flex;
 align-items: center;
 justify-content: center;
 width: 100%;
 overflow: hidden;
 flex-wrap: wrap;
}
.imgsbox2 div {
 width: 50%;
}
@media screen and (max-width : 912px) {
 .imgsbox2 div {
  width: 100%;
 }
}
.fotter-inner {
 position: relative;
 color: #fff;
 z-index: 1;
 width: 90%;
 text-align: center;
 margin: 0 auto;
 min-height: 100vh;
 min-height: 100lvh;
 display: flex;
 align-items: center;
 flex-direction: column;
 justify-content: center;
 padding: 1rem 0;
}
.fotter-inner .billing .main-roadshow-sp {
 max-width: 400px;
 width: 80%;
}
.fotter-header {
 position: relative;
 z-index: 1;
 width: 90%;
 aspect-ratio: 1 / 1.24;
 top: 0;
 left: 0;
 right: 0;
 margin: 0 auto;
 display: flex;
 align-items: center;
 flex-direction: column;
 justify-content: flex-end;
 grid-gap: clamp(40px, 5vw, 50px);
}
.fotter-header .main-title {
 max-width: 70%;
 margin: 0 auto;
}
@media screen and (min-width : 913px) {
 .fotter-header {
  width: 36%;
  min-width: 400px;
  aspect-ratio: 1 / 1.3;
 }
 .fotter-header .main-title {
  max-width: 90%;
 }
}
.fullscreen-image-container {
 background-color: #fff;
}
@keyframes blurImage {
 0% {
  filter: blur(10px); /* アニメーション開始時はぼかしなし */
  opacity: .5
 }
 100% {
  filter: blur(0); /* アニメーション終了時に最大10pxぼかす */
  opacity: 1
 }
}
@keyframes fadeout-txt {
 0% {
  filter: blur(0);
  opacity: 1
 }
 100% {
  filter: blur(10);
  opacity: 0
 }
}
/*
.catch-area {
 aspect-ratio: 240 / 83;
 display: flex;
 justify-content: center;
 align-items: center;
}*/
.intro.read .section_inner {
 min-height: 200vh;
}
.read .catch-txt {
 min-height: 100vh;
 display: flex;
 justify-content: center;
 align-items: center;
 position: sticky;
 top: 0;
}
.read .content-inner .blurImage {
 filter: blur(10px); /* 初期状態ではぼかしなし */
 opacity: .5;
 height: 100%;
}
.read .content-inner.active .blurImage {
 animation-name: blurImage; /* 適用するアニメーションの名前 */
 animation-duration: 2s; /* アニメーションにかける時間 */
 animation-delay: 2s; /* アニメーション開始までの遅延時間 */
 animation-fill-mode: forwards; /* アニメーション終了時のスタイルを維持 */
 animation-timing-function: ease-out;
}
.read .content-inner .blurImage img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center;
}
.read .content-inner.bright-in {
 height: 100%;
}
.read.active .catch-txt span {
 animation-name: fadeout-txt;
 animation-duration: 1.5s;
 animation-delay: 4s;
 animation-fill-mode: forwards;
 animation-timing-function: ease-out;
}
.read.active .catch-txt img {
 filter: drop-shadow(0 0 10px rgba(255, 255, 255, 1));
}
.read .catch-txt {
 max-width: 900px;
 width: 70%;
 margin: 0 auto;
}
@media screen and (max-width : 912px) {
 .bg-white {
  padding-top: 0;
 }
 .read .catch-txt {
  width: 70%;
 }
}
/* ------------------------------
	動画
------------------------------ */
#trailer {
 display: none;
}
.bg_movie {
 margin: 0 auto;
 background-color: #000;
 padding: 20px 0 50px;
}
.__movie-wrap {
 width: 100%;
 max-width: 1040px;
 margin: auto;
 display: flex;
 justify-content: center;
 align-content: center;
}
.__movie-wrap-inner {
 position: relative;
 width: 100%;
 height: 0;
 padding-top: 56.25%;
 margin: auto;
 top: 0;
 bottom: 0;
}
.__movie-wrap-inner.modal {
 padding-top: 56.25%;
}
.__movie-wrap-inner iframe, .__movie-wrap-inner video {
 position: absolute;
 top: 0;
 bottom: 0;
 left: 0;
 right: 0;
 width: 100% !important;
 height: 100% !important;
 margin: auto;
 -o-object-fit: cover;
 object-fit: cover;
}
.mv-movieBtn .__movie-wrap-inner iframe {
 left: -5%;
 width: 110% !important;
 height: 110%;
}
.bg_movie .__movie-wrap-inner {
 overflow: hidden;
}
.__btns {
 width: 90%;
 max-width: 1040px;
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 margin: 10px auto;
}
.__btns li {
 width: 33.3333%;
 width: calc(100% / 3);
 font-size: clamp(1.3rem, 2vw, 1.5rem);
 font-weight: 600;
 font-feature-settings: "palt" 1;
 letter-spacing: 0;
 font-style: normal;
 margin: 0;
 padding: 4px;
 box-sizing: border-box;
 transition: all 0.3s ease;
}
.__btns li span {
 background: rgba(234, 85, 20, .5);
 width: 100%;
 height: 100%;
 display: flex;
 justify-content: center;
 align-items: center;
 text-decoration: none;
 color: #fff;
 padding: 5px 1px;
 float: left;
 line-height: 1em;
 min-height: 40px;
 text-align: center;
}
.__btns li:hover span, .__btns li.select span {
 background-color: #ea5514;
}
#cboxLoadedContent #trailer {
 height: 100%;
 padding: 0;
 display: flex;
 align-items: center;
 background-color: #fff;
}
#cboxLoadedContent #trailer .__btns li:hover span, #cboxLoadedContent #trailer .__btns li.select span {
 background: #B11005;
}
#cboxLoadedContent #trailer .__btns li span {
 background: rgba(177, 16, 5, .5);
}
#cboxLoadedContent #trailer .trailer-inner {
 width: 100%;
}
#cboxLoadedContent #trailer .__movie-wrap {
 max-width: 100%;
 height: 70%;
}
.mv-movieBtn {
 position: relative;
}
.mv-movieBtn a {
 position: absolute;
 left: 0;
 top: 0;
 width: 100%;
 height: 100%
}
.mv-movieBtn a {
 display: block;
 transition: all .3s ease;
 z-index: 2;
 opacity: 0.5;
}
.mv-movieBtn a::after {
 content: "";
 position: absolute;
 width: 100%;
 height: 100%;
 top: 0;
 left: 0;
 background: url("../images/play-button.png") center center / 25% no-repeat rgba(0, 0, 0, .4);
 opacity: 0.7;
}
@media screen and (min-width : 913px) {
 .mv-movieBtn {
  width: 90%;
  margin: auto;
 }
 .mv-movieBtn a:hover {
  opacity: .9;
  background-color: rgba(0, 0, 0, 0.7);
 }
 #cboxLoadedContent #trailer .__movie-wrap {
  width: 90%;
 }
}
@media screen and (max-width : 912px) {
 .bg_movie {
  padding: 0 0 40px;
 }
 .__btns li {
  width: 50%;
 }
}
/* ------------------------------
	レスポンシブ
------------------------------ */
.sp {
 display: none;
}
@media screen and (max-width : 912px) {
 .sp {
  display: block;
 }
 .pc {
  visibility: hidden;
  display: none !important;
 }
}