@charset "UTF-8";

/* ============================================ */
/* 

  0.Common 共通
  1.Header ヘッダー
  2.Footer フッター
  3.Top トップ
  4.About アバウト
  5-1.Event イベント /  下層共通
  5-2.Product プロダクト
  10.Pre Loader プリローダー

*/
/* ============================================ */

/* ============================================ */
/* 0.common */
/* ============================================ */

html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
  color: var(--color-black);
}
html:has(#top){
	background: #000;
}

/* :rootのCSS変数の宣言 */
:root {
  /* color */
  --color-white: #ffffff;
  --color-bg-light:#EDEDE8;
  --color-lightgray: #efefef;
  --color-gray: #dddddd;
  --color-darkgray: #666666;
  --color-black: #111111;
  --color-orange: #FF3C00;
  /* font-size */
  --fontsize-p-12: 1.2rem;
  --fontsize-p-14: 1.4rem;
  --fontsize-p-16: 1.6rem;
  --fontsize-p-18: 1.8rem;
  --fontsize-p-20: 2.0rem;
  --fontsize-p-24: 2.4rem;
  --fontsize-p-28: 2.8rem;
  --fontsize-p-32: 3.2rem;
  --fontsize-p-36: 3.6rem;
  --fontsize-p-40: 4.0rem;
  --fontsize-p-48: 4.8rem;
  --fontsize-p-56: 5.6rem;
  --fontsize-p-64: 6.4rem;
  --fontsize-p-72: 7.2rem;
  --fontsize-p-80: 8.0rem;
  --fontsize-p-88: 8.8rem;
  --fontsize-xxs: clamp(1rem, 0.933rem + 0.33vw, 1.2rem);
  --fontsize-xs: clamp(1rem, 1.133rem + 0.33vw, 1.4rem);
  --fontsize-s: clamp(1.2rem, 1.067rem + 0.67vw, 1.6rem);
  --fontsize-m: clamp(1.4rem, 1.267rem + 0.67vw, 1.8rem);
  --fontsize-l: clamp(1.8rem, 1.6rem + 1vw, 2.4rem);
  --fontsize-xl: clamp(2.4rem, 2.133rem + 1.33vw, 3.2rem);
  --fontsize-2xl: clamp(3.6rem, 3.2rem + 2vw, 4.8rem);
  --fontsize-3xl: clamp(4rem, 2.736rem + 14.32vw, 9.6rem);
}

html, body{
  height: 100%;
  overflow: hidden;
}

body,h1,h2,h3,h4,h5,h6,p,span{
  font-family: YakuHanJP, "Bricolage Grotesque", sans-serif, "Noto Sans JP", sans-serif;
  line-height: 1;
}

body {
  color: var(--black);
  font-weight: 400;
  font-size: 1.6em;
  line-height: 1.75rem;
  text-align: left;
  letter-spacing: -0.04em;
}

section h1 {
  font-size: 2rem;
}

section h2 {
  font-size: 1.8rem;
}

section h3 {
  font-size: 1.6rem;
}

a, a:hover, button, button:hover{
	transition: 0.3s;	
}

.textlink a:hover, .textlink button:hover{
	opacity: 0.6;
}

section p {
  font-size: 1.4rem;
  line-height: 1.75;
}

svg,path{
  color: inherit;
  stroke: inherit;
}

/* display responsive */
@media (768px <= width) {
  .disp-sp{
    display: none !important;
  }
}
@media (width < 768px) {
  .disp-pc{
    display: none !important;
  }
}

img{
	width: 100%;
}

/* cta */
.cta {
    display: inline-flex;
    align-items: center;
    padding: 0.7em 1.2em 0.8em;
    background-color: var(--color-orange);
    border-radius: 100px;
    color: var(--color-black);
    margin-top: 7%;
}
@media (768px <= width) {
  .cta {
    margin-top: 3%;
  }
}

.page-content .cta {
    display: inline-flex;
    align-items: center;
    padding: 0.5em 1.2em 0.7em;
    background-color: var(--color-orange);
    border-radius: 100px;
    font-size: var(--fontsize-p-12);
    color: var(--color-black);
    margin-top: 10%;
}

/* ホバー時 */
.cta:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}

/* アイコン */
.cta-icon {
  display: inline-flex;
  align-items: center;
  margin-left: 0.3rem;
 transform: translateY(0.1em);
}
.cta-icon svg{
  display: inline-flex;
  align-items: center;
  width: 1.4rem;
  height: 1.4rem;
  color: var(--color-black);
}

.content-flex{
	display: flex;
}
@media (768px <= width) {
	.content-flex-pc{
		display: flex;
	}
	.content-flex-sp{
		display: block;
	}
}
@media (width < 768px) {
	.content-flex-pc{
		display: block;
	}
	.content-flex-sp{
		display: flex;
	}
}

/* ============================================ */
/* 1.HEADER */
/* ============================================ */

#header{
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.header__wrapper{
  position: relative;
  width: 100%;
}
.header__wrapper-inner{
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
  padding-block: 2%;
  align-items: center;
}
@media (width < 768px) {
  .header__wrapper-inner{
    padding-block: 5%;
  }
}

.header__wrapper .header__wrapper-logo{
  display: block;
  z-index: 1003;
  position: relative;
}
.header__wrapper .header__wrapper-logo img{
  width: 100px;
}

/* ハンバーガーメニューボタン */
.menu-trigger {
  display: flex;
  color: var(--color-black);
  background: var(--color-orange);
  font-size: var(--fontsize-p-12);
  padding: .5rem 0.7rem 0.7rem 1rem;
  border-radius: 100px;
  align-items: center;
  cursor: pointer;
  border: none;
  position: relative;
  z-index: 1002; /* ナビゲーションよりも上に表示 */
  transition: background-color 0.3s ease;
}

.menu-trigger .button-text {
  margin-right: 0.3rem;
  line-height: 1;
}
.menu-trigger.active .button-text{
  margin-right: 0.1rem;
}

.menu-trigger .button-icon {
  position: relative;
  width: 10px;
}

/* プラスマーク横 */
.menu-trigger .button-icon span {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--color-black);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

/* プラスマーク縦 */
.menu-trigger .button-icon span::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  background-color: var(--color-black);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

/* メニュー開いた時のスタイル変更 */
.menu-trigger.active {
  background-color: var(--color-white);
}

/* ×マークへの変形 */
.menu-trigger.active .button-icon{
  transform: translateY(10%) rotate(135deg);
  /* transform: rotate(135deg); */
}

/* ナビゲーションメニュー */
.header__wrapper .nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--color-white);
  background-color: var(--color-orange);
  z-index: 1001;
  padding: 60px 20px;
  box-sizing: border-box;
  pointer-events: none;

  /* トランジション設定 - display:noneを使わない */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in, transform 0.3s ease-in, visibility 0.3s ease-in;
}

.header__wrapper .nav-wrapper.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.header__wrapper .nav-wrapper ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.header__wrapper .nav-wrapper ul li {
  margin-bottom: 0px;
}

.header__wrapper .nav-wrapper ul li a {
  color: var(--color-white);
  font-size: 1.8rem;
  text-decoration: none;
}

.header__wrapper .nav-wrapper .bg-d-logo{
	display: none;
}

@media (width < 768px) {
  .header__wrapper .nav-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: var(--color-white);
    background-color: var(--color-orange);
    z-index: 1001;
    box-sizing: border-box;
    
    /* トランジション設定 */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in, transform 0.2s ease-in, visibility 0.3s ease-in;
  }
  .header__wrapper .nav-wrapper.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

	.header__wrapper .nav-wrapper.active .bg-d-logo{
		display: flex;
		flex-direction: column;
		width: 130%;
		height: 100%;
		opacity: .15;
		position: relative;
		gap: 5%;
	}
	.header__wrapper .nav-wrapper.active .bg-d-logo img{
		position: relative;
		width: 80vh;
		height: 80vh;
	}
	.header__wrapper .nav-wrapper.active .bg-d-logo .upper{
		right: -10%;
		rotate: 180deg;
	}
	.header__wrapper .nav-wrapper.active .bg-d-logo .lower{
		left: -20%;
	}

  .header__wrapper .nav-wrapper .nav-wrapper-link{
	position: absolute;
	top: 50%;
	transform: translatey(-50%)
	}
	
  .header__wrapper .nav-wrapper ul li {
    opacity: 1;
    transform: translateY(0);
  }
.header__wrapper .nav-wrapper ul.inner-link{
	margin-bottom: 60px;
  }
.header__wrapper .nav-wrapper ul.inner-link li a{
	position: relative;
	font-size: var(--fontsize-3xl);
	line-height: 1;
	letter-spacing: -0.04em;
	}
.header__wrapper .nav-wrapper ul.outer-link li p{
  font-size: var(--fontsize-m);
}
.header__wrapper .nav-wrapper ul.outer-link li p.outer-link-title{
  font-size: var(--fontsize-xl);
}
.header__wrapper .nav-wrapper ul.outer-link li a {
  color: var(--color-gray);
  display: flex;
  align-items: center;
  flex-direction: row;
 margin-top: 6px;
}
.header__wrapper .nav-wrapper ul.outer-link li a span{
	width: var(--fontsize-s);
	height: var(--fontsize-s);
	margin: 0.2em 0 0 0.1em;
}
.header__wrapper .nav-wrapper ul li a .link-num{
	position: absolute;
	top: 17%;
    font-size: 35%;
	letter-spacing: -0.05em;
  }
	.header__wrapper .nav-wrapper ul.outer-link li{
	position: relative;
    font-size: var(--fontsize-s);
	line-height: 1;
  }

  /* ボタンのアイコントランジション調整 */
  .menu-trigger .button-icon {
    transition: transform 0.2s ease-in, background-color 0.2s ease-in;
    width: 1.2rem;
    height: 1.2rem;
    line-height: 1;
    /* padding: 0.2rem; */
  }
	.menu-trigger .button-icon::before{
	display:inline-block;
	font-size: 1.2rem;
	transform: translateY(4%);
	}

  /* ボタンテキストのトランジション */
  .menu-trigger .button-text {
    transition: color 0.2s ease-in;
  }
}

@media (768px <= width) {
  .header__wrapper .nav-wrapper {
    /* SP用の非表示設定を上書き */
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    position: static;
    background: transparent;
    padding: 0;
    height: auto;
    width: auto;
  }
  
  .header__wrapper .nav-wrapper ul {
    display: flex;
    gap: 2em;
    margin: 0;
    text-align: left;
  }
  
  .header__wrapper .nav-wrapper ul li {
    margin-bottom: 0;
  }
  
  .header__wrapper .nav-wrapper ul li a {
    color: var(--color-white);
    font-size: var(--fontsize-xs);
  }

	.header__wrapper .nav-wrapper ul li a {
    color: var(--color-white);
    font-size: var(--fontsize-xs);
  }
	.page-content .header__wrapper .nav-wrapper ul li a {
    mix-blend-mode: difference;
  }
	.page-content .header__wrapper .nav-wrapper ul li a span{
    letter-spacing: 0.05;
  }
}


/* ============================================ */
/* 2.FOOTER */
/* ============================================ */

#footer {
  position: relative;
  width: 100%;
}
.footer__wrapper{
  position: relative;
  width: 100%;
  overflow: hidden;
}
.footer__wrapper-inner{
  display: block;
  position: relative;
  width: 90%;
  margin: 0 auto;
  padding: 5% 0 2%;
  align-items: center;
}
.footer__wrapper .nav-wrapper-link {
	position: relative;
	z-index: 2;
	margin-bottom: 10%;
}
.footer__wrapper .nav-wrapper-link .inner-link{
	color: var(--color-white);
	font-size: var(--fontsize-xl);
	margin-bottom: 5%;
}
.footer__wrapper .nav-wrapper-link .inner-link li{
	position: relative;
	line-height: 1.2;
}
.footer__wrapper .bg-d-logo img{
	opacity: .05;
}
.footer__wrapper .nav-wrapper-link .link-num{
	font-size: var(--fontsize-2xl);
	position: absolute;
	top: 17%;
	font-size: 35%;
}
.footer__wrapper .nav-wrapper-link .outer-link{
	color: var(--color-white);
}
.footer__wrapper .nav-wrapper-link .outer-link-title{
	color: var(--color-white);
	font-size: var(--fontsize-l);
	word-break: keep-all;
	display: inline-block;
}
.footer__wrapper .nav-wrapper-link .outer-link a{
	position: relative;
	color: var(--color-gray);
	font-size: var(--fontsize-xs);
	display: flex;
	align-items: center;
	flex-direction: row;
	margin-top: 6px;
}
.footer__wrapper .nav-wrapper-link .inner-link li a{
	display: inline-block;
	padding-right: 0.5em;
	line-height: 1;
}
	@media (width < 768px) {
		.footer__wrapper-inner{
		  padding: 10% 0 5%;
		  overflow: hidden;
		  height: 100%;
		}
		.footer__wrapper .bg-d-logo{
			position: absolute;
			transform: translate(-50%, -50%);
			z-index: 1;
			top: 70%;
			left: 80%;
			width: 80%;
		}
		.footer__wrapper .nav-wrapper-link {
			/* display: flex; */
		}
		.footer__wrapper .nav-wrapper-link .inner-link {
		    width:50%;
		}
		.footer__wrapper .nav-wrapper-link .outer-link-title {
		    line-height: 1.2;
		}
		.footer__wrapper .nav-wrapper-link .outer-link a span{
			padding-top: .25em;
		}
		.footer__wrapper .nav-wrapper-link .outer-link a svg{
			width: 1.2rem;
			height: 1.2rem;
		}
	}

@media (768px <= width) {
	.footer__wrapper-inner{
	  padding: 3% 0 3%;
	  align-items: center;
	}
	.footer__wrapper .nav-wrapper-link {
		margin-bottom: 2%;
	}
	.footer__wrapper .nav-wrapper-link .inner-link{
		color: var(--color-white);
		font-size: var(--fontsize-xl);
		margin-bottom: 10%;
	}
	.footer__wrapper .bg-d-logo{
		position: relative;
		width: 70vw;
	}
	.footer__wrapper .nav-wrapper-link .outer-link-title{
		color: var(--color-white);
		font-size: var(--fontsize-m);
		word-break: keep-all;
	}
	.footer__wrapper .nav-wrapper-link .outer-link a{
		position: relative;
		color: var(--color-gray);
		display: flex;
		align-items: center;
		flex-direction: row;
		margin-top: 6px;
	}
	.footer__wrapper .nav-wrapper-link .outer-link a .icon SVG{
		width: 1.5rem;
		height: 1.5rem;
	}
}
#footer .copywriting{
  color: var(--color-gray);
  font-size: var(--fontsize-xs);
  line-height: 1.4;
  text-align: left;
  margin-top: 1%;
}

/* TOPのみ */
#top #footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1000;
}
#top .footer__wrapper .bg-d-logo{
	display: none;
}
#top .footer__wrapper-inner{
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
  padding-block: 2%;
  align-items: center;
}
@media (width < 768px) {
	#top .footer__wrapper-inner{
	  padding-block: 5%;
	}
}

#top .footer__wrapper-nav{
	display: none !important;
}

.page-content #footer{
	background: var(--color-black);
}
.page-content #footer .copywriting.top{
  /* display: none; */
}

#top #footer .copywriting{
  position: relative;
  color: var(--color-white);
  /* position: relative; */
}

.sound-switch__button {
  display: flex;
  align-items: center;
  gap: 0.4em;
  color: var(--color-white);
  font-size: var(--fontsize-xs);
  cursor: pointer;
  transition: 0.3s ease;
}
.page-content .sound-switch.textlink{
	display: none !important;
}

.sound-switch:has(.sound-on){
	padding-right: .14em;
}
.sound-switch__button i{
  font-size: var(--fontsize-m);
}
@media (768px <= width) {
	#top #footer .copywriting{
	  display: block !important;
	}
	#footer .bg-d-logo .copywriting{
		text-align: right;
	}	
	.sound-switch__button i{
	  font-size: 2.8rem;
	}
	.footer__wrapper-nav nav{
		display: flex;
		justify-content: space-between;
	}
	.footer__wrapper-nav nav .bg-d-logo img{
		opacity: 1;
	}	
}
@media (width < 768px) {
	button.sound-switch__button:hover{
	  opacity: 1;
	}
}


/* ============================================ */
/* 3.TOP */
/* ============================================ */

html, body {
  height: 100%;
  height: auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; 
}


#top-wrapper{
  position: relative;
}

/* .section-top{
  position: relative;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  height: 100svh;
  overflow: hidden;
}
.section-top__mv {
  position: relative;
  overflow: hidden;
  min-width: 100%;
  width: 100vw;
  height: 100vh;
  min-height: 100svh;
  .section-top__mv video {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100vw;
  height: 100vh;
  transform: none;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
  background: #000;
}
} */

/* 改修版 */
.section-top,
.section-top__mv {
    min-height: 100svh;
    min-height: 100dvh;
    height: 100svh;
    height: 100dvh;
    width: 100vw;
    overflow: hidden;
}
.section-top__mv video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* info */
.section-top__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.section-top__wrapper-inner {
  width: 90%;
  position: relative;
  height: auto;
}
.section-top__info{
    color: var(--color-white);
    text-align: left;
    position: static;
    margin-bottom: 15vh;
    /* transform: translateX(-50%); */
    left: 50%;
    width: 90%;
}
/* ——— Safari(iOS／macOS) 対応 ——— */
/* html.is-safari .section-top__info {
    bottom: 10% !important;
}
@media (768px <= width) {
	.section-top__info{
	  bottom: 3%;
	}
} */

.info-textwrap p{
  font-size: var(--fontsize-xs);
}
@keyframes blinking {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.info-pre-title {
    display: inline-flex;
    align-items: center;
}

.info-pre-title::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 0.75rem;
    border-radius: 50%;
    background: var(--color-orange);
    animation: blinking 1.3s ease-in-out infinite alternate;
    transform: translateY(0.1em);
}

.info-title{
  color: var(--color-white);
  font-size: clamp(3.6rem, 3.2rem + 2vw, 6.4rem);
  font-weight: 400;
  margin-block: 6px;
}
.info-title__ja{
	font-family: 'Noto Sans JP', sans-serif;
	font-size: var(--fontsize-p-32);
    margin: 0.2em 0 0.4em 0;
}
@media (768px <= width) {
	.info-title__ja{
		margin: 0.2em 0 0.3em 0;
	}
}
.info-date .icon{
  width: 1.6rem;
  height: 1.4rem;
  padding-top: 0.1rem;
  margin-left: 0.5em;
}
.info-date .location{
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ============================================ */
/* 4.About アバウト
/* ============================================ */

.page-content {
  background: var(--color-bg-light);
  width: 100%;
}
#mv-about.section__mv{
	background-image:  url("/assets/images/about/bg-about.jpg");
	background-position: bottom left;
}
mv-about .mv-inner{
	padding: 20% 5%;
}

.mv-title{
	position: absolute;
	/* top: 0; */
	z-index: 1;
}
.mv-title h2{
	position: relative;
	color: var(--color-white);
	font-size: var(--fontsize-3xl);
}
.mv-title h2 .title-num{
	position: absolute;
    top: 10%;
    font-size: 35%;
}
.mv-title p{
	color: var(--color-white);
	font-size: var(--fontsize-xxs);
	font-family: "IBM Plex Mono", monospace;
	line-height: 1.7;
	letter-spacing: 0.05em;
}

.page-content{
	background: var(--color-bg-light);
	width: 100%;
}
.page-content a:hover{
	opacity: .6;
}
#mv-about.section__mv{
	background-image:  url("/assets/images/about/bg-about.jpg");
	background-position: bottom left;
	background-size: cover;
	background-repeat: no-repeat;
}
#mv-about .mv-inner{
	padding: 7% 5% 10%;
	height: 100%;
}
#mv-about .mv-content .mv-text {
	display: flex;
	margin: 22% 12% 0 0%;
}
.mv-content .mv-text{
	position: relative;
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(20px);
	background-color: rgba(0, 0, 0, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	flex-direction: column;
}
.mv-content .mv-text h3{
	color: var(--color-white);
	font-size: clamp(2.4rem, 1.6rem + 4vw, 4.8rem);
	font-weight: 400;
	margin-bottom: 3%;
	display: inline-block;
}
.mv-content .mv-text p{
	color: var(--color-white);
	font-size: var(--fontsize-xxs);
	font-family: YakuHanJP, "Noto Sans JP", sans-serif;
	display: inline-block;
	letter-spacing: 0.005em;
	word-break:break-word;
}
.mv-content .mv-text .outer-link{
	display:flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-content: center;
	margin-top: 10%;
	padding-bottom: 2%;
	border-bottom: 1px solid #fff;
}
.mv-content .mv-text .outer-link p{
	font-family: "Bricolage Grotesque", sans-serif;
	color: var(--color-white);
	font-size: var(--fontsize-m);
	line-height: 1;
}
.mv-content .mv-text .outer-link p.outer-link-title{
	display: flex;
	align-items: center;
	position: relative;
	padding-left: 20px;
	color: var(--color-white);
	line-height: 1;
}
.mv-content .mv-text .outer-link p.outer-link-title::before{
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	border-radius: 50%;
	background: var(--color-orange);
	width: 12px;
	height: 12px;
	animation: blinking 1.3s ease-in-out infinite alternate;
}
.mv-content .mv-text .outer-link a{
	display: flex;
	align-items: center;
	flex-direction: row;
}
.mv-content .mv-text .outer-link a span{
	color: white;
	width: 15px;
}
@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* スライド中のアクティブ画像にだけアニメーションを適用 */
.mv-img.uk-slideshow-items > li.uk-active img {
    transform-origin: center center;
    animation: zoomIn 5s ease-out forwards;
}
@media (width < 768px) {
	.section__mv{
		width: 100%;
	}
	#mv-about.section__mv{
		background-image:  url("/assets/images/about/bg-about.jpg");
		background-position: bottom left;
	}
	#mv-event.section__mv .mv-img{
		margin: 48% 0 0 15%;
	}
	.mv-inner{
		padding: 20% 5%;
	}
	#mv-about .mv-inner{
		padding: 20% 5%;
	}
	#mv-about .mv-content {
		position: relative;
		margin-top: -35%;
	}
	.mv-title{
		margin-bottom: 15%;
	}
	.mv-title h2{
		position: relative;
		color: var(--color-white);
		font-size: var(--fontsize-3xl);
		margin-bottom: 2%;
	}
	.mv-title h2 .title-num{
	position: absolute;
    top: 10%;
    font-size: 35%;
	}
	.mv-title p{
		color: var(--color-white);
		font-size: var(--fontsize-xxs);
		font-family: "IBM Plex Mono", monospace;
	}
	.mv-content {
		position: relative;
	}
	.mv-content .mv-img{
		height: 28vh;
		margin: 48% 0 0 15%;
	}
	#event .mv-content .mv-img{
		margin-left: 15%;
		overflow: hidden;
		width: auto !important;
	}
	#event .mv-content .mv-img img{
		min-height: 100%;
		object-fit: cover;
	}
	.mv-content .mv-text{
		display: flex;
		padding: 6% 6%;
		margin: 12% 10% 0 0%;
	}
}
@media (width < 376px) {
	.mv-inner{
		min-height: 100%;
	}
}

@media (768px <= width) {
	.mv-inner{
		/* position: relative; */
		padding: 7% 5% 3%;
		height: 100vh;
	}
	#mv-about.section__mv{
		background-image:  url("/assets/images/about/bg-about.jpg");
		background-position: bottom left;
		background-size: cover;
		background-repeat: no-repeat;
	}
	#mv-about .mv-content .mv-text {
        display: flex;
        margin: -14% 12% 0 0;
    }
	.mv-title p{
		letter-spacing: 0.2em;
		margin-top: .5em;
	}
	.mv-content{
		/* top: 0; */
	}
	.mv-content .mv-img{
		width: 100%;
		display: flex;
		flex-direction: row-reverse;
		overflow: hidden;
		width: auto !important;
		min-height: 60vh;
		max-height: 70vh;
		margin-left: 30%;
	}
	.mv-content .mv-img img{
		width: 100%;
		display: flex;
		flex-direction: row-reverse;
		min-height: 60vh;
		max-height: 60vh;
		object-fit: cover;
		/* margin: 0 -6% 0 6%; */
	}
	#about .mv-content .mv-text{
		min-width: 30%;
	}
	.mv-content .mv-text{
		min-width: 35%;
		max-width: 35vw;
		padding: 3%;
		margin-top: calc(-2em - 10%);
	}
	.mv-content .mv-text .outer-link{
		display:flex;
		justify-content: space-between;
		flex-wrap: wrap;
		align-content: center;
		margin-top: 7%;
		padding-bottom: 2%;
		border-bottom: 1px solid #fff;
	}
}

/* ============================================ */
/* 5-1. Event イベント / 共通
/* ============================================ */

	/* content */
	#mv-event.section__mv{
	background-image: url("/assets/images/event/bg-event.jpg");
	background-position: 20% 0%;
	background-size: 140%;
	background-repeat: no-repeat;
	top: 0;
	position: relative;
	}

	#mv-event.section__mv {
	background-image: url("/assets/images/event/bg-event.jpg");
	background-position: 20% 0%;
	background-size: 180%;
	background-repeat: no-repeat;
	top: 0;
	position: relative;
	}


	.section__content{
		padding: 20% 0;
	}
	.section__content .content-inner{
		overflow: hidden;
	}
	#pickup.section__content{
		padding: 20% 0 0;
	}
	.section__content .content-inner{
		width: 90%;
		margin: 0 auto;
	}

	/* Event Mover */
	#event-movie.section__content{
		background: var(--color-orange);
		/* background: var(--color-black); */
	}
	#event-movie.section__content .content-flex{
		gap: 5%;
		align-items: center;
	}
	#event-movie .wideo-wrap {
	    position: relative;
	    width: 65%;
	}
	#event-movie .wideo-wrap .sound-switch {
	    display: block !important;
	    position: absolute;
	    bottom: 2%;
	    right: 2%;
	    z-index: 10;
	}
	#event-movie.section__content .cotent-video-text{
		color: var(--color-black);
		/* letter-spacing: 0.005em; */
	}
	#event-movie.section__content p{
		margin-bottom: 8%;
	}
	#event-movie.section__content p.white{
		color: var(--color-white);
	}
	#event-movie.section__content .cotent-video-title{
		font-size: var(--fontsize-m);
		margin-bottom: 5%;
		border-bottom: 1px solid var(--color-black);
	}
	#event-movie.section__content .cotent-video-title{
		font-size: var(--fontsize-m);
		border-bottom: 1px solid var(--color-black);
	}
	#event-movie.section__content .cotent-video-title.white{
		border-bottom: 1px solid var(--color-white);
	}
    #event-movie.section__content .content-illust {
        position: relative;
        width: 30%;
        opacity: 1;
    }

@media (width < 768px) {
	#event-movie.section__content .content-flex{
		position: relative;
		flex-flow: column;
	}
    #event-movie .content-illust {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
        opacity: 0.5;
    }
    #event-movie .wideo-wrap {
        position: absolute;
        transform: translateY(-50%);
        top: 50%;
        width: 100%;
    }
	#event-movie.section__content .content-illust{
		width:100%;
	}
    #event-movie .wideo-wrap video {
        position: relative;
    }
	#event-movie .wideo-wrap .sound-switch {
	    bottom: 3%;
	    right: 3%;
	}
}

	.section__content h3{
		font-size: var(--fontsize-2xl);
		margin-bottom: 8%;
	}
	.section__content .article{
		margin-bottom: 15%;
		overflow: hidden;
	}
	.section__content .article img{
		border: 1px solid var(--color-gray);
		width: 100%;
		height: auto;
	}
	.section__content .article-text{
	}
	.section__content .info-title{
		font-size: var(--fontsize-m);
		font-weight: 400;
		color: var(--color-black);
		line-height: 1;
		margin: 8% 0 3%;
	}
	.section__content .info-date,
	.section__content .info-subtitle, 
	.section__content .info-price{
		font-size: var(--fontsize-xs);
		font-weight: 400;
		color: var(--color-darkgray);
	}
	.section__content .info-price,
	.section__content .info-subtitle{
		display: inline-block;
		margin-bottom: 2%;
	}
	.section__content .info-date .icon{
		font-size: var(--fontsize-s);
		font-weight: 400;
		color: var(--color-darkgray);
		width: var(--fontsize-s);
		height: var(--fontsize-s);
		padding-top: 1.5%;
	}
	.section__content .content-grid{
		display: grid;
		grid-template-columns: repeat(2,1fr);
		row-gap: 4vh;
		column-gap: 5%;
	}

	/* pickup */
	.section__content h3 {
	    display: inline-flex;
	    align-items: center;
	    margin-bottom: 8%;
	    font-size: 2rem;
	}
	.section__content h3::before {
	    content: "";
	    display: inline-block;
	    width: 15px;
	    height: 15px;
	    margin-right: 0.75rem;
	    border-radius: 50%;
	    background: var(--color-orange);
	    animation: blinking 1.28s ease-in-out infinite alternate;
	}
	.section__content .article-image{
		position: relative;
		display: flex;
	    flex-flow: column;
	}
	@media (width < 768px) {
		.section__content h3::before {
		    transform: translateY(0.1em);
		}
	}
	.section__content .article{
		position: relative;
		margin: 0;
	}
	#pickup.section__content .info-title{
		font-size: var(--fontsize-2xl);
	}
	#pickup.section__content .info-date{
		font-size: var(--fontsize-l);
	}
	#pickup.section__content .info-date .icon{
		width: var(--fontsize-l);
		height: var(--fontsize-l);
	}


@media (768px <= width) {
	#mv-event.section__mv{
	background-size: 100%;
	}
	.section__content{
		padding: 10% 0;
	}
	.section__content h3{
		margin-bottom: 5%;
		font-size: var(--fontsize-l);
	}
	.section__content .content-grid{
		grid-template-columns: repeat(3,1fr);
		row-gap: 12vh;
		column-gap: 5%;
	}
	.section__content .info-title{
		font-size: var(--fontsize-l);
		margin: 5% 0 1%;
	}
	.section__content .info-date,
	.section__content .info-subtitle, 
	.section__content .info-price{
		font-size: var(--fontsize-s);
	}
	.section__content .info-date .icon{
		font-size: var(--fontsize-s);
		font-weight: 400;
		color: var(--color-darkgray);
		width: var(--fontsize-s);
		height: var(--fontsize-s);
		padding-top: 0.7%;
	}
	/* pickup */
	#pickup.section__content{
		padding: 10% 0 0;
	}
	#pickup.section__content .article{
		display: flex;
		align-items: center;
		margin: 0;
		gap: 8%;
	}
	#pickup.section__content h3{
		position: relative;
	}
	#pickup.section__content .article .article-image{
		width: 35%;
	}
	/* #pickup.section__content .article .article-text{
		margin-top: -5%;
	} */
	#pickup.section__content .info-title{
		font-size: var(--fontsize-3xl);
		font-size: 10rem;
		line-height: 0.8;
		margin: 3% 0 3%;
	}
	#pickup.section__content .info-date{
		font-size: var(--fontsize-l);
	}
	#pickup .article-image.uk-slideshow .uk-slidenav-previous,
	#pickup .article-image.uk-slideshow .uk-slidenav-next {
	  display: block !important;
	  opacity: 1;
	  transition: opacity 0.2s ease;  /* ホバー時に強調したい場合 */
	  z-index: 5; 
	}
	.section__content .article-image{
		display: flex;
	    flex-flow: column;
	}
	
	/* ホバーでさらに目立たせる（オプション） */
	.article-image.uk-slideshow:hover .uk-slidenav-previous,
	.article-image.uk-slideshow:hover .uk-slidenav-next {
	  opacity: 1;
	}


}
/* モーダル */
.modal{
	z-index: 10000;
}
.modal .uk-modal-body{
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3em 1em;
}

.uk-modal-close-default{
	position: absolute;
	padding: 1em;
	color: var(--color-white);
	top: 0;
	right: 0;
}
#event .modal img{
	border: 1px solid var(--color-gray);
}
.uk-modal-close-default{
	position: absolute;
	padding: 1em;
	color: var(--color-white);
	top: 0;
	right: 0;
}
.modal .uk-icon:not(.uk-preserve) [stroke*="#"]:not(.uk-preserve){
	stroke: var(--color-white);
}
.uk-slideshow-nav{
    position: absolute;
    bottom: 1.5em !important;
    width: 100%;
    transform: translateX(-50%);
    left: 50%;
}
.modal .uk-slideshow-nav li a{
	border: 1px solid var(--color-white);
}
.modal .uk-slideshow-nav li.uk-active a{
	background: var(--color-white);
}
.modal .modal-text{
	color:var(--color-white);
}



/* ============================================ */
/*  5-2.Product 
/* ============================================ */

#mv-product.section__mv{
	background-image:  url("/assets/images/product/bg-product.jpg");
	background-position: 10% 50%;
	background-size: 130%;
	background-repeat: no-repeat;
}
#mv-product.page-content .cta {
    display: inline-flex;
    align-items: center;
    padding: 0.5em 1.2em 0.7em;
    background-color: var(--color-orange);
    border-radius: 100px;
    font-size: var(--fontsize-p-12);
    color: var(--color-black);
    margin-top: 10%;
    transform: translateY(-0.1em);
}
#product .content-inner{
	width: 100%;
}
#product .content-grid{
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 0;
}
#product .article-image{
	position: relative;
}
#product .article-image{
	position: relative;
}

#product .article-text{
	position: absolute;
	bottom: 80px;
}
#product .article-text{
	padding: 5%;
	width: 100%;
	position: absolute;
	bottom: 0;
	background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .5) 50%, rgba(0, 0, 0, .5) 100%);
}
#product .article-text .info-title,
#product .article-text .info-subtitle,
#product .article-text .info-price{
	color: #fff !important;
	margin-bottom: 0;
}
#product .article-text .info-title{
	color: #fff !important;
	margin: 5% 0 1%;
}
#product .section__content .article img{
	border:none !important;
}

@media (768px <= width) {
	#product .content-grid{
	    grid-template-columns: repeat(3, 1fr);
		column-gap: 0;
	}
	#product .content-inner{
		width: 90%;
	}
    #product .section__content .info-title {
        font-size: var(--fontsåize-m);
    }
}

@media ( width < 768px) {
	#mv-product.section__mv .mv-content img{
		height: 28vh;
		object-fit: cover;
	}
	#product .section__content h3 {
		margin: 0 0 5% 5%;
	}
}

/* ============================================ */
/* 6. 404 Not Found
/* ============================================ */
#not-found .mv-inner{
	position: relative;
    overflow: hidden;
	height: 100dvh;
	background: #111;
}
#not-found .error-face{
	position: absolute;
    top: 0;
    left: 0;
    width: 10em;
	pointer-events: auto;
}
#not-found .mv-title .btn-back-top {
	display: inline-block;
	margin-top: 2%;
}
#not-found .mv-title{
	width: 90%;
	position: absolute;
	bottom: 5%;
	color: var(--color-white);
}
#not-found .mv-title h2 {
	font-size: var(--fontsize-2xl);
	margin-bottom: 1%;
}
@media (width < 768px) {
	#not-found .error-face{
	    width: 8em;
	}
	#not-found .mv-title h2 {
		margin-bottom: 5%;
	}
	#not-found .mv-title .btn-back-top {
		display: inline-block;
		margin-top: 5%;
	}
}



/* ============================================ */
/* 10.Pre Loader プリローダー
/* ============================================ */

/* 共通オーバーレイ */
#loader-overlay-black,
#loader-overlay-white,
#loader-overlay-orange {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000; /* header/menu より上 */
}
#loader-overlay-black { background: var(--color-black); z-index: 10010;}
#loader-overlay-orange { background: var(--color-orange);}


/* Dロゴ・Drancroomロゴ */
#loader-d-logo,
#loader-dranc-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    height: 10vw;
    z-index: 10020;
}
#loader-d-logo{
	height: 15vw;
}

@media (768px <= width) {
	#loader-d-logo{
		height: 8vw;
	}
	#loader-dranc-logo {
	    height: 5vw;
	}
}
	
/* Dロゴ フェード */
@keyframes fade-d-logo {
    0%   { opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { opacity: 0; }
}
/* Drancroomロゴ フェード */
@keyframes fade-dranc-logo {
    0%   { opacity: 0; }
    10%  { opacity: 0; }
    20%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { opacity: 0; }
}

/* 背景スライド（共通） */
@keyframes slide-up {
    from { transform: translateY(0); }
    to   { transform: translateY(-150%); }
}

/* アニメーション適用 */
#loader-d-logo {
    animation: fade-d-logo 1s ease-in-out forwards 1s;
}
#loader-dranc-logo {
    animation: fade-dranc-logo 1s ease-in-out forwards 2s;
}
#loader-overlay-black {
    animation: slide-up 0.3s cubic-bezier(0.4,0,1,1) forwards 3s;
}
#loader-overlay-orange {
    animation: slide-up 0.3s cubic-bezier(0.4,0,1,1) forwards 3.3s;
}

/* internal link クリック時は非表示 */
.no-loader #loader-overlay-black,
.no-loader #loader-overlay-orange {
    display: none !important;
}


/* ============================================ */
/* 11.アニメーション
/* ============================================ */

/* ===== mv-title タイトルアニメーション ===== */
/* 初期状態：下にオフセット＆透明 */
.section__mv .mv-title > * {
    opacity: 0;
    transform: translateY(8%);
    transition: opacity 1s ease-in-out, transform 1s cubic-bezier(0, 0, 0.43, 1.11);
    display: block;
}

/* in-view クラスがついたら元の位置＆不透明に */
.section__mv.in-view .mv-title > * {
    opacity: 1;
    transform: translateY(0);
}

/* 要素順に遅延）*/
.section__mv.in-view .mv-title > *:nth-child(1) {
    transition-delay: 0.2s;
}
.section__mv.in-view .mv-title > *:nth-child(2) {
    transition-delay: 0.4s;
}


/* ===== mv-text アニメーション ===== */
/* 初期状態：下にオフセット＆透明 */
.section__mv .mv-title h2,
.section__mv .mv-title p,
.section__mv .mv-text h3,
.section__mv .mv-text p,
.section__mv .mv-text .outer-link {
    opacity: 0;
    transform: translateY(6%);
    transition: opacity 1s cubic-bezier(0.42, 0, 0.6, 1), transform 0.8s cubic-bezier(0.51, -0.12, 0.1, 1.22);
    display: block;
}
.section__mv .mv-text .outer-link{
	display: inline-flex;
}

/* ===== in-view 発火時 ===== */
/* ① mv-title の h2 と mv-text の h3 */
.section__mv.in-view .mv-title h2,
.section__mv.in-view .mv-text h3 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
}

/* ② mv-title の p と mv-text の p */
.section__mv.in-view .mv-title p,
.section__mv.in-view .mv-text p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

/* ③ mv-text の outer-link */
.section__mv.in-view .mv-text .outer-link {
    opacity: 1;
    transform: translateY(0);
	transition-delay: 0.1s;
}