/* リセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

body {
    font-family: 'Noto Sans', 'Noto Sans CJK JP', sans-serif;
    color: #313031;
    background-color: #E6F5F4;
    line-height: 1.36;
    width: 100%;
    margin: 0;
}

.container {
    width: 393px;
    margin: 0 auto;
    background-color: #FFFFFF;
}

/* header */
.header {
    background-color: #FFFFFF;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header__inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 5px 15px;
    gap: 10px;
    position: relative;
}

.header__banner {
    width: 55px;
}

.header__banner-link {
    display: inline-block;
    transition: opacity 0.3s ease;
}

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

.header__banner-img {
    width: 55px;
}

.header__title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.header__title-link {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

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

.header__title-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.362;
    color: #009E94;
}

.header__menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    z-index: 1001;
}

.header__menu-icon {
    width: 100%;
    height: 3px;
    background-color: #009E94;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.header__menu-toggle.is-open .header__menu-icon:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.header__menu-toggle.is-open .header__menu-icon:nth-child(2) {
    opacity: 0;
}

.header__menu-toggle.is-open .header__menu-icon:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.header__nav {
    position: fixed;
    top: 0;
    right: -300px; /* 閉じている時は完全に画面外（メニュー幅分だけ右に隠す） */
    width: 100%;
    max-width: 300px;
    height: 100vh;
    background-color: #FFFFFF;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}

.header__nav.is-open {
    right: calc(50% - 196.5px); /* .containerの右端に合わせる */
}

.header__nav-list {
    list-style: none;
    padding: 60px 20px 20px;
    margin: 0;
}

.header__nav-item {
    border-bottom: 1px solid #E0E0E0;
}

.header__nav-item:last-child {
    border-bottom: none;
}

.header__nav-link {
    display: block;
    padding: 15px 0;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.362;
    color: #009E94;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

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

.header__nav-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, visibility 0.3s ease;
    z-index: 999;
}

.header__nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* MV */
.mv {
    width: 100%;
}

.mv__img {
    width: 100%;
}

/* 悩み・不安 */
.worry {
    background: linear-gradient(180deg, #FFFFFF 35.77%, #D0EAFF 100%);
    padding: 100px 20px 20px;
}

.worry__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 19px;
}

.worry__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.worry__message {
    background-color: #FFFFFF;
    border: 3px solid #09A75A;
    border-radius: 100px;
    padding: 10px;
}

.worry__message-inner {
    display: flex;
    flex-direction: column;
}

.worry__message-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 17px;
    line-height: 1.362;
    text-align: center;
    color: #09A75A;
}

.worry__notes {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.worry__note {
    border-bottom: 11px solid #F6F6B6;
    padding-bottom: 5px;
}

.worry__note-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.222;
    text-align: center;
    color: #09A75A;
}

/* CTA-LINE */
.cta-line {
    padding: 10px 20px;
    width: 100%;
}

.cta-line__inner {
    display: flex;
    flex-direction: column;
}

.cta-line__header {
    background-color: #FFFFFF;
    border: 3px solid #09A75A;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 15px 20px 17px;
}

.cta-line__header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.cta-line__icon {
    width: 41px;
}

.cta-line__title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.362;
    text-align: center;
    color: #09A75A;
}

.cta-line__button {
    background-color: #FFBC05;
    border-radius: 100px;
    padding: 5px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.15);
    margin-top: 12px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.cta-line__button:hover {
    opacity: 0.7;
}

.cta-line__button-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.362;
    text-align: center;
    color: #050505;
}

.cta-line__button-arrow {
    background-color: #000000;
    border-radius: 5px;
    padding: 3.33px 0.56px;
    width: 10px;
    height: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-line__button-arrow-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 8.89px;
    line-height: 1.362;
    text-align: center;
    color: #FFFFFF;
}

.cta-line__footer {
    background: linear-gradient(180deg, #146E42 0%, #09A75A 23.08%);
    padding: 10px 20px;
    border-radius: 0 0 10px 10px;
}

.cta-line__footer-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.362;
    text-align: center;
    color: #FFFFFF;
}

/* ヤングケアラーとは？ */
.about {
    background-color: #FFFFFF;
    padding: 20px 30px;
}

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

.about__title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.362;
    text-align: center;
    color: #009E94;
}

.about__title-text {
    border-bottom: 1px solid #009E94;
}

.about__text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.467;
    text-align: left;
    color: #000000;
    margin-top: 1rem;
}

/* ヤンケアとは詳細 */
.about-detail {
    background-color: #009E94;
    padding: 20px 30px;
}

.about-detail__inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-detail__row {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.about-detail__card {
    flex: 1;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    display: flex;
    position: relative;
}

.about-detail__card::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px dashed #09A75A;
    border-radius: 10px;
    pointer-events: none;
}

.about-detail__card-inner {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 11px;
    width: 100%;
}

.about-detail__card-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-detail__card-img {
    width: 57px;
}

.about-detail__card-text {
    display: flex;
    flex-direction: column;
}

.about-detail__card-text-content {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.362;
    text-align: left;
    color: #313031;
    padding: 0 5px;
}

/* こんなこと起きてない？ */
.check {
    background-color: #FEFFF3;
    padding: 30px 30px 0;
}

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

.check__title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.362;
    text-align: center;
    color: #009E94;
}

.check__title-text {
    border-bottom: 1px solid #009E94;
}

/* こんなこと起きてない詳細 */
.check-detail {
    background-color: #FEFFF3;
    padding: 0 30px 20px;
}

.check-detail__inner {
    display: flex;
    flex-direction: column;
}

.check-detail__item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
}

.check-detail__image {
    width: 100%;
}

.check-detail__img {
    width: 100%;
    border-radius: 10px;
}

.check-detail__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.check-detail__title-box {
    box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.3);
}

.check-detail__title {
    background-color: #FFFFFF;
    border-left: 10px solid #009E94;
    padding: 10px 0 10px 30px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.362;
    text-align: left;
    color: #009E94;
}

.check-detail__text {
    display: flex;
    flex-direction: column;
}

.check-detail__text-content {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.362;
    text-align: left;
    color: #313031;
}

.check-detail__message {
    padding: 20px 0;
}

.check-detail__message-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.375;
    text-align: center;
    color: #009E94;
}

/* 悩み・不安（2回目） */
.worry-2 {
    background-color: #FFFFFF;
    padding: 30px 20px 0;
}

.worry-2__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 19px;
}

.worry-2__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.worry-2__message {
    background-color: #FFFFFF;
    border: 3px solid #F85A75;
    border-radius: 100px;
    padding: 10px;
    position: relative;
}

.worry-2__message::after {
    content: '';
    position: absolute;
    bottom: -21px;
    left: 169px;
    width: 4px;
    height: 23px;
    background: #F85A75;
    border-radius: 3px;
    transform: rotate(30deg);
    transform-origin: bottom center;
}

.worry-2__message-inner {
    display: flex;
    flex-direction: column;
}

.worry-2__message-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 17px;
    line-height: 1.362;
    text-align: center;
    color: #F85A75;
}

.worry-2__notes {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.worry-2__note {
    padding-bottom: 5px;
}

.worry-2__note:first-child {
    border-bottom: none;
    padding-bottom: 0;
}

.worry-2__note-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.362;
    text-align: center;
    color: #313031;
}

.worry-2__note:first-child .worry-2__note-text {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.1;
    color: #F85A75;
    background: linear-gradient(transparent 50%, #F6F6B6 50%, #F6F6B6 100%);
    background-size: 100% 20px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    margin-top: 10px;
}

/* 相談窓口の特徴 */
.features {
    background-color: #FFFFFF;
    padding: 0 30px 30px;
}

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

.features__item {
    box-shadow: 3px 3px 4px 0px rgba(0, 0, 0, 0.1);
}

.features__item-inner {
    background-color: #FFE3E0;
    border: 11px solid #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.features__badge {
    background-color: #F85A75;
    border-radius: 100px;
    padding: 5px 0;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
    width: 100%;
}

.features__badge-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 25px;
    line-height: 1.362;
    text-align: center;
    color: #FFFFFF;
}

.features__content {
    display: flex;
    flex-direction: column;
}

.features__text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.362;
    text-align: left;
    color: #000000;
    margin-bottom: 10px;
}

.features__note {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.362;
    text-align: left;
    color: #000000;
}

/* LINE相談ってどんな感じ？ */
.line-consultation {
    background-color: #FEFFF3;
    padding: 30px 20px;
}

.line-consultation__inner {
    display: flex;
    flex-direction: column;
}

.line-consultation__title-box {
    display: flex;
    flex-direction: column;
}

.line-consultation__message {
    background-color: #FFFFFF;
    border: 3px solid #009E94;
    border-radius: 100px;
    padding: 10px;
    position: relative;
}

.line-consultation__message::after {
    content: '';
    position: absolute;
    bottom: -21px;
    left: 169px;
    width: 4px;
    height: 23px;
    background: #009E94;
    border-radius: 3px;
    transform: rotate(30deg);
    transform-origin: bottom center;
}

.line-consultation__message-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 17px;
    line-height: 1.362;
    text-align: center;
    color: #009E94;
}

/* LINE相談ステップ */
.line-steps {
    background-color: #FEFFF3;
    padding: 0 30px 30px;
}

.line-steps__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.line-steps__item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 20px;
}

.line-steps__header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 10px;
}

.line-steps__step {
    background-color: #009E94;
    padding: 5px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.line-steps__step-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.362;
    text-align: center;
    color: #FFFFFF;
}

.line-steps__title {
    display: flex;
    flex-direction: column;
}

.line-steps__title-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.362;
    text-align: center;
    color: #313031;
}

.line-steps__image-wrapper {
    width: 100%;
    position: relative;
    text-align: center;
}

.line-steps__image {
    width: 100%;
}

.line-steps__img {
    width: 333px;
}

.line-steps__item:last-child .line-steps__img {
    width: 333px;
}

/* FAQ */
.faq {
    background-color: #FFFFFF;
    padding: 20px 30px;
    width: 100%;
}

.faq__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq__header {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq__header-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq__label {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.362;
    letter-spacing: 0.1em;
    text-align: center;
    color: #009E94;
}

.faq__title {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.448;
    text-align: center;
    color: #000000;
}

.faq__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq__item {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    overflow: hidden;
}

.faq__question {
    background-color: #009E94;
    padding: 22px 32px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.faq__q {
    font-family: 'Futura PT', sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 1.282;
    letter-spacing: 0.1em;
    text-align: center;
    color: #FFFFFF;
}

.faq__question-text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    text-align: left;
    color: #FFFFFF;
    flex: 1;
}

.faq__icon {
    width: 14px;
    height: 9.06px;
    position: relative;
    flex-shrink: 0;
    font-size: 0;
    color: transparent;
}

.faq__icon::before,
.faq__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background: #FFFFFF;
    transition: transform 0.3s ease;
}

.faq__icon::before {
    transform: translate(-50%, -50%);
}

.faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq__item.is-open .faq__icon::before {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq__item.is-open .faq__icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq__answer {
    background-color: #FFFFFF;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq__item.is-open .faq__answer {
    max-height: 500px;
}

.faq__answer-inner {
    padding: 20px 30px;
}

.faq__answer-text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.375;
    text-align: left;
    color: #000000;
}

/* CTA-LINE-02 */
.cta-line-02 {
    padding: 20px 30px;
}

.cta-line-02__inner {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.cta-line-02__box {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cta-line-02__header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.cta-line-02__title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.362;
    text-align: center;
    color: #09A75A;
}

.cta-line-02__content {
    display: flex;
    flex-direction: column;
}

.cta-line-02__content-header {
    background-color: #FFFFFF;
    border: 3px solid #09A75A;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 15px 20px 17px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
}

.cta-line-02__icon {
    width: 41px;
}

.cta-line-02__content-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.cta-line-02__content-title-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.362;
    text-align: center;
    color: #09A75A;
}

.cta-line-02__content-title-main {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 1;
    text-align: center;
    color: #09A75A;
}

.cta-line-02__button {
    background-color: #FFBC05;
    border-radius: 100px;
    padding: 5px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.cta-line-02__button:hover {
    opacity: 0.7;
}

.cta-line-02__button-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.362;
    text-align: center;
    color: #050505;
}

.cta-line-02__button-arrow {
    background-color: #000000;
    border-radius: 5px;
    padding: 3.33px 0.56px;
    width: 10px;
    height: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-line-02__button-arrow-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 8.89px;
    line-height: 1.362;
    text-align: center;
    color: #FFFFFF;
}

.cta-line-02__footer {
    background: linear-gradient(180deg, #146E42 0%, #09A75A 23.08%);
    padding: 10px 20px;
    border-radius: 0 0 10px 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-line-02__footer-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.362;
    text-align: center;
    color: #FFFFFF;
}

.cta-line-02__footer-note {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.362;
    text-align: center;
    color: #FFFFFF;
}

/* 電話相談 */
.phone-consultation {
    padding: 0 30px 30px;
}

.phone-consultation__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.phone-consultation__box {
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 100%;
}

.phone-consultation__header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.phone-consultation__title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.362;
    text-align: center;
    color: #000000;
}

.phone-consultation__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.phone-consultation__main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.phone-consultation__phone-box {
    background-color: #FFC526;
    border-radius: 10px;
    padding: 15px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 100%;
}

.phone-consultation__phone {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.phone-consultation__icon {
    width: 24px;
}

.phone-consultation__number {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.469;
    text-align: center;
    color: #BF0000;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.phone-consultation__number:hover {
    opacity: 0.7;
}

.phone-consultation__button {
    background-color: #000000;
    border-radius: 100px;
    padding: 5px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.phone-consultation__button-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.362;
    text-align: left;
    color: #FFFFFF;
}

.phone-consultation__time {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 6px;
}

.phone-consultation__time-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.362;
    text-align: center;
    color: #000000;
}

.phone-consultation__time-note {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.362;
    text-align: center;
    color: #000000;
}

/* copyright */
.copyright {
    background-color: #009E94;
}

.copyright__inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 10px 20px;
}

.copyright__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.copyright__text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.362;
    text-align: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.copyright__text:hover {
    opacity: 0.7;
}

.copyright__links {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
}

.copyright__links-label {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.385;
    text-align: center;
    color: #FFFFFF;
}

.copyright__link {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.385;
    text-align: center;
    color: #FFFFFF;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.copyright__link:hover {
    opacity: 0.7;
}

.copyright__footer {
    background-color: #000000;
    padding: 5px 0;
}

.copyright__footer-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.362;
    text-align: center;
    color: #FFFFFF;
}

/* キャッチコピー */
.catchcopy {
    position: absolute;
    left: -32px;
    top: 285px;
    display: flex;
    flex-direction: column;
    gap: 6.75px;
    z-index: 10;
}

.catchcopy__item {
    background-color: #009E94;
    padding: 7px 15px 7px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.catchcopy__item:last-child {
    width: 100%;
}

.catchcopy__text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 21.58px;
    line-height: 1.362;
    text-align: center;
    color: #FFFFFF;
}

/* レスポンシブ対応 */
@media (max-width: 1000px) {
    .container {
        width: 100%;
        max-width: 393px;
    }
    
    .header__nav {
        right: -100%; /* 画面幅が小さい場合は画面右端から */
    }
    
    .header__nav.is-open {
        right: 0;
    }
}

@media (max-width: 768px) {
    .header__inner {
        padding: 5px 15px;
    }


    .line-steps__img {
        width: 100%;
        max-width: 333px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 100%;
    }

    .worry {
        padding: 80px 15px 15px;
    }

    .about {
        padding: 20px 15px;
    }

    .about-detail {
        padding: 20px 15px;
    }

    .check {
        padding: 30px 15px 0;
    }

    .check-detail {
        padding: 0 15px 20px;
    }

    .worry-2 {
        padding: 30px 15px 0;
    }

    .features {
        padding: 0 15px 30px;
    }

    .line-consultation {
        padding: 30px 15px;
    }

    .line-steps {
        padding: 0 15px 30px;
    }

    .faq {
        padding: 20px 15px;
    }

    .cta-line-02 {
        padding: 20px 15px;
    }

    .phone-consultation {
        padding: 0 15px 30px;
    }
}

