@charset "utf-8";
html,
body,
input,
textarea {
    font-family: 'Noto Sans JP', sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    line-height: 1.5;
    font-feature-settings: 'palt';
}
body {
    color: var(--color-black);
}
img {
    vertical-align: bottom;
    max-width: 100%;
    height: auto;
}
button {
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
}
a {
    color: inherit;
    text-decoration: none;
}
:root {
    --color-black: #000;
    --color-white: #fff;
    --color-light-gray: #f5f5f5;
    --color-dark-gray: #595959;
    --color-gray: #999999;
    --color-silver-gray: #c0c0c0;
    --color-green: #009999;

    --shadow: 0px 0px 8px 0px rgba(25, 22, 48, 0.2);

    --z-index-header: 100;

    --ease-in: cubic-bezier(0.32, 0, 0.67, 0);
    --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
    --ease-pagetop-arrow: cubic-bezier(0.65, 0, 0.35, 1);
}
@media (min-width: 769px) {
    [disp-only]:not([disp-only~='pc']) {
        display: none !important;
    }
    a[href*='tel:'] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}
@media (max-width: 768px) {
    [disp-only]:not([disp-only~='sp']) {
        display: none !important;
    }
}

/* parts */
.inner {
    margin-inline: auto;
    width: 100%;
}
.fw700 {
    font-weight: 700;
}
.fw500 {
    font-weight: 500;
}
.fw400 {
    font-weight: 400;
}
.font_roboto {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}
.btn {
    display: inline-flex;
    position: relative;
    align-items: center;
    text-decoration: none;
    overflow: hidden;
}
.btn_bg {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 50%;
    z-index: 1;
    background-color: var(--color-green);
}
.btn_white {
    background-color: var(--color-white);
    color: var(--color-black);
}
.btn_black {
    background-color: var(--color-black);
    color: var(--color-white);
}
.btn_icon,
.btn_txt {
    position: relative;
    z-index: 2;
}
.hover_green {
    text-decoration: none;
}
.hover_underline_link {
    text-decoration: none;
}
.hover_underline_link[target='_blank'] .hover_underline_text {
    position: relative;
    margin-right: 8px;
}
.hover_underline_link[target='_blank']::after {
    content: '';
    width: 14px;
    height: 14px;
    background: url(../img/common/icon_tab_gray.svg) no-repeat center center / contain;
    display: inline-block;
    vertical-align: middle;
    margin-top: -4px;
}
@media (min-width: 769px) {
    .inner {
        max-width: 1280px;
        padding-inline: 40px;
    }
    .btn {
        height: 56px;
        border-radius: 28px;
        padding-inline: 32px 57px;
    }
    .btn_icon {
        margin-right: 10px;
    }
    .btn_bg {
        right: 32px;
        width: 10px;
        height: 10px;
        will-change: transform;
    }
    @media (hover: hover) {
        .btn_bg {
            transition: transform 0.55s;
        }
        .btn:hover .btn_bg {
            transform: scale(57);
        }
        .btn_white .btn_txt {
            transition: color 0.5s;
        }
        .btn_white:hover .btn_txt {
            color: var(--color-white);
        }
        .hover_green,
        .hover_blue {
            transition:
                background 0.5s,
                color 0.5s;
        }
        .hover_green:hover {
            color: var(--color-white);
            background-color: var(--color-green);
        }
        .hover_blue:hover {
            color: var(--color-white);
            background-color: #4e95d9;
        }
    }
}
@media (max-width: 768px) {
    .inner {
        max-width: 780px;
        padding-inline: 16px;
    }
    .btn {
        height: 48px;
        border-radius: 100px;
        padding-inline: 22px 40px;
    }
    .btn_icon {
        margin-right: 15px;
    }
    .btn_bg {
        right: 22px;
        width: 8px;
        height: 8px;
    }
}

/* ---
    header
--- */
.header {
    position: fixed;
    background-color: var(--color-white);
    width: 100%;
    top: 0;
    left: 0;
    z-index: var(--z-index-header);
    border-radius: 0 0 16px 16px;
    transition:
        translate 0.5s,
        box-shadow 0.5s;
}
.header.is_scrolling {
    box-shadow: 0px 0px 10px 0px rgba(10, 8, 10, 0.3);
}
.header.is_hidden {
    translate: 0 -100%;
    box-shadow: 0px 0px 10px 0px rgba(10, 8, 10, 0);
}
.header_inner {
    display: flex;
    justify-content: space-between;
}
.header_inner h1 {
    font-size: inherit;
}
.header_logo {
    display: block;
    width: 138px;
}
.header_link_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    color: var(--color-dark-gray);
}
.header_link_sub {
    color: var(--color-dark-gray);
}
.header_btn_wrap {
    display: flex;
    align-items: center;
}
.hover_underline_link[target='_blank'] .hover_underline_text {
    position: relative;
    margin-right: 8px;
}
.hover_underline_link[target='_blank']::after {
    content: '';
    width: 16px;
    height: 16px;
    background: url(../img/common/icon_tab_gray.svg) no-repeat center center / contain;
    display: inline-block;
    vertical-align: middle;
    margin-top: -4px;
}
@media (min-width: 1150px) {
    .header_inner {
        align-items: center;
        height: 104px;
        column-gap: 16px;
        padding-inline: 32px;
    }
    .header_link_list {
        column-gap: 32px;
    }
    .header_link_listitem_sub {
        position: relative;
    }
    .header_link {
        padding: 10px 0;
        display: block;
    }
    .hover_underline_text {
        font-size: 14px;
    }
    .header_sub_nav {
        opacity: 0;
        visibility: hidden;
        position: absolute;
        top: 100%;
        left: 50%;
        z-index: 1;
        translate: -50% -20px;
        width: max-content;
        padding: 34px 10px 10px;
    }
    .animation_ready .header_sub_nav {
        transition:
            translate 0s,
            opacity 0s,
            visibility 0s;
    }
    .animation_loaded .header_sub_nav {
        transition:
            translate 0.5s,
            opacity 0.5s,
            visibility 0.5s;
    }
    .header_sub_nav_list {
        background-color: var(--color-white);
        border-radius: 16px;
        padding: 32px;
        box-shadow: 0px 0px 10px 0px rgba(10, 8, 10, 0.3);
    }
    .header_sub_nav_list > li + li {
        margin-top: 22px;
    }
    .header_link_listitem_sub:hover .header_link_sub + .header_sub_nav,
    .header_link_listitem_sub:focus-within .header_sub_nav {
        opacity: 1;
        visibility: visible;
        translate: -50% 0px;
    }
    @media (hover: hover) {
        .header_btn_lang_pc:hover {
            color: var(--color-white);
        }
        .header_link_sub::after {
            transition:
                rotate 0.5s,
                translate 0.5s;
        }
        .header_link_sub:hover::after {
            rotate: -45deg;
            translate: 0 4px;
        }
        .header_link {
            position: relative;
        }
        .hover_underline_text {
            padding-bottom: 7px;
            background-image: linear-gradient(var(--color-green), var(--color-green));
            background-repeat: no-repeat;
            background-position: bottom right;
            background-size: 0 3px;
            transition: background-size 0.5s ease;
        }
        .hover_underline_link:hover .hover_underline_text {
            background-position: bottom left;
            background-size: 100% 3px;
        }
    }
    .header_menu_btn,
    .header_btn_lang_mobile_wrap {
        display: none;
    }
    .header_link_sub {
        letter-spacing: 0.025em;
        padding: 10px 20px 10px 0;
        position: relative;
    }
    .header_link_sub::after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        width: 10px;
        height: 10px;
        border-top: 2px solid var(--color-dark-gray);
        border-right: 2px solid var(--color-dark-gray);
        rotate: 135deg;
    }
    .header_btn_wrap {
        column-gap: 12px;
    }
    .header_btn_wrap .btn_black {
        height: 40px;
        min-width: 150px;
        padding-inline: 24px 0;
        font-size: 14px;
    }
    .header_btn_wrap .btn_bg {
        width: 8px;
        height: 8px;
        right: 22px;
    }
    .header_btn_lang_pc {
        border: 1px solid var(--color-gray);
        text-decoration: none;
        color: var(--color-gray);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
@media (max-width: 1149px) {
    :root {
        --header-height: 68px;
    }
    .header_inner {
        align-items: center;
        height: var(--header-height);
        padding-inline: 16px;
    }
    .header_menu_btn {
        width: 36px;
        height: 36px;
        position: relative;
        border-radius: 50%;
        border: 1px solid var(--color-black);
    }
    .header_menu_btn_line {
        display: block;
        --height: 2px;
        width: 14px;
        height: var(--height);
        background: #0e1a71;
        position: absolute;
        top: calc(50% - var(--height) / 2);
        left: 0;
        right: 0;
        margin: auto;
        transition:
            rotate 0.5s,
            translate 0.5s,
            opacity 0.5s;
    }
    .header_menu_btn_line:nth-child(1) {
        translate: 0 -5px;
    }
    .header_menu_btn_line:nth-child(3) {
        translate: 0 5px;
    }
    .header_nav {
        opacity: 0;
        visibility: hidden;
        width: 0;
    }
    .header_menu_btn.is_open .header_menu_btn_line:nth-child(1) {
        rotate: 45deg;
        translate: 0 0;
    }
    .header_menu_btn.is_open .header_menu_btn_line:nth-child(2) {
        opacity: 0;
    }
    .header_menu_btn.is_open .header_menu_btn_line:nth-child(3) {
        rotate: -45deg;
        translate: 0 0;
    }
    .header_nav.is_open {
        opacity: 1;
        visibility: visible;
        position: absolute;
        transition:
            opacity 0.5s ease,
            visibility 0.5s;
        top: var(--header-height);
        left: 0;
        right: 0;
        width: 100%;
        overflow: auto;
        margin: auto;
        height: calc(100dvh - var(--header-height));
        padding-bottom: 15px;
        padding-top: 15px;
    }
    .header_btn_lang_pc {
        display: none;
    }
    .header_btn_lang_mobile_wrap {
        display: block;
    }
    .header_btn_lang_mobile {
        border: 1px solid var(--color-gray);
        color: var(--color-gray);
        margin: 12px auto;
        width: 40px;
        height: 40px;
        font-size: 14px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }
    .header_link_list {
        flex-direction: column;
        width: calc(100% - 32px);
        margin: auto;
        background-color: var(--color-white);
        box-shadow: var(--shadow);
        border-radius: 16px;
    }
    .header_link_list > li + li {
        border-top: 1px solid var(--color-silver-gray);
    }
    .header_link_listitem_sub {
        display: flex;
        align-items: baseline;
        padding: 20px;
    }
    .header_link_sub {
        color: var(--color-black);
        width: 110px;
        text-align: left;
    }
    .header_link {
        color: var(--color-black);
        position: relative;
        padding-left: 10px;
        display: block;
        padding: 16px 20px;
    }
    .header_sub_nav {
        flex: 1;
    }
    .header_sub_nav_list {
        font-size: 14px;
    }
    .header_sub_nav_list a {
        display: block;
        padding: 6px 0 6px 10px;
        position: relative;
        color: var(--color-dark-gray);
    }
    .header_sub_nav_list a::before {
        content: '';
        display: inline-block;
        position: absolute;
        width: 6px;
        height: 6px;
        background-color: var(--color-green);
        border-radius: 50%;
        vertical-align: middle;
    }
    .header_sub_nav_list a::before {
        top: 14px;
        left: 0;
    }
    .header_btn_wrap {
        column-gap: 10px;
    }
    .header_btn_wrap .btn_black {
        height: 36px;
        font-size: 13px;
        line-height: 1.2;
        padding-inline: 20px 36px;
    }
    .header_btn_wrap .btn_bg {
        right: 20px;
    }
}
@media (max-width: 768px) {
    .header_logo {
        width: 122px;
    }
}

/* ---
    footer
--- */
.footer {
    padding-top: var(--header-height);
    margin-top: calc(var(--header-height) * -1);
}
.footer_head {
    display: flex;
    justify-content: space-between;
}
.footer_bottom {
    display: flex;
    justify-content: space-between;
    color: var(--color-gray);
}
.footer_address {
    font-style: normal;
}
.footer_address_inner {
    display: flex;
}
.footer_address_item {
    display: flex;
    font-weight: 400;
}
.footer_address_item_ttl {
    background-color: var(--color-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: -1;
}
.footer_address_item_info {
    position: relative;
    z-index: -1;
}
.footer_address_access {
    display: flex;
}
.footer_address_access > li {
    position: relative;
    background-color: var(--color-gray);
    color: var(--color-white);
    border-radius: 4px;
}
.footer_address_access_link {
    cursor: pointer;
    display: grid;
    place-content: center;
}
@media (min-width: 769px) {
    .footer .inner {
        padding-top: 120px;
        padding-bottom: 20px;
    }
    .footer_logo {
        width: 220px;
    }
    .footer_body {
        margin-top: 120px;
    }
    .footer_address {
        font-size: 14px;
    }
    .footer_address_inner {
        gap: 64px 150px;
        flex-wrap: wrap;
    }
    .footer_address_item {
        column-gap: 16px;
        align-items: center;
        line-height: calc(26 / 14);
        padding-right: 16px;
    }
    .footer_address_item_ttl {
        width: 104px;
        height: 104px;
    }
    .footer_address_access {
        column-gap: 8px;
        margin-top: 10px;
    }
    .footer_address_access_link {
        width: 48px;
        height: 28px;
        transition: opacity 0.3s;
    }
    .footer_bottom {
        margin-top: 75px;
        font-size: 12px;
    }
    @media (max-width: 1100px) {
        .footer_body {
            flex-direction: column-reverse;
        }
    }
}
@media (max-width: 768px) {
    .footer .inner {
        padding-top: 80px;
        padding-bottom: 20px;
    }
    .footer_head {
        flex-direction: column-reverse;
        row-gap: 44px;
    }
    .footer_head .btn_black {
        width: 240px;
        margin: auto;
        height: 60px;
        border-radius: 30px;
    }
    .footer_logo {
        width: 198px;
        display: block;
        margin: auto;
    }
    .footer_link::after {
        rotate: 45deg;
    }
    .footer_address {
        font-size: 13px;
        line-height: calc(41.6 / 26);
        margin-top: 60px;
    }
    .footer_address_inner {
        flex-direction: column;
        row-gap: 24px;
    }
    .footer_address_item {
        column-gap: 13px;
    }
    .footer_address_item_ttl {
        width: 96px;
    }
    .footer_address_item dd {
        flex: 1;
    }
    .footer_address_access {
        column-gap: 12px;
        margin-top: 10px;
        position: relative;
        z-index: 1;
    }
    .footer_address_access_link {
        width: 41px;
        height: 24px;
    }
    .footer_bottom {
        flex-direction: column;
        text-align: center;
        font-size: 10px;
        margin-top: 60px;
        gap: 32px 0;
    }
}

/* アクセスポップアップ */
.popup {
    display: inline;
    text-align: left;
    background-color: var(--color-white);
    box-shadow: var(--shadow);
    border-radius: 16px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
}
.popup:after {
    content: '';
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 17px solid var(--color-black);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
.popup_open {
    animation: popupFadeIn 0.3s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
    opacity: 1;
}
.popup_closing {
    animation: popupFadeOut 0.3s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
    opacity: 1;
}
.popup_ttl {
    color: var(--color-green);
    display: block;
}
.popup_txt {
    display: block;
    line-height: calc(26 / 16);
    color: var(--color-black);
}
@media (min-width: 769px) {
    .popup {
        width: 336px;
        padding: 25px;
        bottom: 45px;
    }
    .popup:after {
        bottom: -17px;
    }
    .popup_txt {
        margin-top: 12px;
    }
}
@media (max-width: 768px) {
    .popup {
        width: 210px;
        padding: 20px 15px;
        bottom: 40px;
    }
    .popup:after {
        bottom: -16px;
    }
    .popup_txt {
        margin-top: 8px;
    }
}
@keyframes popupFadeIn {
    0% {
        transform: translate(-50%, 30%) scale(0.7);
    }
    100% {
        transform: translate(-50%, 0) scale(1);
    }
}

@keyframes popupFadeOut {
    0% {
        transform: translate(-50%, 0) scale(1);
    }
    100% {
        transform: translate(-50%, 60%) scale(0);
    }
}
