/*
    Theme Name: Nattou Theme    
*/


/* ========================================
   Variables
   ======================================== */
   :root {
    --primary-color: rgb(255, 188, 97);
    --accent-color: rgb(249, 146, 146);
    --orange-color: rgb(255, 188, 97);
    --pink-color: rgb(249, 146, 146);
    --text-color: #333333;
    --text-muted: #666;
    --bg-gray: #fff8f0;
    --white: #ffffff;
    --font-main: 'Noto Sans JP', sans-serif;
}

/* ========================================
   Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.8;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Header
   ======================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: -20px;
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-mark {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-color);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 900;
}

.logo-text h1 {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.logo-text p {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.2em;
}

.nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-sns-item {
    display: none;
}

.nav a {
    font-size: 0.95rem;
    font-weight: 900;
}

.nav a:hover {
    color: var(--primary-color);
}

.nav-btn {
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--white) !important;
    border-radius: 50px;
}

.nav-btn:hover {
    background: var(--pink-color);
}

/* ========================================
   Hamburger Menu
   ======================================== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--orange-color);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

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

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.hamburger.active .hamburger-line {
    background: var(--white);
}

body.menu-open {
    overflow: hidden;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    /* height: 100vh; */
    height: auto;
    background: #eee;
}

.hero-image {
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 12%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-name {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-name-label {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.2em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-name-main {
    font-size: 6rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.hero-name-red {
    color: var(--primary-color);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.hero-name-kana {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.3em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.catchphrase-horizontal {
    position: relative;
    display: inline-block;
    padding: 15px 25px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    transform: skew(-10deg);
    box-shadow: 20px 20px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.catchphrase-first {
    font-size: 1.2em;
}

.hero-footer-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: linear-gradient(90deg, var(--primary-color) 70%, var(--accent-color) 70%);
}

/* ========================================
   Hero Button Section
   ======================================== */
.hero-button {
    padding: 60px 0;
    background: var(--white);
}

.hero-button-inner {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.candidate-button {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    padding: 10px 30px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--white);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 320px;
    flex: 1;
    max-width: 450px;    
}

.candidate-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.candidate-button-orange {
    background: rgba(254, 187, 96, 1);
}

.candidate-button-blue {
    background: rgba(0, 200, 235, 1);
}

.candidate-button-label {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: -15px;
    color: var(--white);
    letter-spacing: 0.1em;
}

.candidate-button-name {
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.1em;
    grid-column: 1;
    grid-row: 2;
    display: flex;
    align-items: center;
}

.candidate-button-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    grid-column: 1;
    grid-row: 2;
    justify-self: end;
    align-self: center;
    position: relative;
    top: -15%;    
}

.candidate-button-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* ========================================
   Election Message Section
   ======================================== */
.election-message {
    padding: 60px 0;
    background: var(--white);
}

.election-box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border: 5px solid var(--white);
}

.election-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.election-content {
    color: var(--white);
}

.election-text {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.election-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.election-subtitle {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.election-list {
    list-style: none;
    padding-left: 0;
}

.election-list li {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 2.2;
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.election-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--white);
    font-size: 1rem;
}

/* ========================================
   Section Commons
   ======================================== */
.section {
    padding: 100px 0;
}

.bg-gray {
    background: var(--bg-gray);
}

.bg-blue {
    background: rgba(241, 253, 255, 1);
}

.section-label {
    display: block;
    color: var(--primary-color);
    font-weight: 900;
    letter-spacing: 0.3em;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 40px;
}

.center-heading {
    text-align: center;
    margin-bottom: 60px;
}

/* ========================================
   Message Section
   ======================================== */

.message-heading1 {
    text-align: center;
    padding: 60px 0;
    border-top: 2px dashed rgba(249, 146, 146, 1);
}

.message-heading1 .section-title1 {
    color: rgba(254, 187, 96, 1);
    font-size: 24px;
    font-weight: 700;
}

.message-heading1 .section-title2 {
    color: rgba(51, 51, 51, 1);
    font-size: 40px;
    font-weight: 700;
}

.message-heading2 {
    text-align: center;
    padding: 60px 0;
    border-top: 2px dashed rgba(249, 146, 146, 1);
}

.message-heading2 .section-title1 {
    color: rgba(0, 200, 235, 1);
    font-size: 24px;
    font-weight: 700;
}

.message-heading2 .section-title2 {
    color: rgba(51, 51, 51, 1);
    font-size: 40px;
    font-weight: 700;
}

.message-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.message-photo {
    flex: 1;
    position: relative;
}

.message-photo::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    z-index: -1;
}

.message-photo img {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.message-text {
    flex: 1.5;
}

.text-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 500;
}

.signature {
    margin-top: 50px;
    text-align: right;
}

.signature .title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
}

.signature .name {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    padding-bottom: 5px;
    border-bottom: 5px solid var(--primary-color);
    display: inline-block;
}

/* ========================================
   Activity Section
   ======================================== */
.activity-content {
    max-width: 900px;
    margin: 0 auto;
}

.activity-subtitle {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 40px;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--primary-color);
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.schedule-item {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.schedule-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.schedule-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    padding: 20px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    text-align: center;
}

.schedule-month {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
}

.schedule-day {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.schedule-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.schedule-time {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.schedule-location {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 5px;
}

.schedule-address {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================================
   Video Section
   ======================================== */
.video-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: visible;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ========================================
   Profile Section
   ======================================== */
.profile-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.profile-images {
    flex: 1;
    max-width: 400px;
    position: relative;
    height: 500px;
    min-height: 500px;
}

.profile-image {
    position: absolute;
    height: 85%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.profile-image-main {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.profile-image-overlay {
    bottom: 0%;
    right: 10%;
    width: 70%;
    height: 40%;
    z-index: 3;
    transform: rotate(8deg);
}

.profile-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.profile-image-overlay img {
    object-fit: cover;
    object-position: center;
}

.profile-details {
    flex: 1.5;
}

.profile-item {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.profile-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.profile-item h3 {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.profile-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
}

/* ========================================
   Policy Section
   ======================================== */
.policy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.policy-card {
    padding: 40px 0;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: none;
}

.policy-card.accent {
    border-top-color: var(--accent-color);
}

.policy-card:hover {
    transform: none;
}

.policy-card-header {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 20px;
}

.policy-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    flex-shrink: 0;
}

.policy-card h3 {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.4;
    margin: 0;
    border-bottom: 2px dashed rgb(249, 146, 146);
    padding-bottom: 5px;
    flex: 1;
}

.policy-card p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 2;
    margin-top: 20px;
}

.policy-card ul {
    margin-top: 20px;
    padding-left: 0;
}

.policy-card li {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 2;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.policy-card li::before {
    content: '◇';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: 900;
}

.policy-concept {
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 40px;
    background: var(--bg-gray);
    border-radius: 10px;
    text-align: center;
}

.policy-concept-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.policy-concept-text {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-color);
}

.policy-content {
    margin-top: 20px;
}

.policy-subsection {
    margin-bottom: 30px;
}

.policy-subsection:last-child {
    margin-bottom: 0;
}

.policy-subtitle {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.6;
}

/* ========================================
   Instagram Section
   ======================================== */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: 0.3s;
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-link {
    padding: 10px 20px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 900;
    border: 2px solid var(--white);
    transition: 0.3s;
}

.instagram-link:hover {
    background: var(--white);
    color: var(--primary-color);
}

.instagram-cta {
    text-align: center;
}

.instagram-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 900;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.instagram-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ========================================
   Contact Section
   ======================================== */
.contact-box {
    padding: 60px;
    background: var(--white);
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 900;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-group label span {
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--bg-gray);
    border: 1px solid #eee;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    padding: 20px;
    margin-top: 20px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 900;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: var(--pink-color);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: 60px 0;
    background: var(--orange-color);
    color: var(--white);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.footer-info p {
    font-size: 0.85rem;
    color: #999;
}

.footer-sns {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.sns-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.sns-icon:hover {
    transform: translateY(-3px);
}

.sns-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.footer-copy {
    font-size: 0.75rem;
    color: #666;
}

#message2 .section-label, #activity2 .section-label, #video2 .section-label, #profile2 .section-label, #policy2 .section-label, #instagram2 .section-label {
    color: rgba(0, 200, 235, 1);
}

#message2 .signature .name {
    border-bottom: 6px solid rgba(0, 200, 235, 1);
}

#activity2 .activity-subtitle {
    border-bottom: 4px solid rgba(0, 200, 235, 1);
}

#activity2 .schedule-date {
    background: #00C8EB;
}

#activity2 .schedule-time {
    color: #00C8EB;
}

#profile2 .profile-item h3 {
    color: rgba(0, 200, 235, 1);
}

#profile2 .profile-images {
    height: auto;
    min-height: 600px;
    padding-bottom: 100px;
}

#policy2 .policy-concept-title {
    color: #00C8EB;
}

#policy2 .policy-num {
    color: #00C8EB;
}

#policy2 .policy-concept {
    background: rgba(241, 253, 255, 1);
}

#policy2 .policy-card li::before {
    color: #00C8EB;
}

.profile-sns {
    position: absolute;
    bottom: -80px;
    left: 0;
    display: flex;
    gap: 30px;
    align-items: center;
    z-index: 4;
    width: 75%;
    padding-top: 20px;
}

.profile-sns a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.85rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.profile-sns a:hover {
    transform: translateY(-3px);
}

.profile-sns a img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 5px;
    display: block;
}

.profile-images-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    gap: 40px; 
    margin-top: 80px;
}

.profile-images-item {
    width: calc((100% - 2 * 40px) / 3); /* 3 items per row, 2 gaps */
}

.profile-images-item img {
    width: 100%;
}

.sp-show {
    display: none;
}

/* ========================================
   Responsive Styles
   ======================================== */

   @media (max-width: 1024px) {
       .logo-text h1 {
           font-size: 1.0rem;
       }
   }

@media (max-width: 960px) {
    .header-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .hamburger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--orange-color);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 100;
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
    }

    .nav ul {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        padding: 0;
    }

    .nav a {
        font-size: 1.5rem;
        color: var(--white);
        font-weight: 900;
        transition: color 0.3s ease;
    }

    .nav a:hover {
        color: var(--primary-color);
    }

    .nav-btn {
        background: var(--white);
        color: var(--orange-color) !important;
        padding: 15px 40px;
        border-radius: 50px;
        font-size: 1.5rem;
    }

    .nav-sns-item {
        display: block;
        margin-top: 40px;
        list-style: none;
    }

    .nav-sns {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 0 20px;
        max-width: 300px;
        margin: 0 auto;
    }

    .nav-sns-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        margin: 0 auto;
        transition: transform 0.3s ease;
    }

    .nav-sns-icon:hover {
        transform: translateY(-5px);
    }

    .nav-sns-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

    .nav-btn:hover {
        background: var(--pink-color);
        color: var(--white) !important;
    }

    .hero-content {
        top: 65%;
        left: 5%;
    }

    .hero-name-label {
        font-size: 1.4rem;
    }

    .hero-name-main {
        font-size: 4.5rem;
    }

    .hero-name-kana {
        font-size: 1.2rem;
    }

    .catchphrase-horizontal {
        font-size: 3rem;
        padding: 12px 20px;
    }

    @media (max-width: 400px) {
        .catchphrase-horizontal {
            font-size: 2.2rem;
            padding: 10px 18px;
            letter-spacing: 0.08em;
        }
    }

    .section-title {
        font-size: 2rem;
    }

    .pc-only {
        display: none;
    }

    .message-layout {
        flex-direction: column;
    }

    .activity-subtitle {
        font-size: 1.5rem;
    }

    .schedule-item {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .schedule-date {
        min-width: auto;
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        padding: 15px;
    }

    .schedule-month {
        font-size: 1.2rem;
    }

    .schedule-day {
        font-size: 2rem;
    }

    .schedule-time {
        font-size: 1.1rem;
    }

    .schedule-location {
        font-size: 1.2rem;
    }

    .profile-content {
        flex-direction: column;
    }

    .profile-item {
        margin-bottom: 25px;
        padding-bottom: 20px;
    }

    .profile-images {
        max-width: 100%;
        width: 100%;
        height: 400px;
        min-height: 400px;
        margin: 0 auto 40px;
    }

    .profile-image {
        position: absolute;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .profile-image-main {
        width: 100%;
        height: 100%;
        object-fit: cover;
        top: 0;
        left: 0;
    }

    .profile-image-overlay {
        width: 70%;
        height: 35%;
        bottom: 5%;
        right: 5%;
        top: auto;
        left: auto;
    }

    .profile-image img {
        width: 100% !important;
        height: 100% !important;
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .policy-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .policy-card {
        padding: 30px 0;
    }

    .policy-num {
        font-size: 1.5rem;
    }

    .policy-card h3 {
        font-size: 1.5rem;
    }

    .policy-card li {
        font-size: 0.95rem;
    }

    .policy-concept {
        padding: 30px 20px;
        margin-bottom: 40px;
        text-align: left;
    }

    .policy-concept-title {
        font-size: 1.6rem;
        text-align: left;
    }

    .policy-concept-text {
        font-size: 1rem;
        text-align: left;
    }

    .policy-subtitle {
        font-size: 1rem;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .election-box {
        padding: 30px 15px;
        border-radius: 15px;
    }

    .election-title {
        font-size: 2.5rem;
    }

    .election-text {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .election-subtitle {
        font-size: 1.5rem;
    }

    .election-list li {
        font-size: 1rem;
        line-height: 1.8;
    }

    .hero-button-inner {
        flex-direction: column;
        gap: 20px;
    }

    .candidate-button {
        width: 100%;
        max-width: 100%;
        padding: 10px 30px;
    }

    .candidate-button-label {
        font-size: 0.85rem;
    }

    .candidate-button-name {
        font-size: 1.3rem;
    }

    .contact-box .center-heading {
        text-align: left;
    }

    .contact-box .section-title {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .hero {
        height: auto;
    }

    .profile-sns {
        bottom: -80px;
    }

    .logo-text h1 {
        font-size: 1.6rem;
    }

    .profile-images-item {
        width: 100%; 
    }

    .sp-show {
        display: inline-block;
    }
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-box {
        padding: 40px 20px;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .footer-sns {
        gap: 12px;
    }

    .sns-icon {
        width: 36px;
        height: 36px;
    }

    .sns-icon img {
        width: 100%;
        height: 100%;
    }
}


@media (max-width: 320px) {
    .logo-text h1 {
        font-size: 1.4rem;
    }
}