a,
button {
    transition: opacity 0.3s ease;
    text-decoration: none;
}

a:hover,
button:hover {
    opacity: 0.7;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans JP', sans-serif;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    transition: all 0.4s ease;
}

.header_inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 0 40px;
    box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    padding: 8px;
}

.header.scrolled .header_inner {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 100px;
    padding: 0 24px;
}

.header_list {
    display: flex;
    gap: 16px;
    position: relative;
}

.header_list_link {
    position: relative;
    font-size: 14px;
    padding: 10px 16px;
    color: #161717;
    border-radius: 99px;
    transition: all 0.3s ease;
    z-index: 1;
    text-decoration: none;
    display: block;
}

.header_list_text {
    position: relative;
    z-index: 1;
}

.header_list_link:not(.active):hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.1);
}

.header_list_link.active:hover {
    opacity: 1;
    color: #fff;
}

.header_contact,
.header_contact_sp {
    background: #20BF61;
    border-radius: 999px;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 10px 26px;
    font-weight: bold;
    gap: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.header_active_bar {
    position: absolute;
    width: 54px;
    height: 4px;
    border-radius: 100px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg,
            rgba(0, 102, 255, 1) 0%,
            rgba(0, 187, 255, 1) 100%);
    transition: 0.3s ease;
    z-index: 0;
}

.header_list_link:hover .header_active_bar {
    width: 100%;
    height: 100%;
}

.header_menu {
    appearance: none;
    background: transparent;
    outline: none;
    border: none;
    display: none;
    cursor: pointer;
}

.header_menu_wrapper {
    position: fixed;
    top: 80px;
    right: 0;
    width: 100%;
    height: calc(100dvh - 80px);
    z-index: 40;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    display: none;
}

.header_menu_overlay {
    position: absolute;
    height: 100%;
    width: calc(100% - 280px);
    left: 0;
    top: 0;
    transition: all 0.4s ease;
}

.header_menu_content {
    position: absolute;
    right: 0;
    top: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 280px;
    height: 100%;
    padding: 16px 16px 32px 16px;
}

.header_menu_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
    list-style: none;
}

.header_menu_item {
    display: block;
    height: 56px;
}

.header_menu_link {
    display: block;
    width: 100%;
    border-radius: 8px;
    padding: 20px 12px;
    background: #f2f4f5;
    color: #303437;
    font-size: 16px;
    line-height: 1em;
    text-decoration: none;
    transition: background 0.3s ease;
}

.header_menu_link:hover {
    opacity: 0.8;
}

@media screen and (max-width: 768px) {
    .header_logo {
        width: 71px;
    }

    .header {
        height: 56px;
    }

    .header_list,
    .header_contact {
        display: none;
    }

    .header_contact_sp {
        width: fit-content;
    }

    .header_menu {
        display: block;
    }

    .header_menu_wrapper {
        top: 56px;
        height: calc(100dvh - 56px);
    }
}

@media screen and (max-width: 1024px) {
    .header_contact_text {
        display: none;
    }

    .header_inner {
        padding: 0 24px;
    }

    .scrolled {
        padding: 4px;
    }
}

@media screen and (min-width: 1280px) {
    .header {
        height: 80px;
    }
}

.header-menu-open {
    display: block !important;
    animation: menuOpen 0.4s forwards;
}

.header-menu-close {
    animation: menuClose 0.4s forwards;
}

@keyframes menuOpen {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

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

@keyframes menuClose {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

.is-locked {
    overflow: hidden;
    touch-action: none;
}

.noDisplay {
    display: none;
}

@media screen and (max-width: 699px) {
    .xsNoDisplay {
        display: none !important;
    }
}

@media screen and (min-width: 700px) {
    .lgNoDisplay {
        display: none !important;
    }
}

.small {
    font-size: small;
}

.xSmall {
    font-size: x-small;
}

.footer {
    padding: 3rem 0;
}

@media screen and (max-width: 699px) {
    .footer {
        padding: 2rem 40px 5rem;
    }
}

.footerContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 50%;
    margin: 0 auto;
}

@media screen and (max-width: 699px) {
    .footerContainer {
        width: 100%;
    }
}

.footerContainerContent {
    width: 33%;
}

@media screen and (max-width: 699px) {
    .footerContainerContent {
        margin: 0.5rem auto 3rem;
        width: 50%;
    }

    .footerContainerContent img {
        width: 35vw;
    }
}

.footerContainer a {
    color: #fff;
    font-size: 14px;
    font-size: 1.1666666667rem;
    width: 12vw;
}

.footerContainer img {
    width: 12vw;
}

.footerContainer .border-left {
    border-left: 1px solid #fff;
}

@media screen and (min-width: 700px) {
    .footer .dis-sp {
        display: none;
    }
}

@media screen and (max-width: 699px) {

    .footer .dis-pc {
        display: none;
    }
}

.footer .copyright {
    font-size: 10px;
    font-size: 0.8333333333rem;
}

@media screen and (max-width: 699px) {
    .footer .copyright {
        padding-top: 0;
        padding-bottom: 8rem;
    }
}

.footer {
    background: #fff;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 48px;
}

.footer_content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.footer_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 16px;
}

.footer_list_link {
    color: #000000;
    font-size: 12px;
}

.footer_sign::before {
    content: '|';
}

.footer_sign {
    display: flex;
    font-size: 12px;
    gap: 16px;
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 20px 24px;
        flex-direction: column;
        gap: 16px;
    }

    .footer_logo {
        width: 112px;
    }

    .footer_list {
        width: 100%;
        justify-content: center;
    }

    .footer_list_item {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .footer_list_item:not(:last-child)::after {
        content: '|';
        line-height: 1em;
    }

    .footer_sign {
        display: block;
        border-top: 1px solid #fff;
        width: 100%;
        text-align: center;
        padding: 20px 0 0 0;
        margin: 24px 0 0 0;
    }

    .footer_sign::before {
        content: '';
    }
}

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

article,
aside,
footer,
header,
nav,
section {
    display: block;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

figcaption,
figure,
main {
    display: block;
}

figure {
    margin: 1em 40px;
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: inherit;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

dfn {
    font-style: italic;
}

mark {
    background-color: #ff0;
    color: #000;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

audio,
video {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

img {
    border-style: none;
}

svg:not(:root) {
    overflow: hidden;
}

button,
input,
optgroup,
select,
textarea {
    font-family: sans-serif;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html [type='button'],
[type='reset'],
[type='submit'] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    display: inline-block;
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type='checkbox'],
[type='radio'] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}

[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
    height: auto;
}

[type='search'] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type='search']::-webkit-search-cancel-button,
[type='search']::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details,
menu {
    display: block;
}

summary {
    display: list-item;
}

canvas {
    display: inline-block;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}