/*
Theme Name: Journey with
Version: 1.0
*/

/* 
  Common & Reset
------------------------------ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

body {
  font-family: "Noto Sans JP", "Yu Gothic", "YuGothic", sans-serif;
  background-color: #EBE8E0;
  color: #2A3737;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-family: var(--font-heading);
}

br.sp {
    display: none;
}

br.tb {
    display: none;
}

@media (max-width: 959px) {
    br.tb {
        display: inline;
    }
}

@media (max-width: 767px) {
    br.sp {
        display: inline;
    }
}

/* 
  CSS Variables (Design Tokens)
------------------------------ */

:root {
    /* Colors from Figma */
    --color-primary: #0E4257;      /* JW_09BGRN */
    --color-bg: #EBE8E0;           /* JW_03OFWHT */
    --color-bg-light: #F9F9F8;     /* JW_02WHT */
    --color-text: #2A3737;         /* JW_01BK */
    --color-accent: #F2A25D;       /* JW_10ORG */
    --color-green-light: #C0D6CF;  /* JW_06LGRN */
    --color-green: #A5BBB4;        /* JW_07GRN */
    --color-green-dark: #79998F;   /* JW_08DGRN */
    --color-beige: #C4BA9F;        /* JW_05BEIGE */
    
    /* Fonts */
    --font-main: "Noto Sans JP", "Yu Gothic", "YuGothic", sans-serif;
    --font-heading: "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
    --font-en: "Montserrat", sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --section-padding-md: 80px;
    --section-padding-sm: 60px;
}

/* 
  Layout
------------------------------ */

.top-section {
    padding: var(--section-padding) 0;
    background-color: var(--color-bg);
}

.section-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    /* padding: 0 64px; */
    padding: 0 40px;
}

.main-content {
    padding-top: 72px;
}

@media (max-width: 959px) {
    :root {
        --section-padding: 80px;
    }
    .section-container {
        padding: 0 40px;
    }
}

@media (max-width: 767px) {
    :root {
        /* --section-padding: 60px; */
    }
    .section-container {
        padding: 0 28px;
    }
}

@media (max-width: 559px) {
    :root {
        /* --section-padding: 48px; */
    }
    .section-container {
        /* padding: 0 16px; */
    }
}

/* 
  Animation
------------------------------ */

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(.33,1,.68,1), transform 1s cubic-bezier(.33,1,.68,1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Marquee Animation */
@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* 
  Header / Navigation
------------------------------ */

.navi-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-bg);
    z-index: 1000;
}

.navi-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 64px;
    height: 72px;
    gap: 32px;
}

.navi-logo {
    line-height: 0;
}

.navi-logo a {
    font-family: var(--font-en);
    font-size: 28px;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.3;
    white-space: nowrap;
}

.navi-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
    margin-right: 32px;
}

.navi-link {
    font-family: var(--font-en);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.5;
    transition: opacity 0.3s;
}

.navi-link:hover {
    opacity: 0.7;
}

.cta-contact {
    flex-shrink: 0;
}

.navi-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    background-color: var(--color-primary);
    color: var(--color-bg-light);
    font-family: var(--font-en);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    transition: background-color 0.3s;
}

.navi-button:hover {
    background-color: #0a3444;
}

/* Hamburger Menu */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 1px;
    background-color: var(--color-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu */

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 188px;
    height: 100vh;
    /* background-color: var(--color-text); */
    background-color: rgba(42, 55, 55, 0.8);
    /* opacity: 0.8; */
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-content {
    padding: 112px 34px 32px 34px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mobile-menu-link {
    font-family: var(--font-en);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-bg-light);
    line-height: 1.5;
    padding: 0;
    border-bottom: none;
    transition: opacity 0.3s;
    text-align: left;
}

.mobile-menu-link:hover {
    opacity: 0.7;
}

.mobile-menu-link.contact-button {
    background-color: var(--color-bg-light);
    color: var(--color-text);
    padding: 8px 20px;
    display: inline-block;
    width: auto;
}

.mobile-menu-close {
    position: absolute;
    top: 36px;
    right: 24px;
    width: 24px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    z-index: 1002;
}

.mobile-menu-close .hamburger-line {
    background-color: var(--color-bg-light);
    position: absolute;
}

.mobile-menu-close .hamburger-line:nth-child(1) {
    transform: rotate(45deg);
}

.mobile-menu-close .hamburger-line:nth-child(2) {
    transform: rotate(-45deg);
}

.mobile-menu-close:hover {
    opacity: 0.7;
}

@media (max-width: 959px) {
    .navi-container {
        padding: 0 32px;
        gap: 12px;
    }
    .navi-logo a {
        font-size: 24px;
    }
    .navi-menu {
        gap: 12px;
        margin-right: 12px;
    }
    .navi-link {
        font-size: 13px;
    }
    .navi-button {
        padding: 6px 12px;
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .navi-container {
        padding: 0 24px;
    }
    .navi-menu {
        display: none;
    }
    .cta-contact {
        display: none;
    }
    .hamburger {
        display: flex;
    }
}

/* 
  Hero Section
------------------------------ */

.sec-hero {
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
    padding-top: 72px;
    overflow: hidden;
    background-color: var(--color-bg);
    background-image: url('../images/bg.png');
    background-size: unset;
    background-position: center;
    background-repeat: repeat;
}

.hero-illustration {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
}

.hero-watermark {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    z-index: 0;
    animation: marquee 30s linear infinite;
}

.hero-watermark img {
    display: block;
    width: auto;
    height: 126px;
    max-width: none;
}

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

.hero-background {
    position: absolute;
    top: 90px;
    right: 0;
    width: 72%;
    height: calc(100% - 90px);
    pointer-events: none;
    z-index: 1;
}

/* 
  Watermark Section
------------------------------ */

.sec-watermark {
    padding: 0;
    background-color: var(--color-bg);
    background-image: url('../images/bg.png');
    background-size: unset;
    background-position: center;
    background-repeat: repeat;
    overflow: hidden;
    height: 126px;
}

@media (max-width: 767px) {
    .sec-watermark {
        height: 48px;
    }
}

.sec-watermark .hero-watermark {
    position: relative;
    left: 0;
    bottom: auto;
    width: 100%;
    height: 126px;
    z-index: 0;
    animation: marquee 30s linear infinite;
    margin-top: 0px;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 686px;
}

.sec-hero .section-container {
    max-width: 100%;
    margin-top: -180px;
    padding: 0 120px;
}

@media (max-width: 959px) {
    .sec-hero .section-container {
        padding: 0 40px;
    }
}

@media (max-width: 767px) {
    .sec-hero .section-container {
        margin-top: -210px;
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.6;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    color: var(--color-primary);
    line-height: 1.6;
    letter-spacing: 0.08em;
}

@media (max-width: 959px) {
    .sec-hero {
        min-height: 680px;
    }
    .hero-title {
        font-size: 40px;
    }
    .hero-subtitle {
        font-size: 20px;
    }
    .hero-watermark {
        font-size: 140px;
    }
}

@media (max-width: 767px) {
    .sec-hero {
        min-height: 560px;
    }
    .hero-title {
        font-size: 32px;
    }
    .hero-subtitle {
        font-size: 18px;
    }
    .hero-watermark {
        font-size: 100px;
    }
    .hero-background {
        width: 85%;
    }
}

@media (max-width: 559px) {
    .sec-hero {
        min-height: 480px;
    }
    .hero-title {
        font-size: 30px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .hero-watermark {
        font-size: 72px;
    }
    .hero-background {
        width: 100%;
    }
}

/* 
  Message Section
------------------------------ */

.sec-message {
    padding: var(--section-padding) 0;
    background-image: url('../images/bg.png');
    background-size: unset;
    background-position: center;
    background-repeat: repeat;
}

.message-content {
    max-width: 100%;
    margin: 0 auto 60px;
    text-align: center;
}

.message-text {
    font-family: var(--font-main);
    font-weight: 500;
    line-height: 56px;
    letter-spacing: 0.1em;
}

.message-text .text-large {
    font-weight: 700;
}

.message-text:last-child {
    margin-bottom: 0;
}

.text-medium {
    font-size: 20px;
}

.text-large {
    font-size: 32px;
}

.text-accent {
    color: var(--color-accent);
}

@media (max-width: 959px) {
    .text-medium {
        font-size: 18px;
    }
    .text-large {
        font-size: 28px;
    }
    .message-text {
        line-height: 48px;
    }
}

@media (max-width: 767px) {
    .sec-message {
        padding: 60px 0;
    }
    .text-medium {
        font-size: 15px;
    }
    .text-large {
        font-size: 22px;
    }
    .message-text {
        line-height: 36px;
        letter-spacing: 0.1em;
        text-align: left;
    }
}

@media (max-width: 559px) {
    .text-medium {
        font-size: 14px;
    }
    .text-large {
        font-size: 14px;
    }
    .message-text {
        line-height: 28px;
        letter-spacing: 0.1em;
    }
}

/* 
  Service Section
------------------------------ */

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

.title-main {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    letter-spacing: 0.07em;
    margin-bottom: 40px;
}

.title-desc {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    color: var(--color-text);
    line-height: 2;
    letter-spacing: 0.08em;
    max-width: 760px;
    margin: 0 auto;
    text-align: justify;
}

.service-list {
    display: flex;
    gap: 32px;
    margin-bottom: 60px;
}

.service-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.service-icon {
    width: 100%;
    max-width: 302px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 2;
    letter-spacing: 0.08em;
    text-align: center;
}

@media (max-width: 959px) {
    .title-main {
        font-size: 40px;
    }
    .title-desc {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .title-main {
        font-size: 32px;
        margin-bottom: 32px;
    }
    .title-desc {
        font-size: 16px;
    }
    .service-list {
        margin-bottom: 48px;
    }
    .service-list .slick-dots {
        bottom: -40px;
    }
    .service-list .slick-dots li button:before {
        font-size: 12px;
        color: var(--color-primary);
        opacity: 0.3;
    }
    .service-list .slick-dots li.slick-active button:before {
        color: var(--color-primary);
        opacity: 1;
    }
    .service-list.slick-dotted.slick-slider {
        margin-bottom: 68px;
    }
    .service-icon {
        margin: 0 auto;
        max-width: 240px;
        height: 120px;
    }
    .service-title {
        font-size: 16px;
    }
}

@media (max-width: 559px) {
    .title-main {
        font-size: 22px;
        margin-bottom: 24px;
    }
    .title-desc {
        font-size: 14px;
        line-height: 2.2;
    }
}

/* 
  Voice Section
------------------------------ */

.sec-voice {
    padding: var(--section-padding) 0;
}

.voice-list {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.voice-item {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.voice-item a {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.voice-card {
    background-color: var(--color-bg-light);
    border-radius: 8px;
    padding: 32px;
    box-shadow: 4px 6px 4px 0px rgba(0, 0, 0, 0.25);
    margin-bottom: 32px;
    flex: 1;
    position: relative;
}

.voice-card::after {
    content: '';
    position: absolute;
    bottom: -16.5px;
    left: 40px;
    width: 0;
    height: 0;
    border-left: 19.5px solid transparent;
    border-right: 19.5px solid transparent;
    border-top: 19.5px solid var(--color-bg-light);
    filter: drop-shadow(4px 6px 2px rgba(0, 0, 0, 0.25));
}

.voice-icon {
    width: 52px;
    height: 46px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.voice-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.voice-quote {
    margin-top: -16px;
    position: relative;
    z-index: 2;
}

.quote-text {
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.5;
    letter-spacing: 0;
}

.voice-author {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
}

.author-avatar {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #ccc;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.5;
    margin-bottom: 8px;
}

.author-position {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.5;
    text-align: justify;
}

@media (max-width: 959px) {
    .voice-list {
        gap: 40px;
    }
    .quote-text {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .voice-list {
        margin-bottom: 48px;
    }
    .voice-list .slick-dots {
        bottom: -40px;
    }
    .voice-list .slick-dots li button:before {
        font-size: 12px;
        color: var(--color-primary);
        opacity: 0.3;
    }
    .voice-list .slick-dots li.slick-active button:before {
        color: var(--color-primary);
        opacity: 1;
    }
    .voice-list.slick-dotted.slick-slider {
        margin-bottom: 68px;
    }
    .voice-card {
        padding: 24px;
        max-width: calc(100% - 12px);
    }
}

@media (max-width: 559px) {
    .quote-text {
        font-size: 16px;
    }
    .author-name {
        font-size: 16px;
    }
    .author-position {
        font-size: 12px;
    }
}

/* 
  Contact Section
------------------------------ */

.sec-contact {
    padding: var(--section-padding) 0;
    background-image: url('../images/bg.png');
    background-size: unset;
    background-position: center;
    background-repeat: repeat;
}

.contact-content {
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-family: var(--font-en);
    font-size: 48px;
    font-weight: 500;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 40px;
}

.contact-text {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    line-height: 2.2;
    letter-spacing: 0.08em;
    margin-bottom: 40px;
}

.contact-text p {
    margin: 0;
}

.contact-btn {
    display: flex;
    justify-content: center;
}

@media (max-width: 767px) {
    .sec-contact {
        padding: 60px 0;
    }
    .contact-title {
        font-size: 40px;
    }
}

@media (max-width: 559px) {
    .contact-title {
        font-size: 32px;
        margin-bottom: 32px;
    }
    .contact-text {
        font-size: 14px;
    }
}

/* 
  Buttons
------------------------------ */

.section-btn {
    display: flex;
    justify-content: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: var(--color-primary);
    color: var(--color-bg-light);
    font-family: var(--font-en);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    transition: background-color 0.3s;
    cursor: pointer;
}

.btn-primary .btn-text {
    font-family: var(--font-en);
}

.btn-primary:hover {
    background-color: #0a3444;
}

/* 
  Footer
------------------------------ */

.footer {
    background-color: var(--color-bg-light);
    padding: 80px 0;
}

.footer .section-container {
    max-width: none;
}

.footer-content {
    width: 100%;
    padding: 0;
}

.footer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-bottom: 80px;
}

.footer-logo .logo-text {
    font-family: var(--font-en);
    font-size: 28px;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.3;
}

.footer-nav {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    font-family: var(--font-en);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.5;
    transition: opacity 0.3s;
}

.footer-link:hover {
    opacity: 0.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
}

.copyright {
    font-family: var(--font-en);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.5;
}

.footer-link-small {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.5;
    text-decoration: underline;
    transition: opacity 0.3s;
}

.footer-link-small:hover {
    opacity: 0.7;
}

@media (max-width: 959px) {
    .footer-content {
        padding: 0 0px;
    }
}

@media (max-width: 767px) {
    .footer {
        padding: 60px 0;
    }
    .footer-content {
        /* padding: 0 24px; */
    }
    .footer-main {
        margin-bottom: 10px;
    }
    .footer-nav {
        display: none;
    }
    .footer-bottom {
        flex-direction: column-reverse;
        gap: 10px;
        text-align: left;
        padding-top: 0;
    }
    .copyright {
        font-size: 12px;
    }
    .footer-link-small {
        font-size: 12px;
    }
}

@media (max-width: 559px) {
    .footer {
        padding: 48px 0;
    }
    .footer-main {
        gap: 24px;
        /* margin-bottom: 48px; */
    }
}

/* 
  Sub Pages (About, Service, Voice)
------------------------------ */

/* Page Header */
.page-header {
    height: 346px;
    display: flex;
    align-items: center;
    /* padding-top: 72px; */
    background-color: var(--color-bg);
    background-image: url('../images/bg.png');
    background-size: unset;
    background-position: center;
    background-repeat: repeat;
    text-align: center;
}

.page-tagline {
    font-family: var(--font-en);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-green-dark);
    line-height: 1.5;
    margin-bottom: 40px;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-align: center;
}

.page-title .en {
    font-family: var(--font-en);
    font-weight: 600;
    text-transform: uppercase;
}

/* Page Section Common */
.page-section {
    padding: 120px 0;
    background-color: var(--color-bg);
}

.section-tagline {
    font-family: var(--font-en);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-green-dark);
    line-height: 1.5;
    margin-bottom: 40px;
}

.section-tagline.right {
    text-align: right;
}

.section-title-center {
    font-family: var(--font-en);
    font-size: 48px;
    font-weight: 500;
    color: var(--color-primary);
    line-height: 1.2;
    text-align: center;
    margin-bottom: 80px;
}

.section-title-center.hassub {
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .section-tagline.right {
        text-align: left;
    }
}

/* 2 Column Layout */
.content-2col {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.content-2col.reverse {
    flex-direction: row-reverse;
}

.col-left {
    flex-shrink: 0;
}

.col-right {
    flex: 1;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.6;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.section-heading.right {
    text-align: right;
}

.section-heading-large {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.6;
    letter-spacing: 0.07em;
}

.section-body {
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 2;
    letter-spacing: 0.08em;
}

.section-body-small {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 2;
    letter-spacing: 0.08em;
}

/* Mission Section */
.sec-mission .section-illust {
    position: absolute;
    width: 541px;
    left: 32px;
    margin-top: 16px;
}

@media (max-width: 1279px) {
    .sec-mission .section-illust {
        width: 42vw;
    }
}

@media (max-width: 959px) {
    .sec-mission .section-illust {
        width: 36vw;
        left: 16px;
    }
}

@media (max-width: 767px) {
    .sec-mission .section-illust {
        position: relative;
        width: auto;
    }
}

@media (max-width: 559px) {
    .sec-mission .section-illust {
        left: 0;
    }
}

/* Vision Section */
.sec-vision .section-illust {
    position: absolute;
    width: 752px;
    left: 80px;
    margin-top: -112px;
}

.sec-vision .section-illust.tb {
    display: none;
}

@media (max-width: 1279px) {
    .sec-vision .section-illust {
        width: 58vw;
        margin-top: -90px;
    }
}

@media (max-width: 959px) {
    .sec-vision .section-illust {
        margin-top: -40px;
        left: 30px;
    }
    .sec-vision.page-section {
        padding: 80px 0 160px;
    }
}

@media (max-width: 767px) {
    .sec-vision .section-illust {
        position: relative;
        width: auto;
        margin-top: 10px;
    }
    .sec-vision .section-illust.tb {
        display: block;
    }
    .sec-vision .section-illust.pc {
        display: none;
    }
    .sec-vision.page-section {
        padding: 60px 0;
    }
}

@media (max-width: 559px) {
    .sec-vision .section-illust {
        left: 0;
    }
}

/* Value Section */
.value-list {
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.value-item {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.value-label {
    font-family: var(--font-en);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.5;
    margin-bottom: 8px;
}

.value-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 2;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.value-text {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 2;
    text-align: justify;
    margin-bottom: 8px;
}

.value-image {
    height: 270px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 559px) {
    .value-text {
        font-size: 14px;
    }
}

/* Team Section */
.team-section {
    margin-bottom: 64px;
}

.team-section:last-child {
    margin-bottom: 0;
}

/* Team Accordion (mobile only) */
.team-accordion-toggle {
    display: none;
}

.team-category {
    font-family: var(--font-en);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-green-dark);
    line-height: 1.5;
    margin-bottom: 64px;
}

.team-member {
    display: flex;
    gap: 126px;
    align-items: flex-start;
}

.member-photo {
    width: 208px;
    height: 208px;
    /* border-radius: 50%; */
    overflow: hidden;
    flex-shrink: 0;
    background-color: #ccc;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    flex: 1;
}

.member-name {
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1;
    letter-spacing: 0.08em;
    margin-bottom: 36px;
}

.member-name.tb {
    display: none;
}

.member-bio {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 2;
    letter-spacing: 0.08em;
    text-align: justify;
    margin-bottom: 0;
}

.member-bio a {
    text-decoration: underline;
    color: var(--color-text);
}

.member-career {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 2;
    letter-spacing: 0.08em;
    margin-top: 16px;
    margin-bottom: 8px;
}

.member-history {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.member-history li {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 2;
    letter-spacing: 0.08em;
}

/* Company Profile Section */
.sec-company {
    background-color: var(--color-beige);
}

.company-info {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px 40px;
    max-width: 520px;
    margin: 0 auto;
}

.company-info dt {
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 500;
    color: var(--color-text);
    line-height: 2;
    letter-spacing: 0.08em;
    text-align: left;
}

.company-info dd {
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 500;
    color: var(--color-text);
    line-height: 2;
    letter-spacing: 0.08em;
    margin: 0;
}

.company-info .en {
    font-family: var(--font-en);
    font-weight: 600;
}

/* 
  Service Page
------------------------------ */

/* Service Introduction */
.sec-service-intro {
    padding: 120px 0 60px;
}

.service-intro-text {
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 2;
    letter-spacing: 0.08em;
    text-align: justify;
    max-width: 760px;
    margin: 0 auto;
}

/* Service Detail */
.sec-service-detail {
    padding: 0 !important;
}

.service-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    padding: 60px 0;
}

.service-visual {
    width: 340px;
    flex-shrink: 0;
}

.service-visual img {
    width: 100%;
    height: auto;
}

.service-content {
    flex: 1;
}

.service-content-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.service-content-text {
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 500;
    color: var(--color-text);
    line-height: 2;
    letter-spacing: 0.08em;
    text-align: justify;
}

.service-content-text p:first-child {
    font-weight: 400;
}

.service-content-text p {
    margin-bottom: 20px;
}

.service-content-text p:last-child {
    margin-bottom: 0;
}

.service-content-text strong {
    font-weight: 700;
}

.approach-sub {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 16px;
}

/* Works Section */
.sec-service-works {
    padding: 112px 0;
}

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

.works-subtitle {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 2;
    letter-spacing: 0.08em;
    text-align: center;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.works-card {
    background-color: var(--color-bg-light);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.works-tag {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-bg-light);
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    padding: 4px 8px;
    align-self: flex-start;
}

.works-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.works-meta {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-primary);
    line-height: 2;
    letter-spacing: 0.08em;
    margin: 0;
}

.works-role {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-primary);
    line-height: 2;
    letter-spacing: 0.08em;
    margin: 0;
}

.works-role strong {
    font-weight: 700;
}

/* Section Illustration */
.section-illust {
    margin-top: 40px;
}

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

/* Responsive for Sub Pages */
@media (max-width: 959px) {
    .page-header {
        height: 280px;
    }
    .page-title {
        font-size: 40px;
    }
    .page-section {
        padding: 80px 0;
    }
    .section-title-center {
        font-size: 40px;
        margin-bottom: 60px;
    }
    .content-2col {
        gap: 60px;
    }
    .section-heading {
        font-size: 28px;
    }
    .section-heading-large {
        font-size: 40px;
    }
    .section-body {
        font-size: 18px;
    }
    .value-list {
        gap: 40px;
    }
    .team-member {
        gap: 80px;
    }
    .section-illust {
        margin-top: 30px;
    }
    .service-intro-text {
        font-size: 18px;
    }
    .service-layout {
        gap: 60px;
        /* padding: 80px 0; */
    }
    .service-visual {
        width: 300px;
    }
    .service-content-title {
        font-size: 24px;
    }
    .service-content-text {
        font-size: 18px;
    }
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 767px) {
    .page-header {
        height: 268px;
        text-align: left;
    }
    .page-tagline {
        margin-bottom: 20px;
    }
    .page-title {
        font-size: 30px;
        text-align: left;
        line-height: 1.6;
    }
    .page-section {
        padding: 60px 0;
    }
    .section-tagline {
        margin-bottom: 32px;
    }
    .section-title-center {
        font-size: 32px;
        margin-bottom: 48px;
    }
    .section-title-center.hassub {
        margin-bottom: 10px;
    }
    .content-2col {
        flex-direction: column;
        gap: 10px;
    }
    .content-2col.reverse {
        flex-direction: column;
    }
    .section-heading {
        font-size: 24px;
        white-space: normal;
    }
    .section-heading.right {
        text-align: left;
    }
    .section-heading-large {
        font-size: 32px;
    }
    .section-body {
        font-size: 16px;
    }
    .section-body-small {
        font-size: 15px;
    }
    .sec-value .section-container {
        overflow: hidden;
    }
    .value-list {
        flex-direction: column;
        gap: 48px;
        width: 100%;
        max-width: 100%;
    }
    .value-list.slick-slider {
        margin: 0;
        padding: 0;
        padding-bottom: 60px;
        width: 100%;
        max-width: 100%;
    }
    .value-list .slick-list {
        overflow: hidden;
        margin: 0 -12px;
        padding: 0;
        width: 100%;
        max-width: 100%;
    }
    .value-list .slick-track {
        display: flex;
        margin: 0;
        padding: 0;
    }
    .value-list .slick-slide {
        float: none;
        height: auto;
        padding: 0;
        margin: 0 12px;
    }
    .value-list .slick-slide > div {
        width: 100%;
        padding: 0 28px;
    }
    .value-item {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .value-list .slick-dots {
        bottom: -40px;
    }
    .value-list .slick-dots li button:before {
        font-size: 12px;
        color: var(--color-primary);
        opacity: 0.3;
    }
    .value-list .slick-dots li.slick-active button:before {
        color: var(--color-primary);
        opacity: 1;
    }
    .value-list.slick-dotted.slick-slider {
        margin-bottom: 68px;
        padding-bottom: 0;
    }
    .value-image {
        height: 200px;
    }
    .team-section {
        margin-bottom: 48px;
    }
    /* Team Accordion - Mobile */
    .team-accordion .team-category {
        display: none;
    }
    .team-accordion-toggle {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
        width: 100%;
        padding: 0;
        background: none;
        border: none;
        cursor: pointer;
        font-family: var(--font-en);
        font-size: 16px;
        font-weight: 700;
        color: var(--color-green-dark);
        text-transform: uppercase;
        line-height: 1.5;
        margin-bottom: 0;
    }
    .team-accordion-icon {
        width: 12px;
        height: 12px;
        position: relative;
        flex-shrink: 0;
        transition: transform 0.3s;
    }
    .team-accordion-icon::before {
        content: '';
        position: absolute;
        width: 8px;
        height: 8px;
        top: 50%;
        left: 50%;
        border-right: 2px solid var(--color-green-dark);
        border-bottom: 2px solid var(--color-green-dark);
        transform: translate(-50%, -65%) rotate(45deg);
        transition: transform 0.3s;
    }
    .team-accordion-toggle[aria-expanded="true"] .team-accordion-icon::before {
        transform: translate(-50%, -35%) rotate(-135deg);
    }
    .team-accordion-body {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        padding-top: 40px;
    }
    .team-accordion-body.open {
        max-height: 2000px;
    }
    .team-category {
        margin-bottom: 10px;
    }
    .team-member {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    .member-name.tb {
        display: block;
        align-self: flex-start;
        font-size: 24px;
        margin-bottom: 0;
    }
    .member-name.pc {
        display: none;
    }
    .member-position {
        display: block;
        font-size: 16px;
        margin: 10px 0;
    }
    .member-photo {
        width: 160px;
        height: 160px;
        align-self: flex-start;
    }
    .member-info {
        text-align: left;
    }
    .company-info {
        grid-template-columns: auto 1fr;
        gap: 16px 20px;
    }
    .company-info dt {
        font-size: 16px;
    }
    .company-info dd {
        font-size: 16px;
    }
    .section-illust {
        max-width: 320px;
        margin: 30px auto 0;
    }
    .sec-service-intro {
        padding: 60px 0;
    }
    .service-intro-text {
        font-size: 16px;
    }
    .service-layout {
        flex-direction: column;
        gap: 40px;
        padding: 60px 0;
    }
    .service-visual {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    .service-content-title {
        font-size: 24px;
        text-align: center;
    }
    .service-content-text {
        font-size: 16px;
    }
    .sec-service-works {
        padding: 80px 0;
    }
    .sec-service-works .section-container {
        overflow: hidden;
    }
    .works-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
        max-width: 100%;
    }
    .works-grid.slick-slider {
        margin: 0;
        padding: 0;
        width: 100%;
        max-width: 100%;
    }
    .works-grid.slick-dotted.slick-slider {
        margin-bottom: 68px;
    }
    .works-grid .slick-list {
        overflow: hidden;
        margin: 0;
        padding: 0 0 12px;
        width: 100%;
        max-width: 100%;
    }
    .works-grid .slick-track {
        display: flex;
        margin: 0;
        padding: 0;
    }
    .works-grid .slick-slide {
        float: none;
        height: auto;
        margin: 0 8px;
    }
    .works-grid .slick-slide > div {
        /* width: 100%;
        padding: 0 8px;
        height: 100%; */
    }
    .works-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .works-tag {
        margin-bottom: 8px;
    }
    .works-grid .slick-dots {
        bottom: -40px;
    }
    .works-grid .slick-dots li button:before {
        font-size: 12px;
        color: var(--color-primary);
        opacity: 0.3;
    }
    .works-grid .slick-dots li.slick-active button:before {
        color: var(--color-primary);
        opacity: 1;
    }
    .works-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 559px) {
    .page-title {
        font-size: 28px;
    }
    .section-title-center {
        /* font-size: 28px; */
    }
    .section-heading {
        /* font-size: 22px; */
    }
    .section-heading-large {
        font-size: 24px;
    }
    .value-title {
        font-size: 24px;
    }
    .service-intro-text {
        font-size: 14px;
    }
    .service-detail-title {
        font-size: 22px;
    }
    .service-detail-text {
        font-size: 12px;
    }
    .section-body {
        font-size: 14px;
    }
    .section-tagline {
        margin-bottom: 10px;
    }
    .section-body-small {
        font-size: 14px;
    }
    .member-bio,
    .member-career,
    .member-history li {
        font-size: 14px;
    }
    .company-info {
        gap: 8px 20px;
    }
    .company-info dt {
        font-size: 14px;
    }
    .company-info dd {
        font-size: 14px;
    }
    .service-content-text {
        font-size: 14px;
    }
    .works-subtitle {
        font-size: 14px;
    }
    .approach-sub {
        font-size: 14px;
    }
}

/* 
  Voice Page
------------------------------ */

/* Voice List Section */
.sec-voice-list {
    padding: 80px 0;
}

/* Voice Filter */
.voice-filter {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    justify-content: center;
}

.filter-item {
    position: relative;
}

.filter-select {
    appearance: none;
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-text);
    border-radius: 0;
    padding: 8px 32px 8px 16px;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    cursor: pointer;
    min-width: 160px;
    background-image: url('data:image/svg+xml;utf8,<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L6 6L11 1" stroke="%232A3737" stroke-width="2" stroke-linecap="round"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.filter-select:has(option[disabled]:checked) {
    color: #aaa;
}

.filter-select option[disabled] {
    color: #aaa;
}

.filter-select option:not([disabled]) {
    color: var(--color-text);
}

.filter-select:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Voice Grid */
.voice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.voice-grid .voice-item {
    display: flex;
    flex-direction: column;
}

.voice-grid .voice-item.hidden {
    display: none;
}

.voice-grid .voice-item a {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.voice-grid .voice-card {
    background-color: var(--color-bg-light);
    border-radius: 8px;
    padding: 32px;
    box-shadow: 4px 6px 4px 0px rgba(0, 0, 0, 0.25);
    margin-bottom: 32px;
    flex: 1;
    position: relative;
}

.voice-grid .voice-card::after {
    content: '';
    position: absolute;
    bottom: -16.5px;
    left: 40px;
    width: 0;
    height: 0;
    border-left: 19.5px solid transparent;
    border-right: 19.5px solid transparent;
    border-top: 19.5px solid var(--color-bg-light);
    filter: drop-shadow(4px 7px 2px rgba(0, 0, 0, 0.25));
}

.voice-grid .voice-icon {
    width: 52px;
    height: 46px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.voice-grid .voice-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.voice-grid .voice-quote {
    margin-top: -16px;
    position: relative;
    z-index: 2;
}

.voice-grid .quote-text {
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.5;
    letter-spacing: 0;
    margin: 0;
}

.voice-grid .voice-author {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
}

.voice-grid .author-avatar {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #ccc;
}

.voice-grid .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.voice-grid .author-info {
    flex: 1;
}

.voice-grid .author-name {
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.5;
    margin-bottom: 8px;
}

.voice-grid .author-position {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.5;
    text-align: justify;
    margin: 0;
}

/* Responsive Voice Page */
@media (max-width: 959px) {
    .voice-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .voice-grid .quote-text {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .sec-voice-list {
        padding: 60px 0;
    }
    .voice-filter {
        flex-direction: row;
        gap: 12px;
        margin-bottom: 40px;
    }
    .filter-select {
        font-size: 14px;
        min-width: 140px;
        padding: 8px 28px 8px 12px;
    }
    .voice-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .voice-grid .voice-card {
        padding: 24px;
        max-width: calc(100% - 12px);
    }
}

@media (max-width: 559px) {
    .voice-grid .quote-text {
        font-size: 16px;
    }
    .voice-grid .author-name {
        font-size: 16px;
    }
    .voice-grid .author-position {
        font-size: 12px;
    }
}

/*
  Voice Detail Page
------------------------------ */

/* Profile Section */
.sec-voice-detail-profile {
    padding: 120px 0;
}

.sec-voice-detail-profile .section-container {
    max-width: 1280px;
    padding: 0 120px;
}

.vd-profile {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.vd-profile-author {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-shrink: 0;
}

.vd-author-avatar {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #ccc;
}

.vd-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vd-author-info {
    min-width: 0;
}

.vd-author-name {
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.5;
    margin-bottom: 8px;
}

.vd-author-position {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.5;
}

.vd-profile-quote {
    background-color: var(--color-bg-light);
    padding: 20px 20px;
    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
    flex: 1;
}

.vd-quote-heading {
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.5;
    margin-bottom: 8px;
}

.vd-quote-text {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    line-height: 2;
    letter-spacing: 0.08em;
}

/* Q&A Section */
.sec-voice-detail-qa {
    padding: 0 !important;
}

.sec-voice-detail-qa .section-container {
    max-width: 1280px;
    padding: 0 160px;
}

.vd-qa-container {
    display: flex;
    flex-direction: column;
}

.vd-qa-block {
    padding: 40px 0;
}

.vd-question {
    font-family: var(--font-main);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.6;
    letter-spacing: 0.08em;
    margin-bottom: 40px;
}

.vd-answer {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    line-height: 2;
    letter-spacing: 0.08em;
    text-align: justify;
}

/* Other Voices Section */
.sec-voice-detail-others {
    padding: 120px 0;
}

.vd-others-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 2;
    letter-spacing: 0.08em;
    text-align: center;
    margin-bottom: 60px;
}

.vd-others-title .en {
    font-family: var(--font-en);
    font-weight: 600;
}

.sec-voice-detail-others .voice-list {
    margin-bottom: 60px;
}

/* Voice Detail Responsive - Tablet */
@media (max-width: 959px) {
    .sec-voice-detail-profile .section-container {
        padding: 0 80px;
    }
    .sec-voice-detail-qa .section-container {
        padding: 0 80px;
    }
    .vd-question {
        font-size: 28px;
    }
}

/* Voice Detail Responsive - Mobile */
@media (max-width: 767px) {
    .sec-voice-detail-profile {
        padding: 60px 0;
    }
    .sec-voice-detail-profile .section-container {
        padding: 0 28px;
    }
    .vd-profile {
        flex-direction: column;
        gap: 24px;
    }
    .vd-author-name {
        font-size: 16px;
        line-height: 1.5;
    }
    .vd-author-position {
        font-size: 12px;
        line-height: 1.5;
    }
    .vd-quote-text {
        line-height: 1.5;
    }
    .sec-voice-detail-qa .section-container {
        padding: 0 28px;
    }
    .vd-qa-block {
        padding: 20px 0;
    }
    .vd-question {
        font-size: 20px;
        line-height: 1.6;
        letter-spacing: 0.08em;
        margin-bottom: 24px;
    }
    .vd-answer {
        font-size: 14px;
        line-height: 2;
        letter-spacing: 0;
    }
    .sec-voice-detail-others {
        padding: 60px 0;
    }
    .vd-others-title {
        margin-bottom: 40px;
    }
    .sec-voice-detail-others .voice-list {
        margin-bottom: 48px;
    }
}

@media (max-width: 559px) {
    .vd-answer {
        font-size: 14px;
    }
}

/*
  Privacy Policy Page
------------------------------ */

.sec-privacy {
    padding: 80px 0 120px;
}

.sec-privacy .section-container {
    max-width: 1280px;
}

.privacy-content {
    max-width: 768px;
    margin: 0 auto;
}

.privacy-lead {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    line-height: 2;
    letter-spacing: 0.08em;
    text-align: justify;
    margin-bottom: 60px;
}

.privacy-block {
    margin-bottom: 48px;
}

.privacy-block:last-of-type {
    margin-bottom: 60px;
}

.privacy-heading {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.6;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.privacy-text {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    line-height: 2;
    letter-spacing: 0.08em;
    text-align: justify;
}

.privacy-list {
    list-style: disc;
    padding-left: 24px;
    margin-top: 16px;
}

.privacy-list li {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    line-height: 2;
    letter-spacing: 0.08em;
}

.privacy-date {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    line-height: 2;
    letter-spacing: 0.08em;
}

@media (max-width: 767px) {
    .sec-privacy {
        padding: 60px 0;
    }
    .privacy-lead {
        font-size: 14px;
        margin-bottom: 40px;
    }
    .privacy-heading {
        font-size: 20px;
    }
    .privacy-text {
        font-size: 14px;
    }
    .privacy-list li {
        font-size: 14px;
    }
    .privacy-block {
        margin-bottom: 36px;
    }
    .privacy-date {
        font-size: 14px;
    }
}

@media (max-width: 559px) {
    .privacy-lead {
        font-size: 14px;
    }
    .privacy-heading {
        font-size: 18px;
    }
    .privacy-text {
        font-size: 14px;
    }
    .privacy-list li {
        font-size: 14px;
    }
    .privacy-date {
        font-size: 14px;
    }
}

/*
  Contact Form Page
------------------------------ */

.sec-contact-form {
    padding: 80px 0 120px;
}

.sec-contact-form .section-container {
    max-width: 1280px;
}

.contact-form-content {
    max-width: 680px;
    margin: 0 auto;
}

.contact-form-lead {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    line-height: 2.2;
    letter-spacing: 0.08em;
    text-align: center;
    margin-bottom: 60px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.5;
    letter-spacing: 0.08em;
}

.form-required {
    color: var(--color-accent);
    margin-left: 4px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text);
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-text);
    border-radius: 0;
    line-height: 1.5;
    letter-spacing: 0.05em;
    transition: border-color 0.3s, outline 0.3s;
    appearance: none;
    -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-color: var(--color-primary);
}

.form-select {
    background-image: url('data:image/svg+xml;utf8,<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L6 6L11 1" stroke="%232A3737" stroke-width="2" stroke-linecap="round"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 200px;
}

/* Checkbox Group */
.form-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.form-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.form-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid var(--color-text);
    background-color: var(--color-bg-light);
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
}

.form-checkbox:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.form-checkbox:checked::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid var(--color-bg-light);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-checkbox:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.form-checkbox-text {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.5;
    letter-spacing: 0.05em;
}

/* CF7 Checkbox Override */
.form-checkbox-group .wpcf7-checkbox {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.form-checkbox-group .wpcf7-list-item {
    margin: 0;
}

.form-checkbox-group .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.form-checkbox-group .wpcf7-list-item input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid var(--color-text);
    background-color: var(--color-bg-light);
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
}

.form-checkbox-group .wpcf7-list-item input[type="checkbox"]:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.form-checkbox-group .wpcf7-list-item input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid var(--color-bg-light);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-checkbox-group .wpcf7-list-item input[type="checkbox"]:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.form-checkbox-group .wpcf7-list-item-label {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.5;
    letter-spacing: 0.05em;
}

/* CF7 Validation - 送信前はエラー非表示 */
.wpcf7-form .wpcf7-not-valid-tip {
    display: none;
}
.wpcf7-form.failed .wpcf7-not-valid-tip,
.wpcf7-form.invalid .wpcf7-not-valid-tip {
    display: block;
    color: #dc3232;
    font-size: 14px;
    margin-top: 4px;
}

/* Privacy Agree */
.form-agree {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.form-agree-label {
    justify-content: center;
}

.form-agree-link {
    text-decoration: underline;
    color: var(--color-primary);
    transition: opacity 0.3s;
}

.form-agree-link:hover {
    opacity: 0.7;
}

.form-submit {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    position: relative;
}

.form-submit p {
    display: flex;
    justify-content: center;
}

.btn-submit {
    min-width: 200px;
}

.form-submit .wpcf7-spinner {
    position: absolute;
    left: calc(50% + 108px);
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}

@media (max-width: 767px) {
    .sec-contact-form {
        padding: 60px 0;
    }
    .contact-form-lead {
        font-size: 14px;
        text-align: left;
        margin-bottom: 40px;
    }
    .contact-form {
        gap: 24px;
    }
    .form-label {
        font-size: 14px;
    }
    .form-input,
    .form-select,
    .form-textarea {
        font-size: 14px;
        padding: 10px 14px;
    }
    .form-textarea {
        min-height: 160px;
    }
    .form-checkbox-group {
        flex-direction: column;
        gap: 12px;
    }
    .form-checkbox-group .wpcf7-checkbox {
        flex-direction: column;
        gap: 12px;
    }
    .form-checkbox-text {
        font-size: 14px;
    }
    .form-checkbox-group .wpcf7-list-item-label {
        font-size: 14px;
    }
}

@media (max-width: 559px) {
    .contact-form-lead {
        font-size: 14px;
    }
    .form-label {
        font-size: 14px;
    }
    .form-input,
    .form-select,
    .form-textarea {
        font-size: 14px;
    }
    .form-checkbox-text {
        font-size: 14px;
    }
    .form-checkbox-group .wpcf7-list-item-label {
        font-size: 14px;
    }
}
