/* ==================== Reset & Base Styles ==================== */

@font-face {
    font-family: 'DIN 2014';
    src: url('../fonts/din-2014.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', 'Source Han Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 10%;
}

.main-container {
    width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.top-title-section {
    font-size: 24px;
    color: #fff;
    text-align: center;
    font-weight: bold;
}

.mt-80px-i {
    margin-top: 80px !important;
}

/* ==================== Header ==================== */
.header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
}

.logo img {
    width: 80px;
    height: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #676564;
    font-size: 18px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #1cc1d5;
}

.cta-button {
    background: #0070C0;
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
}

.cta-button:hover {
    background: #005a9e;
}

/* ==================== Dropdown Menu ==================== */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
    position: relative;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #676564;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: #f0f9ff;
    color: #1cc1d5;
    padding-left: 25px;
}

/* ==================== Hamburger Menu ==================== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 40px;
    height: 2px;
    background: #0070C0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ==================== Mobile Menu Overlay ==================== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to bottom, #7DDDFF 0%, #4AB8E8 50%, #2A93D0 100%);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

/* Mobile Menu Close Button */
.mobile-menu-close {
    position: absolute;
    top: 10px;
    right: 0px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
}

/* Mobile Menu Logo */
.mobile-menu-logo {
    margin: 0;
    display: flex;
    justify-content: flex-start;
}

.mobile-menu-logo img {
    width: 50px;
}

/* Mobile Menu Navigation */
.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 100px;
}

.mobile-menu-link {
    text-align: right;
    padding: 20px 15px;
    color: white;
    text-decoration: none;
    font-size: 5vw;
    font-weight: 700;
    border-bottom: 1px solid #fff;
    transition: background 0.3s ease;
}

.mobile-menu-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-link span {
    flex: 1;
}

.mobile-menu-link svg {
    flex-shrink: 0;
    margin-left: 10px;
}

/* Mobile Menu Submenu */
.mobile-menu-item-with-submenu {
    border-bottom: 1px solid #fff;
}

.mobile-menu-toggle {
    width: 100%;
    text-align: right;
    padding: 20px 15px;
    color: white;
    background: none;
    border: none;
    font-size: 5vw;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle span {
    flex: 1;
}

.toggle-arrow {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle.active .toggle-arrow {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.1);
}

.mobile-submenu.active {
    max-height: 500px;
}

.mobile-submenu-link {
    display: block;
    padding: 16px 15px 16px 30px;
    color: white;
    text-decoration: none;
    font-size: 4vw;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: background 0.3s ease, padding-left 0.3s ease;
}

.mobile-submenu-link:last-child {
    border-bottom: none;
}

.mobile-submenu-link:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 40px;
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    margin-top: unset;
    padding-top: unset;
    text-align: center;
}

.mobile-menu-footer-link {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-size: 12px;
    margin: 0 10px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.mobile-menu-footer-link:hover {
    opacity: 1;
}

.mobile-menu-copyright {
    color: white;
    font-size: 12px;
    margin-top: 20px;
    opacity: 0.8;
}

.fade-up {
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.5s ease-out;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

.btn-more {
    padding-top: 80px;
}

.btn-group {
    display: flex;
    gap: 80px;
}

/* ==================== Hero Section ==================== */
.hero {
    position: relative;
    height: 100%;
}

.hero-overlay {
    width: 100%;
    line-height: 1;
}

.hero-overlay img {
    width: 100%;
}

.hero-content {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-title-jp {
    font-size: 40px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 64%;
    transform: translateY(-50%);
    justify-self: center;
    line-height: 1;
}

.hero-title-en {
    font-size: 150px;
    font-weight: 800;
    color: #ffffff70;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    position: absolute;
    left: 10%;
    bottom: -12%;
    line-height: 1;
    text-decoration: none;
}

.hero-title-en-top {
    font-size: 150px;
    font-weight: 800;
    color: #ffffff40;
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    justify-self: center;
    line-height: 1;
    text-decoration: none;
    margin-top: 10px;
}



/* ============================================== */
/* ====================EVENT===================== */
/* ============================================== */
.event-section {
    padding-top: 150px;
    position: relative;
    text-align: center;
}

/* Title */
.event-section .event-title {
    font-family: 'Arial';
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    z-index: 2;
    position: relative;
    margin-bottom: 60px;
}

/* Event Category Buttons */
.event-category-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.category-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 150px;
}

.category-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #e0f5ff 100%);
}

.category-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.category-name {
    font-size: 16px;
    font-weight: 700;
    color: #676564;
}

/* WATERMARK "EVENT" */
.event-section .event-bg-text {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    font-weight: 800;
    color: #ffffff40;
    z-index: 1;
}


/* Card Wrapper */
.event-section .event-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    padding-top: 50px;
    gap: 80px;
}

/* Card Wrapper */
.event-section .event-list a:hover {
    opacity: 0.8;
}

/* Card */
.event-section .event-card {
    background: #fff;
    border-radius: 55px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.event-page .event-section .event-card {
    display: none;
    transition: all .3s ease;
}

.event-page .event-section .event-card.show {
    display: block;
}

.event-section .event-image img {
    width: 100%;
    height: auto;
    display: block;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

/* Content */
.event-section .event-content {
    padding: 35px 60px;
    text-align: left;
}

.event-section .event-content h3 {
    font-size: 23px;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #666;
}

/* Info Row */
.event-section .event-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

/* Tags */
.event-section .tag {
    display: inline-block;
    padding: 1px 15px;
    border-radius: 5px;
    font-size: 15px;
    color: #fff;
    margin-right: 10px;
}

/* Colors */
.event-section .tag.tokyo {
    background: #0070C0;
}

.event-section .tag.osaka {
    background: #FB4403;
}

.event-section .date {
    font-size: 17px;
    color: #666;
    font-weight: bold;
}

/* ============================================== */
/* ====================EVENT===================== */
/* ============================================== */

/* ============================================== */
/* ====================VOICE===================== */
/* ============================================== */
.voice-section {
    padding-top: 150px;
    position: relative;
    text-align: center;
}

/* Title */
.voice-section .event-title {
    font-family: 'Arial';
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    z-index: 2;
    position: relative;
    margin-bottom: 60px;
}

/* WATERMARK “EVENT” */
.voice-section .event-bg-text {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    font-weight: 800;
    color: #ffffff40;
    z-index: 1;
}

.voice-list {
    width: 100%;
    display: flex;
    padding-top: 50px;
    flex-direction: column;
    gap: 80px;
}

.voice-card {
    max-width: 900px;
    background: #fff;
    border-radius: 25px;
    padding: 40px 50px;
    display: flex;
    gap: 40px;
    align-items: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Left side icon */
.voice-card.left .voice-icon {
    order: 0;
}

/* Right side icon */
.voice-card.right {
    flex-direction: row-reverse;
    align-self: flex-end;
}

.voice-icon img {
    width: 80px;
    height: 80px;
}

.voice-content {
    text-align: left;
}

/* Text content */
.voice-content h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #FB4403;
}

/* Right side icon */
.voice-card.left h3 {
    color: #FB4403;
}

/* Right side icon */
.voice-card.right h3 {
    color: #0070C0;
}

.voice-page .voice-card {
    display: none;
    transition: all .3s ease;
}

.voice-page .voice-card.show {
    display: flex;
}

.voice-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #676564;
    font-weight: bold;
}

/* ============================================== */
/* ====================VOICE===================== */
/* ============================================== */


/* ============================================== */
/* ======================FAQ===================== */
/* ============================================== */
.faq-section {
    padding-top: 150px;
    position: relative;
    text-align: center;
}

/* Title */
.faq-section .event-title {
    font-family: 'Arial';
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    z-index: 2;
    position: relative;
    margin-bottom: 60px;
}

/* WATERMARK “EVENT” */
.faq-section .event-bg-text {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    font-weight: 800;
    color: #ffffff40;
    z-index: 1;
}

.faq-list {
    width: 100%;
    display: flex;
    padding-top: 50px;
    flex-direction: column;
    gap: 80px;
}

.faq-card {
    background: #fff;
    border-radius: 50px;
    padding: 60px 90px;
}

.faq-page .faq-card {
    display: none;
    transition: all .3s ease;
}

.faq-page .faq-card.show {
    display: block;
}

.faq-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.faq-section .icon-q,
.faq-section .icon-a {
    font-family: 'DIN 2014';
    width: 90px;
    height: 90px;
    border-radius: 50%;
    color: #fff;
    font-size: 60px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.faq-section .icon-q {
    background: #0070C0;
}

.faq-section .icon-a {
    background: #FB4403;
}

.faq-question,
.faq-answer {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    color: #676564;
    text-align: left;
}

hr {
    border: none;
    border-top: 2px solid #666;
    margin: 30px 0;
}

/* ============================================== */
/* ======================FAQ===================== */
/* ============================================== */


/* ====================================================== */
/* ======================EVENTDETAIL===================== */
/* ====================================================== */
.top-eventdetail {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
}

.eventdetail-top-title {
    font-size: 42px;
    color: #fff;
    font-weight: bold;
}

.event-box {
    padding: 50px 20px;
    text-align: center;
    width: 100%;
}

.event-box .event-header {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.event-box .label {
    background: #0065c3;
    color: #fff;
    padding: 1px 20px;
    border-radius: 6px;
    font-size: 40px;
    font-weight: 700;
}

.event-box .date {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
}

.event-box .select-wrap {
    width: 100%;
    margin: 0;
    padding: 10px 10px 50px 10px;
    text-align: right;
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

.event-box .select-wrap select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.event-box .other-date {
    font-size: 12px;
    color: #fff;
    text-decoration: none;
    position: absolute;
    right: 8px;
    bottom: 15px;
}

.event-box .apply-btn {
    background: #FEE000;
    color: #005388;
    font-size: 31px;
    padding: 12px 60px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    position: relative;
    transition: all 0.3s ease;
}

.event-box .apply-btn::after {
    content: "";
    position: absolute;
    right: 25px;
    top: 53%;
    width: 14px;
    height: 14px;
    border-top: 3px solid #005388;
    border-right: 3px solid #005388;
    transform: translateY(-50%) rotate(45deg);
}

.event-box .apply-btn:hover {
    opacity: 0.9;
}

.info-section {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 0px;
    border-radius: 10px;
    color: #666;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
}

.info-section .info-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-section .info-label {
    width: 150px;
    min-width: 150px;
    background: #0072c6;
    color: #fff;
    padding: 26px 10px;
    border-radius: 10px;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-section .info-content {
    flex: 1;
    background: #fff;
    padding: 18px 20px;
    border-radius: 10px;
    font-size: 24px;
    line-height: 1.5;
    align-content: center;
}

.info-section .note {
    color: #FB4403;
}

.info-section .info-content ul {
    margin: 10px 20px;
    padding-left: 30px;
}

.info-section .info-content ul li {
    line-height: 1.5;
}

.splide {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 80px 0px;
}

.splide__slide img {
    width: 100%;
}

.splide__slide {
    padding: 0px 10px;
}

.splide .arrow {
    width: 70px;
    height: 70px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: transparent;
    color: #fff;
    font-size: 35px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex: none;
}

.splide .arrow.left {
    left: -90px;
}

.splide .arrow.right {
    right: -90px;
}




/* Map Section */
.map-container {
    width: 100%;
    margin: 0 auto 30px;
    padding: 50px 0px 20px 0px;
}

.map-wrapper {
    width: 100%;
    height: 550px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    background: white;
}

/* Address Section */
.address-section {
    text-align: center;
    margin-top: 0;
    padding-bottom: 100px;
}

.address {
    font-size: 34px;
    font-family: 'Noto Sans JP', 'Source Han Sans', sans-serif;
    font-weight: bold;
    color: white;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ====================================================== */
/* ======================EVENTDETAIL===================== */
/* ====================================================== */



.pc-show {
    display: flex;
}

.sp-show {
    display: none;
}











/* ==================== Contact Form Section ==================== */
.main-section {
    background: linear-gradient(to bottom, #7DDDFF, #0070C0);
    padding: 150px 20px;
    min-height: 600px;
    margin-top: -2px;
}

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 40px;
    padding: 150px 60px 100px 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.form-title {
    text-align: center;
    color: #0070C0;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-label {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

.required {
    color: #E53935;
    margin-left: 4px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #666;
    border-radius: 8px;
    font-size: 20px;
    font-family: 'Noto Sans JP', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #7DDDFF;
    box-shadow: 0 0 0 3px rgba(125, 221, 255, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #BDBDBD;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Radio Buttons */
.radio-group {
    display: flex;
    gap: 40px;
    margin-top: 5px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 18px;
    color: #333;
    position: relative;
    font-weight: 700;
    padding: 15px 40px;
    border: solid 1px #666666;
    border-radius: 10px;
}

.radio-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-custom {
    width: 18px;
    height: 18px;
    border: 1.5px solid #999;
    border-radius: 50%;
    position: relative;
    transition: all 0.2s ease;
    background: white;
}

.radio-label input[type="radio"]:checked+.radio-custom {
    border-color: #666;
    background: white;
}

.radio-label input[type="radio"]:checked+.radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #333;
    border-radius: 50%;
}

/* Submit Button */
.form-submit {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.submit-button {
    padding: 10px 100px;
    background: white;
    color: #333;
    border: 1.5px solid #666;
    border-radius: 30px;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Noto Sans JP', sans-serif;
}

.submit-button:hover {
    background: #f5f5f5;
    border-color: #666;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.submit-button-yellow {
    padding: 10px 100px;
    background: #FEE000;
    border: none;
    color: #333;
    border-radius: 30px;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Noto Sans JP', sans-serif;
}

.submit-button-yellow:hover {
    background: #c7b000;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.form-checkbox {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.checkbox-label {
    font-size: 16px;
    font-weight: bold;
    font-family: 'Noto Sans JP';
    color: #666;
}

/* ==================== Footer CTA Section ==================== */
.footer-cta {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
}

.footer-cta-overlay {
    width: 100%;
    line-height: 1;
}

.footer-cta-overlay img {
    width: 100%;
}

.footer-cta-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    text-align: center;
    color: white;
}

.footer-cta-title {
    font-family: 'Arial', sans-serif;
    font-size: 80px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.footer-cta-text {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.8;
    margin-bottom: 80px;
}

.footer-cta-button {
    display: inline-block;
    padding: 20px 60px 20px 50px;
    color: white;
    text-decoration: none;
    border: 1px solid white;
    border-radius: 15px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    transition: all 0.3s ease;
    position: relative;
}

.footer-cta-button::after {
    content: "";
    position: absolute;
    right: 25px;
    top: 53%;
    width: 14px;
    height: 14px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: translateY(-50%) rotate(45deg);
}

.arrow-down .footer-cta-button::after {
    content: "";
    position: absolute;
    right: 25px;
    top: 49%;
    width: 14px;
    height: 14px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: translateY(-50%) rotate(135deg);
}

.footer-cta-button:hover {
    background: white;
    color: #1E3A57;
}

.footer-cta-button:hover::after {
    content: "";
    position: absolute;
    right: 25px;
    top: 53%;
    width: 14px;
    height: 14px;
    border-top: 3px solid #1E3A57;
    border-right: 3px solid #1E3A57;
    transform: translateY(-50%) rotate(45deg);
}

.arrow-down .footer-cta-button:hover::after {
    content: "";
    position: absolute;
    right: 25px;
    top: 49%;
    width: 14px;
    height: 14px;
    border-top: 3px solid #1E3A57;
    border-right: 3px solid #1E3A57;
    transform: translateY(-50%) rotate(135deg);
}

/* ==================== Footer ==================== */
/* Footer Grid Layout */
.footer {
    background: #F8F9FA;
    padding: 80px 20px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    color: #0070C0;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
    font-family: 'DIN 2014', sans-serif;
}

.footer-column-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-link {
    text-decoration: none;
    color: #676564;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding-left: 16px;
}

.footer-link:hover {
    color: #1cc1d5;
    padding-left: 24px;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-copyright {
    text-align: center;
    color: #999;
    font-size: 12px;
}

/* ==================== Back to Top Button ==================== */
.back-to-top {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0070C0, #1cc1d5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 112, 192, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
}

.back-to-top.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transform: scale(1);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #005a9e, #1bb3c5);
    box-shadow: 0 6px 20px rgba(0, 112, 192, 0.4);
    transform: scale(1.1);
}

.back-to-top:active {
    transform: scale(0.95);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* Hide back to top button on desktop */
@media (min-width: 769px) {
    .back-to-top {
        display: none !important;
    }
}

.padding-top-none-i {
    padding-top: 0 !important;
}

/* ==================== Responsive Design ==================== */
@media (max-width: 1200px) {

    .pc-show {
        display: flex;
    }

    .sp-show {
        display: none;
    }

    .hero-title-jp {
        font-size: 5.2vw;
    }

    .hero-title-en-top {
        font-size: 12vw;
    }

    .main-container {
        width: 100%;
    }

    .top-title-section {
        font-size: 1.8vw;
    }

    .event-section .event-content {
        padding: 3.5vw 5vw;
        text-align: left;
    }

    .event-section .event-content h3 {
        font-size: 1.8vw;
    }

    .event-section .tag {
        font-size: 1.3vw;
    }

    .event-section .date {
        font-size: 1.5vw;
    }

    .voice-card {
        max-width: 75vw;
        padding: 3.5vw 4.5vw;
    }

    .voice-content h3 {
        font-size: 2vw;
    }

    .voice-content p {
        font-size: 1.3vw;
    }

    .faq-card {
        border-radius: 4.5vw;
        padding: 5vw 7.5vw;
    }

    .faq-question,
    .faq-answer {
        font-size: 1.35vw;
    }

    .footer-cta-title {
        font-size: 5vw;
    }

    .footer-cta-text {
        font-size: 1.6vw;
        margin-bottom: 5vw;
    }

    .footer-cta-button {
        font-size: 2.2vw;
    }

    .btn-group {
        gap: 6vw;
    }
}

/* ==================== Responsive Design ==================== */
@media (max-width: 768px) {
    .pc-show {
        display: none;
    }

    .sp-show {
        display: block;
    }

    .header {
        padding: 10px 0;
    }

    .logo img {
        width: 60px;
    }

    .container {
        width: 100%;
        margin: 0 auto;
        padding: 0;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        padding: 0px 10px;
    }

    .hamburger {
        display: flex;
    }

    .nav {
        display: none;
    }

    .main-section {
        padding: 80px 20px;
    }

    .hero-title-jp {
        font-size: 3.6vw;
        top: 68%;
    }

    .hero-title-en {
        left: 0%;
        bottom: -5vw;
        font-size: 10vw;
        letter-spacing: 4px;
    }

    .hero-title-en-top {
        top: 34%;
        transform: translateY(-50%);
        justify-self: center;
        font-size: 13vw;
        letter-spacing: 0px;
    }

    .form-container {
        padding: 40px 30px;
    }

    .form-label {
        font-size: 4.5vw;
    }

    .form-title {
        font-size: 5vw;
    }

    .radio-group {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .radio-label {
        padding: 15px;
        font-size: 4vw;
    }

    .top-title-section {
        font-size: 3.5vw;
    }

    .event-section {
        padding-top: 24vw;
    }

    .event-section .event-list {
        gap: 12vw;
    }

    .event-section .event-content {
        padding: 6vw;
    }

    .event-section .event-title {
        font-size: 6vw;
        margin-bottom: 4vw;
    }

    .event-section .event-content h3 {
        font-size: 4vw;
    }

    .event-section .date {
        font-size: 2.7vw;
    }

    .event-section .tag {
        font-size: 3vw;
    }

    .event-section .event-bg-text {
        top: 13.5vw;
        font-size: 17vw;
    }

    .event-detail-form .event-section .event-bg-text {
        top: 17.5vw;
        font-size: 13vw;
    }

    .event-section .event-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .voice-section {
        padding-top: 24vw;
    }

    .voice-section .event-list {
        gap: 12vw;
    }

    .voice-section .event-content {
        padding: 6vw;
    }

    .voice-section .event-title {
        font-size: 6vw;
        margin-bottom: 4vw;
    }

    .voice-section .event-bg-text {
        top: 13.5vw;
        font-size: 17vw;
    }

    .voice-section .voice-list {
        gap: 12vw;
    }

    .voice-page .voice-card.show {
        display: block;
    }

    .voice-icon {
        display: flex;
        align-items: center;
        gap: 5vw;
    }

    .voice-card {
        max-width: 75vw;
        padding: 10vw;
    }

    .voice-content p {
        padding-top: 3vw;
        font-size: 3.5vw;
        line-height: 1.5;
    }



    .faq-section {
        padding-top: 24vw;
    }

    .faq-section .event-list {
        gap: 12vw;
    }

    .faq-section .event-content {
        padding: 6vw;
    }

    .faq-section .event-title {
        font-size: 6vw;
        margin-bottom: 4vw;
    }

    .faq-section .event-bg-text {
        top: 13.5vw;
        font-size: 17vw;
    }

    .faq-section .voice-list {
        gap: 12vw;
    }

    .faq-card {
        border-radius: 10vw;
        padding: 8vw;
    }

    .faq-row {
        gap: 4vw;
        align-items: flex-start;
    }

    .faq-section .icon-q,
    .faq-section .icon-a {
        width: 10vw;
        height: 10vw;
        font-size: 5.5vw;
    }

    .faq-question,
    .faq-answer {
        font-size: 3.5vw;
    }

    .event-box {
        padding: 50px 0;
    }

    .eventdetail-top-title {
        font-size: 4.5vw;
    }

    .event-box .label {
        font-size: 4.3vw;
    }

    .event-box .date {
        font-size: 4vw;
    }

    .event-box .apply-btn {
        font-size: 5vw;
    }

    .event-box .select-wrap {
        margin-top: 0px;
    }

    .splide .arrow {
        width: 8vw;
        height: 8vw;
        font-size: 4vw;
    }

    .splide {
        gap: 0px;
    }

    .top-title-section-eventdetail-01 {
        text-align: left;
        font-size: 3.8vw;
    }

    .top-title-section-eventdetail-02 {
        text-align: left;
        font-size: 3.2vw;
    }

    .info-section .info-row {
        display: flex;
        gap: 0;
        margin-bottom: 0;
        flex-direction: column;
    }

    .info-section .info-label {
        width: 100%;
        border-radius: 0;
        font-size: 3vw;
    }

    .info-section .info-row:first-child .info-label {
        border-radius: 10px 10px 0 0;
    }

    .info-section .info-row:last-child .info-content {
        border-radius: 0 0 10px 10px;
    }

    .info-section .info-content {
        padding: 6vw;
        font-size: 3vw;
        border-radius: 0;
    }

    .address {
        font-size: 4vw;
    }

    .footer {
        padding: 60px 20px 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-heading {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .footer-link {
        font-size: 14px;
    }

    .footer-cta-content {
        width: 100%;
    }

    .footer-cta-button {
        display: inline-block;
        padding: 15px 60px 15px 50px;
        color: white;
        text-decoration: none;
        border: 1px solid white;
        border-radius: 10px;
        font-size: 4.5vw;
        font-weight: 700;
        line-height: 1;
        transition: all 0.3s ease;
        position: relative;
    }

    .footer-cta-button::after {
        width: 2.5vw;
        height: 2.5vw;
    }

    .arrow-down .footer-cta-button::after {
        width: 2.5vw;
        height: 2.5vw;
    }

    .footer-cta-title {
        font-size: 8vw;
    }

    .footer-cta-text {
        font-size: 3.5vw;
    }

    .btn-group {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .submit-button-yellow {
        width: 35vw;
        padding: 10px;
        border-radius: 10px;
        font-size: 4vw;
    }

    .contact-form-section .form-container {
        padding: 40px 15px;
    }
}

/* ==================== Law Table (特定商取引法) ==================== */
.law-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.law-table tr {
    border-top: 1px solid #ddd;
}

.law-table tr:first-child {
    border-top: none;
}

.law-table th {
    width: 200px;
    padding: 30px 20px;
    text-align: left;
    font-weight: bold;
    font-size: 16px;
    color: #333;
    vertical-align: top;
    background: #f8f9fa;
}

.law-table td {
    padding: 30px 20px;
    font-weight: normal;
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.law-table td a {
    color: #0070C0;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.law-table td a:hover {
    color: #005a9e;
}

@media (max-width: 768px) {
    .law-table {
        display: block;
    }

    .law-table tbody,
    .law-table tr {
        display: block;
        width: 100%;
    }

    .law-table th,
    .law-table td {
        display: block;
        width: 100%;
        padding: 15px;
    }

    .law-table th {
        font-size: 14px;
        padding-bottom: 10px;
        border-bottom: none;
    }

    .law-table td {
        font-size: 14px;
        padding-top: 0;
        padding-bottom: 25px;
    }

    .law-table tr {
        margin-bottom: 10px;
        border-bottom: 1px solid #ddd;
    }

    .law-table tr:last-child {
        border-bottom: none;
    }
}