@charset "UTF-8";

body {
  margin: 0px;
  background-color: #fff;
	font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 30px;
  color: #000;
  height: 100%;
  box-sizing: border-box;
}

body.is-fixed #body_wrapper,
body:not(.showNavi) #body_wrapper {
  opacity: 0;
  visibility: hidden;
}

/* モーダルが閉じて showNavi クラスが付与されたらふわっと表示 */
body.showNavi #body_wrapper {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}


html {
  height: 100%;
}
img {
  border-style: none;
  vertical-align: bottom;
}

* {
  margin: 0;
  padding: 0;
}

.modal-movie {
  cursor: pointer;
}
.pcview {
  width: 100%;
}
.spview {
  display: none;
}
.scrollShowEffect1 {
  transition: all 1.0s;
  transition-delay: 0s;
  opacity: 0;
}
.scrollShowEffect2 {
  transition: all 1.0s;
  transition-delay: 0.3s;
  opacity: 0;
}
.scrollShowEffect3 {
  transition: all 1.0s;
  transition-delay: 0.6s;
  opacity: 0;
}
.scrollShowEffect-R {
  transform: translate3d(10%, 0%, 0);
}
.scrollShowEffect-L {
  transform: translate3d(-10%, 0%, 0);
}
.scrollShowEffect-B {
  transform: translate3d(0, 50px, 0);
}
.scrollShowEffect-T {
  transform: translate3d(0, -50px, 0);
}
.scrollShowEffect-Z {
  transform: scale(0.2, 0.2);
}
.scrollShowEffect-O {
  transform: scale(1.2, 1.2);
}
.scrollShowEffect1.showItem {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.scrollShowEffect2.showItem {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.scrollShowEffect3.showItem {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.mb0 {
  width: 100%;
  overflow: hidden; /* heightを戻す */
}
.mb5 {
  width: 100%;
  overflow: hidden; /* heightを戻す */
  margin-bottom: 5px;
  line-height: 140%;
}
.mb10 {
  width: 100%;
  overflow: hidden; /* heightを戻す */
  margin-bottom: 10px;
}
.mb20 {
  width: 100%;
  overflow: hidden; /* heightを戻す */
  margin-bottom: 20px;
}
.mb30 {
  width: 100%;
  overflow: hidden; /* heightを戻す */
  margin-bottom: 30px;
}
.mb50 {
  width: 100%;
  overflow: hidden; /* heightを戻す */
  margin-bottom: 50px;
}
.mb70 {
  width: 100%;
  overflow: hidden;
  margin-bottom: 70px;
}
.mb100 {
  width: 100%;
  overflow: hidden;
  margin-bottom: 100px;
}
.pcbr {
  display: inline;
}

@property --hole-size {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 0%;
}

.loading {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
}

/* 幕の親要素 */
.loading-curtain {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

/* 背景画像＋切り抜きマスクの設定 */
.curtain-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/loading/bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* 中央に透明な穴を開けるマスク設定 */
  -webkit-mask-image: radial-gradient(
    circle at 50% 50%,
    transparent var(--hole-size),
    #000000 var(--hole-size)
  );
  mask-image: radial-gradient(
    circle at 50% 50%,
    transparent var(--hole-size),
    #000000 var(--hole-size)
  );

  /* マスクの穴サイズ変更をアニメーション化 */
  transition: --hole-size 1.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.loading-logo {
  width: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.loading-logo.is-show {
  opacity: 1;
}

/* --- 開くアニメーション --- */

/* is-openが付いたら、背景画像そのものに設定した穴（透明領域）を広げる */
.js-loading.is-open .curtain-bg {
  --hole-size: 150%;
}

#body_wrapper{
    width:100%;
    box-sizing: border-box;
    overflow: hidden;
}

#rightblock{
	width:22%;
	height: 100%;
	position: fixed;
	right: 0;
	top:0;
	padding:2% 0 0 0;
	box-sizing: border-box;
	background-color: #fff;
	box-shadow: 10px 0 15px -5px rgba(0, 0, 0, 0.3);
	z-index: 100;
}
  
#rightblock img{
    width:100%;
    height: auto;
}

.right_wrapper{
    width:100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
	padding:0 10%;
}

.rightlogo{
	width:80%;
	margin-top: 2%;
	margin-bottom: 10%;
	box-sizing: border-box;
}

.hamburger-btn {
  display: none;
}

.menu_wrapper {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 12%;
}

.menu {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 2%;
  font-family: "Commissioner", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
	line-height: 18px;
}

.menu:last-child {
  margin-bottom: 0;
}

.menu a {
  display: block;
  width: 100%;
  padding: 10px 15px;
  box-sizing: border-box;
  text-decoration: none;
  background-image: linear-gradient(to left, #fff100 50%, #e4007f 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  color: #000000;
  transition: background-position 0.4s ease, color 0.4s ease;
  word-break: break-word;
}

.menu a:hover {
  background-position: left bottom;
  color: #ffffff;
  cursor: pointer;
}

.menu a:has(.menu-icon) {
  white-space: nowrap;
}

/* 文字部分 */
.menu a span {
  display: inline-block;
  vertical-align: middle;
}

/* アイコン画像（サイズと横並びを強力固定） */
.menu-icon {
  display: inline-block !important;
  vertical-align: middle;
  
  /* サイズ固定 */
  height: 14px !important;
  width: 14px !important;
  max-width: 14px !important;
  max-height: 14px !important;
  
  /* 間隔設定 */
  margin-left: 6px !important;
  margin-right: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  
  filter: invert(1);
  transition: filter 0.4s ease;
}

/* ホバー時の処理 */
.menu a:hover .menu-icon {
  filter: invert(0);
}

.biling{
	width:80%;
	position: absolute;
	left:10%; 
	bottom:5%;
	background-color: #ccc;
}

#leftblock{
  width:78%;
	box-sizing: border-box;
}

#top_wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
	background-color: #000;
}

#top_wrapper img {
  width: 100%;
  height: auto;
}

.spmain {
  display: none;
}

.topmain {
  width: 100%;
  z-index: 1;
}

.day {
  width: 16%;
  position: absolute;
  right: 10%;
  top: 12%;
}

.pt {
  width: 100%;
  font-family: "Commissioner", sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
}

/* インラインブロック化してテキストの幅に合わせる */
.pt span {
  display: inline-block;
  padding: 2px 15px; /* マーキングの上下左右の余白（お好みで調整） */
  
  /* 左から右へ流れる背景グラデーション設定 */
  /* 最初は幅0%（見えない）、#e4007f が敷かれる設定 */
  background-image: linear-gradient(#e4007f, #e4007f);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 0% 100%; /* 初期状態は横幅0% */
  
  /* アニメーションの設定（0.6秒かけてイージング移動） */
  transition: background-size 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* スクロールして画面に入った時（is-activeが付与された時） */
.pt.is-active span {
  background-size: 100% 100%; /* 横幅を100%にしてハイライトを表示 */
}

.black{
	color: #000;
}

.pink{
	color: #e4007f;
}

.yellow{
	color: #fff33f;
}


#intro_wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
  box-sizing: border-box;
	background-color: #fff;
}

#intro_wrapper img {
  width: 100%;
  height: auto;
}

#intro_inner {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
	padding:5% 10%;
}

.jpn, .eng {
  width: 100%;
  margin-bottom: 20px;
  /* ふわっと切り替えるためのトランジション設定 */
  transition: opacity 0.5s ease, visibility 0.5s ease;
  opacity: 1;
  visibility: visible;
}

.eng {
  font-family: "Commissioner", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #e4007f;
}

/* 非表示状態（透明＋表示領域をなくす） */
.is-hidden {
  opacity: 0;
  visibility: hidden;
  display: none;
}

.btn-lang {
  display: block;
  margin-left: auto; /* 右寄せ */
  padding: 8px 16px;
  background-color: #666;
  color: #ffffff;
  border: none;
  font-family: "Commissioner", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-lang:hover {
  opacity: 0.8;
}


.introphoto{
	width:25%;
	float: left;
}


#message_wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
  box-sizing: border-box;
	background-color: #fff33f;
}

#message_wrapper img {
  width: 100%;
  height: auto;
}

#message_inner {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
	padding:5% 10%;
}


#yayoikusama_wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
  box-sizing: border-box;
	background: url("images/message/bg.webp") 100% 0 no-repeat fixed;
	background-size:cover;
	padding-bottom: 30%;
}

#yayoikusama_wrapper img {
  width: 100%;
  height: auto;
}

#yayoikusama_inner {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
	padding:5% 10%;
	background-color: #fff;
}

.prof_img{
	width:25%;
	float: left;
}

.prof_text{
	width:72%;
	float: right;
}

.profname{
	width:100%;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
}

.profnen{
	font-size: 15px;
}


#director_wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
  box-sizing: border-box;
	background-color: #fff33f;
}

#director_wrapper img {
  width: 100%;
  height: auto;
}

#director_inner {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
	padding:5% 10%;
}

.profs{
	font-size: 15px;
	padding-right: 10px;
}

#credit_wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
  box-sizing: border-box;
	background-color:#fff;
}

#credit_wrapper img {
  width: 100%;
  height: auto;
}

#credit_inner {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
	padding:5% 10%;
}

.creditmidashi{
	width:100%;
	background-color:#fff33f;
	line-height: 1;
	font-size: 13px;
	font-weight: 500;
	padding:8px 10px;
	margin-bottom: 10px;
}

.credittext{
	width:100%;
	margin-bottom: 30px;
}

.creditphoto{
	width:33.3333%;
	float: left;
}


#contact_wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
  box-sizing: border-box;
	background: url("images/message/bg.webp") 100% 0 no-repeat fixed;
	background-size:cover;
	padding-top: 30%;
}

#contact_wrapper img {
  width: 100%;
  height: auto;
}

#contact_inner {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
	padding:5% 10%;
	background-color: #fff;
}

#contact_inner a{
	text-decoration: none;
	color: #e4007f;
}

#contact_inner a:hover{
	text-decoration: none;
	color: #fff33f;
}



@media screen and (max-width: 1024px) {
	
.pcview {
  display: none;
}
.spview {
  display: inherit;
}

.loading-logo {
  width: 200px;
}

.hamburger-btn {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px; /* 3本線の間隔 */
    position: fixed;
    top: 15px;
    right: 15px;
    width: 44px;  /* タップしやすいサイズ */
    height: 44px;
    background-color: #fff33f; /* ご指定の黄色背景 */
    border: none;
    cursor: pointer;
    z-index: 100001; /* 確実に最前面に表示 */
    pointer-events: auto !important; /* クリックを強力に有効化 */
    padding: 0;
    box-sizing: border-box;
	opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.5s ease, visibility 0.5s ease;
  }
	
body.showNavi .hamburger-btn {
    opacity: 1;
    visibility: visible;
  }

  /* 3本線の指定 */
  .hamburger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #000000; /* ご指定の黒線 */
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  /* メニューが開いた時（バツ印に変化） */
  .hamburger-btn.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger-btn.is-active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger-btn.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

#rightblock {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100vw;
  height: 100dvh; /* 100vh よりモバイルで正確な画面高さ */
  background-color: #fff;
  z-index: 100000;
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  padding: 20px;
  box-sizing: border-box;
  pointer-events: auto;

  /* CSS Grid による完全中央寄せ */
  display: grid;
  place-content: center; /* 上下左右の完全中央に配置 */
}

/* 開いた状態 */
#rightblock.is-active {
  right: 0;
}

.right_wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.rightlogo {
  width: 60%;
  margin-top: 0;
  margin-bottom: 30px;
  box-sizing: border-box;
	text-align: left;
}

.rightlogo img {
  width: 100%;
  height: auto;
}

.menu_wrapper {
  width: 100%;
  margin-bottom: 0 !important; /* PC時の余白をリセット */
}

.menu {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 10px;
  font-family: "Commissioner", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 18px;
}

.menu:last-child {
  margin-bottom: 0;
}

.biling {
  display: none !important;
}
	
	
#leftblock{
  width:100%;
	box-sizing: border-box;
}
	
.spmain {
    display: inherit;
}
	
.topmain, .day {
    display: none;
}

#intro_inner {
	padding:10%;
}
	
.jpn, .eng {
  margin-bottom:50px;
}

.btn-lang {
	width:100%;
  display: inherit;
  margin-left: auto; /* 右寄せ */
  padding: 8px 16px;
  background-color: #666;
  color: #ffffff;
  border: none;
  font-family: "Commissioner", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.introphoto{
	width:50%;
	float: left;
}

#message_inner {
	padding:10%;
}

#yayoikusama_wrapper {
    background:none;
    padding-bottom: 0;
  }

#yayoikusama_inner {
	padding:10%;
}

.prof_img{
	width:60%;
	float: none;
	margin-bottom: 20px;
}

.prof_text{
	width:100%;
	float: none;
}

.profname{
	width:100%;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 20px;
}

.profnen{
	font-size: 13px;
}

#director_inner {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
	padding:10%;
}

.profs{
	font-size: 15px;
	padding-right: 10px;
}

#credit_inner {
	padding:10%;
}

.creditphoto{
	width:100%;
	float: none;
}
	
.creditphoto:nth-child(1){
	display: none;
}
	
#contact_wrapper {
	background: none;
	padding-top:0;
}

#contact_inner {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
	padding:15% 10%;
	background-color: #fff;
}

	
	
	
	
}

/* ==========================================
   動画モーダル
   ========================================== */
.modal-contents {
  display: none;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(0, 0, 0, 0.95) !important;
  z-index: 20000 !important;
}
.modal-contents .modal-contents-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.modal-contents .modal-contents-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 155vh;
  max-width: 95%;
}
.modal-contents-iframe-player {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
  height: 0;
}
.modal-contents-iframe-player iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: none;
}
.modal-close {
  width: 50px;
  height: 50px;
  position: fixed !important;
  top: 20px !important;
  right: 20px !important;
  z-index: 99999 !important;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
}
.modal-close:hover {
  transform: scale(1.1);
}
.modal-close img {
  width: 100%;
  height: 100%;
  pointer-events: none;
}