/* style.css */
body {
    /* 背景画像のURLを指定 */
    background-image: url(../imges/bak_bes01.jpg);

    /* 背景画像を画面いっぱいに表示 */
    background-size: cover;

    /* 背景を固定にする（スクロールしても背景は動かない） */
    background-attachment: fixed;

    /* 背景画像を中央に配置 */
    background-position: center;

    /* 背景画像を繰り返さない */
    background-repeat: no-repeat;

    /* ページ全体の高さに背景を適用 */
    min-height: 100vh;
}
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Share Tech Mono', monospace;
    max-width: 100%;
}
html {
    scroll-behavior: smooth;
}
body, html { 
    margin:0; padding:0;
    
}
section#topw {
    margin-bottom: 10%;
}
canvas {
    display: block;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
}
/* デフォルトではスマホ画像を非表示 */
.pc-only {
    display: block;
    width: 100%;
}
.sp-only {
    display: none;
    width: 100%;
}

/* スマホ画面（768px以下）の場合、逆にする */
@media screen and (max-width: 768px) {
    .pc-only {
        display: none;
    }
    .sp-only {
        display: block;
    }
}
#leftCanvas {
    left: 0;
}
#rightCanvas {
    right: 0;
}
.tikes_box h2 img {
    width: 34%;
    margin: 0 0 30px 0;
}
.tikes_box {
    text-align: center;
}
table {
    border-collapse: collapse;
    margin: 0 auto;
    padding: 0;
    width: 1000px;
    table-layout: fixed;
}
.papu2 {
    color: #fff;
    background: #4b47a7;
}
.onrain {
    margin: 1% auto;
}
details.accordion {
    max-width: 1200px;
    margin: 4rem auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    user-select: none;
}
img.taitol2 {
    width: 65%;
}
summary::marker {
    display: none;
}

.summary-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.title-label {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 0.2rem;
}

.detail-label {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.summary-right {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
section.tikes_box {
    margin-bottom: 7%;
}
td.papu {
    background: #918ee9;
    color: #111;
}
.fixed-banner {
    position: absolute;
    right: 77px;
    bottom: 220px;
    z-index: 1;
    display: block;
    width: 366px;
    height: auto;
    transition: opacity 0.3s ease;
}

.fixed-banner img {
    width: 100%;
    height: auto;
    display: block;
}
.fixed-banner:hover {
    opacity: 0.6; /* 半透明になります */
}
.fixed-banner2 {
    position: absolute;
    right: 77px;
    bottom: 100px;
    z-index: 1;
    display: block;
    width: 366px;
    height: auto;
    transition: opacity 0.3s ease;
}

.fixed-banner2 img {
    width: 100%;
    height: auto;
    display: block;
}
.fixed-banner2:hover {
    opacity: 0.6; /* 半透明になります */
}
td.green {
    background: #fafcb7;
    color: #111;
}
.etbox {
    width: 1100px;
    margin: 0 auto;
    padding: 3% 0;
    background: #fff;
    border-radius: 15px;
    margin-bottom: 5%;
}
.soldimg {
    text-align: end;
    margin-right: 55px;
}
table a {
    color: #111;
}
.toggle-label {
    font-size: 0.95rem;
    color: #666;
}

.toggle-icon {
    font-size: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

details[open] .toggle-icon {
    transform: rotate(45deg);
}

.accordion-content {
    text-align: center;
    /* max-height: 0; */
    /* opacity: 0; */
    /* transform: translateY(-10px); */
    /* overflow: hidden; */
    /* transition: max-height 0.6s ease, opacity 0.6s ease, transform 0.6s ease; */
    /* padding: 0 1.5rem; */
    /* pointer-events: none; */
    margin-bottom: 5%;
}
.titol {
    text-align: center;
}

.titol h2 {
    width: 50%;
    margin: 0 auto;
    margin-bottom: 1%;
    margin-top: 12%;
}
details[open] .accordion-content {
    max-height: 1000px;
    opacity: 1;
    transform: translateY(0);
    padding-bottom: 1.5rem;
    pointer-events: auto;
    text-align: center;
}
section#hanbabox {
    margin-bottom: 5%;
}


details[open] .accordion-content img {
    opacity: 1;
    transform: translateY(0);
}
/* 下からふわっと出現 */
.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
table thead tr {
    background-color: #666;
    color: #fff;
}
table tbody th {
    background: #faff5a;
    color: #000;
    vertical-align: middle;
}
table th {
    font-size: .85em;
}
table th, table td {
    padding: 1em 10px 1em 1em;
    border-right: 1px solid #aaa;
    border-left: 1px solid #aaa;
    border-top: 1px solid #aaa;
    border-bottom: 1px solid #aaa;
    text-align: center;
    vertical-align: middle;
}
.red1 {
    background: #ff7bac;
    color: #fff;
}
.papu1 {
    background: #7169d6;
    color: #fff;
}
.guli1 {
    background: #646098;
    color: #fff;
}
.news_tex a {
    transition: color 0.3s ease, transform 0.3s ease;
}
.news_tex a:hover {
    color: white;
    transform: scale(1.05);
}
#tikesgoodsbox {
    margin-bottom: 5%;
}

.live-concept {
    margin-top: 10%;
    margin-bottom: 5%;
}
.btn a {
    display: flex
        ;
    justify-content: center;
    align-items: center;
    position: relative;
    width: fit-content;
    height: 60px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    margin: 60px 10px;
    line-height: 24px;
    padding: 40px 20px;
}
.btn a {
    border-radius: 8px;
    border: 1px solid #ee267c;
    background: #ee267c;
    padding: 16px 0;
    width: 300px;
    height: 68px;
    text-align: center;
    box-sizing: border-box;
    font-weight: 700;
    font-size: 22px;
    line-height: 1;
    color: #fff;
    transform: translate3d(0, 0, 0);
    transition: .3s ease;
}
.image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 800px; /* 適宜 */
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.seat-link {
    position: absolute;
    display: inline-block;
    padding: 12px 113px;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: 0.3s;
}

/* 位置調整 - 画像サイズに合わせて%指定 */
.link1 {
    top: 72%;
    left: 54%;
}
.link2 {
    top: 85%;
    left: 50%;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .seat-link {
        font-size: 12px;
        padding: 5px 10px;
    }
}
/* モーダル背景 */
.modal {
    display: none; /* 初期は非表示 */
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

/* 拡大画像 */
.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
}

/* 閉じるボタン */
.close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* フェードインアニメ */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
.bothai3 {
    background: #7169d6 !important;
    border: 1px solid #7169d6 !important;
}
.btn.btn003 {
    display: flex;
    /* margin: 0 auto; */
    /* width: 1000px; */
    justify-content: center;
}
.btn a[href]:hover {
    background: #fff;
    color: #ee267c;
}
.bothai3[href]:hover {
    background: #fff !important;
    color: #7169d6 !important;
}
#toi {
    background: #fff;
    padding-bottom: 8%;
}
section {
    position: relative;
    font: 400 14px / 24px "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Osaka, sans-serif;
}
.setu02 {
    text-align: center;
}
* {
    box-sizing: border-box;
}
.nav-links a {
    font-size: 20px;
}
#star-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}
.sek_taitol {
    width: 45%;
}
.news_tex {
    max-width: 70rem;
    margin: 0 auto;
    padding: 1.75rem 5rem;
    background: #f0f1fc;
    border-radius: 10px;
    /* position: relative; */
    z-index: 1;
    margin-bottom: 5%;
}
.news_tex span {
    font-size: 1.75rem;
    margin-right: 32px;
    min-width: 12.5rem;
    translate: 0 -20%;
    font-family: "indivisible", sans-serif;
}
.news_tex a {
    color: #3c32be;
}
.opening {
    position: fixed;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
    transition: opacity 0.5s ease-in-out;
}

.opening.fade-out {
    opacity: 0;
    pointer-events: none;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.spinner + .spinner {
    margin-top: -25px;
}

.spinner {
    width: 180px;
    height: 180px;
    position: relative;
    animation: spin 10s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.spinner-small {
    width: 180px;
    height: 180px;
}

.record-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #3c32be;
    z-index: 1;
    transform: scale(1);
    transition: transform 1.2s ease-in-out;
}

.record-bg.expand {
    transform: scale(60);
}

.record-center-hole,
.spinner svg {
    position: absolute;
    z-index: 2;
    transition: opacity 0.6s ease;
}

.record-center-hole {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hide {
    opacity: 0 !important;
    pointer-events: none;
}

svg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

path {
    fill: none;
}

text {
    fill: white;
    font-size: 7.9px;
    letter-spacing: 0.3em;
    dominant-baseline: middle;
}

.counter, .progress-container {
    transition: opacity 0.5s ease;
    z-index: 10;
}

.fade-early {
    opacity: 0 !important;
    pointer-events: none;
}

.counter {
    position: absolute;
    bottom: 60px;
    font-size: 26px;
    color: #3c32be;
    left: 50%;
    transform: translateX(-50%);
}

.progress-container {
    position: absolute;
    bottom: 30px;
    width: 80vw;
    height: 2px;
    background: #e0e0e0;
    border-radius: 1px;
    left: 50%;
    transform: translateX(-50%);
}
.wf2 {
    margin-right: auto;
    margin-left: auto;
    width: 1000px;
    zoom: 1;
    /* text-align: center; */
    /* background: #fff; */
    /* border-radius: 12px; */
}
.progress-bar {
    height: 100%;
    background-color: #3c32be;
    transition: width 0.05s linear;
}

.navbar {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 28px 30px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 10;
    font-size: 16px;
    font-family: 'Share Tech Mono', monospace;
    /* box-shadow: 0 2px 4px rgb(0 0 0 / 0.1); */
}
.navbar .logo-img {
    height: 40px;
    width: auto;
    position: absolute;
    left: 25px;
}
.logo {
    font-size: 24px;
    margin-right: 20px;
    color: rgb(203, 163, 115);
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: rgb(203, 163, 115);
    transition: color 0.3s;
    white-space: nowrap;
    font-family: "Cormorant Infant", serif;
    letter-spacing: 0.2em;
    font-size: 20px;
    -webkit-font-smoothing: antialiased;
}

.nav-links a:hover {
    color: #a58a65;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    margin-left: 20px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: rgb(203, 163, 115);
    transition: 0.3s;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 30px;
    cursor: pointer;
    z-index: 100;
}

.bar {
    width: 30px;
    height: 4px;
    background-color: #333;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.4s ease;
}

/* アクティブ時（X型に変形） */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


.hero {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: -80px;
    z-index: 1;
    margin-bottom: 5%;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
}

.news-section h2 {
    font-size: 32px;
    margin-bottom: 90px;
    color: rgb(203, 163, 115);
}

.news-section li {
    font-size: 16px;
    padding: 30px 0;
    border-bottom: 1px solid #3c32be;
}

.news-section li:last-child {
    border-bottom: none;
}

.loop {
    display: flex;
    margin-bottom: -55px;
    overflow: hidden;
}

.loop1 {
    transform: rotate(-5deg);
}
.loop2 {
    transform: rotate(5deg);
}
.loop__text {
    padding-right: 1.444vw;
    color: #fff;
    border-top: 1px solid;
    border-bottom: 1px solid;
    font-family: "Valky", serif;
    font-size: 3.75rem;
    white-space: nowrap;
    line-height: 1;
    animation: loopText 10s linear infinite;
    will-change: transform;
}

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

.loop__text2 {
    margin-top: 7%;
    padding-right: 1.444vw;
    color: #fff;
    border-top: 1px solid;
    border-bottom: 1px solid;
    font-family: "Valky", serif;
    font-size: 3.75rem;
    white-space: nowrap;
    line-height: 1;
    animation: loopText2 10s linear infinite;
    will-change: transform;
}

@keyframes loopText2 {
    100% { transform: translateX(0); }
    0% { transform: translateX(-100%); }
}
.ttai_1 {
    margin-top: 8%;
    margin-bottom: 1%;
}
.ttai_1 img {
    width: 25%;
}
.parallax-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background-image: url('../imges/bak_bes01.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -3;
    pointer-events: none;
}

.parallax-wrapper {
    position: relative;
    width: 100%;
    height: 9000px; /* 追従範囲を十分長く */
    z-index: 0;
    overflow: visible;
}

.parallax-layer2 {
    position: absolute;
    width: 100%;
    top: 83%;
    left: 0;
    will-change: transform;
    pointer-events: none;
}

.parallax-layer2 img {
    display: block;
    width: 100%;
    height: auto;
}

.star-html {
    position: fixed;
    font-size: 24px;
    color: white;
    pointer-events: none;
    user-select: none;
    z-index: -1;
    opacity: 0.6;
    animation-name: twinkle;
    animation-timing-function: ease-in-out;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}

@keyframes twinkle {
    0% { opacity: 0.2; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1.2); }
}

@font-face {
    font-family: "Valky";
    src: url("../font/Valky.otf") format("opentype");
    font-display: swap;
}
table img {
    width: 100%;
}
@font-face {
    font-family: "gitson";
    src: url("../font/gitson.otf") format("opentype");
    font-display: swap;
}

@font-face {
    font-family: "indivisible";
    src: url("../font/indivisible.otf") format("opentype");
    font-display: swap;
}
@font-face {
    font-family: "cilager";
    src: url("../font/cilager.otf") format("opentype");
    font-display: swap;
}

.live-concept {
    position: relative;
    padding: 80px 20px;
    background-color: #f0f1fc;
    text-align: center;
}

.concept-title {
    color: #a58a65;
    font-size: 56px;
    font-family: 'Valky', serif;
    margin-bottom: 40px;
    letter-spacing: 0.15em;
}

.concept-line {
    /* font-family: 'Hiragino Mincho ProN', 'Yu Mincho', '游明朝', 'Times New Roman', serif; */
    font-size: 14px;
    line-height: 2;
    color: #111;
    margin: 4px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
    letter-spacing: 0.1em;
}

.concept-line.visible {
    opacity: 1;
    transform: translateY(0);
}

footer {
    background-color: #261e92;
    color: white;
    text-align: center;
    padding: 20px 10px 10px;
    z-index: 10;
    position: relative;
}

footer .sns-icons {
    margin-bottom: 10px;
}

footer img.logo {
    width: 350px;
    display: block;
    margin: 32px auto 73px;
}

footer .sns-icons img {
    width: 50px;
    margin: 15px 10px;
}

footer .copyright {
    font-size: 12px;
    line-height: 1.6;
    font-family: "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Osaka, sans-serif;
}

.concept-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.concept-star {
    position: absolute;
    z-index: 11;
    opacity: 0.8;
    user-select: none;
}

.star-left {
    left: 5%;
}

.star-left.slow {
    top: 20%;
}

.star-left.fast {
    top: 60%;
}

.star-right {
    right: 5%;
    top: 40%;
}

.slow   { --speed: 0.2; }
.medium { --speed: 0.4; }
.fast   { --speed: 0.8; }

.size-s { width: 40px; }
.size-m { width: 70px; }
.size-l { width: 100px; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 0.8;
        transform: translateY(0);
    }
}
/* スクロールダウンアニメーション（右端縦文字＋線） */
.scroll-down {
    position: absolute;
    right: 15px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Share Tech Mono', monospace;
    font-size: 20px;
    color: #3c32be;;
    text-orientation: mixed;
    z-index: 50;
    animation: fadeIn 1s ease-out;
}

.scroll-down span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    margin-bottom: 8px;
    letter-spacing: 0.1em;
}

.scroll-down .line {
    width: 2px;
    height: 85px;
    background: #3c32be;;
    position: relative;
    overflow: hidden;
}

.scroll-down .line::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    animation: scrollLineAnim 1.5s infinite;
    opacity: 0.6;
}

@keyframes scrollLineAnim {
    0% { top: -100%; }
    100% { top: 100%; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* セクションのふわっとアニメーション */
.section-fade {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

.section-fade.visible {
    opacity: 1;
    transform: translateY(0);
}
.cursor-stalker {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    font-size: 24px;
    color: white;
    opacity: 0.7;
    transition: transform 0.1s ease-out;
    mix-blend-mode: difference; /* ←暗い背景でも見えやすくする */
}
@media (max-width: 768px) {
    .nav-links a {
        opacity: 0;
        transform: translateX(30px);
        animation: linkFadeIn 0.4s ease forwards;
    }

    .nav-links.active a {
        animation-delay: calc(var(--order) * 0.1s);
    }

    @keyframes linkFadeIn {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}
#top {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.parallax-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    will-change: transform;
    display: flex;
    justify-content: center;
    align-items: center;
}

.parallax-layer svg {
    width: 40%;
    height: auto;
}
.fixed-foreground {
    position: absolute;
    z-index: 10; /* パララックスレイヤーより上に */
    pointer-events: none; /* ボタンなどと重ならないようにする */
}
/* ハンバーガーメニュー表示 */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 27px;
    cursor: pointer;
    z-index: 20;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background-color: rgb(203, 163, 115);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(11px, 11px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ナビゲーションメニュー */
.nav-links {
    position: absolute;
    top: 0px;
    right: 0px;
    flex-direction: column;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 60px 15px 15px 25px;
    display: none;
    width: 250px;
    height: 100vh;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-links.active {
    display: flex;
    animation: slideFadeIn 0.4s ease forwards;
}

@keyframes slideFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
}
.nav-links {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.nav-links.active {
    opacity: 1;
    pointer-events: auto;
}
.main {
    display: none;
}
body.loaded .main {
    display: block;
}
.livese {
    color: rgb(255, 255, 255);
    width: 1200px;
    font-size: 20px;
    background: rgb(77, 77, 77);
    margin: 0px auto 22px;
    padding: 14px;
}
.tyuuibox {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
}
strong.rekou {
    color: #f00;
    font-weight: 700 !important;
}
.wf {
    margin-right: auto;
    margin-left: auto;
    width: 1000px;
    zoom: 1;
    text-align: center;
    background: #fff;
    border-radius: 12px;
}

