@charset "utf-8";

/*==========================
common
==========================*/
:root {
    --primary-white: #FFFFFF;
    --primary-whiteLow: #FBFBFB;
    --primary-blue: #003057;
    --primary-lightblue: #4D87C1;
    --primary-paleLightblue: #F8FBFF;
    --primary-orange: #DC4405;
    --primary-gray: #F3F3F3;
    --primary-lightGray: #F3F5F7;
    --primary-grayLow: #8D8C8C;
    --primary-black: #2A2A2A;
}

html {
    font-size: 62.5%;
}

body {
    font-family:
        "Noto Sans JP",
        Arial,
        sans-serif;
    font-style: normal;
    color: var(--primary-black, #2A2A2A);
    background-color: var(--primary-whiteLow, #FBFBFB);
    line-height: 1.5;
    font-size: 1.6rem;
    font-weight: 400;
}

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

.main {
    background: var(--primary-whiteLow);
}

/*  */

.topic {
    font-size: 2rem;
    margin-top: 15px;
    font-weight: 500;
}

.section {
    padding: 0 5%;
    margin-top: 50px;
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-border {
    position: relative;
    width: 100%;
    height: 2px;
}

.section-border:before {
    content: "";
    position: absolute;
    background-color: var(--primary-gray);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.section-border__bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 2px;
    background: var(--primary-orange);
    border-radius: 3px;
}

/* breadcrumbs */
/* パンくずリスト全体 */
/* .yoast-breadcrumb {
    padding: 10px 5%;
    margin-top: 50px;
    font-size: 1.3rem;
    color: var(--primary-grayLow);
} */

/* リンクのスタイル（Yoast SEOのパンくず） */
/* .yoast-breadcrumb a {
    color: var(--primary-black);
    text-decoration: underline;
} */

/* 現在のページ（最後の要素）は色のみ変更 */
/* .yoast-breadcrumb .breadcrumb_last {
    color: var(--primary-grayLow);
    text-decoration: none;
} */

.breadcrumb {
    padding: 10px 5%;
    display: flex;
    flex-wrap: wrap;
    /* 行末で折り返し */
    color: var(--primary-grayLow);
    margin-top: 50px;
    font-size: 1.4rem;
    gap: 0.3em;
    /* 間隔を確保 */
}

.breadcrumb li {
    display: inline;
    /* インライン扱いで自然改行可能 */
    white-space: normal;
    /* 折り返し許可 */
    word-break: break-word;
    /* 長い英単語やURLも改行 */
}

.breadcrumb li+li:before {
    content: ">";
    margin: 0 0.3em;
}

.breadcrumb li a {
    color: var(--primary-black);
}


/* btn */
.btnArrow svg:first-child {
    -webkit-transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btnArrow svg:last-child {
    -webkit-transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: -100%;
    transform: translate(-50%, -50%);
}

.btnArrow svg {
    fill: var(--color-white);
    width: 20px;
    height: 20px;
    transition-duration: .5s;
    transition-timing-function: cubic-bezier(.77, 0, .175, 1);
}

.btnArrow {
    display: inline-block;
    position: relative;
    width: 45px;
    height: 25px;
    overflow: hidden;
    border-radius: 14px;
    background-color: #F7F8FA;
    transition-property: background-color;
}

/* sectionのフェードアップ */

.sectionFadeUp {
    opacity: 0;
    transform: translateY(150px);
    transition: all .7s;
    animation-fill-mode: forwards;
}

.sectionFadeUp.is-show {
    opacity: 1;
    transform: translateY(0);
}

/* cardのフェードアップ */
.cardFadeUp {
    opacity: 0;
    transform: translateY(50px);
    transition: all .5s;
    animation-fill-mode: forwards;
}

.cardFadeUp.is-show {
    opacity: 1;
    transform: translateY(0);
}

/*==========================
header
==========================*/
.headerWrapper {
    z-index: 100;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    transition: 1s;
}

.headerWrapper {
    animation-duration: 3.5s;
    animation-name: letterSlideIn-data-v-245cbef4;
}

.header {
    padding: 0 0 0 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header2 {
    padding: 0 0 0 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    transition: 1s;
}

.header_fede {
    opacity: 0;
}

/*  */
.is-letter-9 {
    animation: letterSlideIn-data-v-245cbef4 1.5s ease-out 3s forwards;
}

/*  */

.header.active {
    transform: translateY(-100%);
}

.header__nav {
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    /* background-color: var(--primary-white); */
    gap: 15%;

}

.nav__body-pc {
    display: none;
}

/* 下層menu　arrow */
.nav__item__menu--link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 180px;
}

.btnArrow--nav__item__menu svg {
    width: 12px;
    height: 12px;
}

.btnArrow--nav__item__menu {
    width: 20px;
    height: 20px;
    /* まんまるにするか長丸にするか大きさを考える */
}

.btnArrow--nav__item__menu {
    border: 1px solid #DC4405;
    background-color: transparent;
}

.nav__item__menu--link:hover .btnArrow--nav__item__menu {
    background-color: var(--primary-orange);
}

.nav__item__menu--link:hover .btnArrow--nav__item__menu svg path {
    fill: var(--primary-white);
}

.nav__item__menu--link:hover .btnArrow--nav__item__menu svg:first-child {
    left: 200%
}

.nav__item__menu--link:hover .btnArrow--nav__item__menu svg:last-child {
    left: 50%
}

/* .header__btn */
.header__btn {
    position: relative;
    width: 60px;
    height: 60px;
    cursor: pointer;
    background-color: var(--primary-blue);
}

.header__btn span {
    position: absolute;
    left: 0;
    width: 33%;
    height: 1px;
    background-color: var(--primary-white);
    border-radius: 2px;
}

.header__btn,
.header__btn span {
    display: inline-block;
    transition: all .5s;
    box-sizing: border-box;
}

.header__btn span {
    left: 20px;
}

.header__btn span:nth-of-type(1) {
    top: 0;
}

.header__btn span:nth-of-type(2) {
    top: 30px;
}

.header__btn span:nth-of-type(3) {
    bottom: 0;
}

#headerBtn span:nth-of-type(1) {
    -webkit-animation: headerBtn-bar01 .75s forwards;
    animation: headerBtn-bar01 .75s forwards;
}

@-webkit-keyframes headerBtn-bar01 {
    0% {
        -webkit-transform: translateY(30px) rotate(45deg);
    }

    50% {
        -webkit-transform: translateY(30px) rotate(0);
    }

    100% {
        -webkit-transform: translateY(20px) rotate(0);
    }
}

@keyframes headerBtn-bar01 {
    0% {
        transform: translateY(30px) rotate(45deg);
    }

    50% {
        transform: translateY(30px) rotate(0);
    }

    100% {
        transform: translateY(20px) rotate(0);
    }
}

#headerBtn span:nth-of-type(2) {
    transition: all .25s .25s;
    opacity: 1;
}

#headerBtn span:nth-of-type(3) {
    -webkit-animation: headerBtn-bar03 .75s forwards;
    animation: headerBtn-bar03 .75s forwards;
}

@-webkit-keyframes headerBtn-bar03 {
    0% {
        -webkit-transform: translateY(-30px) rotate(-45deg);
    }

    50% {
        -webkit-transform: translateY(-30px) rotate(0);
    }

    100% {
        -webkit-transform: translateY(-20px) rotate(0);
    }
}

@keyframes headerBtn-bar03 {
    0% {
        transform: translateY(-30px) rotate(-45deg);
    }

    50% {
        transform: translateY(-30px) rotate(0);
    }

    100% {
        transform: translateY(-20px) rotate(0);
    }
}

#headerBtn.active span:nth-of-type(1) {
    -webkit-animation: active-headerBtn-bar01 .75s forwards;
    animation: active-headerBtn-bar01 .75s forwards;
}

@-webkit-keyframes active-headerBtn-bar01 {
    0% {
        -webkit-transform: translateY(20px) rotate(0);
    }

    50% {
        -webkit-transform: translateY(30px) rotate(0);
    }

    100% {
        -webkit-transform: translateY(30px) rotate(45deg);
    }
}

@keyframes active-headerBtn-bar01 {
    0% {
        transform: translateY(20px) rotate(0);
    }

    50% {
        transform: translateY(30px) rotate(0);
    }

    100% {
        transform: translateY(30px) rotate(45deg);
    }
}

#headerBtn.active span:nth-of-type(2) {
    opacity: 0;
}

#headerBtn.active span:nth-of-type(3) {
    -webkit-animation: active-headerBtn-bar03 .75s forwards;
    animation: active-headerBtn-bar03 .75s forwards;
}

@-webkit-keyframes active-headerBtn-bar03 {
    0% {
        -webkit-transform: translateY(-20px) rotate(0);
    }

    50% {
        -webkit-transform: translateY(-30px) rotate(0);
    }

    100% {
        -webkit-transform: translateY(-30px) rotate(-45deg);
    }
}

@keyframes active-headerBtn-bar03 {
    0% {
        transform: translateY(-20px) rotate(0);
    }

    50% {
        transform: translateY(-30px) rotate(0);
    }

    100% {
        transform: translateY(-30px) rotate(-45deg);
    }
}

/*  */
.navPhone__number::before {
    width: 20px;
    height: 20px;
    display: inline-block;
    content: '';
    background-image: url(../images/phone-header.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.navPhone__number.active::before {
    background-image: url(../images/phone-header-active.svg);
}

/* ボタンを押されるまえ */
.navPhone__content {
    position: absolute;
    top: -100vh;
    right: 0;
    width: 100%;
    background-color: var(--primary-lightGray);
    padding: 110px 4% 50px;
    transform: translate(-5px, 0);
    opacity: 0;
    transition: all .8s;
}

/* ボタン押された後 */
.navPhone__content.active {
    position: absolute;
    top: 0;
    right: 0;
    /* animation-name: navPhone__contentAnime;
    animation-duration: 0.7s;
    animation-fill-mode: forwards; */
    transform: translate(0px, 0);
    opacity: 1;
    z-index: -1;
}

.navPhone__btnLink {
    position: relative;
    width: 300px;
    color: var(--primary-black);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px 15px 34px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(3.5px);
    box-shadow: 2px 8px 14px 0px rgba(0, 48, 87, 0.05);
    transition-duration: .5s;
    transition-timing-function: cubic-bezier(.165, .84, .44, 1)
}

.navPhone__btnLink:hover .btnArrow svg:first-child {
    left: 200%
}

.navPhone__btnLink:hover .btnArrow svg:last-child {
    left: 50%
}

.btnArrow--navPhone {
    background-color: #F7F8FA;
}

.navPhone__btnLink:hover {
    background: #CDD9E3;
    box-shadow: 8px 8px 14px 0px rgba(0, 48, 87, 0.03);
}

.navPhone__btnLink p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    letter-spacing: 0.2rem;
    font-weight: 500;
}

.navPhone__tittle {
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.6;
}

.navPhone__tittle--form {
    margin-top: 20px;
}

.navPhone__tittle span {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.4;
}

.navPhone__description {
    margin: 10px auto;
}

.navPhone__description:first-of-type,
.navPhone__description:last-of-type {
    display: flex;
    justify-content: center;
}

.navPhone__description--fax p {
    width: 300px;
    margin: 0 auto;
    display: flex;
    padding: 15px 34px;
    gap: 10px;
    align-items: center;
    /* border: solid 1px #e0e0e0; */
    border-radius: 70px;
    font-size: 1.8rem;
    letter-spacing: 0.2rem;
    font-weight: 500;
}

/* ボタンを押されるまえ */
.nav__body {
    position: absolute;
    top: -100vh;
    right: 0;
    width: 100svw;
    background-color: var(--primary-white);
    transition: all .7s;
}

/* ボタン押された後 */
.nav__body.active {
    position: absolute;
    top: 0;
    right: 0;
    height: calc(100svh - 70px);
    overflow: hidden auto;
    padding: 110px 0 10px;
    animation-name: nav__bodyAnime;
    animation-duration: 0.7s;
    animation-fill-mode: forwards;
    opacity: 0;
    z-index: -1;
}

@keyframes nav__bodyAnime {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav__header {
    padding: 20px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-white);
    position: relative;
}

.nav__header img {
    background: var(--primary-lightblue);
    padding: 20px;
    border-radius: 7px;
}

/* アコーディオン */
.accordion-header {
    transition: background .3s ease;
    cursor: pointer;
    position: relative;
}

.accordion-header::before,
.accordion-header::after {
    position: absolute;
    content: '';
    top: 1px;
    right: 20px;
    bottom: 0;
    width: 17px;
    height: 1px;
    margin: auto;
    background: var(--primary-blue);
}

.accordion-header::after {
    transform: rotate(-90deg);
    transition: transform 0.3s;
}

.accordion-header.active::after {
    transform: rotate(0deg);
}

/* アコーディオンend */

.nav__item__topic {
    display: flex;
    padding: 10px 4%;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--primary-lightblue);
    background: var(--primary-white);
}

.nav__item__topic:first-of-type {
    border-top: none;
}

.nav__item__topic:last-of-type {
    border-bottom: 1px solid var(--primary-lightblue);
}

.nav__item__menu {
    /* padding: 10px 4%; */
    align-items: flex-start;
    /* gap: 10px; */
    background-color: var(--primary-paleLightblue);
    display: flex;
    flex-wrap: wrap;

}

.nav__item__menu li {
    width: 50%;
}

.nav__item__menu li a {
    font-size: 1.4rem;
    font-weight: 350;
    line-height: 1.7;
    display: inline-block;
    padding: 10px 8%;
    width: 100%;
}

.navPhone_txt {
    display: none;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

/* .header__topic, */
.nav__topic {
    color: var(--primary-blue);
    font-size: 2rem;
    font-weight: 700;
}

/* .header__topic span, */
.nav__topic span {
    font-size: 1.6rem;
}

.header__topic {
    width: 170px;
    height: auto;
}

/*==========================
article__header（top以外）
==========================*/
.article__header {
    margin-top: 60px;
    padding: 71px 5%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.article__header::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(42, 42, 42, 0.2);
    z-index: 1;
}

.topic-header {
    display: inline-block;
    padding: 0px 10px;
    background-color: var(--primary-white);
    font-size: 2.4rem;
    font-weight: 500;
    position: relative;
    z-index: 10;
    letter-spacing: 0.1rem;
}

/*==========================
f-contact
==========================*/
.f-contact__pf__pc {
    display: none;
}

.f-contact__inner {
    padding: 50px 4% 50px;
    background-color: var(--primary-blue);
}

.topic--f-contact {
    margin-top: 0;
    color: var(--primary-white);
    text-align: center;
}

.f-contact__txt,
.f-contact__pfTitle,
.f-contact__faxTxt,
.f-contact__pfTime {
    color: var(--primary-white);
    text-align: center;
}

.f-contact__link,
.f-contact__phoneTxt {
    color: var(--primary-blue);
    text-align: center;
}

.f-contact__link--pc {
    display: none;
}

.f-contact__pfTime,
.f-contact__txt,
.f-contact__pfTitle,
.f-contact__faxTxt {
    margin-top: 20px;
}

.f-contact__btn {
    margin: 20px auto 0;
    display: flex;
    justify-content: center;
}

.f-contact__btn--link {
    position: relative;
    width: 300px;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px 15px 34px;
    border-radius: 50px;
    background: var(--primary-white);
    backdrop-filter: blur(3.5px);
    box-shadow: 2px 8px 14px 0px rgba(42, 42, 42, 0.50);
    transition-duration: .5s;
    transition-timing-function: cubic-bezier(.165, .84, .44, 1)
}

.f-contact__btn--link div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.f-contact__btn--link:hover .btnArrow svg:first-child {
    left: 200%
}

.f-contact__btn--link:hover .btnArrow svg:last-child {
    left: 50%
}

.f-contact__btn--link:hover {
    background: rgba(255, 255, 255, 0.80);
    box-shadow: 8px 8px 14px 0px rgba(42, 42, 42, 0.50);
    backdrop-filter: blur(3.5px);
}

.btnArrow--f-contact {
    background-color: #F7F8FA;
}

.f-contact__phoneTxt,
.f-contact__contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.2rem;
}

.f-contact__phoneTxt span,
.f-contact__faxTxt span {
    font-size: 1.8rem;
    letter-spacing: 0.2rem;
    font-weight: 500;
    /* margin-right: 10px; */
}

.f-contact__faxTxt {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 300px;
    padding: 10px 20px 10px 34px;
    margin: 20px auto 0;
    /* border: solid 1px #8098ab; */
    border-radius: 70px;
}

/*==========================
footer
==========================*/
.footer {
    background-color: var(--primary-white);
    display: flex;
    padding: 50px 4% 20px;
    flex-direction: column;
    align-items: center;
    border-top: 2px solid var(--primary-gray);
}

.footer__logo {
    text-align: center;
    font-weight: 700;
    line-height: 2.2;
    font-size: 2.4rem;
    color: var(--primary-blue);
}

.footer__logo span {
    font-size: 1.6rem;
}

.footer__address {
    margin-top: 10px;
}

.footer__address p {
    text-align: center;
    letter-spacing: 0.1rem;
}

.footer__nav {
    display: none;
}

.copyright {
    margin-top: 50px;
    text-align: center;
}

/*  */

.para {
    position: fixed;
    bottom: 0;
    z-index: -1;
    background-image: url(../images/para.png);
    background-position: center;
    background-repeat: no-repeat;
    padding: 45px 9% 0;
    width: 100vw;
    height: 100vh;
}

.para__container {
    position: fixed;
    bottom: 50px;
}

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

/*------------------------------
 pageTop
------------------------------*/
#pagetop {
    position: fixed;
    right: 35px;
    bottom: 60px;
    width: 50px;
    height: 50px;
    background-color: #CDD9E3;
    border-radius: 50%;
    transition: 0.3s bottom 0s ease;
    opacity: 0.6;
    z-index: 50;
    cursor: pointer;
    box-shadow:
        2px 8px 14px 0px rgba(0, 48, 87, 0.07);
}

#pagetop:hover {
    opacity: 0.9;
    box-shadow: 8px 8px 14px 0px rgba(0, 48, 87, 0.05);
}

.pageTop__icon {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.pageTop__icon::after,
.pageTop__icon::before {
    content: "";
    position: absolute;
    top: 25px;
    width: 12px;
    height: 1px;
    border-radius: 3px;
    background-color: var(--primary-blue);
}

.pageTop__icon::before {
    left: 15px;
    transform: rotate(-45deg);
}

.pageTop__icon::after {
    right: 15px;
    transform: rotate(45deg);
}

/*Thanksページ  */
.txt-top {
    margin-top: 32px;
}

.txt-top p {
    letter-spacing: 0.1rem;
    line-height: 2;
}

.thanks_link a {
    text-decoration: underline;
}

.thanks_list li {
    list-style-type: circle;
    list-style-position: inside;
}

/* CSR--txt */
.CSR--txt {
    margin-top: 32px;
}

/* privacypolicy */
.privacypolicy-txt {
    margin-top: 32px;
    font-size: 1.5rem;
    text-decoration: underline;
}

.privacy_p {
    line-height: 2;
    margin-top: 32px;
}

.privacy_address {
    letter-spacing: 0.1rem;
    line-height: 2;
}

.privacy_address a {
    text-decoration: underline;
}

.privacy_address span {
    text-decoration: none;
}


/*------ 768------*/
@media screen and (min-width: 768px) {

    /* contact pc */
    .f-contact__inner {
        padding: 80px 9% 80px;
    }

    .topic--f-contact {
        margin-top: 0;
    }

    .f-contact__pf__sp {
        display: none;
    }

    .f-contact__pf__pc {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        color: var(--primary-white);
    }

    .f-contact__pfTitle--pc {
        margin-top: 20px;
    }

    .f-contact__pfTxt {
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }

    .f-contact__pfTxt {
        gap: 20px;
    }

    .f-contact__pfTxt p span {
        text-align: center;
        font-size: 2.8rem;
        /* font-weight: 400; */
        margin-left: 5px;
        font-weight: 500;
        letter-spacing: 0.2rem;
    }
}


/*------pc 1100------*/
@media screen and (min-width: 1100px) {

    /* common pc */
    .spBr {
        display: none;
    }

    .topic {
        font-size: 2.8rem;
        font-weight: 500;
        margin-top: 25px;
    }

    .section {
        padding: 100px 9% 0;
        margin-top: 0;
    }

    .breadcrumb {
        padding: 10px 9%;
        max-width: 1160px;
        margin-top: 100px;
    }

    /* header pc */
    .header {
        padding: 12px 7% 0;
    }

    .header2 {
        padding: 12px 7% 0;
    }

    /* .header__topic {
        font-size: 3.2rem;
        font-weight: 700;
        width: 360px;
    } */

    /* .header__topic span {
        font-size: 2.4rem;
        font-weight: 700;
    } */
    .header__topic {
        width: 300px;
        height: auto;
    }

    .header__nav {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-end;
        width: calc(100% - 360px);
    }

    .nav__body-pc {
        display: block;
    }

    .navPhone__number {
        display: flex;
        align-items: center;
        /*  */
        pointer-events: none;
    }

    .navPhone__number::before {
        width: 20px;
        height: 20px;
        display: inline-block;
        content: '';
        background-image: url(../images/phone-header.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100% auto;
    }

    .navPhone__number.active::before {
        background-image: url(../images/phone-header.svg);
    }

    .navPhone__number span {
        margin-left: 10px;
        font-size: 2.4rem;
        font-weight: 500;
        letter-spacing: 0.2rem;
    }

    .header__btn {
        display: none;
    }

    .navPhone_txt {
        display: inline-block;
    }

    .navPhone__content {
        display: none;
    }

    .nav__list-pc {
        display: flex;
        align-items: center;
        margin-top: 6px;
    }

    /* コメントアウト後のものはWordPressに付与されたクラス名に変えたけどもどした */
    .nav__item-pc {
        display: inline-flex;
        position: relative;
    }

    .nav__item-pc:hover .nav__item__menu-pc {
        display: inline-flex;
        flex-direction: column;
        position: absolute;
        top: 50px;
    }

    .nav__item-pc:hover>.nav__item__topic-pc,
    .nav__item-pc:focus-within>.nav__item__topic-pc {
        color: var(--primary-orange);
        /* ホバーまたはメニュー表示中の文字色 */
    }

    .nav__item-pc:hover>.nav__item__topic-pc::after,
    .nav__item-pc:hover .nav__item__topic-pc::after,
    .nav__item-pc:focus-within>.nav__item__topic-pc::after {
        width: 30px;
        /* 親要素がホバー中またはメニュー表示中に下線を表示 */
    }

    .nav__item__topic-pc {
        font-weight: 500;
        padding: 10px 15px 20px;
        color: var(--primary-black);
        text-decoration: none;
        position: relative;
        transition: color 0.3s ease;
    }

    /* 下線がスライドイン */
    .nav__item__topic-pc::after {
        content: "";
        position: absolute;
        left: calc(50% - 15px);
        bottom: 10px;
        width: 0;
        height: 2px;
        background-color: var(--primary-orange);
        transition: width 0.3s ease;
    }

    .nav__item__topic-haschild {
        margin-right: 10px;
    }

    .nav__item__topic-haschild::before {
        content: "";
        display: block;
        width: 8px;
        height: 8px;
        border: 1px solid;
        border-color: #565656 #565656 transparent transparent;
        transform: rotate(135deg);
        position: absolute;
        right: 0;
        top: 0;
        transition: all .8s;
        top: 31%;
    }

    .nav__item__topic-haschild.active::before {

        transform: rotate(-45deg);

    }

    .nav__item__topic-pc:hover {
        color: var(--primary-orange);
    }

    /*  */
    .nav__item__topic-pc:hover::after {
        width: 30px;
    }

    .nav__item__menu-pc {
        position: absolute;
        left: 0;
        top: 115px;
        background-color: var(--primary-whiteLow);
        display: none;
        border-radius: 5px;
        box-shadow: 0px 8px 8px 0px rgba(0, 48, 87, 0.04);

    }

    .nav__item__menu-pc li a {
        padding: 18px 30px;
        display: inline-flex;
        /* サブメニュー内の各リンクのスタイル */
        color: var(--primary-black);
        white-space: nowrap;
    }

    /* サブメニュー内の各リンクのスタイル */
    .nav__item__menu-pc li a:hover {
        color: var(--primary-orange);
    }

    .nav__item-pc--C {
        padding-bottom: 12px;
    }

    .nav-contact-pc {
        display: flex;
        padding: 10px 15px 10px 10px;
        justify-content: center;
        align-items: center;
        border-radius: 70px;
        background: var(--primary-blue);
        color: var(--primary-white);
        margin-left: 10px;
    }

    .nav-contact-pc::before {
        content: '';
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-right: 5px;
        width: 30px;
        height: 30px;
        background-image: url(../images/mail-header.svg);
        background-size: contain;
        background-repeat: no-repeat;
    }

    /* お問い合わせボタンのホバー時の色反転（下線や文字色変更なし） */
    .nav-contact-pc:hover {
        background-color: var(--primary-lightblue);
        color: var(--primary-white);
        text-decoration: none;
    }

    /*　article__header（top以外）*/
    .article__header {
        margin-top: 110px;
        padding: 86px 9%;
    }

    .topic-header {
        padding: 0px 20px;
        font-size: 3.2rem;
    }

    /* f-contact */


    /* footer pc */
    .footer {
        padding: 100px 7% 20px;

    }

    .footerInner {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        align-self: stretch;
    }

    .footer__logo {
        font-size: 3.2rem;
        font-weight: 700;
        line-height: 2;
    }

    .footer__logo span {
        font-size: 2.4rem;
        font-weight: 700;
        line-height: 2;
    }

    .footer__address {
        margin-top: 30px;
    }

    .footer__address p {
        text-align: start;
    }

    .footer__nav {
        display: inline-flex;
    }

    .footer__menu {
        display: flex;
        align-items: flex-start;
        gap: 50px;
    }

    .footer__menu__menu {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer__menu__menu p {
        font-weight: 700;
    }

    .footer__menu__menu p:hover {
        color: var(--primary-grayLow);
    }

    .footer__menu__menu ul li :hover {
        color: var(--primary-grayLow);
    }

    /* pagetop */
    #pagetop {
        right: 70px;
        bottom: 40px;
        width: 70px;
        height: 70px;
    }

    .pageTop__icon::after,
    .pageTop__icon::before {
        top: 35px;
        width: 23px;
        height: 1px;
        border-radius: 3px;
        background-color: var(--primary-blue);
    }

    .pageTop__icon::before {
        left: 15px;
        transform: rotate(-45deg);
    }

    .pageTop__icon::after {
        right: 15px;
        transform: rotate(45deg);
    }

    /* thanksページ */
    .txt-top {
        margin-top: 50px;
    }

    /* .thanks_list li {
        list-style-type: circle;
        list-style-position: inside;
    }

    .thanks_list li a {
        text-decoration: underline;
    } */

    /* CSR--txt(セクションのテキスト)  */
    .CSR--txt {
        margin-top: 50px;
    }

    /* privacypolicy */
    .privacypolicy-txt {
        margin-top: 50px;
    }


}

/*------pc 1100------*/