@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Kaisei+Opti&display=swap');


/*全体の設定
---------------------------------------------------------------------------*/
body,html {width: 100%;height: 100%;}
#site-content { scroll-behavior: smooth; }
body {
	margin: 0px;
	padding: 0px;
	color: #3b3539;
	font-family: "Kaisei Opti", serif;
	font-size: 13px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #fff;	/*背景色*/
	-webkit-text-size-adjust: none;
	text-shadow: 1px 1px white, 1px 1px 2px white, 0 0 3px white;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form,input,textarea {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}


/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #7b7978;		/*リンクテキストの色*/
	transition: 0.4s;	/*マウスオン時の移り変わるまでの時間設定。0.4秒。*/
}
a:hover {
	color: #a59c8f;			/*マウスオン時の文字色*/
	text-decoration: underline;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}


/*wrapperサイト全体を囲むブロック
---------------------------------------------------------------------------*/
.wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  /*  z-index: 9999;  */
  z-index:-1;
}

.wrapper::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid #888;
  border-radius: 30px 10px 10px 30px;
  box-sizing: border-box;
  overflow:hidden;
}



/*枠外のテキスト、時計
-------------------------------------------*/
.corner-text {
    position: fixed;
    top: 1px;
    right: 45px;
    font-size: 15px;
    line-height: 15px;
    white-space: nowrap;
    z-index: 10000;
    background: white;
    padding: 0px;
    display: flex;
    flex-direction: row;
    gap: 10px;
}
#animated-text {
  text-align: right;
  direction: ltr;
  display: inline-block;
}

#clock {
  min-width: 60px;
}


/*枠内
-------------------------------------------*/
#site-content{
  position: fixed;
  top: 23px;
  left: 22px;
  right: 22px;
  bottom: 23px;
  border-radius: 30px;
  box-sizing: border-box;
  background:transparent;
  overflow-y:auto;
  overflow-x:none;
scrollbar-color: #444 transparent;
scrollbar-width:auto;

}




/*トップ
-------------------------------------------*/
/*ヘッダー
-------------------------------------------*/
#content-hedder{
	position: relative;
	overflow: hidden;
	height: calc(100vh - 42px);
	border-bottom:1px solid #ccc;
	background:linear-gradient(0deg, transparent 9px, rgba(200, 200, 250, 0.75) 10px, transparent 1px), linear-gradient(90deg, transparent 9px, rgba(230, 200, 250, 0.75) 10px, transparent 1px), #FFF;
	background-size: 23px 23px;
	text-align:center;
}


.hedder-inner{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left:0;
	width: 88%;
	max-width: 1300px;
	height: calc(100vh - 250px);
	margin:auto;
	text-align:left;
	border:0px solid #faa;
}
.hedder-inner-relative{
	position: relative;
	width:100%;
	height:100%;
	border:0px solid #0af;
}


/*ヘッダーパネル内
-------------------------------------------*/
.hedder-panel {
    position: absolute;
    left: 0;
    top: 0;
    bottom:0;
    margin:auto 0;
    width: 41%;
    max-width: 465px;
    height: 100%;
    background: linear-gradient(145deg, #cc55ff, #6644cc 90%);
   /*  border-radius: 4px; */
   /* box-shadow: 0 12px 26px rgba(88, 60, 240, .25), 0 2px 0 rgba(0, 0, 0, .06) inset; */
}
.hedder-panel-inner{
	position: relative;
	width:100%;
	height:100%;
}
/*初見です*/
.hedder-panel-scroll-wrap {
	position:absolute;
	bottom:80px;
	left:0;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}
.hedder-panel-scroll-wrap img {
  width: 447px;
  max-width: 447px;
	height:auto;
  display: inline-block;
  animation: marquee 12s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/*ドラゴン*/
.hedder-panel-jump-dragon {
	position:absolute;
	bottom:162px;
	left:0;
	right:0;
	margin:0 auto;
  display: inline-block;
    width: fit-content;
}
.hedder-panel-jump-dragon1 img{
  width: 200px; /* 画像サイズは調整してください */
  animation: dragondisp1 12s linear infinite;
}
.hedder-panel-jump-dragon2 img{
  width: 200px; /* 画像サイズは調整してください */
  animation: jump2 12s ease-in-out infinite, dragondisp2 12s linear infinite;
}
@keyframes dragondisp1 {
  0%   { display:none; }
  32.8%  { display:none; }
  33%  { display:inline-block; }
  67%  { display:inline-block; }
  67.2%  { display:none; }
  100% { display:none; }
}
@keyframes dragondisp2 {
  0%   { display:inline-block; }
  32.8%  { display:inline-block; }
  33%  { display:none; }
  67%  { display:none; }
  67.2%  { display:inline-block; }
  100% { display:inline-block; }
}
@keyframes jump2 {
  0%   { transform: translateY(-180px); }
  33%  { transform: translateY(0); }
  67%  { transform: translateY(0); }
  100% { transform: translateY(-180px); }
}


/*ヘッダー、文字
-------------------------------------------*/
.eyebrow {
    position: absolute;
    right: 1%;
    top: 25%;
    font-size: 16px;
    line-height: 1.7;
    color: #6e6b75;
    text-align: right;
    width: 350px;
    border: 0px solid #0af;
}
.eyebrow p{
    color: #6e6b75;
    letter-spacing: 3px;
	transition: 3s cubic-bezier(0, 0.43, 0.25, 1) all;
}
.eyebrow p:hover{
    color: #8855ff;
    letter-spacing: 0px;
}

.headline {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 82%;
    height: 120px;
    font-weight: bold;
    font-size: 0px;
    letter-spacing: .06em;
    text-shadow: 1px 1px 0 #fff, 2px 2px 3px rgba(0, 0, 0, .3);
    text-align: right;
    color: #2a2730;
    border: 0px solid #faa;
	z-index:10;
  animation: headline-anime 10s ease-in-out infinite;
}
@keyframes headline-anime {
  0%   { transform: translateY(7px); }
  48%  { transform: translateY(-7px); }
  52% { transform: translateY(-7px); }
  100% { transform: translateY(7px); }
}
.headline1{
    display: inline-block;
    width: fit-content;
    margin: 0 0 0 auto;
    font-size: 40px;
    line-height: 1.5;
}
.headline2{
    display: inline-block;
    width: fit-content;
    margin: 0 0 0 auto;
    font-size: 40px;
    line-height: 1.5;
}
.headline1-txt1{
    position: relative;
    display: table-cell;
    vertical-align: middle;
    margin: 0 0 0 0;
    padding: 0 25px 0 0;
	letter-spacing:9px;
}
.headline1-txt1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px; /* 文字との距離 */
  width: 91%;
  height: 2px; /* 線の太さ */
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 2s cubic-bezier(0.07, 0.82, 0, 1);
}
.headline1-txt1:hover::after {
  transform: scaleX(1);
}

.fukidashiicon{
    display: table-cell;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    font-size: 0;
}
.fukidashiicon img{
    height: 40px;
    margin: 0;
    padding: 0;
    line-height: 1;

}
.headline2-txt2 {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    margin: 0 0 0 0;
    padding: 0 0 0 25px;
	letter-spacing:10px;
}
.headline2-txt2::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px; /* 文字との距離 */
  width: 95%;
  height: 2px; /* 線の太さ */
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 2s cubic-bezier(0.07, 0.82, 0, 1);
}
.headline2-txt2:hover::after {
  transform: scaleX(1);
}

.youtubeicon {
    display: table-cell;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    font-size: 0;
}
.youtubeicon img {
    height: 40px;
    margin: 0;
    padding: 0;
    line-height: 1;
}

/*ヘッダー、ミノ画像
-------------------------------------------*/
.mino2 {
    position: absolute;
    right: 1%;
    top: 0;
    max-height: 135px;
    height: calc(100vh * 0.14);
    z-index:2;
    transition: transform 0.8s cubic-bezier(.34,1.56,.64,1);
}
.mino2:hover {
    transform: rotate(180deg);
}
.mino1 {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    max-height: 195px;
    height: calc(100vh * 0.21);
    z-index:2;
    transition: transform 1s cubic-bezier(.34,1.56,.64,1);
}
.mino1:hover {
    transform: rotate(-180deg);
}




/*表（削除）
-------------------------------------------*/
#content-table{
	margin:0;
	padding:0;
}
#content-table td,
#content-table tr{
	margin:0;
	padding:0;
}
#content-table td{
	border-top:1px solid #aaa;
	border-right:1px solid #aaa;
    margin: 0;
    padding: 0;
    font-size: 34px;
    line-height: 40px;
	font-weight:bold;
	text-align:center;
}
#content-table tbody{
	border-left:1px solid #aaa;
	border-bottom:1px solid #aaa;
}

#content-table span {
    display: block;
    font-size: 14px;
    line-height: 18px;
    margin: 0;
    padding: 0;
	font-weight:normal;
	text-align:left;
}


/*subttl
-------------------------------------------*/
.subttl {
    display: block;
    width: 40%;
    max-width: 600px;
    min-width: 450px;
    font-size: 45px;
    line-height: 45px;
    letter-spacing: 18px;
    padding: 0px 10px 10px 55px;
    margin: 0;
    border-bottom: 1px dashed #444;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(to bottom right, #ff4c7d, #6733b7);
    text-shadow: none;
    white-space: nowrap;
    transition: 8s cubic-bezier(0.05, 0.7, 0, 1) letter-spacing;
}
.subttl:hover {
    letter-spacing: 33px;
}
p.subttl-info {
    width: 40%;
    max-width: 600px;
    min-width: 450px;
    font-size: 14px;
    line-height: 1;
    padding: 16px 0 60px 55px;
    color: #555;
    letter-spacing: 2px;
}




/*"いつもの"と違う、面白い配信がしたい。
-------------------------------------------*/
#content-topinfo {
  position: relative;
  overflow: hidden;
    padding: 160px 0 170px 0;
    border-bottom: 1px solid #888;
    /*background: linear-gradient(145deg, #eeccff, #ccccee 90%);*/
/*background: linear-gradient(145deg, #ffffff, #faf7ff 98%);*/
    text-align: center;
	z-index: 2;
}
#content-topinfo2 {
  position: relative;
  overflow: hidden;
    padding: 125px 0 140px 0;
    border-bottom: 1px solid #888;
    background:linear-gradient(0deg, transparent 9px, rgba(200, 200, 250, 0.5) 10px,
             transparent 1px), linear-gradient(90deg, transparent 9px,
             rgba(230, 200, 250, 0.5) 10px,
             transparent 1px), #FFF;
    background-size: 29px 29px;
	z-index: 2;
}
#content-topinfo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(img-back-top2.png) center/cover no-repeat;
  transform: scale(1);
  transition: transform 1.5s cubic-bezier(0, 0, 0, 1);
  z-index:-1;
}
#content-topinfo:hover::before{
	transform: scale(1.3);
}
.topinfo-main,
.topinfo-main2 {
    display: block;
    width: 100%;
    /* max-width: 600px; */
    min-width: 450px;
    font-size: 40px;
    line-height: 45px;
    letter-spacing: -3px;
    padding: 0px 10px 10px 55px;
    margin: 0;
    padding: 0 0 45px 0;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(to bottom right, #ff4c7d, #6733b7);
    text-shadow: none;
    transition: 6s cubic-bezier(0.05, 0.74, 0, 1) letter-spacing;
	white-space: nowrap;
	text-shadow: 21px 24px 3px rgba(0, 0, 0, 0.1);
}
.topinfo-main2 {
	text-shadow: 5px 5px 3px rgba(0, 0, 0, 0.1)!important;
}
#content-topinfo:hover .topinfo-main,
#content-topinfo2:hover .topinfo-main{
    letter-spacing: 7px;
}
.topinfo-txt{
    font-size: 21px;
    line-height: 1.2;
    color:#888;
    letter-spacing: 7px;
    white-space: nowrap;
    text-shadow: 11px 11px 3px rgba(50, 50, 50, 0.2);
}
.topinfo-txt1{
	padding:0 150px 30px 0;
    transition: 6s cubic-bezier(0.05, 0.7, 0, 1) padding;
}
.topinfo-txt2{
	padding:0 0 0 130px;
    transition: 6s cubic-bezier(0.05, 0.7, 0, 1) padding;
}
.topinfo-txt1:hover{
	padding:0 10px 30px 0;
}
.topinfo-txt2:hover{
	padding:0 0 0 10px;
}
.topinfo-txt2{
    font-size: 30px;
    line-height: 1.2;
    color:#888;
    letter-spacing: 7px;
    white-space: nowrap;
    text-shadow: 11px 11px 3px rgba(50, 50, 50, 0.2);
}

.topinfo-span3,
.topinfo-span4{
	display:block;
	width:100%;
	margin:0 0 0 55px;
	text-align:left;
    line-height: 1.8;
    letter-spacing: 3px;
}
.topinfo-txt3{
    font-size: 30px;
    line-height: 1.9;
    color:#888;
    letter-spacing: 7px;
    white-space: nowrap;
    text-shadow: 4px 4px 3px rgba(50, 50, 50, 0.2);
    padding-left: 50px;
}
.topinfo-txt4{
	display:block;
    transition: 6s cubic-bezier(0.05, 0.7, 0, 1) padding;
    text-align: left;
}
.topinfo-txt5{
	display:block;
    transition: 6s cubic-bezier(0.05, 0.7, 0, 1) padding;
    text-align: left;
}

#hedder-top-logo {
    position: absolute;
    top: -82px;
    left: 0px;
}
#top-apply-button {
    position: absolute;
    right: 13px;
    bottom: 0;
    display: inline-block;
    width: 300px;
    height:88px;
        border: 1px solid rgb(129, 81, 178);
    background:no-repeat url(top-button04.png);
    transition: all 3s ease;
    opacity: 0;
}
#top-apply-button:hover {
	background:no-repeat url(top-button03.png);
}
.hedder-inner-relative:hover #top-apply-button{
    opacity:1;
}


/*What
-------------------------------------------*/
#content-what{
	padding:115px 0 130px 0;
    border-bottom: 1px solid #888;
	background:#f5f5f5;
}

.what-columns-outer{
	display: grid;
	gap: 15px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 0 50px;
}

.what-columns-inner{
    padding:20px;
	border:1px #ccc solid;
	border-radius:18px 18px 18px 18px ;
	background:linear-gradient(168deg, #bb45ed, #4c2ea5 73%);
}


.what-columns-subttl {
    color: #fff;
    font-size: 18px;
    line-height: 120%;
    padding: 0 0 10px 0;
    margin: 0;
    text-shadow: 0 0 8px #ccc;
}
.what-columns-info {
    color: #fff;
    font-size: 15px;
    line-height: 165%;
    padding: 0;
    margin: 0;
    text-shadow: 0 0 #ccc;
}

.what-icon{
	font-size:0;
	
}
.what-icon img {
    border: none;
    height: 56px;
    padding: 0 0 11px 0px;
  animation:whaticon 8s ease-in-out infinite;
}
@keyframes whaticon {
  0%   { transform: translateX(0); }
  9%   { transform: translateX(0); }
  11%  { transform: translateX(3px); }
  13%  { transform: translateX(-3px); }
  15%  { transform: translateX(3px); }
  17%  { transform: translateX(-3px); }
  19%  { transform: translateX(0); }
  100% { transform: translateX(0); }
}


/*How
-------------------------------------------*/
#content-how{
	padding:115px 0 130px 0;
	border-bottom: 1px solid #888;
}

.how-columns-outer{
	display: grid;
	gap: 15px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 0 50px;
}

.how-columns-inner{
    padding:20px;
	border:1px #ccc solid;
	border-radius:18px 18px 18px 18px ;
	background:#111;
}

.how-no {
    font-size: 45px;
    line-height: 1;
    padding: 0 0 15px 0;
    color: transparent;
}
.how-columns-subttl {
    color: #fff;
    font-size: 20px;
    line-height: 120%;
    padding: 0 0 10px 0;
    margin: 0;
    text-shadow: 0 0 8px #ccc;
}
.how-columns-info {
    color: #fff;
    font-size: 15px;
    line-height: 165%;
    padding: 0;
    margin: 0;
    text-shadow: 0 0 #ccc;
}




/*lvup
-------------------------------------------*/
#content-lvup{
  padding:115px 0 100px 0;
  border-bottom:1px solid #888;
  background:#fff;
}

.lvup-columns-outer{
  display:grid;
  gap:15px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 50px;
}

.lvup-card {
    color: #555;
    padding: 40px 35px 80px;
    text-shadow: 0 0 2px rgba(0, 0, 0, .6);
    transition: transform .25s ease, box-shadow .25s ease;
}
.lvup-card-bg01{
    background: no-repeat url(img-back02.png);
    background-size: 100% 100%;
}
.lvup-card-bg02{
    background: no-repeat url(img-back01.png);
    background-size: 100% 100%;
}
.lvup-card-bg03{
    background: no-repeat url(img-back03.png);
    background-size: 100% 100%;
}
.lvup-card:hover{
  transform: translateY(-3px);
  border-color:#ae8cff;
}

.lvup-icon{
  font-size:0;
  margin:0 auto 10px;
  text-align:center;
}
.lvup-icon img{
  height:76px;
  display:inline-block;
  animation: lvupicon 8s ease-in-out infinite;
}
@keyframes lvupicon{
  0%,9%,19%,100% { transform: translateX(0); }
  11% { transform: translateX(3px); }
  13% { transform: translateX(-3px); }
  15% { transform: translateX(3px); }
  17% { transform: translateX(-3px); }
}

.lvup-title {
    font-size: 23px;
    color: #666;
    line-height: 1.2;
    margin: 0 0 8px 0;
    text-shadow: 0 0 8px #ccc;
    text-align: center;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #fff, 0 0 15px #fff;
}

.lvup-desc {
    font-size: 16px;
    line-height: 2;
    margin: 0;
    color: #555;
    text-shadow: 0 0 10px #fff;
    word-break: break-all;
}






/*price
-------------------------------------------*/
#content-price{
	padding:115px 0 130px 0;
	border-bottom: 1px solid #888;
    background: #f9f9ff;
}

.price-columns-outer{
	display: grid;
	gap: 15px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 0 50px;
}

.price-columns-inner{
    padding:30px 25px;
	border-radius:18px 18px 18px 18px ;
	background:#333;
    flex-direction: column;
    display: flex;
	color:#fefefe;
	text-shadow: 0 0 2px black;
}
.price-waku{
	transition:0.5s;
}
.price-waku:hover{
    box-shadow: 0 0 3px 2px #ee88ff;
}

/*価格・プラン名*/
.price-text1{
	display: flex;
    justify-content: space-between;
}
h3.price-text1-price{
    font-size: 17px;
    line-height: 17px;
	font-weight:normal;
	letter-spacing:2px;
}
/*価格*/
.price-text2{
    display: flex;
    gap: 0.25rem;
	align-items: flex-end;
	margin:19px 0 17px;
}
.price-text2-price1{
    font-size: 30px;
    line-height: 30px;
	font-weight:bold;
	letter-spacing:1px;
}
.price-text2-price2{
    font-size: 15px;
    line-height: 15px;
	color:#bbb;
}
/*価格・項目・チェックマーク*/
.price-check {
    --tw-text-opacity: 1;
    color: rgb(251 113 133 / var(--tw-text-opacity, 1));
    height: 37px;
    width: 18px;
    padding: 0;
    margin: 0;
}
/*価格・項目*/
.price-ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.price-ul-li{
    display: flex;
    gap: 3px;
	font-size: 15px;
	line-height: 37px;
	letter-spacing:1px;
}
.price-button {
    background-image: linear-gradient(to right, #f43f5e, #7c3aed);
    border-radius: 12px;
    font-size: 19px;
    line-height: 1;
    color: #fff;
    text-shadow: none;
    text-decoration: none !important;
    text-align: center;
    padding: 11px;
    margin-top: 17px;
    letter-spacing: 1px;
}
.price-button:hover{
    background-image: linear-gradient(to bottom right, #f43f5e, #7c3aed);
    color: #fdd;
}
/*価格・補足*/
.price-text-hosoku{
    font-size: 13px;
    line-height: 1;
	padding:20px 0 0 0;
	margin: 0 50px;
	color:#888;
    letter-spacing: 1px;
	text-align:right;
}



/*ＱＡ
-------------------------------------------*/

#content-qa{
	padding:115px 0 130px 0;
	border-bottom: 0px solid #888;
    background: #fff;
}

.qa-outer{
	width:75%;
	border:1px solid #ccc;
	border-radius: 14px;
	overflow: hidden;;
	margin:0px auto 0;
	padding:0 0px 0 0px;
}

.qa-q{
    display: flex;
    justify-content: space-between;
    align-items: center;
	font-size:17px;
	padding:10px 10px 10px 20px;
    list-style-type: none;
    cursor: pointer;
}
.qa-a{
	font-size:16px;
	padding:0px 15px 20px 25px;
}

.qa-outer > :not([hidden]) ~ :not([hidden]) {
    border-color: #aaa;
    border-width: 1px 0 0 0;
    border-style: solid;
}
.open\:bg-white\/10[open] {
    background-color: #f3f3f3;
}
/*QA・バッテン*/
.qa-plus{
    display: inline-block;
    transition:0.5s;
}
.qa-item[open] .qa-plus {
    transform: translate(0, 0) rotate(45deg) skewX(0) skewY(0) scaleX(1) scaleY(1);
}



/*参加申請
-------------------------------------------*/


#apply{
position:relative;
  margin:20px auto;
  padding:0px 0 0px 0;
  border-bottom:0px solid #888;
  text-shadow: none;
}
#apply-top {
    text-align: center;
    font-size: 32px;
    line-height: 1;
    color: #fff;
    padding: 0 0 18px 0;
    font-weight: bold;
    letter-spacing: 9px;
}
#apply-inner-back{
    position: absolute;
    inset: 0px;
    background: linear-gradient(145deg, #cc55ff, #6644cc 70%);
    pointer-events: none;
    -webkit-filter: blur(5px);
    filter: blur(5px);
    z-index:-1;
}
#apply-inner {
    background: linear-gradient(145deg, #cc55ff, #6644cc 70%);
    padding: 42px 0 50px 0;
}
.apply-input {
    width: 100%;
    padding: 10px 0;
    border: 1px solid #ccc;
    border-radius: 15px;
    background: #fff;
    color: #333;
    outline: none;
    transition: box-shadow .2s ease, border-color .2s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.apply-form {
    width: min(343px, 90%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
}

.apply-label {
    font-size: 20px;
    line-height: 1;
    color: #fff;
    letter-spacing: 1px;
    font-weight: normal;
    padding: 0 0 0 8px;
}

.apply-input{
  width: 100%;
	font-size:17px;
  padding: 10px 0;
  border: 1px solid #ccc;
  border-radius: 12px;
  background: #fff;
  color: #333;
  outline: none;
  transition: box-shadow .2s ease, border-color .2s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}
.apply-input::placeholder{
  color: #999;
}
.apply-input:focus{
  border-color: #b788ff;
  box-shadow: 0 0 0 4px rgba(183,136,255,.2);
}

.apply-help {
    font-size: 13px;
    line-height: 1;
    color: #ddd;
    margin: -4px 0 13px 5px;
}

#subcheck {
    padding: 16px 0px 0px 5px;
}

.apply-button{
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: middle;
  width: 300px;
    height:50px;
  border-radius: 25px;
    border: 2px solid #8b53eb;
    outline: 2px solid transparent;
    outline-offset: 2px;
    line-height: 1;
  cursor: pointer;
  color: #8b53eb;
  text-shadow: none;
  font-size: 18px;
  letter-spacing: 1px;
  margin: 25px auto 0;
  transition: transform .06s ease, filter .2s ease, box-shadow .2s ease;
  box-shadow: 0 8px 22px rgba(124,58,237,.25);
    letter-spacing: 3px;
}
.apply-button:hover{
  filter: brightness(1.05);
}
.apply-button:active{
  transform: translateY(1px);
}

#apply-button-outer {
    font-size: 25px;
    line-height: 29px;
    padding:0 0 0 0;
    text-align: center;
    color: #fff;
    font-weight: bold;
    letter-spacing: 3px;
    margin: 0 auto 0;
}

.hidlabel #subcheck {
    color: #548;
    text-align: center;
    cursor: grab;
}
.hidlabel {
    border-radius: 20px;
    background: #fff;
    text-align: center;
    line-height: 1;
    padding: 10px 0;
    margin: 20px 15px 0 15px;
    cursor: grab;
}



/*フッター
-------------------------------------------*/
#footer-inner-top{
	padding:170px 10px 0 10px;
	border-bottom:1px solid #eee;
}
#footer-logo img {
    width: auto;
    height: 65px;
    padding: 0 0 25px 30px;
}
#footer-inner-bottom {
    text-align: center;
    padding: 20px;
    color: #555;
    letter-spacing: 2px;
}




/* 上に戻るボタン
-------------------------------------------*/
.back-to-top {
    position: fixed;
    bottom: 37px;
    right: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 25px;
    background: linear-gradient(to right, #f43f5e, #7c3aed);
    padding: 0 0 1px 0;
    color: #fff;
    font-size: 20px;
    line-height: 20px;
    text-decoration: none;
    border-radius: 18px;
    z-index: 1000;
    opacity: 0.2;
    transition: all 0.3s;
    overflow: hidden;
}
.back-to-top:hover {
  opacity: 1;
color:#fff;
text-decoration: none;
    height: 48px;
}





/* グローバルメニュー
-------------------------------------------*/

/* トグルボタン（右上） */
.gm-toggle {
    position: absolute;
    top: 20px;
    right: 6.5%;
    width: 56px;
    height: 56px;
    border-radius: 10px;
    border: 0;
    background: transparent;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, .15); */
    display: grid;
    place-items: center;
    gap: 0;
    z-index: 11010;
    cursor: pointer;
    padding: 0;
}
.gm-toggle .gm-bar {
    display: block;
    width: 50px;
    height: 3px;
    background: #555;
    border-radius: 2px;
    transition: transform .24s ease, opacity .24s ease, background .24s ease;
}
.gm-toggle .gm-bar + .gm-bar{ margin-top: 5px; }

/* 開いているときは「×」に変形 */
.gm-toggle.is-open .gm-bar:nth-child(1){ transform: translateY(20px) rotate(45deg); }
.gm-toggle.is-open .gm-bar:nth-child(2){ opacity: 0; }
.gm-toggle.is-open .gm-bar:nth-child(3){ transform: translateY(-21px) rotate(-45deg); }

/* オーバーレイ */
.gm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease,backdrop-filter 3s ease;
    z-index: 11000;
}
.gm-overlay.is-open{ opacity: 1; visibility: visible; }

/* メニュー本体 */
.gm-nav{
  position: absolute; inset: 0; display: grid; place-items: center;
}
.gm-list{
  list-style: none; margin: 0; padding: 24px;
  display: grid; gap: 14px; text-align: center;
}
.gm-link{
  display: inline-block;
  font-size: clamp(20px, 3.2vw, 32px);
  letter-spacing: .08em; text-decoration: none;
  color: #2a2730; padding: 6px 12px; border-radius: 10px;
  transition: background .15s ease, transform .08s ease, color .15s ease;
}
.gm-link:focus, .gm-link:hover{ background: rgba(0,0,0,.06); color: #6733b7; }
.gm-link:active{ transform: translateY(1px); }

/* スクロールロック時（iOS対策でhtmlにも付与） */
html.gm-lock, body.gm-lock{ overflow: hidden; }

/* 既存の右上UIと重ならないよう微調整（角テキスト/戻るボタン） */
.corner-text{ z-index: 9999; }      /* メニューより下に */
.back-to-top{ z-index: 9999; }

/* レスポンシブ */
@media (max-width: 768px){
    .gm-toggle {
        top: 15px;
        right: 19px;
        width: 55px;
        height: 48px;
        border-radius: 10px;
    }
  .gm-toggle .gm-bar{ width: 39px; }
  .gm-list{ gap: 10px; }

.gm-toggle.is-open .gm-bar:nth-child(1) {
    transform: translateY(19px) rotate(45deg);
}
.gm-toggle.is-open .gm-bar:nth-child(3) {
    transform: translateY(-18px) rotate(-45deg);
}
}












/*------------ スマホ --------------------*/
/*------------ スマホ --------------------*/
/*------------ スマホ --------------------*/




/* --- Tablet (<= 1024px) -------------------------------------------------- */
@media (max-width: 1170px){

.headline{
    width: 100%;
}



}


/* --- Tablet (<= 1024px) -------------------------------------------------- */
@media (max-width: 1024px){

    .corner-text {
        right: 20px;
        font-size: 13px;
        gap: 6px;
    }

    .hedder-inner {
        width: 91%;
        max-width: none;
    }

  /* サブセクション見出しは横幅可変に */
  .subttl{ font-size: 43px; line-height: 1; letter-spacing: 15px; padding: 0 10px 10px 45px; }
  p.subttl-info{ padding: 16px 0 50px 45px; }

  /* セクションの左右余白を少し詰める */
  .what-columns-outer,
  .how-columns-outer,
  .lvup-columns-outer,
  .price-columns-outer{ margin: 0 30px; }

  /* Top情報の文字サイズ調整 */
  .topinfo-main{ font-size: 34px; letter-spacing: 0; }
  .topinfo-txt{ font-size: 16px; letter-spacing: 5px; }

  /* QA幅を少し広げる */
  .qa-outer{ width: 88%; }

.eyebrow {
	right: 0%;
}
.mino1 {
    padding: 0 0 0 50px;
}
.mino2 {
    right: 0%;
}
.gm-toggle {
	right: 5%;
}


}


/* --- Tablet (<= 900px) -------------------------------------------------- */
@media (max-width: 900px){

.what-columns-outer {
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.how-columns-outer,
.price-columns-outer{
	grid-template-columns: 1fr;
        gap: 12px;
}
.lvup-columns-outer{
    gap: 2px;
	margin: 0 12px;
}
    .headline1, .headline2 {
        font-size: 34px;
    }
    .fukidashiicon img, .youtubeicon img {
        height: 34px;
    }

}

/* --- Mobile (<= 768px) --------------------------------------------------- */
@media (max-width: 768px){

  html, body{ font-size: 14px; line-height: 1.9; text-shadow: none; }

  /* 見出し横幅可変 */
  .subttl{ width:auto; max-width:none; min-width:0; font-size: 36px; line-height: 1.15; letter-spacing: 12px; padding: 0 10px 8px 20px; }
  p.subttl-info{ width:auto; max-width:none; min-width:0; padding: 14px 20px 40px 20px; }

  /* 外枠・スクロール領域をモバイル向けに */
  .wrapper::before{ left: 10px; right: 10px; top: 12px; bottom: 12px; border-radius: 16px; }
  #site-content{ top: 16px; left: 12px; right: 12px; bottom: 16px; border-radius: 16px; }

  /* ドラゴン */
    #content-hedder {
        height: calc(100vh - 31px);
        text-align: center;
    }
    .hedder-inner {
        width: 93%;
        max-width: none;
    }
    .hedder-panel {
        position: absolute;
        bottom: auto;
        margin: 0 auto;
        width: 55%;
        max-width: none;
        border-radius: 12px;
    }
.hedder-panel-scroll-wrap {
    bottom:100px;
}
  .hedder-panel-scroll-wrap img{ width: 380px; max-width: 380px; }
  .hedder-panel-jump-dragon1 img,
  .hedder-panel-jump-dragon2 img{ width: 140px; }
.hedder-panel-jump-dragon{
    bottom: 172px;
}
  /* 動画・マルキーの負荷軽減（動き少なめに） */
  @media (prefers-reduced-motion: reduce){
    .hedder-panel-scroll-wrap img{ animation: none !important; }
    .hedder-panel-jump-dragon2 img{ animation: none !important; }
    .headline{ animation: none !important; }
  }

  /* ロゴ位置 */
    #hedder-top-logo {
        top: -93px;
        left: -2px;
        width: 60%;
        height: auto;
    }

.eyebrow {
        top: auto;
        right: -8px;
        bottom: 150px;
        width: auto;
        margin: 0 0 0 auto;
        font-size: 14px;
    }
.eyebrow p{
	letter-spacing: 1px;
        background-color: rgba(255, 255, 255, 0.8);
}

  /* キャッチコピーのサイズ調整 */
    .headline {
        width: 100%;
        top: 0;
        bottom: 0;
        right: -8px;
        left: auto;
        margin: auto 0;
    }
  .headline1, .headline2{ font-size: 26px; line-height: 1.4; }
  .fukidashiicon img, .youtubeicon img{ height: 28px; }
  .headline1-txt1{ padding-right: 12px; letter-spacing: 5px; }
  .headline2-txt2{ padding-left: 12px; letter-spacing: 6px; }

  /* ミノ画像は小さく or 片方非表示 */
    .mino2 {
        height: 12vh;
        max-height: 72px;
	left:auto;
        right: 2%;
    }
    .mino1 {
        height: 15vh;
        max-height: 100px;
        left: calc(50% + 40px);
        right: auto;
	padding: 0 0 0 0;
    }

  /* 申込ボタンを常時見える位置＆タップしやすく */
    #top-apply-button {
        position: absolute;
        left: 0;
        right: 0;
        bottom: -85px;
        margin: 0;
        width: 225px;
        max-width: none;
        height: 66px;
        opacity: 1;
	background: no-repeat url(top-button04.png);
        background-size: cover;
        border-radius: 12px;
    }
#top-apply-button:hover{
	background: no-repeat url(top-button04.png);
        background-size: cover;
}

  /* 「いつもの～」セクションの余白＆文字 */
  #content-topinfo{ padding: 90px 0 100px; }
  .topinfo-main{ font-size: 28px; letter-spacing: 1px; padding-bottom: 26px; }
  .topinfo-txt{ font-size: 14px; letter-spacing: 2px; }
  .topinfo-txt1{ padding: 0 30px 16px 0; }
  .topinfo-txt2{ padding: 0 0 0 20px; }

  /* グリッド→1列化、カード内余白も最適化 */
  .what-columns-outer,
  .how-columns-outer,
  .lvup-columns-outer,
  .price-columns-outer{ grid-template-columns: 1fr; margin: 0 16px; gap: 12px; }

  .what-columns-inner,
  .how-columns-inner,
  .lvup-card,
  .price-columns-inner{ padding: 16px 14px; border-radius: 14px; }

  .what-icon img{ height: 44px; }
  .how-no{ font-size: 34px; padding-bottom: 8px; }
  .how-columns-subttl, .what-columns-subttl{ font-size: 18px; }
  .how-columns-info, .what-columns-info{ font-size: 14px; }

  /* LvUPカードの背景は縦長で見切れないように */
  .lvup-card-bg01, .lvup-card-bg02, .lvup-card-bg03{ background-size: cover; background-position: center; }
  .lvup-icon img{ height: 60px; }
  .lvup-title{ font-size: 19px; }
  .lvup-desc{ font-size: 15px; line-height: 1.8; }

  /* 価格カードの文字＆ボタン */
  .price-text2{ margin: 12px 0 10px; }
  .price-text2-price1{ font-size: 26px; line-height: 1; }
  .price-ul-li{ font-size: 14px; line-height: 30px; }
  .price-button{ font-size: 17px; padding: 12px; }

  .price-text-hosoku{ margin: 0 16px; text-align: left; padding-top: 14px; }

  /* QA */
  #content-qa{ padding: 80px 0 90px; }
  .qa-outer{ width: 92%; }
  .qa-q{ font-size: 16px; padding: 12px; }
  .qa-a{ font-size: 15px; padding: 0 12px 16px 16px; }

  /* 参加申請フォーム */
  #apply-top{ font-size: 26px; letter-spacing: 6px; }
  #apply-inner{ padding: 30px 0 36px; }
  .apply-form{ width: min(420px, 92%); gap: 8px; }
  .apply-label{ font-size: 16px; }
  .apply-input{ font-size: 16px; padding: 10px 0px; }
  .apply-button{
width: 85%; max-width: 300px; height: 52px; font-size: 18px; letter-spacing: 2px; margin-top: 18px;
}
#apply-button-outer {
    display: inline-block;
    width: 100%;
}
#subcheck{
	text-align:center;
}

  /* フッター */
  #footer-inner-top{ padding-top: 100px; }
  #footer-logo img{ height: 50px; padding-left: 16px; }
  #footer-inner-bottom{ font-size: 12px; letter-spacing: 1px; }

  /* 戻るボタン：タップしやすく */
  .back-to-top{
    right: 25px; bottom: 21px; width: 44px; height: 44px; border-radius: 22px;
    font-size: 18px; line-height: 44px; opacity: .7;
  }
  .back-to-top:hover{ height: 44px; }
}




/* --- Small Mobile (<= 480px) -------------------------------------------- */
@media (max-width: 480px){

  /* 角テキストは1行化＆小さめ */
    .corner-text {
        top: 1px;
        right: 6px;
        font-size: 12px;
        gap: 2px;
        background: rgba(255, 255, 255, .9);
        padding: 0px 6px;
    }
  #clock{ min-width: 52px; }

  /* ヒーロー：さらにコンパクト */

    .headline {
        width: 99%;
        top: 13%;
	height: auto;
        bottom: auto;
	white-space: nowrap;
    }
  .headline1, .headline2{ font-size: 25px; }

    .hedder-inner {
        height: 100%;
    }

    #hedder-top-logo {
        top: 10px;
        left: 3px;
        width: 60%;
        height: auto;
    }

    .hedder-panel {
        position: absolute;
        top: 27%;
        left: -20px;
        right: auto;
        bottom: auto;
        margin: 0 auto;
        width: 84%;
        height: 52%;
        max-width: none;
        border-radius: 12px;
    }

  .fukidashiicon img, .youtubeicon img{ height: 25px; }
.headline1-txt1{
letter-spacing: 3.5px;
        padding-right: 12px;
}
.headline2-txt2{
 letter-spacing: 4px;
        padding-left: 10px;
}
  .mino1, .mino2{ display: none; }

.hedder-panel-jump-dragon {
    position: absolute;
    bottom: 88px;
    left: 10px;
    right: -10px;
    margin: 0 auto;
}
.hedder-panel-scroll-wrap {
    position: absolute;
    bottom: 29px;
    left: 0;
}
.hedder-panel-scroll-wrap img {
    width: 313px;
    max-width: 313px;
}
.hedder-panel-jump-dragon1 img{
    width: 130px;
}
.hedder-panel-jump-dragon2 img {
    width: 130px;
    animation: jump3 12s ease-in-out infinite, dragondisp2 12s linear infinite;
}
@keyframes jump3 {
  0%   { transform: translateY(-72px); }
  33%  { transform: translateY(0); }
  67%  { transform: translateY(0); }
  100% { transform: translateY(-72px); }
}

    .eyebrow {
        top: auto;
        right: -4px;
        bottom: 11.6%;
        width: auto;
        margin: 0 0 0 auto;
        font-size: 14px;
    }
.eyebrow p {
        letter-spacing: 1px;
        line-height: 1;
        padding: 4px;
        background-color: rgba(255, 255, 255, 0.8);
}
    #top-apply-button {
        position: absolute;
        left: 0;
        right: auto;
        bottom: 8px;
        margin: 0 auto;
        width: 150px;
        height: 44px;
        opacity: 1;
        background-size: cover;
	z-index: 15;
    }


/* content-topinfo */
    .topinfo-main {
        font-size: 22px;
        /* letter-spacing: 1px; */
        padding-bottom: 26px;
        width: 100%;
        min-width: 100%;
        text-shadow: 3px 17px 4px rgba(0, 0, 0, 0.1);
    }
#content-topinfo:hover .topinfo-main{
	letter-spacing: 1px;
}

.topinfo-main .topinfo-span1{
	display:block;
	width:95%;
	margin:0 0 0 auto;
	text-align:left;
}
.topinfo-main .topinfo-span2{
	display:block;
	width:95%;
	margin:0 auto 0 0;
	text-align:right;
}
.topinfo-main .topinfo-span3{
	display:block;
	width:95%;
	margin:0 0 0 auto;
	text-align:left;
}
.topinfo-main .topinfo-span4{
	display:block;
	width:95%;
	margin:0 auto 0 0;
	text-align:right;
}

  /* セクションの上下余白を短縮 */
  #content-what, #content-how, #content-lvup, #content-price, #content-qa{ padding: 70px 0 78px; }
  .subttl{ font-size: 28px; letter-spacing: 8px; padding: 0 8px 6px 14px; }
  p.subttl-info{ font-size: 13px; padding: 12px 14px 28px 14px; }

  .lvup-title{ font-size: 18px; }
  .lvup-desc{ font-size: 14px; }

  /* 申請ボタン＆入力余白 */
  .apply-input{ padding: 9px 0px; }

.back-to-top {
        right: 20px;
        bottom: 22px;
        width: 35px;
        height: 33px;
        line-height: 40px;
        font-size: 19px;
        padding-bottom: 2px;
    }
}

/* --- Touch adjustments (hover不要の装飾を弱める) ------------------------ */
@media (hover: none){
  a:hover{ text-decoration: none; }
  .price-waku:hover{ box-shadow: none; }
  .lvup-card:hover{ transform: none; }
}

/* ===== EDIT END: Responsive additions ===== */


