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

body {
    font-family: Helvetica Neue, Helvetica, Noto Sans JP, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
    color: #333;
}


body.menu-open {
  overflow: hidden;
  touch-action: none;/* ページ背景のタッチスクロール抑制 */
}


img {
    width: 100%;
    height: auto;
}

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

ul li {
    list-style: none;
    line-height: 0;
}

.pc-only {
    display: none;
}

.sp-only {
    display: block;
}

@media (max-width: 767px) {
    .pc-only {
        display: block;
    }

    .sp-only {
        display: none;
    }
}

.main-visual {
    width: 100%;
    margin: 0 auto;
    position: relative;
    margin-bottom: 3rem;
}

.main-visual picture {
    display: block;
    width: 100%;
}

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

.mv-text {
    position: absolute;
    top: 36%;
    left: 42%;
    transform: translate(-50%, -50%);
    color: #111;
    font-size: 1.8rem;
    text-align: left;
    line-height: 1.5;
    font-weight: 900;
    /* background-color: rgba(0, 0, 0, 0.5); */
    border-radius: 8px;
    max-width: 90%;
}

.mv-text-sublead {
    position: relative;
    color: #3355a5;
    text-align: center;
    display: inline-block;
    font-size: clamp(22px, 2.2vw, 32px);
    font-weight: 900;
    padding-left: 24px;
    margin-bottom: 8px;
}

.mv-text-sublead:after {
    position: absolute;
    right: -1.5rem;
    top: 0;
    content: '';
    width: 3px;
    height: 100%;
    background-color: #3355a5;
    border-radius: 2px;
    transform: rotate(30deg);
}

.mv-text-sublead:before {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 3px;
    height: 100%;
    background-color: #3355a5;
    border-radius: 2px;
    transform: rotate(-30deg);
}

.mv-text-line {
    font-size: clamp(25px, 3.5vw, 48px)
}

.mv-text-lead {
    font-weight: 900;
    color: #222;
    text-align: left;
    display: inline-block;
    line-height: 1.3;
    font-size: clamp(30px, 4vw, 68px);
}

.mv-text-line.mv-text-center {
    font-size: clamp(34px, 4.6vw, 60px);
    display: block;
    line-height: 1;
}

.mv-text-lead-wrap {
    display: flex;
    gap: 16px;
    align-items: end;
}
.mv-text-lead-group {
    line-height: 1.3;
}
.mv-text-line.mv-text-bottom {
    font-size: clamp(40px, 4.3vw, 62px);
    line-height: 1.5;
}

.main-visual .mv-bubble-img {
    width: clamp(180px, 22vw, 260px);
    height: auto;
    display: block;
}
.en-number {
    font-size: clamp(30px, 5vw, 70px);
    line-height: 1;
    letter-spacing: -1.6px;
    padding: 0 6px 0 0;
}

/* PC用のスタイル（768px以上） */
@media (min-width: 768px) {}

/* スマートフォン用のスタイル（767px以下） */
@media (max-width: 767px) {
    .main-visual {
        margin: 0 auto 50px;
    }
    .en-number {
        font-size: 12vw;
    }
    .mv-bubble-wrap--sp {
    text-align: center;
    position: absolute;
    background: #f97ba2;
    color: #FFF;
    font-weight: 900;
    padding: 8px;
    text-align: center;
    bottom: -60px;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 4px;
    background-color: #ff71a2;
    border: 1px solid #FFF;
    width: 80vw;
    }
    .mv-bubble-text {
    font-size: 20px;
    line-height: 1.4;
    }
}

/*header*/
.mynavi-header {
    padding: 0 2rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    /* 背景色を指定しないと下の要素が透けて見えることがあります */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* 下に影をつけて浮かせる効果 */

}

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

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hamburger-menu {
    cursor: pointer;
    border: none;
    background-color: transparent;
}

.global-nav-list {
    padding-top: 60px;
}

.global-nav-list li a {
    padding: 32px;
    text-decoration: none;
    font-size: 20px;
    display: block;
    transition: 0.3s;
    line-height: 100%;
    font-weight: 700;
    color: #333;
}

.global-nav-list li {
    width: 100%;
    border-bottom: 1px solid #dedede;
}

/* スマートフォン用のスタイル（767px以下） */
@media (max-width: 767px) {
    .logo-text {
        width: 8.6rem;
    }

    .mynavi-header {
        padding: 0 16px;
    }

    .mv-text {
        top: 25%;
        right: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 1.8rem;
        font-weight: bold;
        text-align: center;
        line-height: 1.5;
        gap: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .mv-text-sublead {
        padding: 0;
        font-size: 5vw;
        margin-bottom: 4px;
    }

    .mv-text-lead {
        text-align: center;
        font-size: 8vw;
    }

    .mv-text-sublead:before {
        left: -20px;
    }

    .global-nav-list li a {
        padding: 32px 24px;
        text-decoration: none;
        font-size: 18px;
    }
}

/* オーバーレイ */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1100;
}

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

.close-menu {
    position: absolute;
    top: 32px;
    right: 24px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.close-menu::before,
.close-menu::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 3px;
    background-color: #333;
    transform-origin: center;
}

.close-menu::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-menu::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.global-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    /* 初期は画面幅の80% */
    max-width: 700px;
    /* 最大幅を制限 */
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1200;
    padding: 2rem 0;
}


.global-nav.active {
    transform: translateX(0);
    overflow-y: auto
}

.hamburger-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
    transition: all 0.3s ease;
}

/* 開いたときのアイコン変形（例：×にする） */
.hamburger-menu.open .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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


/*tittle*/
.content h2 {
    position: relative;
    font-size: 40px;
    font-weight: 900;
}

.learning-program-title {
    font-size: 40px;
    font-weight: 900;
    color: #264388;
    text-align: center;
    display: inline-block;
}

.learning-program-txt {
    position: relative;
    font-size: 28px;
    line-height: 160%;
    font-weight: 900;
    font-family: 'Helvetica Neue';
    color: #ff71a2;
    text-align: center;
    display: inline-block;
    margin-bottom: 3rem;
}

.learning-annotation {
    color: #f971a3;
    font-size: 18px;
    font-weight: 700;
}

.learning-step-card {
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.learning-important-txt {
    font-size: clamp(30px, 4.6vw, 48px);
    color: #f971a3;
}

@media (max-width: 767px) {
    .learning-program-txt {
        font-size: 18px;
        line-height: 150%;
        margin-bottom: 24px;
    }

    .learning-icon {
        width: 75%;
    }
}

/* コンテンツエリア */
.content {
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.content.section-bg--lightblue {
    background: #F6F8FC;
}

.content.section-bg--lightblue.video-bg {
    padding-bottom: 0;
    margin-bottom: 100px;
}

.content.section-bg--lightyellow {
    position: relative;
    background: #FBF9F7;
}

.content h1 {
    font-size: 2rem;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.content.step-bg {
    margin-bottom: 60px;
}

p {
    font-size: 1rem;
}

@media (max-width: 767px) {
    .content {
        padding: 40px 15px;
        margin: 0 auto;
    }

    .content h1 {
        font-size: 1.5rem;
    }

    .content h2 {
        font-size: 1.375rem;
    }
    .content.section-bg--lightblue.video-bg {
        margin-bottom: 40px;
    }
    .content.step-frame-bg {
        margin-bottom: 60px;
    }
}

.number {
    width: 40%;
    position: relative;
    font-size: clamp(24px, 4.7vw, 78px);
    line-height: 100%;
    display: inline-block;
    font-family: Montserrat;
    font-weight: 700;
    color: #264388;
    text-align: left;
    margin-bottom: 8px;
}

.number-color02 {
    color: #388826;
}

.number-color03 {
    color: #882686;
}

.number-title-wrap {
    margin-bottom: 16px;
}

.number-title-wrap p {
    position: relative;
    font-size: clamp(24px, 2.4vw, 28px);
    line-height: 150%;
    font-weight: 900;
    color: #264388;
    text-align: left;
}

@media (max-width: 768px) {
    .number {
        font-size: 3.8rem;
        width: 50%;
    }

    .number-title-wrap p {
        font-size: 24px;
    }
    .number-color02 {
        text-align: right;
    }
}

/*learning*/
.learning-time-txt {
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.learning-step-title {
    font-size: 24px;
    font-weight: 700;
    color: #264389;
    margin-bottom: 8px;
}

.learning-time-txt .time {
    font-size: 40px;
    line-height: 1;
    padding: 0 8px;
    font-weight: 600;
}

.learning-time-txt:after {
    position: absolute;
    right: -1em;
    top: 0;
    content: '';
    width: 3px;
    height: 100%;
    background-color: #000;
    border-radius: 2px;
    transform: rotate(30deg);
}

.learning-time-txt:before {
    position: absolute;
    left: -1em;
    top: 0;
    content: '';
    width: 3px;
    height: 100%;
    background-color: #000;
    border-radius: 2px;
    transform: rotate(-30deg);
}

.learning-card-group {
    position: relative;
    border-radius: 16px;
    background-color: #fff;
    border: 1px solid #ddd;
    box-sizing: border-box;
    height: 694px;
    display: flex;
    flex: 1 1 calc((100% - 64px) / 5);
    justify-content: center;
    align-items: center;
    padding: 40px 32px 0;
}
.learning-card-group.learning-card-short {
    height: 394px;
}
.learning-icon {
    margin: 24px 0 16px;
}
.learning-wrap .plus-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 300;
    color: #666;
}
.learning-inner.learning-inner-first {
    position: relative;
    background: #FFF;
    padding: 32px;
    border-radius: 16px;
}

.learning-inner.learning-inner-first:before {
    content: "";
    width: 100%;
    height: 160px;
    margin: 0 auto;
    top: -140px;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 0;
    background-image: url("../img/learning-bg_image.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
}

.learning-inner.learning-inner-first .learning-card-group {
    background: #f8f8f8;
}

.learning-inner {
    max-width: 1280px;
    width: 100%;
    margin-bottom: 40px;
}

.learning-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.learning-title {
    margin-bottom: 40px;
}

.learning-lead {
    font-size: 30px;
    line-height: 160%;
    font-weight: 900;
    text-align: center;
    position: relative;
}

.learning-lead:before {
    position: absolute;
    left: -3rem;
    top: 0;
    content: '';
    width: 4px;
    height: 100%;
    background-color: #3355a5;
    border-radius: 2px;
    transform: rotate(-30deg);
}

.learning-lead:after {
    position: absolute;
    right: -3rem;
    top: 0;
    content: '';
    width: 4px;
    height: 100%;
    background-color: #3355a5;
    border-radius: 2px;
    transform: rotate(30deg);
}

.learning-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.learning-inner-first .learning-wrap {
    gap: 16px;
}

.learning-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.learning-card p {
    position: relative;
    font-size: clamp(22px, 2.4vw, 24px);
    line-height: 140%;
    font-weight: 600;
    display: inline-block;
    text-align: center;
    color: #264389;
}

.learning-card p:after {
    content: "";
    width: 100%;
    position: relative;
    display: inline-block;
    border-radius: 2px;
    background-color: #3355a5;
    height: 6px;
}

.learning-step {
    background: #fbf9f7;
    max-width: 1280px;
    width: 100%;
    padding: 60px 68px;
    border-radius: 16px;
    border: 1px solid #ddd;
}

.learning-time-txt.time-txt-adjustment .time {
    font-size: 30px;
}

.title-annotation {
    font-size: 15px;
    line-height: 1.5;
    display: inline-block;
}

.balloon {
    position: relative;
    border-radius: 10px;
    background-color: #ff71a2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 48px;
    box-sizing: border-box;
    text-align: center;
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 40px;
}

.balloon:before {
    content: "";
    border-width: 10px;
    border-top: 14px solid #ff71a2;
    border-right: 12px solid transparent;
    border-left: 12px solid transparent;
    bottom: 0;
    position: absolute;
    left: 50%;
    transform: translateY(100%);
}

.step-frame-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

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

.step-txt-group {
    width: 100%;
}

.frame-item {
    width: 80%;
}

.step-annotation {
    position: relative;
    font-size: 32px;
    line-height: 160%;
    font-weight: 900;
    text-align: center;
    display: inline-block;
}

.step-annotation:after {
    content: "";
    width: 100%;
    position: relative;
    border-radius: 2px;
    background-color: #3355a5;
    height: 8px;
    display: block;
}

.step-lead-title {
    position: relative;
    font-size: 28px;
    line-height: 150%;
    font-weight: 900;
    text-align: left;
    margin-bottom: 32px;
}

.step-icon {
    display: block;
    position: relative;
    border-radius: 80px;
    background-color: #264388;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 36px;
    color: #FFF;
    font-weight: 900;
    margin-bottom: 16px;
}

.program-section {
    position: relative;
}

/* .program-section:after {
    content: "";
    width: 100%;
    height: 236px;
    margin: 0 auto;
    bottom: -65px;
    display: flex;
    justify-content: center;
    right: 0;
    align-items: center;
    background-image: url(../img/program-bg_image.png);
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    position: absolute;
} */

@media (max-width: 768px) {
    .learning-card-group {
        flex: 1 1 100%;
    }

    .learning-lead {
        font-size: 20px;
    }

    .learning-card-group {
        height: 100%;
        padding: 40px 20px 20px;
    }

    .learning-inner.learning-inner-first {
        padding: 32px 24px;
    }

    .learning-step {
        padding: 32px 16px;
    }

    .learning-card p {
        font-size: 22px;
    }

    .learning-lead:before {
        left: -16%;
    }

    .learning-lead:after {
        right: -16%;
    }

    .balloon {
        font-size: 20px;
    }

    .balloon:before {
        left: auto;
    }

    .step-annotation {
        font-size: 20px;
    }

    .step-title {
        margin-bottom: 16px;
    }

    .step-lead-title {
        font-size: 18px;
        text-align: center;
        margin-bottom: 16px;
    }

    .step-frame-wrapper {
        flex-direction: column;
        gap: 8px;
    }

    .learning-inner.learning-inner-first:before {
        content: none;
    }

    .program-section:after {
        content: none;
    }
    .learning-inner-first .learning-wrap {
        gap: 0;
    }
}


/*Cards list*/
.card-container {
    display: flex;
    height: 100%;
    position: relative;
    padding: 40px 28px;
    align-items: center;
    gap: 10px;
    border-radius: 16px;
    border: 1.5px solid #FFF;
    background: #ECF0F9;
    flex: 1 1 calc(33.333% - 24px);
}

.card-list {
    max-width: 1280px;
    width: 100%;
    display: flex;
}

.frame-parent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.number-bubble-wrap {
    display: flex;
}

.bubble-content {
    width: 100%;
}

.card-container.point-card-bg02 .number-bubble-wrap {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .frame-parent {
        flex-direction: column;
    }

    .card-container {
        padding: 40px 24px;
    }
    .card-container.point-card-bg02 .number-bubble-wrap {
    flex-direction: row;
    }

    /* .card-container.point-card-bg01:before {
        content: "";
        width: 100%;
        height: 110px;
        margin: 0 auto;
        top: -20px;
        display: flex;
        justify-content: center;
        right: 0;
        left: -20px;
        align-items: center;
        background-image: url(../img/program-img_card01.png);
        background-size: contain;
        background-position: right;
        background-repeat: no-repeat;
        position: absolute;
    } */

    /* .card-container.point-card-bg02:before {
        content: "";
        width: 100%;
        height: 110px;
        margin: 0 auto;
        top: -20px;
        display: flex;
        justify-content: center;
        right: 0;
        left: 20px;
        align-items: center;
        background-image: url(../img/program-img_card02.png);
        background-size: contain;
        background-position: left;
        background-repeat: no-repeat;
        position: absolute;
    } */

    /* .card-container.point-card-bg03:before {
        content: "";
        width: 100%;
        height: 126px;
        margin: 0 auto;
        top: -20px;
        display: flex;
        justify-content: center;
        right: 0;
        left: -20px;
        align-items: center;
        background-image: url(../img/program-img_card03.png);
        background-size: contain;
        background-position: right;
        background-repeat: no-repeat;
        position: absolute;
    } */
    .bubble-content img {
    width: 54vw;
    }
}

/*CV Btn*/
.cta-aside {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5rem 0 0;
}

.cta-aside.bg-mb-bottom {
    margin-bottom: 5rem;
}

.signup-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 0 16px;
}

.cta-button {
    display: flex;
    justify-content: center;
    width: 100%;
}

.cta-link:hover {
    background: #ffd000;
}

.cta-link {
    border: none;
    border-radius: 8px;
    background: #FFE057;
    box-shadow: var(--sds-size-depth-0) var(--sds-size-depth-025) var(--sds-size-depth-100) var(--sds-size-depth-0) var(--sds-color-black-200), var(--sds-size-depth-0) var(--sds-size-depth-025) var(--sds-size-depth-100) var(--sds-size-depth-0) var(--sds-color-black-100);
    display: block;
    text-align: center;
    width: 720px;
    padding: 28px 24px;
    color: #333;
    font-size: clamp(20px, 2.2vw, 28px);
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}
.disclaimer-text {
    text-align: center;
}


@media (max-width: 768px) {
    .cta-link {
        width: 100%;
        font-size: 1.275rem;
        padding: 16px 24px;
    }

    .cta-aside {
        margin: 2.4rem 0 0;
    }

    .cta-aside.bg-mb-bottom {
        margin-top: 0;
        margin-bottom: 3rem;
    }

    .signup-section {
        width: 100%;
    }

    .disclaimer-text {
        font-size: 15px;
    }
}


/*Video*/
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9の比率（縦長なら変更可） */
    height: 0;
    overflow: hidden;
    margin-bottom: 60px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-bg p {
    margin-bottom: 2.5rem;
}

.image-parent {
    max-width: 1280px;
}

.image-list {
    display: flex;
    gap: 24px;
}

.video-lead {
    overflow: hidden;
    max-width: 1280px;
    width: 100%;
}

@media (max-width: 768px) {
    .image-parent {
        width: 100%;
        /* 親要素の幅を画面に合わせる */
        overflow-x: auto;
        /* 横スクロールを有効にする */
        -webkit-overflow-scrolling: touch;
        /* iOSでスムーズスクロール */
        box-sizing: border-box;
        /* パディングやボーでスムーズスクロール */
    }

    .image-list {
        display: flex;
        /* 横並びにする */
        gap: 10px;
        /* 画像間のスペース */
        padding: 0 10px;
        /* 左右に少し余白を追加（任意） */
        margin: 0;
        list-style: none;
        width: max-content;
        /* コンテンツ幅に合わせてスクロール可能に */
    }

    .card-item.video-image-list {
        display: block;
        height: auto;
        width: 50vw;
    }
}


/*knowledge*/
.content.knowledge-content {
    padding-bottom: 24px;
}
.knowledge-content-inner {
    width: 100%;
    position: relative;
    border-radius: 40px;
    background-color: #fff8fa;
    border: 4px solid #e82a6c;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 100px;
    gap: 60px;
    text-align: center;
    max-width: 1280px;
    width: 100%;
}
.knowledge-content-inner:before {
    content: "";
    width: 100%;
    height: 160px;
    margin: 0 auto;
    top: -115px;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 0;
    background-image: url(../img/field_sense_bg.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
}
.knowledge-title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: center;
    font-size: 24px;
    margin-bottom: 24px;
}

.knowledge-title p {
    font-size: 24px;
    font-weight: 600;
    text-align: left;
}

.knowledge-lead {
    text-align: left;
    margin-bottom: 32px;
}

.knowledge-image-wrap {
    margin-bottom: 24px;
    display: block;
}

.knowledge-content h2 {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.knowledge-title:before {
    content: "";
    width: 6px;
    position: relative;
    background-color: #5c9862;
    height: 48px;
    display: block;
}
.knowledge-publicity {
    display: block;
    text-align: center;
    width: 100%;
    background: #FFF;
    padding: 40px 32px;
    border-radius: 16px;
}
.publicity-title {
    font-size: clamp(20px, 4.6vw, 32px);
    font-weight: bold;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .knowledge-title p {
        font-size: 18px;
    }

    .knowledge-content-inner {
        padding: 40px 24px;
        gap: 32px;
        border-radius: 16px;
    }
    .knowledge-content-inner:before {
    height: 120px;
    margin: 0 auto;
    top: -95px;
    }
}

/*FAQ*/
.container {
    margin: 0 auto;
}

.faq-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.main-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 60px;
    color: #333333;
}

.faq-section {
    margin-bottom: 60px;
}
.faq-section:last-child {
    margin-bottom: 0;
}

.section-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #333333;
}

.accordion-item {
    background: #ffffff;
    border-radius: 4px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    padding: 24px;
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #a78b6f;
}

.accordion-header:hover .question {
    color: #FFF;
}

.accordion-header.active {
    background-color: #a78b6f;
}

.accordion-header.active .question {
    color: #FFF;
}

.question {
    font-size: 1.3rem;
    font-weight: 500;
    color: #333333;
    flex: 1;
}

.question-txt {
    position: relative;
    font-size: 30px;
    line-height: 100%;
    font-weight: 600;
    font-family: Helvetica;
    margin-right: 16px;
}

.accordion-header:after {
    content: "";
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: #666666;
    border-left: 2px solid #555;
    border-bottom: 2px solid #555;
    transform: rotate(-45deg);
    margin-bottom: 10px;
}

.accordion-header.active::after {
    transform: rotate(135deg);
    margin-bottom: 0;
    margin-top: 5px;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #FFF;
}

.accordion-content.active {
    max-height: 500px;
    padding: 24px;
}

.answer {
    font-size: 1rem;
    color: #555555;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .content .main-title {
        font-size: 2.4rem;
        margin-bottom: 16px;
    }

    .question {
        font-size: 1rem;
    }

    .accordion-header {
        padding: 16px;
    }

    .question-txt {
        margin-right: 8px;
        font-size: 26px;
    }

    .accordion-header:after {
        width: 10px;
        height: 10px;
    }
}

/*Footer*/
.footer {
width: 100%;
position: relative;
background-color: #585e77;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 80px 16px;
box-sizing: border-box;
text-align: left;
font-size: 20px;
color: #fff;
font-family: 'Noto Sans CJK JP';
}
.footer-inner {
    display: flex;
    justify-content: space-around;
    max-width: 1280px;
    width: 100%;
}
.contact-txt {
    display: inline-block;
}
.company-address {
    font-size: 15px;
}
.footer-contact-title {
    font-size: 15px;
}
.footer-title {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer-logo-caption {
    font-weight: 700;
}
@media (max-width: 768px) {
    .footer {
       padding: 60px 16px; 
    }
.footer-inner {
    flex-direction: column;
    gap: 8px;
}
.footer-text-group {
    padding: 0 10px;
}
}