header.pc {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    width: 100%;
    height: 98px;
    background-color: rgba(255, 255, 255, 0.9);
}

header.pc .header_logo_box {
    width: 250px;
}

header.pc .header_logo_box img {
    width: 100%;
}

header.pc .right_box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}

header.pc .right_box a.contact {
    padding: 10px;
    width: 250px;
    background-color: #FEAE3F;
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
    text-align: center;
    transition: 0.3s;
    border: 5px solid transparent;
    border-radius: 100px;
}

header.pc .right_box a.contact:hover {
    background-color: #FFF;
    color: #FEAE3F;
    border: 5px solid #FEAE3F;
}

header.pc .right_box .menu_toggle {
    position: relative;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 10px 30px;
    background-color: #FFF;
    border-radius: 100px;
    border: 5px solid #131313;
    cursor: pointer;
    transition: 0.3s;
}

header.pc .right_box .menu_toggle:hover {
    background-color: #131313;
    color: #FFF;
}

header.pc .right_box .menu_toggle .hamburger {
    position: relative;
    width: 28px;
    height: 22px;
}

header.pc .right_box .menu_toggle .hamburger span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 4px;
    background-color: #131313;
    border-radius: 50px;
    transition: 0.3s;
}

header.pc .right_box .menu_toggle:hover .hamburger span {
    background-color: #FFF;
}

header.pc .right_box .menu_toggle .hamburger span:nth-of-type(1) {
    top: 0;
}

header.pc .menu_toggle.open .hamburger span:nth-of-type(1) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

header.pc .right_box .menu_toggle .hamburger span:nth-of-type(2) {
    top: 50%;
    transform: translate(-50%, -50%);
}

header.pc .menu_toggle.open .hamburger span:nth-of-type(2) {
    opacity: 0;
}

header.pc .right_box .menu_toggle .hamburger span:nth-of-type(3) {
    bottom: 0;
}

header.pc .menu_toggle.open .hamburger span:nth-of-type(3) {
    top: 50%;
    bottom: unset;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

header.pc .right_box .menu_toggle p.toggle_txt {
    font-size: 20px;
    line-height: 1.125;
    letter-spacing: 0.05em;
}

header.pc .open_menu {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    right: -200vw;
    z-index: 50;
    overflow: auto;
    width: 100vw;
    height: 100vh;
    transition: .3s;
}

header.pc .open_menu.open {
    right: 0;
}

header.pc .menu_bg {
    position: fixed;
    top: 0px;
    right: -200vw;
    left: 0px;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.95);
    transition: 0.3s;
    opacity: 0;
}

header.pc .menu_bg.open {
    right: 0;
    opacity: 1;
    pointer-events: all;
}


header.pc .open_menu .inner {
    display: flex;
    justify-content: center;
    gap: 7.5vw;
    margin: 0 auto;
    width: 80vw;
}

header.pc .open_menu .inner .menu_navigation {
    width: 42vw;
}

header.pc .open_menu .inner .menu_navigation ul {
    width: 100%;
}

header.pc .open_menu .inner .menu_navigation ul li {
    padding: 19px 17px;
    border-bottom: 1.5px solid #E0E0E0;
}

header.pc .open_menu .inner .menu_navigation ul li.menu-item-has-children {
    position: relative;
}

header.pc .open_menu .inner .menu_navigation ul li.menu-item-has-children::before {
    position: absolute;
    top: 43.75px;
    right: 0;
    content: "";
    display: block;
    width: 30px;
    height: 5px;
    background-color: #9AE11D;
    border-radius: 10px;
}

header.pc .open_menu .inner .menu_navigation ul li.menu-item-has-children::after {
    position: absolute;
    top: 45.75px;
    right: 0;
    transform: translateY(-50%) rotate(90deg);
    content: "";
    display: block;
    width: 30px;
    height: 5px;
    background-color: #9AE11D;
    border-radius: 10px;
    transition: .3s;
}

header.pc .open_menu .inner .menu_navigation ul li.menu-item-has-children.active::after {
    transform: translateY(-50%) rotate(0deg);
}

header.pc .open_menu .inner .menu_navigation ul li.menu-item-has-children ul.sub-menu {
    display: none;
    margin: 20px 0 0 1em;
}

header.pc .open_menu .inner .menu_navigation ul li a {
    display: flex;
    align-items: center;
    gap: 26px;
    color: #131313;
}

header.pc .open_menu .inner .menu_navigation ul li.menu-item-has-children a {
    pointer-events: none;
}

header.pc .open_menu .inner .menu_navigation ul li a span {
    font-size: 48px;
    line-height: 1;
    letter-spacing: 0.05em;
}

header.pc .open_menu .inner .menu_navigation ul li a p {
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.1em;
}

header.pc .open_menu .inner .menu_navigation ul li.menu-item-has-children ul li {
    position: relative;
    margin: 5px 0 0 25px;
    padding: 0;
    font-family: "noto-sans-cjk-jp", sans-serif;
    font-size: 16px;
    font-weight:700;
    line-height: normal;
    letter-spacing: 0.1em;
    border: none;
}

header.pc .open_menu .inner .menu_navigation ul li.menu-item-has-children ul li a {
    pointer-events: all !important;
}

header.pc .open_menu .inner .menu_navigation ul li.menu-item-has-children ul li:nth-of-type(1) {
    margin-top: 0;
}

header.pc .open_menu .inner .menu_navigation ul li.menu-item-has-children ul li::before {
    position: absolute;
    top: 6px;
    left: -25px;
    display: inline-block;
    content: "";
    width: 13px;
    height: 13px;
    background-color: #9AE11D;
    border-radius: 50%;
}

header.pc .open_menu .inner .right_area {
    width: 480px;
}

header.pc .open_menu .inner .right_area .sub_menu_navigation ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top:70px;
}

header.pc .open_menu .inner .right_area .sub_menu_navigation ul li a {
    color: #131313;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.06em;
}

header.pc .open_menu .inner .right_area .btn_box {
    margin-top: 72px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

header.pc .open_menu .inner .right_area .btn_box .btn {
    gap: 60px;
    padding: 10px 12px 10px 43px;
    width: 480px;
    font-size: 20px;
    font-weight: bold;
}

header.sp {
    display: none;
}

@media screen and (max-width:1400px) {
    header.pc .open_menu .inner {
        width: 90vw;
    }
}

@media screen and (max-width:1250px) {
    header.pc .open_menu .inner .menu_navigation ul li a {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    header.pc .open_menu .inner .menu_navigation ul li.menu-item-has-children::before {
        top: 63.75px;
    }

    header.pc .open_menu .inner .menu_navigation ul li.menu-item-has-children::after {
        top: 65.75px;
    }
}

@media screen and (max-width:990px) {
    header.pc {
        display: none;
    }

    header.sp {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 50;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        width: 100%;
        height: 70px;
        background-color: rgba(255, 255, 255, 0.9);
    }

    header.sp .header_logo_box {
        width: 180px;
    }

    header.sp .header_logo_box a {
        display: block;
        width: 100%;
    }

    header.sp .header_logo_box a img {
        width: 100%;
    }

    header.sp .menu_toggle {
        position: relative;
        z-index: 60;
    }

    header.sp .menu_toggle .hamburger {
        position: relative;
        width: 36px;
        height: 28px;
    }

    header.sp .menu_toggle .hamburger span {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 4px;
        background-color: #131313;
        border-radius: 10px;
        transition: .3s;
    }

    header.sp .menu_toggle .hamburger span:nth-of-type(1) {
        top: 0;
    }

    header.sp .menu_toggle.open .hamburger span:nth-of-type(1) {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    header.sp .menu_toggle .hamburger span:nth-of-type(2) {
        top: 50%;
        transform: translate(-50%, -50%);
    }

    header.sp .menu_toggle.open .hamburger span:nth-of-type(2) {
        opacity: 0;
    }

    header.sp .menu_toggle .hamburger span:nth-of-type(3) {
        bottom: 0;
    }

    header.sp .menu_toggle.open .hamburger span:nth-of-type(3) {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    header.sp .open_menu {
        position: fixed;
        display: block;
        top: 50%;
        right: -200vw;
        transform: translateY(-50%);
        z-index: 50;
        overflow: auto;
        width: 100vw;
        height: 80vh;
        transition: .3s;
    }

    header.sp .open_menu.open {
        right: 0;
    }

    header.sp .menu_bg {
        position: fixed;
        top: 0px;
        right: -200vw;
        left: 0px;
        width: 100vw;
        height: 100vh;
        pointer-events: none;
        background: rgba(255, 255, 255, 0.95);
        transition: 0.3s;
        opacity: 0;
    }

    header.sp .menu_bg.open {
        right: 0;
        opacity: 1;
        pointer-events: all;
    }

    header.sp .open_menu .inner {
        display: block;
        margin: 0 auto;
        width: 90vw;
    }

    header.sp .open_menu .inner .menu_navigation {
        width: 100%;
    }

    header.sp .open_menu .inner .menu_navigation ul {
        width: 100%;
    }

    header.sp .open_menu .inner .menu_navigation ul li {
        padding: 19px 17px;
        border-bottom: 1.5px solid #E0E0E0;
    }

    header.sp .open_menu .inner .menu_navigation ul li.menu-item-has-children {
        position: relative;
    }

    header.sp .open_menu .inner .menu_navigation ul li.menu-item-has-children::before {
        position: absolute;
        top: 63.75px;
        right: 0;
        content: "";
        display: block;
        width: 30px;
        height: 5px;
        background-color: #9AE11D;
        border-radius: 10px;
    }

    header.sp .open_menu .inner .menu_navigation ul li.menu-item-has-children::after {
        position: absolute;
        top: 65.75px;
        right: 0;
        transform: translateY(-50%) rotate(90deg);
        content: "";
        display: block;
        width: 30px;
        height: 5px;
        background-color: #9AE11D;
        border-radius: 10px;
        transition: .3s;
    }

    header.sp .open_menu .inner .menu_navigation ul li.menu-item-has-children.active::after {
        transform: translateY(-50%) rotate(0deg);
    }

    header.sp .open_menu .inner .menu_navigation ul li.menu-item-has-children ul.sub-menu {
        display: none;
        margin: 20px 0 0 1em;
    }

    header.sp .open_menu .inner .menu_navigation ul li a {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        color: #131313;
    }

    header.sp .open_menu .inner .menu_navigation ul li.menu-item-has-children a {
        pointer-events: none;
    }

    header.sp .open_menu .inner .menu_navigation ul li a span {
        font-size: 48px;
        line-height: 1;
        letter-spacing: 0.05em;
    }


    header.sp .open_menu .inner .menu_navigation ul li a p {
        font-size: 16px;
        font-weight: 900;
        line-height: normal;
        letter-spacing: 0.1em;
    }

    header.sp .open_menu .inner .menu_navigation ul li.menu-item-has-children ul li {
        position: relative;
        margin: 5px 0 0 25px;
        padding: 0;
        font-family: "noto-sans-cjk-jp", sans-serif;
        font-size: 16px;
        line-height: normal;
        letter-spacing: 0.1em;
        border: none;
    }

    header.sp .open_menu .inner .menu_navigation ul li.menu-item-has-children ul li a {
        pointer-events: all !important;
        font-weight: 700;
    }

    header.sp .open_menu .inner .menu_navigation ul li.menu-item-has-children ul li:nth-of-type(1) {
        margin-top: 0;
    }

    header.sp .open_menu .inner .menu_navigation ul li.menu-item-has-children ul li::before {
        position: absolute;
        top: 6px;
        left: -25px;
        display: inline-block;
        content: "";
        width: 13px;
        height: 13px;
        background-color: #9AE11D;
        border-radius: 50%;
    }

    header.sp .open_menu .inner .right_area {
        margin-top: 40px;
        width: 100%;
    }

    header.sp .open_menu .inner .right_area .sub_menu_navigation ul {
        margin-left: 20px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    header.sp .open_menu .inner .right_area .sub_menu_navigation ul li a {
        color: #131313;
        font-size: 14px;
        font-weight: 900;
        line-height: 1.2;
        letter-spacing: 0.06em;
    }

    header.sp .open_menu .inner .right_area .btn_box {
        margin-top: 72px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    header.sp .open_menu .inner .right_area .btn_box .btn {
        gap: 60px;
        padding: 10px 12px 10px 43px;
        width: 477px;
        font-size: 20px;
        font-weight: bold;
    }
}

@media screen and (max-width:768px) {
    header.sp .open_menu .inner .menu_navigation ul li {
        padding: 20px 10px;
    }

    header.sp .open_menu .inner .menu_navigation ul li a span {
        font-size: 32px;
    }

    header.sp .open_menu .inner .menu_navigation ul li a p {
        font-size: 16px;
    }

    header.sp .open_menu .inner .right_area .sub_menu_navigation ul li a {
        font-size: 14px;
    }

    header.sp .open_menu .inner .menu_navigation ul li.menu-item-has-children::before {
        top: 46.75px;
    }

    header.sp .open_menu .inner .menu_navigation ul li.menu-item-has-children::after {
        top: 48.75px;
    }

    header.sp .open_menu .inner .right_area .btn_box {
        gap: 10px;
        margin-top: 40px;
    }

    header.sp .open_menu .inner .right_area .btn_box .btn {
        justify-content: space-between;
        gap: 0;
        width: 350px;
        font-size: 16px;
        padding: 2px 2px 2px 30px;
        margin: 0;
    }
}

@media screen and (max-width:500px) {
    header.sp .open_menu .inner .right_area .btn_box .btn {
        padding-left: 30px;
        width: 100% !important;
    }
}