@charset "utf-8";

/* ==========================
   Reset CSS
========================== */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
figure,
blockquote {
	margin: 0;
	padding: 0;
}

ul,
ol {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

button,
input,
select,
textarea {
	font: inherit;
	color: inherit;
	background: transparent;
	border: none;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
	border-radius: 0;
}

input[type="radio"],
input[type="checkbox"] {
	appearance: auto;
	-webkit-appearance: auto;
}

button {
	cursor: pointer;
}

textarea {
	resize: vertical;
}

fieldset {
	border: 0;
	padding: 0;
	margin: 0;
}

iframe {
	border: 0;
}

address {
	font-style: normal;
}

/* =========================
    共通
========================= */

body {
    background-color: #000;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.wrapper {
    padding: 20px 20px 0 20px;
}

.pc_only {
	display: none;
}
.sp_only {
    display: none;
}

@media screen and (min-width: 768px) {
    .pc_only{
		display: inherit;
	}

	.sp_only{
		display: none;
	}
}

/* =========================
    Header
========================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 123px;
    background-color: var(--blue-light);
    z-index: 100;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    padding: 20px 20px 0 20px;
}

.header_inner {
    display: flex;
}

.header_inner_1 {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 35rem;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.header_content {
    height: 100%;
    display: flex;
    align-items: center;
    flex: 1;
}

.header_content_inner {
    display: flex;
    align-items: center;
    justify-content: right;
    width: 100%;
    height: 100%;
}

.header_list_wrap {
    display: flex;
    align-items: center;
    height: 100%;
}

.header_inner_1 > a {
    font-size: 2.2rem;
    font-weight: 700;
    white-space: nowrap;
    display: flex;
    align-items: center;
    height: 100%;
}

.header_inner_1 > a img {
    width: auto;
    object-fit: contain;
}

.header_list_inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    color: #fff;
    font-weight: bold;
}

.header_list {
    padding-right: 20rem;
}

.header_list_inner li a {
    font-size: 1rem;
    font-weight: bold;
    position: relative;
    padding-bottom: 4px;
}

.header_list_inner li a:hover::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
}

.header_contact {
    height: 100%;
    align-items: stretch;
    gap: 0;
    display: flex;
}

.header_contact a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    gap: 0.3rem;
    align-self: center;
}

.header_contact .link_1 {
    background-color: #FF6200;
    color: #fff;
    font-size: 0.75rem;
}

.header_contact .link_1 img {
    height: 1.25rem;
}

.header_contact .link_2 {
    background-color: #797979;
    color: #fff;
    font-size: 0.75rem;
}

.header_contact .link_2 img {
    height: 1.25rem;
}

.header_contact .link_3 {
    background-color: #989898;
}

.header_contact .link_3 img {
    height: 1.6rem;
}

@media screen and (max-width: 1600px) {
    .header_list {
        padding-right: 10rem;
    }
}

@media screen and (max-width: 1450px) {
    .header_list {
        padding-right: 5rem;
    }
}

@media screen and (max-width: 1330px) {
    .header_list {
        padding-right: 2rem;
    }

    .header_inner_1 > a img {
        width: 80%;
    }
}

/* =========================
    Hamburger (mobile)
========================= */
.pc-nav {
    .nav-items {
    display: flex;
    gap: 1rem;
    text-align: center;
    }
}

.sp-hamburger {
    margin-left: auto;
    display: none;
    position: relative;
    z-index: 1001;
    cursor: pointer;
    aspect-ratio: 1/1;
}

.sp-hamburger .lines {
    position: relative;
    width: 35px;
    height: 25px;
}

.sp-hamburger .line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

.sp-hamburger .line:nth-child(1) {
    top: -10%;
}

.sp-hamburger .line:nth-child(2) {
    top: 60%;
    transform: translateY(-50%);
}

.sp-hamburger .line:nth-child(3) {
    top: 123%;
}

/* active */
.sp-hamburger.active .line {
    background-color: #fff;
}

.sp-hamburger.active .line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

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

.sp-hamburger.active .line:nth-child(3) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.sp-nav {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: -120%;
    width: 100vw;
    height: 100dvh;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}

.sp-nav .nav-items {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.sp-nav .nav-items .nav-items__item a {
    text-align: center;
    text-wrap: balance;
    font-size: 1.2rem;
    line-height: 1.2;
}

.sp-nav .nav-items .nav-items__item a .jp {
    font-size: 0.8em;
}

.sp-nav.active {
    right: 0;
}

.overlay {
    display: none;
    position: fixed;
    z-index: 999;
    inset: 0;
    background-color: #000;
    opacity: 0.75;
}

.overlay.active {
    display: block;
}

body.no-scroll {
    overflow: hidden;
    height: 100%;
}

@media screen and (max-width: 1040px) {
    .header_list_inner {
        gap: 2rem;
    }
}

@media screen and (max-width: 960px) {
    .header_list_inner {
        gap: 1rem;
    }

    .header_list_inner {
        gap: 1rem;
    }

    .header_contact .link_2 {
    font-size: 1rem;
    }

    .header_contact .link_1 {
    font-size: 1.2rem;
    }
}

@media screen and (max-width: 870px) {
    .header_list_inner {
        gap: 0.8rem;
    }

    .header_contact .link_1 {
        font-size: 1rem;
    }

    .header_contact .link_2 {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 1024px) {
    .sp-hamburger {
        display:flex;
        height: 60px;
        background-color: #FF6200;
        padding: 14px;
    }

    .pc_only{
        display:none;
    }

    .sp_only{
        display:block;
    }

    .header {
        height: 64px;
    }

    .header_inner {
        justify-content: flex-start;
    }

    .header_inner_1 > a img {
        width: auto;
    }
}



/* =========================
    Drawer (mobile nav)
========================= */
@media screen and (max-width: 1026px) {
    .sp-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 90%;
        max-width: 250px;
        height: 100dvh;
        z-index: 150;
        transition: right 0.3s ease;
    }

    .sp-nav.active {
        right: 0;
    }

    .drawer-inner {
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #000;
    }

    .drawer__nav {
        width: 80%;
    }

    .drawer__list {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .drawer__list li {
        border-bottom: 1px solid #fff;
        margin-bottom: 20px;
    }

    .drawer__list li a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 0 14px;
        color: #fff;
        line-height: 1;
        font-weight: bold;
    }

    .drawer__list li a::after {
        content: "▶";
        font-size: 0.8rem;
        margin-left: 30px;
    }

    .drawer__list li a img {
        height: 0.9rem;
    }

    .overlay {
        display: none;
        position: fixed;
        inset: 0;
        background-color: #000;
        opacity: 0.5;
        z-index: 140;
    }

    .overlay.active {
        display: block;
    }

    body.no-scroll {
        overflow: hidden;
    }
}

/* =========================
    mv
========================= */
.mv {
    width: 100%;
    height: 760px;
    overflow: hidden;
    position: relative;
}

.mv_overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
    pointer-events: none;
}

.slider,
.splide,
.splide__track,
.splide__list,
.splide__slide {
    height: 100%;
}

.mv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media screen and (max-width: 768px) {
    .mv {
        height: 700px;
    }

    .pc-slider {
        display: none;
    }

    .sp-slider {
        display: block;
    }
}

/* =========================
    News
========================= */
.news {
    background-color: #FF6200;
    border-radius: 10px;
    padding: 80px 5%;
    margin: 20px 0;
}

.news_inner {
    max-width: 1280px;
    margin: 0 auto;
}

.news_head {
    color: #fff;
    margin-bottom: 30px;
}

.news_head_en {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1;
}

.news_head_jp {
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 15px;
}

.news_list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.news_item a {
    display: block;
    color: #fff;
}

.news_item_thumb {
    width: 100%;
    overflow: hidden;
    margin-bottom: 12px;
}

.news_item_thumb img {
    object-fit: cover;
    display: block;
}

.news_item_category {
    display: inline-block;
    border: 2px solid #fff;
    border-radius: 999px;
    padding: 2px 14px;
    font-size: 0.75rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.news_item_title {
    font-size: 0.95rem;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 6px;
}

.news_item_date {
    font-size: 0.75rem;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .news {
        padding: 20px 5%;
    }

    .news_head_en {
        font-size: 2rem;
    }

    .news_head_jp {
        font-size: 0.95rem;
        margin-top: 10px;
}

    .news_list {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .news_item_category {
        font-size: 0.65rem;
    }

    .news_item_title {
        font-size: 0.75rem;
    }

    .news_item_date {
        font-size: 0.65rem;
    }
}

/* =========================
    Studio
========================= */
.studio {
    background-color: #000;
    padding: 100px 1%;
    color: #fff;
}

.studio_inner {
    max-width: 1280px;
    margin: 0 auto;
}

/* --- top: text + image --- */
.studio_top {
    display: flex;
    align-items: center; /* 画像に対してテキストを上下中央配置 */
    gap: 5%;
    margin-bottom: 60px;
}

.studio_top_text {
    flex: 1;
}

.studio_top_text_en {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1;
}

.studio_top_text_jp {
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 60px;
}

.studio_top_text_heading {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 40px;
}

.studio_top_text_desc {
    font-size: 0.95rem;
    font-weight: bold;
    line-height: 1.9;
    margin-bottom: 40px;
}

.studio_top_text_btn {
    display: inline-block;
    background-color: #FF6200;
    color: #fff;
    font-weight: bold;
    font-size: 1.15rem;
    padding: 14px 28px;
    border-radius: 999px;
}

.studio_top_img {
    flex: 1;
}

.studio_top_img img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- features: white box --- */
.studio_features {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.studio_features_label {
    font-size: 1.15rem;
    font-weight: bold;
    white-space: nowrap;
}

.studio_features_list {
    display: flex;
    flex: 1;
    justify-content: space-between;
    background-color: #fff;
    color: #000;
    border-radius: 10px;
    padding: 30px 40px;
}

.studio_features_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.studio_features_item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    background-color: #000;
    padding: 30px;
    border-radius: 10px;
}

.studio_features_item span {
    font-size: 1.15rem;
    font-weight: bold;
    white-space: nowrap;
}

.studio_desc {
    border: 2px solid #fff;
    padding: 50px 20px;
    margin-bottom: 40px;
}

.studio_desc p {
    text-align: center;
    font-size: 0.94rem;
    font-weight: bold;
    line-height: 2;
}

/* --- links: 2 orange buttons --- */
.studio_links {
    display: flex;
    gap: 24px;
    padding: 0 15%;
}

.studio_links_item {
    flex: 1;
    background-color: #FF6200;
    color: #fff;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.5rem;
    text-align: center;
}

.studio_links_item img {
    width: 95px;
    height: 70px;
    object-fit: contain;
    margin: 0 auto 5px;
}

/* =========================
    Studio - SP
========================= */
@media screen and (max-width: 1100px) {
        .studio_features {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 0;
    }

    .studio_features_list {
        width: 100%;
        flex-wrap: wrap;
        justify-content: space-between;
        row-gap: 20px;
    }

    .studio_features_item img {
        width: 80px;
        height: 80px;
        padding: 20px;
    }

    .studio_features_item span {
        font-size: 0.95rem;
        white-space: normal;
        text-align: center;
    }

}

@media screen and (max-width: 768px) {
    .studio {
        padding: 50px 1%;
    }

    .studio_top {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
        margin-bottom: 40px;
    }

    .studio_top_img {
        order: -1;
    }

    .studio_top_text_en {
        font-size: 2rem;
    }

    .studio_top_text_jp {
        font-size: 0.95rem;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .studio_top_text_heading {
        font-size: 1.25rem;
        margin-bottom: 15px;
    }

    .studio_top_text_desc {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .studio_top_text_btn {
        font-size: 0.95rem;
        padding: 16px 30px;
    }

    .studio_features_label {
        display: block;
        margin: 0 auto;
    }

    .studio_features_list {
        padding: 30px 10px;
    }

    .studio_features_item {
        width: 50%;
    }

    .studio_features_item img {
        width: 100px;
        height: 100px;
        padding: 30px;
    }

    .studio_desc {
        padding: 30px 20px;
    }

    .studio_desc p {
        text-align: left;
        font-size: 0.8rem;
    }

    .studio_links {
        gap: 12px;
        padding: 0;
    }

    .studio_links_item {
        padding: 22px 10px;
        font-size: 0.95rem;
        gap: 15px;
    }

    .studio_links_item img {
        width: 54px;
        height: 40px;
    }
}

/* =========================
    Room
========================= */
.room {
    margin-bottom: 145px;
    padding: 0 1%;
}

.room_top {
    position: relative;
    padding: 0 0 20px;
    overflow: hidden;
}

.room_bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.room_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.room_top::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(
        to bottom,
        #000 0%,
        transparent 15%,
        transparent 85%,
        #000 100%
    );
    pointer-events: none;
}

.room_top::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: 0;
}

.room_inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.room_head {
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

.room_head_en {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1;
}

.room_head_jp {
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 15px;
}

/* --- studio cards (A/B) --- */
.room_studio {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.room_studio_item {
    flex: 1;
    border: 2px solid #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: #fff;
}

.room_studio_item_name {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.room_studio_item .large {
    font-size: 3rem;
    font-weight: bold;
}

.room_studio_item_size {
    display: inline-block;
    background-color: #fff;
    color: #000;
    border-radius: 999px;
    padding: 10px 55px;
    font-size: 1.5rem;
    font-weight: bold;
}

/* --- contact cards (tel/mail) --- */
.room_contact {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
}

.room_contact_item {
    flex: 1;
    background-color: #fff;
    color: #000;
    border-radius: 10px;
    padding: 38px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.room_contact_item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.room_contact_item p {
    font-size: 1.5rem;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .room {
        padding: 50px 1%;
        margin-bottom: 30px;
    }

    .room_head_en {
        font-size: 2rem;
    }

    .room_head_jp {
        font-size: 0.95rem;
        margin-top: 10px;
    }

    .room_studio {
        gap: 12px;
        margin-bottom: 16px;
    }

    .room_studio_item {
        padding: 14px 10px;
    }

    .room_studio_item .large {
        font-size: 2rem;
    }

    .room_studio_item_name {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .room_studio_item_size {
        font-size: 1.25rem;
        padding: 5px 40px;
    }

    /* お問い合わせカードは縦積み */
    .room_contact {
        max-width: 400px;
        flex-direction: column;
        gap: 12px;
    }

    .room_contact_item {
        padding: 18px;
    }

    .room_contact_item img {
        width: 25px;
        height: 25px;
    }

    .room_contact_item p {
        font-size: 0.82rem;
    }
}

@media screen and (max-width: 768px) {
    .room_contact {
        max-width: 300px;
    }
}

@media screen and (max-width: 480px) {
    .room_contact {
        max-width: 200px;
    }
}

/* =========================
    Access
========================= */
.access {
    background-color: #000;
    color: #fff;
    padding: 0 1% 5%;
}

.access_inner {
    max-width: 1280px;
    margin: 0 auto;
}

.access_head {
    text-align: center;
    margin-bottom: 40px;
}

.access_head_en {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1;
}

.access_head_jp {
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 15px;
}

.access_content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.access_map {
    flex: 1;
}

.access_map iframe {
    display: block;
}

.access_info {
    flex: 1;
}

.access_info_row {
    display: flex;
    gap: 24px;
    padding: 14px 0;
    font-size: 1.5rem;
    font-weight: bold;
}

.access_info_row:first-child {
    padding-top: 0;
}

.access_info_row dt {
    color: #FF6200;
    font-weight: bold;
    width: 6em;
    flex-shrink: 0;
}

.access_info_row dd {
    line-height: 1.6;
}

.access_info_sns {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.access_info_sns img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

@media screen and (max-width: 768px) {
    .access {
        padding-bottom: 40px;
    }
}

/* =========================
    Footer
========================= */
.footer {
    background-color: #FF6200;
    padding: 21px 5%;
    text-align: center;
}

.footer_copyright {
    color: #fff;
    font-weight: bold;
    font-size: 0.75rem;
}

@media screen and (max-width: 1026px) {
    .access_content {
        flex-direction: column;
        gap: 24px;
    }

    .access_info {
        order: -1;
    }
}

@media screen and (max-width: 768px) {
    .access_head_en {
        font-size: 1.6rem;
    }

    .access_head {
        margin-bottom: 24px;
    }

    .access_content {
        gap: 20px;
    }

    .access_info_row {
        gap: 12px;
        font-size: 0.95rem;
        padding: 10px 0;
    }

    .access_map iframe {
        max-width: 100%;
    }

    .footer {
        padding: 12px 5%;
    }

    .footer_copyright {
        font-size: 0.7rem;
    }
}

/* =========================
    About
========================= */

.about {
    color: #fff;
}

/* =========================
    Shopinfo
========================= */
.shopinfo {
    padding: 100px 1% 40px;
}

.shopinfo_inner {
    max-width: 1280px;
    margin: 0 auto;
}

.shopinfo_head {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.shopinfo_content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.shopinfo_map {
    flex: 1;
}

.shopinfo_map iframe {
    display: block;
}

.shopinfo_list {
    flex: 1;
}

.shopinfo_list_row {
    display: flex;
    gap: 24px;
    padding: 14px 0;
    font-size: 1.5rem;
    font-weight: bold;
}

.shopinfo_list_row:first-child {
    padding-top: 0;
}

.shopinfo_list_row dt {
    font-weight: bold;
    width: 6em;
    flex-shrink: 0;
}

.shopinfo_list_row dd {
    line-height: 1.6;
}

.shopinfo_list_sns {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.shopinfo_list_sns img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* =========================
    Profile
========================= */
.sub_mv {
    position: relative;
}

.sub_mv .mv_img {
    position: relative;
}

.sub_mv img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.mv_img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    pointer-events: none;
}

.sub_mv_title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 5.131rem;
    font-weight: bold;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,.5);
    z-index: 2;
    white-space: nowrap;
}

.profile {
    padding: 100px 1% 40px;
}

.profile_inner {
    max-width: 1280px;
    margin: 0 auto;
}

.profile_head {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.profile_content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.profile_text {
    flex: 1;
}

.profile_text_lead {
    font-size: 1.75rem;
    font-weight: bold;
    line-height: 2;
    margin-bottom: 20px;
}

.profile_text_name {
    color: #FF6200;
    font-weight: bold;
    font-size: 2.25rem;
}

.profile_text_desc {
    font-size: 0.95rem;
    font-weight: bold;
    line-height: 1.9;
}

.profile_text_tags {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #FF6200;
    margin-bottom: 20px;
    font-size: 0.95rem;
    font-weight: bold;
}

.profile_img {
    flex: 1;
}

@media screen and (max-width: 1050px) {
    .sub_mv_title {
        font-size: 4rem;
    }
}

@media screen and (max-width: 1026px) {
    .shopinfo_content {
        flex-direction: column;
        gap: 24px;
    }

    .shopinfo_list {
        order: -1;
    }

    .profile_content {
        flex-direction: column;
        gap: 24px;
    }

    .profile_img {
        order: -1;
    }
}

@media screen and (max-width: 950px) {
    .sub_mv_title {
        font-size: 3rem;
        top: 55%;
    }
}

@media screen and (max-width: 768px) {
    .shopinfo {
        padding: 60px 1% 40px;
    }

    .shopinfo_head,
    .profile_head {
        font-size: 1.6rem;
        margin-bottom: 24px;
    }

    .shopinfo_list_row {
        gap: 12px;
        font-size: 0.95rem;
        padding: 10px 0;
    }

    .shopinfo_map iframe {
        max-width: 100%;
    }

    .profile {
        padding: 40px 1%;
    }

    .profile_text_lead {
        font-size: 0.95rem;
    }

    .profile_text_name {
        font-size: 1.3rem;
    }

    .profile_text_desc {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 768px) {
    .sub_mv_title {
        font-size: 2.5rem;
    }
}

/* =========================
    Rules
========================= */
.rules {
    color: #fff;
    padding: 80px 1%;
}

.rules_inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.rules_box {
    border: 2px solid #fff;
    padding: 30px 40px;
}

.rules_box_head {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.rules_box_body p {
    font-size: 0.95rem;
    line-height: 1.9;
    font-weight: bold;
    margin-bottom: 20px;
}

.rules_box_body p:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .rules {
        padding: 50px 1%;
    }

    .rules_inner {
        gap: 24px;
    }

    .rules_box {
        padding: 20px 20px;
    }

    .rules_box_head {
        font-size: 1.25rem;
        margin-bottom: 16px;
    }

    .rules_box_body p {
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 16px;
    }
}

/* =========================
    Reservation
========================= */
.reservation {
    padding: 100px 1% 40px;
}

.reservation_inner {
    max-width: 1280px;
    margin: 0 auto;
}

.reservation_head {
    text-align: center;
    margin-bottom: 40px;
}

.reservation_head_title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.reservation_head_desc {
    font-size: 1.5rem;
    font-weight: bold;
}

/* --- contact: 2 bordered cards --- */
.reservation_contact {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

.reservation_contact_item {
    flex: 1;
    border: 2px solid #fff;
    border-radius: 10px;
    padding: 30px 5px;
    text-align: center;
}

.reservation_contact_item_top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.reservation_contact_item_top img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.reservation_contact_item_note {
    font-size: 1.25rem;
    font-weight: bold;
}

/* --- practice: white box, 2 columns --- */
.reservation_practice {
    background-color: #fff;
    color: #000;
    border-radius: 4px;
    padding: 30px;
}

.reservation_practice .reservation_inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.reservation_practice_item {
    flex: 1;
    border: 2px solid #000;
    border-radius: 10px;
    padding: 30px 60px;
}

.reservation_practice_item_head {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 14px;
}

.reservation_practice_item_desc {
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.9;
}

@media screen and (max-width: 768px) {
    .reservation {
        padding: 50px 1%;
    }

    .reservation_head {
        margin-bottom: 24px;
    }

    .reservation_head_title {
        font-size: 1.6rem;
        margin-bottom: 24px;
    }

    .reservation_contact_item_top img {
        width: 30px;
        height: 20px;
}

    .reservation_head_desc {
        font-size: 0.95rem;
    }

    .reservation_contact {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 16px;
    }

    .reservation_contact_item {
        padding: 18px;
    }

    .reservation_contact_item_top {
        font-size: 1.5rem;
    }

    .reservation_practice {
        flex-direction: column;
        gap: 24px;
        padding: 20px;
    }

    .reservation_practice_item {
        padding: 15px 30px;
}

    .reservation_practice_item_head {
        font-size: 1.25rem;
        margin-bottom: 5px;
    }

    .reservation_practice_item_desc {
        font-size: 0.95rem;
    }
}

/* =========================
    Roomdetail
========================= */
.roomdetail_head_wrap {
    position: relative;
    padding: 100px 1% 50px;
    overflow: hidden;
}

.roomdetail_bg {
    position: absolute;
    inset: 0;
}

.roomdetail_bg img {
    width: 100%;
    height: 90%;
    object-fit: cover;
    display: block;
}

.roomdetail_head_wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

.roomdetail_inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
}

.roomdetail_head {
    text-align: center;
}

.roomdetail_head_title {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 3rem;
    font-weight: bold;
}

.roomdetail_head_size {
    display: inline-block;
    background-color: #fff;
    color: #000;
    border-radius: 999px;
    padding: 6px 50px;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.roomdetail_head_desc {
    margin: 0 auto 40px;
}

.roomdetail_head_desc p {
    font-size: 1.25rem;
    line-height: 2;
    font-weight: bold;
}

.roomdetail_gallery {
    position: relative;
    display: flex;
    gap: 16px;
    padding: 0 5% 60px;
    max-width: 1280px;
    margin: 0 auto;
    z-index: 1;
}

.roomdetail_gallery_main {
    flex: 1.4;
}

.roomdetail_gallery_main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.roomdetail_gallery_sub {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.roomdetail_gallery_sub_item {
    flex: 1;
}

.roomdetail_gallery_sub_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================
    Roomdetail - SP
========================= */
@media screen and (max-width: 768px) {
    .roomdetail_head_wrap {
        padding: 40px 1% 30px;
    }

    .roomdetail_head_title {
        font-size: 1.6rem;
        margin-bottom: 24px;
    }

    .roomdetail_head_size {
        padding: 4px 22px;
        font-size: 1.25rem;
        margin-bottom: 0;
    }

    .roomdetail_head_desc {
        margin-bottom: 20px;
    }

    .roomdetail_head_desc p {
        font-size: 0.95rem;
    }

    .roomdetail_gallery {
        flex-direction: column;
        padding: 0 5% 20px;
    }

    .roomdetail_gallery_main img {
        aspect-ratio: 4 / 3;
    }

    .roomdetail_gallery_sub {
        flex-direction: row;
    }

    .roomdetail_gallery_sub_item img {
        aspect-ratio: 4 / 3;
    }
}

/* =========================
    Point
========================= */
.point {
    padding: 40px 1%;
}

.point_inner {
    max-width: 1280px;
    margin: 0 auto;
}

.point_title {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

/* --- 4 icon cards --- */
.point_cards {
    max-width: 1080px;
    margin: 0 auto 40px;
    display: flex;
    gap: 20px;
}

.point_cards_item {
    flex: 1;
    background-color: #fff;
    color: #000;
    border-radius: 4px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.point_cards_item_icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #FF6200;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.point_cards_item_icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    /* アイコンが黒画像の場合は白反転 */
    filter: brightness(0) invert(1);
}

.point_cards_item_text {
    font-size: 1.15rem;
    font-weight: bold;
    line-height: 1.6;
}

.point_cards_item_note {
    display: block;
}

/* --- practice: 2 bordered boxes --- */
.point_practice {
    display: flex;
    gap: 24px;
    max-width: 1280px;
    margin: 60px auto;
}

.point_practice_item {
    flex: 1;
    border: 2px solid #fff;
    border-radius: 10px;
    padding: 30px 60px;
}

.point_practice_item_head {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 14px;
}

.point_practice_item_desc {
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.9;
}

/* --- match: white box with checklist --- */
.point_match_title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.point_match_list {
    max-width: 1120px;
    margin: 0 auto;
    background-color: #fff;
    color: #000;
    border-radius: 4px;
    padding: 40px 60px;
    display: flex;
    flex-wrap: wrap;
    column-gap: 60px;
    row-gap: 20px;
}

.point_match_list li {
    width: calc(50% - 30px);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.15rem;
    font-weight: bold;
}

.point_match_list li img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

/* =========================
    Point - SP
========================= */
@media screen and (max-width: 768px) {
    .point {
        padding: 20px 1%;
    }

    .point_title {
        font-size: 1.6rem;
        margin-bottom: 24px;
    }

    .point_cards {
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 24px;
    }

    .point_cards_item {
        width: calc(50% - 6px);
        flex: none;
        padding: 20px 14px;
    }

    .point_cards_item_icon {
        width: 65px;
        height: 65px;
        margin-bottom: 14px;
    }

    .point_cards_item_text {
        font-size: 0.95rem;
    }

    .point_cards_item_note {
        font-size: 0.65rem;
    }

    .point_practice {
        flex-direction: column;
        gap: 16px;
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .point_practice_item {
        padding: 18px 20px;
    }

    .point_practice_item_head {
        font-size: 1.25rem;
        margin-bottom: 5px;
    }

    .point_practice_item_desc {
        font-size: 0.95rem;
    }

    .point_match_title {
        font-size: 1.6rem;
        margin-bottom: 24px;
    }

    .point_match_list {
        padding: 24px 20px;
        row-gap: 16px;
        column-gap: 0;
    }

    .point_match_list li {
        width: 100%;
        font-size: 0.95rem;
    }
}

/* =========================
    Equipment
========================= */
.equipment {
    background-color: #000;
    color: #fff;
    padding: 40px 1%;
}

.pb160 {
    padding-bottom: 160px;
}

.equipment_inner {
    max-width: 1120px;
    margin: 0 auto;
}

.equipment_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    background-color: #FFF;
    color: #000;
}

.equipment_table_caption {
    color: #fff;
    text-align: center;
    font-size: 0.95rem;
    font-weight: bold;
    padding: 12px 0;
    caption-side: top;
}

.equipment_table tr {
    border-bottom: 1px solid #FF6200;
}

.equipment_table th,
.equipment_table td {
    width: 50%;
    text-align: center;
    font-weight: bold;
    font-size: 0.95rem;
    line-height: 1.7;
    padding: 20px 10px;
    vertical-align: middle;
}

.equipment_table th {
    border-right: 1px solid #FF6200;
}

.equipment_note {
    font-size: 0.95rem;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .equipment {
        padding: 50px 1%;
    }

    .pb160 {
        padding-bottom: 50px;
    }

    .equipment_table_caption {
        font-size: 0.8rem;
        padding: 10px 0;
    }

    .equipment_table tr {
        padding: 14px 0;
    }

    .equipment_table td {
        padding: 10px 16px 0;
    }
}

/* =========================
    Contact（受付時間・黒背景）
========================= */
.contact {
    background-color: #000;
    color: #fff;
    padding: 60px 1%;
    text-align: center;
}

.contact_title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 24px;
}

.contact_time {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.contact_note {
    font-size: 1.15rem;
    font-weight: bold;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact_tel_btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #FF6200;
    color: #fff;
    font-weight: bold;
    font-size: 1.5rem;
    padding: 38px 20px;
    border-radius: 10px;
}

.contact_tel_btn img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* =========================
    Contactform（お問い合わせフォーム・白背景）
========================= */
.contactform {
    color: #000;
    margin-bottom: 80px;
    padding: 60px 1% 80px;
}

.form-wrap {
    background-color: #fff;
    border-radius: 10px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 40px 60px;
}

.contact_inner {
    max-width: 900px;
    margin: 0 auto;
}

/* 追加：フォームセクションの内側コンテナ */
.contactform_inner {
    max-width: 900px;
    margin: 0 auto;
}

.contactform_title {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 40px;
}

/* --- 各行のレイアウト --- */
.contactform_row {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 16px 0;
    border-bottom: 1px solid #e0e0e0; /* 追加：行ごとの区切り線 */
}

.contactform_row--textarea {
    align-items: flex-start;
}

.contactform_label {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 280px;
    flex-shrink: 0;
    font-size: 0.95rem;
    font-weight: bold;
}

.contactform_row--textarea .contactform_label {
    padding-top: 4px;
}

.contactform_required {
    display: inline-block;
    background-color: #FF6200;
    color: #fff;
    font-size: 0.95rem;
    font-weight: bold;
    padding: 3px 8px;
    white-space: nowrap;
}



/* --- CF7が生成するinput/textarea類 --- */
.contactform_row .wpcf7-form-control-wrap {
    flex: 1;
    display: block;
}

/* 追加：ラジオボタンの行も横幅いっぱいに広がるように */
.contactform_row .contactform_radio {
    flex: 1;
}

.contactform_input,
.contactform_textarea {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 2px;
    padding: 10px 14px;
    font-size: 0.9rem;
    font-family: inherit;
}

.contactform_textarea {
    min-height: 150px;
    resize: vertical;
}

/* --- ラジオボタン --- */
.contactform_radio .wpcf7-list-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 24px;
}

.contactform_radio .wpcf7-list-item-label {
    font-size: 0.95rem;
    font-weight: bold;
}

/* --- 送信ボタン --- */
.contactform_submit_wrap {
    text-align: center;
    padding-top: 30px;
    margin-top: 20px;
    /* border-topは各行に区切り線を追加したので不要なら削除してOK */
}

.contactform_submit {
    background-color: #FF6200;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 60px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
}

/* =========================
    Contact / Contactform - SP
========================= */
@media screen and (max-width: 768px) {
    .contact {
        padding: 40px 1%;
    }

    .contact_title {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .contact_note {
        margin-bottom: 20px;
    }

    .contact_tel_btn {
        width: 100%;
        padding: 16px 20px;
        font-size: 1rem;
    }

    .contactform {
        padding: 40px 1% 50px;
    }

    .contactform_title {
        font-size: 1.3rem;
        margin-bottom: 24px;
    }

    /* ラベルと入力欄を縦積みに */
    .contactform_row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 14px 0;
    }

    .contactform_row--textarea {
        align-items: flex-start;
    }

    .contactform_label {
        width: 100%;
    }

    .contactform_input,
    .contactform_textarea {
        font-size: 0.95rem;
    }

    .contactform_row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 14px 0;
    }

    .contactform_row--textarea {
        align-items: flex-start;
    }

    .contactform_label {
        width: 100%;
    }

    .contactform_row .wpcf7-form-control-wrap {
        width: 100%;
    }

    .contactform_submit {
        width: 100%;
        padding: 14px 20px;
    }
}

/* =========================
    Price
========================= */
.price {
    background-color: #000;
    color: #fff;
    padding: 60px 1%;
}

.price_inner {
    max-width: 1120px;
    margin: 0 auto;
}

.price_block {
    margin-bottom: 60px;
}

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

.price_block_title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 24px;
}

.price_group_title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.price_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.price_table:last-of-type {
    margin-bottom: 0;
}

.price_table th,
.price_table td {
    width: 50%;
    text-align: center;
    font-size: 0.95rem;
    font-weight: bold;
    padding: 14px 20px;
    background-color: #fff;
    color: #000;
    border: 1px solid #FF6200;
}

.price_table_head th {
    background-color: #FF8E47;
    color: #fff;
    font-weight: bold;
}

.price_note {
    font-size: 0.95rem;
    font-weight: bold;
    margin-top: -18px;
    margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
    .price {
        padding: 50px 1%;
    }

    .price_block {
        margin-bottom: 40px;
    }

    .price_block_title {
        font-size: 1.3rem;
        margin-bottom: 16px;
    }

    .price_group_title {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .price_table {
        margin-bottom: 20px;
    }

    .price_table th,
    .price_table td {
        font-size: 0.75rem;
        padding: 10px 12px;
    }

    .price_note {
        font-size: 0.68rem;
        margin-top: -12px;
        margin-bottom: 20px;
    }
}

/* =========================
    共通（オレンジ・見出しの帯）
========================= */
:root {
    --orange: #FF6200;
}

/* =========================
    Weekdaypack
========================= */
.weekdaypack {
    background-color: #000;
    color: #fff;
    padding: 40px 1%;
}

.weekdaypack_inner {
    max-width: 1120px;
    margin: 0 auto;
}

.weekdaypack_title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.weekdaypack_title span {
    font-size: 2rem;
    font-weight: bold;
    margin-left: 8px;
}

.weekdaypack_promo {
    background-color: var(--orange);
    padding: 20px 24px;
    margin-bottom: 20px;
}

.weekdaypack_promo_title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.weekdaypack_promo_desc {
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.7;
}

.weekdaypack_example_label {
    background-color: #fff;
    color: #000;
    text-align: center;
    font-weight: bold;
    font-size: 2rem;
    padding: 10px 0;
    margin-bottom: 20px;
}

.weekdaypack_example {
    display: flex;
    gap: 20px;
}

.weekdaypack_example_item {
    flex: 1;
    border: 2px solid #fff;
    overflow: hidden;
    padding: 20px 60px;
}

.weekdaypack_example_item_head {
    background-color: #000;
    font-size: 1.75rem;
    font-weight: bold;
}

.weekdaypack_example_item_body {
    padding-top: 20px;
    font-size: 1rem;
    line-height: 1.8;
}

@media screen and (max-width: 768px) {
    .weekdaypack_example_item {
        padding: 16px 18px;
    }
}

/* =========================
    Individual
========================= */
.individual {
    background-color: #000;
    color: #fff;
    padding: 80px 1% 60px;
}

.individual_inner {
    max-width: 1120px;
    margin: 0 auto;
}

.individual_title {
    font-size: 3rem;
    font-weight: bold;
}

.individual_title span {
    font-size: 2rem;
    font-weight: bold;
    margin-left: 8px;
}

.individual_group_title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 26px;
    padding-top: 30px;
}

.individual_sub_title {
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.individual_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.individual_table th,
.individual_table td {
    width: 50%;
    text-align: center;
    font-size: 0.95rem;
    font-weight: bold;
    padding: 14px 20px;
    background-color: #fff;
    color: #000;
    border: 1px solid #FF6200;
}

.individual_table_head th {
    background-color: #FF8E47;
    color: #fff;
    font-weight: bold;
}

/* =========================
    Bandmember
========================= */
.bandmember {
    background-color: #000;
    color: #fff;
    padding: 0 1% 80px;
}

.bandmember_inner {
    max-width: 1120px;
    margin: 0 auto;
}

.bandmember_title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 24px;
}

.bandmember_table {
    width: 100%;
    border-collapse: collapse;
}

.bandmember_table td {
    width: 50%;
    text-align: center;
    font-size: 0.95rem;
    font-weight: bold;
    padding: 14px 20px;
    background-color: #fff;
    color: #000;
    border: 1px solid #FF6200;
}

.bandmember_table tr:last-child td {
    border-bottom: none;
}

@media screen and (max-width: 768px) {
    .weekdaypack,
    .individual,
    .bandmember {
        padding: 50px 1%;
    }

    .weekdaypack_title,
    .individual_title,
    .bandmember_title {
        font-size: 1.6rem;
    }

    .individual_title span {
        font-size: 1rem;
    }

    .weekdaypack_promo {
        padding: 16px 18px;
        margin-bottom: 16px;
    }

    .weekdaypack_promo_title {
        font-size: 1rem;
    }

    .weekdaypack_promo_desc {
        font-size: 0.95rem;
    }

    .weekdaypack_example_label {
        font-size: 0.95rem;
        margin-bottom: 16px;
    }

    .weekdaypack_example {
        flex-direction: column;
        gap: 14px;
    }

    .weekdaypack_example_item_body {
        font-size: 0.95rem;
    }

    .individual_group_title {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .individual_sub_title {
        font-size: 0.95rem;
    }

    .individual_table {
        margin-bottom: 20px;
    }

    .individual_table th,
    .individual_table td,
    .bandmember_table td {
        padding: 10px 12px;
    }
}

/* =========================
    Live
========================= */
.live {
    background-color: #000;
    color: #fff;
    padding: 80px 1%;
}

.live_inner {
    max-width: 1120px;
    margin: 0 auto;
}

.live_title {
    font-size: 3rem;
    font-weight: bold;
}

.live_desc {
    font-size: 2rem;
    font-weight: bold;
}

.live_jasrac {
    color: var(--orange);
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 40px;
}

.live_block {
    margin-bottom: 60px;
}

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

.live_block_label {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.live_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}

.live_table th,
.live_table td {
    width: 50%;
    text-align: center;
    font-size: 0.95rem;
    font-weight: bold;
    padding: 14px 20px;
    background-color: #fff;
    color: #000;
    border: 1px solid #FF6200;
}

.live_table_head th {
    background-color: #FF8E47;
    color: #fff;
    font-weight: 700;
}

/* --- notice box --- */
.live_notice {
    border: 1px solid #fff;
    border-radius: 4px;
    padding: 20px 24px;
    margin-bottom: 24px;
}

.live_notice_title {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.live_notice p {
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.8;
}

.live_notice_highlight {
    color: var(--orange);
    opacity: 1;
}

/* --- 飲食/持ち込み boxes --- */
.live_boxes {
    display: flex;
    gap: 20px;
}

.live_box {
    flex: 1;
    border: 1px solid #fff;
    border-radius: 4px;
    padding: 20px 24px;
}

.live_box_title {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.live_box p {
    font-size: 1rem;
    line-height: 1.8;
    font-weight: bold;
}

/* =========================
    Live - SP
========================= */
@media screen and (max-width: 768px) {
    .live {
        padding: 50px 1%;
    }

    .live_title {
        font-size: 2rem;
    }

    .live_desc {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .live_jasrac {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .live_block {
        margin-bottom: 40px;
    }

    .live_block_label {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .live_table th,
    .live_table td {
        font-size: 0.95rem;
        padding: 10px 12px;
    }

    .live_table {
        margin-bottom: 16px;
    }

    .live_notice {
        padding: 16px 18px;
        margin-bottom: 16px;
    }

    .live_notice_title,
    .live_box_title {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .live_notice p,
    .live_box p {
        font-size: 0.92rem;
    }

    .live_boxes {
        flex-direction: column;
        gap: 14px;
    }

    .live_box {
        padding: 16px 18px;
    }
}

/* =========================
    Usagetime
========================= */
.usagetime {
    background-color: #000;
    color: #fff;
    padding: 80px 1% 100px;
}

.usagetime_inner {
    max-width: 1120px;
    margin: 0 auto;
}

.usagetime_title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.usagetime_desc {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* --- cancel: dashed heading + table --- */
.usagetime_cancel {
    margin-bottom: 40px;
}

.usagetime_cancel_title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 24px;
}

.usagetime_table {
    width: 100%;
    border-collapse: collapse;
}

.usagetime_table td {
    width: 50%;
    text-align: center;
    font-size: 0.95rem;
    font-weight: bold;
    padding: 16px 20px;
    background-color: #fff;
    color: #000;
    border: 1px solid var(--orange);
}
/* --- contact: 2 bordered black cards --- */
.usagetime_contact {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.usagetime_contact_item {
    flex: 1;
    max-width: 400px;
    border: 2px solid #fff;
    border-radius: 10px;
    padding: 36px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.usagetime_contact_item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.usagetime_contact_item span {
    font-size: 1.5rem;
    font-weight: bold;
}

/* =========================
    Usagetime - SP
========================= */
@media screen and (max-width: 768px) {
    .usagetime {
        padding: 10px 1% 80px;
    }

    .usagetime_title {
        font-size: 1.6rem;
        margin-bottom: 14px;
    }

    .usagetime_desc {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .usagetime_cancel {
        margin-bottom: 24px;
    }

    .usagetime_cancel_title {
        font-size: 1.6rem;
        margin-bottom: 14px;
    }

    .usagetime_table td {
        font-size: 0.95rem;
        padding: 12px 12px;
    }

    /* お問い合わせカードは縦積み */
    .usagetime_contact {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .usagetime_contact_item {
        width: 100%;
        max-width: 100%;
        padding: 24px 20px;
    }

    .usagetime_contact_item span {
        font-size: 1rem;
    }
}

/* =========================
    Eventpage
========================= */
.eventpage {
    background-color: #000;
    color: #fff;
}

/* --- mv --- */
.eventpage_mv {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.eventpage_mv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.6;
}

.eventpage_mv_title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.eventpage_inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 5% 80px;
}

/* --- filter --- */
.eventpage_filter {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.eventpage_filter_item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.eventpage_filter_item label {
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

.eventpage_filter_item select {
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 2px;
    padding: 8px 32px 8px 14px;
    font-size: 0.85rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23000'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer;
}

/* --- list --- */
.eventpage_list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.eventpage_item a {
    display: block;
    color: #fff;
}

.eventpage_item_thumb {
    width: 100%;
    overflow: hidden;
    margin-bottom: 12px;
}

.eventpage_item_thumb img {
    object-fit: cover;
    display: block;
}

.eventpage_item_category {
    display: inline-block;
    border: 1px solid #fff;
    border-radius: 999px;
    padding: 2px 14px;
    font-size: 0.7rem;
    margin-bottom: 10px;
}

.eventpage_item_title {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 6px;
}

.eventpage_item_date {
    font-size: 0.72rem;
    opacity: 0.7;
}

.eventpage_nodata {
    text-align: center;
    padding: 60px 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* --- pagination --- */
.eventpage_pagination {
    display: flex;
    justify-content: center;
}

.eventpage_pagination ul {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
}

.eventpage_pagination li a,
.eventpage_pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    color: #fff;
    font-size: 0.85rem;
    border-radius: 2px;
}

.eventpage_pagination li span.current {
    background-color: var(--orange);
    font-weight: 700;
}

.eventpage_pagination li a.next {
    background-color: #fff;
    color: #000;
    font-weight: 700;
    padding: 0 20px;
}

.news_nodata {
    color: #fff;
    text-align: center;
    padding: 40px 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

@media screen and (max-width: 768px) {
    .eventpage_mv {
        height: 160px;
    }

    .eventpage_mv_title {
        font-size: 1.8rem;
    }

    .eventpage_inner {
        padding: 30px 1% 50px;
    }

    .eventpage_filter {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 24px;
    }

    .eventpage_filter_item select {
        flex: 1;
    }

    /* 一覧は2カラムに */
    .eventpage_list {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 12px;
        margin-bottom: 24px;
    }

    .eventpage_item_title {
        font-size: 0.75rem;
    }

    .eventpage_item_date {
        font-size: 0.68rem;
    }
}

/* =========================
    Newsdetail
========================= */
.newsdetail {
    background-color: #000;
    color: #fff;
    padding: 80px 5% 100px;
}

.newsdetail_inner {
    max-width: 800px;
    margin: 0 auto;
}

.newsdetail_date {
    font-size: 0.95rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.newsdetail_title {
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.newsdetail_thumb {
    margin-bottom: 30px;
}

.newsdetail_thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.newsdetail_body {
    font-size: 1rem;
    line-height: 2;
}

.newsdetail_body p {
    margin-bottom: 1.5em;
}

.newsdetail_body img {
    max-width: 100%;
    height: auto;
}

.newsdetail_back {
    margin-top: 60px;
    text-align: center;
}

.newsdetail_back a {
    display: inline-block;
    border: 1px solid #fff;
    border-radius: 999px;
    padding: 12px 40px;
    font-size: 0.85rem;
}

@media screen and (max-width: 768px) {
    .newsdetail {
        padding: 50px 1% 60px;
    }

    .newsdetail_title {
        font-size: 1.2rem;
        margin-bottom: 20px;
        padding-bottom: 14px;
    }

    .newsdetail_body {
        font-size: 0.95rem;
    }
}