@charset "utf-8";
/*
 * public/css/frontend/base.css
 * 公開フロント共有（旧 common.css のページ基盤・コンポーネント）
 */
/* web fonts
======================================================= */
@import url('https://fonts.googleapis.com/earlyaccess/notosansjp.css');


/* ============================================================
   Variables — Neon Night Club theme
   ============================================================ */
:root {
    --color-primary: #ff00b4;
    --color-accent:  #9000ff;
    --color-bg-light: #120310;
    --color-bg-blue:  rgba(24, 5, 20, 0.90);
    --color-bg-pink:  rgba(255, 0, 180, 0.10);
    --color-text:    #fce8f4;
    --color-white:   #fff;
    --max-width: 94%;
    --header-height: 70px;
    --color-bg-fanclub: #c9a227;

    --ui-bg:          #120310;
    --ui-surface:     rgba(20, 4, 16, 0.94);
    --ui-text:        #fce8f4;
    --ui-text-muted:  rgba(255, 195, 228, 0.75);
    --ui-line:        rgba(255, 0, 180, 0.22);
    --ui-line-dark:   rgba(255, 0, 180, 0.50);
    --ui-accent:      #ff00b4;
    --ui-accent-hover:#cc0090;
    --ui-soft:        rgba(255, 0, 180, 0.09);
    --ui-shadow:      none;
    --app-header-sticky-offset: 64px;
}

/*===========================*/
/* タグ初期設定 */
/*===========================*/

*{
	margin:0;
	padding:0;
	box-sizing: border-box;
}
html{
	height: 100%;
}
body {
	position: relative;
	text-align: left;
	padding: 0;
	margin: 0;
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
	color: var(--ui-text);
	background: var(--ui-bg);
}

/* ナビゲーション丸ボタン — ネオンナイトテーマ（モバイルサイドバー用） */
ul.navi li a {
    background: rgba(255, 0, 180, 0.05);
    color: rgba(237, 224, 255, 0.80);
    border: 1px solid rgba(255, 0, 180, 0.22);
}
ul.navi li a:hover {
    background: rgba(255, 0, 180, 0.14);
    color: #fff;
    border-color: var(--ui-accent);
}
ul.navi li a span {
    color: inherit;
}
ul.navi li a strong {
    color: rgba(255, 0, 180, 0.50);
}
h1,h2,h3,h4,h5,h6,p,ul,li,dl,dd,dt,table,th,td{
	margin:0;
	padding:0;
}
li{	list-style:none;}
img {    display: block;   max-width:100%;}

/*リンク*/
a{
	color: rgba(255, 185, 215, 0.90);
	text-decoration: none;
	transition: color 0.15s ease;
}
a:hover{
	color: #fc88d3;
}

/*===========================*/
/* レスポンシブ対応 */
/*===========================*/

/* PCサイズ (1025px以上) */
@media (min-width: 1025px) {
    .lg\:hidden {
        display: none !important;
    }

    .lg\:flex {
        display: flex !important;
    }

    .lg\:block {
        display: block !important;
    }
}

/* スマホサイズ (1024px以下) */
@media (max-width: 1024px) {
    .lg\:hidden {
        display: block !important;
    }

    .lg\:flex {
        display: none !important;
    }

    .lg\:block {
        display: none !important;
    }

    /* スマホサイズでの横幅100%表示 */
    body {
        width: 100% !important;
        overflow-x: hidden !important;
    }

    .container, .wrapper, #wrapper, #container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* コンテンツエリアの横幅調整 */
    .contents, main {
        width: 100% !important;
        /* padding-left: 0.5rem !important;
        padding-right: 0.5rem !important; */
    }

    /* z-index調整 */
    .swiper-container, .swiper, .event-swiper, .news-swiper {
        z-index: 10 !important;
    }

    /* モバイル用固定ナビゲーションのz-index */
    .fixed.bottom-0 {
        z-index: 50 !important;
    }
}

/*===========================*/
/* box */
/*===========================*/

.list{
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	width:100%;
}
.list .box{
    width:240px;
    padding:0.5rem;
    border:1px solid rgba(255, 0, 180, 0.22);
    background: rgba(28, 6, 22, 0.62);
    margin:0;
    text-align: center;
    border-radius: 4px;
}
.list .box .img{
	margin-bottom:1.2rem;
}
.list .box .img img{
	display: block;
    max-width: 100%;
}
.list .box .name{
	margin-bottom:0.5rem;
}
.list .box .new{
    font-size: 0.6rem;
    color: #ff00b4;
}

/*===========================*/
/* 各ページ共通 */
/*===========================*/

/* line awesome */
.las{
    font-size: 150%;
}

/* toPageArea */

.toPageArea{
    margin:0 0 2rem;
}
.toPageArea a{
    display: inline-block;
    padding:0.3rem 0;
    margin-right:1rem;
    color: rgba(220, 200, 255, 0.65);
    border-bottom:2px solid rgba(255, 0, 180, 0.25);
}
.toPageArea a:hover{
    color: #ff00b4;
    border-bottom:2px solid #ff00b4;
}
.toPageArea a::before{
    font-family: "Line Awesome Brands", "Line Awesome Free";
    margin-right: 0.4rem;
    font-size: 1.4rem;
}
.toPageArea a.create::before{
    content: "\f0fe";
}
.toPageArea a.cate::before{
    content: "\f37f";
    /*content: "\f86d;*/
}
.toPageArea a.lists::before{
    content: "\f15c";
}
.toPageArea a.point::before{
    content: "\f288";
}
.toPageArea a.history::before{
    content: "\f1ea";
}

/* contentArea */

.contentArea{
    width:auto;
    padding:1.5rem;
    background: rgba(14, 4, 16, 0.75);
    border: 1px solid rgba(255, 0, 180, 0.10);
    border-radius: 10px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-bottom: 1.5rem;
}

/* transitionArea */
.PageTransitionArea {
    width:auto;
    margin-bottom:2rem;
    background: rgba(14, 4, 16, 0.72);
    border: 1px solid rgba(255, 0, 180, 0.10);
    border-radius: 10px;
    padding: 1.25rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
/* back */
.back{
    width: auto;
    margin-bottom:15px
}
.back a {
    display: inline-block;
    padding: 6px 14px;
    color: rgba(237, 224, 255, 0.85);
    background: rgba(255, 0, 180, 0.08);
    border: 1px solid rgba(255, 0, 180, 0.30);
    border-radius: 5px;
    transition: background 0.15s, border-color 0.15s;
}
.back a::before{
    content:"〈　";
}
.back a:hover {
    background: rgba(255, 0, 180, 0.18);
    border-color: var(--ui-accent);
    color: #fff;
}

/* message */
.MessageArea {
    margin-bottom:1.5rem;
    color: #ff4466;
}
.MessageArea .hintArea{
    padding:1.8rem;
    margin:1rem;
    background: rgba(25, 5, 20, 0.85);
    border: 1px solid rgba(255, 0, 180, 0.28);
    border-radius:8px;
    font-size: 1rem;
    color: rgba(237, 224, 255, 0.85);
}
.MessageArea .hintArea p::before{
    display: inline-block;
    margin-right: 0.8rem;
    font-family: "Line Awesome Brands", "Line Awesome Free";
    content: "\f075";
    font-size: 1.5rem;
}

/* registerFormArea */

.registerFormArea{
    max-width:450px;
    margin: 0 0 2rem;
    padding:1rem;
    background: rgba(22, 5, 18, 0.90);
    border: 1px solid rgba(255, 0, 180, 0.30);
    border-radius: 6px;
    color: var(--ui-text);
}
.registerFormArea h3{
    margin: 0 0 1rem;
    font-size: 1.2rem;
    font-weight: bold;
}
.add{
    width: auto;
}

.listTableArea{
    width:auto;
    background: rgba(14, 4, 16, 0.75);
    border: 1px solid rgba(255, 0, 180, 0.10);
    border-radius: 10px;
    padding: 1.25rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-bottom: 1.5rem;
}

.ListArea{
    width: auto;
    background: rgba(14, 4, 16, 0.75);
    border: 1px solid rgba(255, 0, 180, 0.10);
    border-radius: 10px;
    padding: 1.25rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-bottom: 1.5rem;
}

/* formArea */
.formArea{
    width:auto;
    background: rgba(14, 4, 16, 0.75);
    border: 1px solid rgba(255, 0, 180, 0.10);
    border-radius: 10px;
    padding: 1.25rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-bottom: 1.5rem;
}
/*===========================*/
/* レイアウト */
/*===========================*/


.contents{
    display: block !important;
}






/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .lg\:hidden {
        display: block !important;
    }

    .lg\:flex {
        display: none !important;
    }

    /* スマホサイズでの横幅100%表示 */
    body {
        width: 100% !important;
        overflow-x: hidden !important;
    }

    .container, .wrapper, #wrapper, #container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* コンテンツエリアの横幅調整 */
    .contents, main {
        width: 100% !important;
        /* padding-left: 0.5rem !important;
        padding-right: 0.5rem !important; */
    }

    /* z-index調整 */
    .swiper-container, .swiper, .event-swiper, .news-swiper {
        z-index: 10 !important;
    }

    /* モバイル用固定ナビゲーションのz-index */
    .fixed.bottom-0 {
        z-index: 50 !important;
    }
}

@media (min-width: 1025px) {
    .lg\:hidden {
        display: none !important;
    }

    .lg\:flex {
        display: flex !important;
    }
}




/*===========================*/
/* ヘッダー */
/*===========================*/
header{}

/* ヘッダーグラデーション — ネオンナイト */
.header-gradient {
    /* background はheader-mainの rgba(18,3,14,0.95) を使用 */
}
/*===========================*/
/* ナビげーション */
/*===========================*/




/* モバイルメニューのオーバーレイ */
.mobile-menu-overlay {
    position: fixed;
    top: var(--app-header-sticky-offset, 96px);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(50, 5, 38, 0.55);
    z-index: 105;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* モバイルメニュー */
.mobile-menu {
    position: fixed;
    top: var(--app-header-sticky-offset, 96px);
    right: -100%;
    bottom: 0;
    width: 240px;
    background: rgba(5, 2, 18, 0.97);
    backdrop-filter: blur(16px);
    border-left: 1px solid rgba(255, 0, 180, 0.28);
    z-index: 10050;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -4px 0 24px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,0,180,0.08);
}

.mobile-menu.active {
    right: 0;
}

/* ナビゲーションアイテムのスタイル */
.nav-item {
    display: flex !important;
    align-items: center !important;
    padding: 0.6rem 0.9rem !important;
    margin: 0.25rem 0.5rem !important;
    border-radius: 6px !important;
    border: 1px solid rgba(255, 0, 180, 0.22) !important;
    background: rgba(255, 0, 180, 0.05) !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    color: rgba(237, 224, 255, 0.80) !important;
}

.nav-item:hover {
    background: rgba(255, 0, 180, 0.13) !important;
    border-color: var(--ui-accent) !important;
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: inset 0 0 0 1px rgba(255,0,180,0.30) !important;
}

/* モバイルメニュー内のナビゲーションアイテム */
.mobile-menu .nav-item {
    display: flex !important;
    align-items: center !important;
    padding: 0.6rem 0.9rem !important;
    margin: 0.25rem 0.5rem !important;
    border-radius: 6px !important;
    border: 1px solid rgba(255, 0, 180, 0.22) !important;
    background: rgba(255, 0, 180, 0.05) !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    color: rgba(237, 224, 255, 0.80) !important;
}

/* モバイルメニュー内のアイコンサイズ調整 */
.mobile-menu .nav-item img {
    width: 24px !important;
    height: 24px !important;
    flex-shrink: 0 !important;
    margin-right: 12px !important;
}

/* モバイルメニュー内のテキストスタイル */
.mobile-menu .nav-item-text {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
}

.mobile-menu .nav-item-en {
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    color: #fc88d3 !important;
    line-height: 1.2 !important;
    margin-bottom: 2px !important;
}

.mobile-menu .nav-item-jp {
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    color: rgba(237, 224, 255, 0.90) !important;
    line-height: 1.3 !important;
}



/* ナビゲーション */

ul.navi{
	margin: 0.5rem auto;
	text-align: center;
    z-index:9999;
}
ul.navi li{

}
ul.navi li a{
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    min-height: 44px;
    border-radius: 6px;
    margin: 0 0 4px;
    background: rgba(252, 136, 211, 0.05);
    border: 1px solid rgba(252, 136, 211, 0.45);
    color: rgba(237, 224, 255, 0.85);
    text-decoration: none;
    padding: 6px 10px;
    gap: 8px;
    word-break: break-all;
    transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
}
ul.navi li a:hover{
    background: rgba(255, 0, 180, 0.14);
    border-color: var(--ui-accent);
    color: #fff;
}
ul.navi li img{
    display: block;
    width: 25px;
    height: 25px;
    flex-shrink: 0;
    object-fit: contain;
}
ul.navi li a span{
    display: block;
    font-size: 0.85rem;
    font-weight: bold;
    white-space: nowrap;
    color: inherit;
}
ul.navi li a strong{
    display: block;
    font-size: 0.65rem;
    color: #fc88d3;
}

/*===========================*/
/* フッタ */
/*===========================*/

footer{
    width:100%;
    padding:2.8% 0 0;
    background: rgba(3, 1, 10, 0.97);
    border-top: 1px solid rgba(255, 0, 180, 0.20);
    color: var(--ui-text);
}
footer .inner{
    display: flex;
    flex-wrap: wrap;
}

/* フッタナビげーション
=================================================*/

footer nav{
	width:800px;
	margin:0 0 1rem 8rem;
	text-align:center;
}
footer nav ul{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	width:100%;
}
footer nav li{
	display: block;
	width:120px;
	white-space: nowrap;
	font-size:0.8rem;
	margin:0 1.5rem 1.5rem;
	text-align: left;
}
footer nav a{
    color: rgba(220, 200, 255, 0.60);
}
footer nav a:visited{
    text-decoration:none;
}
footer nav a:link{
    text-decoration:none;
}
footer nav a:hover{
    color: #ff00b4;
    text-decoration:underline;
}
/* navi
=================================================*/
footer .logo{
	width:180px;
}

/* shopinfoArea
=================================================*/
footer .contactArea{
    max-width:400px;
    padding:1.5rem;
    box-sizing: border-box;
    background: rgba(10, 4, 28, 0.80);
    border: 1px solid rgba(255, 0, 180, 0.16);
    border-radius: 4px;
}
footer .contactArea dl{
	margin: 0 0 10px;
}
footer .contactArea dl dt{
	display: inline-block;
}
footer .contactArea dl dd{
	display: inline-block;
	margin: 0 15px 0;
}

/* copyright
=================================================*/

footer .copyright{
    background: rgba(2, 0, 8, 0.98);
    border-top: 1px solid rgba(255, 0, 180, 0.12);
    padding:8px;
    text-align:center;
    color: rgba(220, 200, 255, 0.40);
    font-size: 0.75rem;
}
footer .copyright small{
}

/*
##########################################################################
共通パーツ
##########################################################################*/




/* .titleArea{
	margin-bottom:3rem;
	text-align: center;
	font-weight: bold;
}
.titleArea h2{
	font-size: 2.5rem;
	font-weight: bold;
	color: #333;
	margin: 0 0 0.5rem 0;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.titleArea .title{
	font-size: 1.25rem;
	color: #666;
	margin: 0;
	font-weight: 500;
} */


/* スタイリッシュなh2タイトル */
.titleArea {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: baseline;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}

.titleArea::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    /* background: linear-gradient(90deg, #ffd8ed 0%, #f3c7df 50%, #e7a3cb 100%); */
}

.titleArea h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    position: relative;
    line-height: 1;
    z-index: 1;
    color: #fff;
    flex-shrink: 0;
    letter-spacing: 0.04em;
    text-shadow: 0 1px 4px rgba(80, 0, 50, 0.35);
}

.titleArea .title {
    font-size: 0.8rem;
    margin: 0;
    padding: 0;
    font-weight: 700;
    position: relative;
    z-index: 1;
    color: #fff;
    opacity: 0.95;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    text-shadow: 0 1px 3px rgba(80, 0, 50, 0.30);
}

/* セクションタイトル下のネオングラデーションライン */
.titleArea::after {
    content: '';
    display: block;
    flex-basis: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 180, 230, 0.55) 55%, rgba(255, 255, 255, 0.10) 100%);
    margin-top: 10px;
    width: 100%;
    border-radius: 2px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .titleArea {
        margin-bottom: 1.5rem;
    }
    .titleArea h2 {
        font-size: 2rem;
    }

    .titleArea .title {
        font-size: 0.85rem;
        white-space: nowrap;
    }

    footer nav {
        width: 100%;
        margin: 0 0 1rem 0;
    }

    footer nav ul {
        justify-content: center;
    }

    footer nav li {
        width: auto;
        margin: 0 0.75rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .titleArea {
        margin-bottom: 1.5rem;
        padding-bottom:0;
    }
    .titleArea h2 {
        font-size: 1.15rem;
    }

    .titleArea .title {
        font-size: 0.75rem;
        white-space: nowrap;
    }

    footer nav li {
        font-size: 0.7rem;
        margin: 0 0.5rem 0.5rem;
    }
}



/* レスポンシブ対応 */
@media (max-width: 768px) {
    .titleArea {
        margin-bottom: 1.5rem;
        padding-bottom:0;
        margin-left: 0.75rem;
    }


    .titleArea .title {
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .breadcrumb {
        padding: 0.5rem 0.75rem;
    }

    .breadcrumb ol {
        gap: 0.25rem;
    }

    .breadcrumb li {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .titleArea h2 {
        font-size: 1.75rem;
    }

    .titleArea .title {
        font-size: 0.75rem;
        white-space: nowrap;
    }
}





/* パンくずリスト */
.breadcrumb {
    /* background: linear-gradient(135deg, #fff5f9 0%, #ffe6f2 100%); */
    padding:  0;
    margin-bottom: 1.25rem;
    border-bottom:1px solid var(--ui-line)
}

.breadcrumb ol {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 0.775rem;
    color: rgba(220, 200, 255, 0.50);
}

.breadcrumb li:not(:last-child)::after {
    content: '>';
    margin-left: 0.5rem;
    color: rgba(255, 0, 180, 0.35);
    font-weight: bold;
}

.breadcrumb a {
    /* color: #e794c2; */
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    /* color: #d67bb0; */
    text-decoration: underline;
}

.breadcrumb .current {
    color: rgba(237, 224, 255, 0.85);
    font-weight: bold;
}


/* レスポンシブ対応 */
@media (max-width: 768px) {

    .breadcrumb {
        padding: 0.5rem 0.75rem;
    }

    .breadcrumb ol {
        gap: 0.25rem;
    }

    .breadcrumb li {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {

}

