@charset "utf-8";

:root {
    --color-white: #fff;
    --color-bg-purple: #eae9f6;
    --color-body: #080434;
    --color-primary: #1c0be1;
    --color-secondary: #39365d;
    --color-border: #ddd;
    --color-tertiary: #b4b1d9;
    --header-height: 120px;
}

@media (max-width: 767px) {
    :root {
        --header-height: 72px;
    }
}

body {
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    font-weight: 400;
    background-color: var(--color-white);
    color: var(--color-body);
}
.font_almarai {
    font-family: 'Almarai', 'Helvetica Neue', Arial, sans-serif;
}
.font_noto {
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
}

a {
    color: inherit;
}

.fw_300 {
    font-weight: 300;
}
.fw_400 {
    font-weight: 400;
}
.fw_500 {
    font-weight: 500;
}
.fw_600 {
    font-weight: 600;
}
.fw_700 {
    font-weight: 700;
}
img {
    max-width: 100%;
    vertical-align: bottom;
    height: auto;
}

html,
body {
    /* height: 100svh;*/
    /* min-height: 600px; */
}

/* header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    width: 100%;
    z-index: 11;
    height: var(--header-height);
    pointer-events: none;
}
.header_logo {
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1;
    letter-spacing: 0.08em;
    pointer-events: all;
}
.menu_btn {
    position: relative;
    z-index: 10;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border: none;
    pointer-events: all;
}
.menu_btn_line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    width: 26px;
    height: 2px;
    background-color: var(--color-primary);
    display: block;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.menu_btn_line:nth-child(1) {
    transform: translateY(-10px) rotate(0deg);
}
.menu_btn_line:nth-child(2) {
    transform: translateY(0px) rotate(0deg);
}
.menu_btn_line:nth-child(3) {
    transform: translateY(10px) rotate(0deg);
}
.menu_btn.menu-active .menu_btn_line:nth-child(1) {
    transform: translateY(-2px) rotate(45deg);
}
.menu_btn.menu-active .menu_btn_line:nth-child(2) {
    opacity: 0;
}
.menu_btn.menu-active .menu_btn_line:nth-child(3) {
    transform: translateY(-2px) rotate(-45deg);
}
.menu_listitem + .menu_listitem {
    margin-top: 12px;
}
.menu {
    position: absolute;
    z-index: 9;
    visibility: hidden;
    transition: opacity 0.4s, right 0.4s, visibility 0.4s;
    padding: 24px;
    border-radius: 20px;
    opacity: 0;
    background-color: var(--color-white);
    box-shadow: 0 0 16px 0px rgb(0 0 0 / 20%);
    pointer-events: all;
}
.menu_scroll {
    overflow-y: auto;
    max-height: calc(100vh - 96px);
}
.menu_ttl {
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 0.04em;
    line-height: calc(24 / 20);
}
.menu_list {
    margin-top: 24px;
}
.menu_link {
    padding: 10px 20px;
    border-radius: 30px;
    gap: 0 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border: 1px solid var(--color-body);
    text-decoration: none;
    background: url(../img/default/menu_arrow.svg) no-repeat right 20px center;
    background-size: 17px auto;
}
.menu.menu-active {
    opacity: 1;
    visibility: visible;
}
.menu_link_en {
    font-size: 20px;
}
.menu_link_ja {
    font-size: 14px;
}

@media (min-width: 767.01px) {
    .header {
        padding: 0 42px 0 56px;
    }
    .header_logo {
        font-size: 32px;
    }
    .menu {
        top: 25px;
        right: -100px;
        width: 402px;
    }
    .menu.menu-active {
        right: 36px;
    }
    @media (hover: hover) {
        .menu_link {
            transition: color 0.3s, background 0.3s;
        }
        .menu_link:hover {
            background-color: var(--color-bg-purple);
        }
        .hover_opacity {
            transition: opacity 0.3s;
        }
        .hover_opacity:hover {
            opacity: 0.8;
        }
    }
}

@media (max-width: 767px) {
    .header {
        padding: 0 10px 0 20px;
    }
    .header_logo {
        font-size: 24px;
    }
    .menu {
        top: 0;
        right: -100px;
        width: 402px;
    }
    .menu.menu-active {
        right: 0;
    }
    .menu_sp {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-top: 24px;
    }
    .menu_sp_copy {
        font-size: 12px;
    }
    @media (max-width: 576px) {
        .menu {
            width: 100%;
        }
    }
}

/* aside */
.aside {
    position: fixed;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    top: 0;
    left: 0;
}
.aside_nav_listitem + .aside_nav_listitem {
    margin-top: 24px;
}
.aside_nav_link {
    font-size: 32px;
    letter-spacing: -0.02em;
}
.is_current .aside_nav_link {
    color: var(--color-primary);
}

.wrapper {
    padding-top: var(--header-height);
}
.aside_bottom_contact {
    background-color: var(--color-body);
    color: var(--color-white);
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    padding: 8px 16px;
    margin-top: 20px;
    font-size: 16px;
    letter-spacing: 0.04em;
}
.tags_search_area {
    position: relative;
}
.tag {
    background-color: var(--color-white);
    border: 1px solid var(--color-primary);
    padding: 3px 8px;
    font-size: 12px;
    line-height: 1.5;
    display: inline-flex;
    align-items: center;
    border-radius: 24px;
    letter-spacing: 0.04em;
    cursor: pointer;
}
.tag.selected {
    background-color: var(--color-primary);
    color: var(--color-white);
}
.tags_search {
    border: 1px solid var(--color-primary);
    padding: 0 8px;
    border-radius: 50px;
    height: 40px;
    display: flex;
    flex-wrap: nowrap;
}
.tags_search_scroll {
    display: flex;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    flex-grow: 1;
    min-width: 0;
    gap: 0 8px;
}
.tags_search_scroll::-webkit-scrollbar {
    height: 4px;
}
.tags_search_scroll::-webkit-scrollbar-track {
    background-color: var(--color-bg-purple);
}
.tags_search_scroll::-webkit-scrollbar-thumb {
    background-color: var(--color-primary);
    border-radius: 4px;
}
.tags_search_wrap {
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 0 8px;
}
.tags_search_wrap .js_tag {
    padding-right: 32px;
    background-image: url(../img/default/icon_close.svg);
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 10px auto;
}
.tags_search_input {
    border: none;
    width: 100%;
    height: 100%;
    min-width: 80px;
}
.tags_search_icon {
    border: none;
    min-width: 40px;
    background: url(../img/default/icon_search.svg) no-repeat right 8px center;
    background-size: 14px auto;
}
.taglist_group {
    display: none;
    width: 100%;
    position: absolute;
    top: calc(8px + 100%);
    left: 0;
    z-index: 5;
}
.taglist_group_inner {
    padding: 16px;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 6px;
    background-color: var(--color-bg-purple);
}

@media (min-width: 767.01px) {
    .aside {
        min-height: 550px;
        padding-top: var(--header-height);
        padding-left: 56px;
        padding-bottom: 42px;
        gap: 40px 0;
        width: calc(144px + 56px);
        left: 0;
    }
    .aside_nav {
        display: flex;
        flex-direction: column;
        gap: 40px 0;
        height: 100%;
        height: calc(100% - 32px - 40px - 66px - 40px);
    }
    .tags_search_area {
        margin-bottom: 36px;
    }
    .sp_only {
        display: none !important;
    }
    @media (hover: hover) {
        .tag {
            transition: background 0.3s;
        }
        .tag.selected:hover {
            background-color: var(--color-primary);
        }
        .tag:hover {
            background-color: var(--color-bg-purple);
        }
    }
}

@media (max-width: 767px) {
    .pc_only {
        display: none !important;
    }
    .aside {
        display: none;
    }
    .tags_search_area {
        margin-bottom: 28px;
    }
}

/* footer */
.ft_inner {
    display: inline-block;
    margin-left: auto;
    margin-right: 0;
    text-align: left;
}

.ft_nav_list {
    display: flex;
    letter-spacing: -0.02em;
    font-size: 14px;
}
.ft_sub_list {
    display: flex;
    letter-spacing: -0.02em;
}
.ft_bottom {
    display: flex;
    justify-content: space-between;
    line-height: calc(14 / 12);
    font-size: 12px;
}
.ft_copy {
    letter-spacing: 0.01em;
}
@media (min-width: 767.01px) {
    .footer {
        padding-left: calc(144px + 120px);
        margin-top: 80px;
        text-align: right;
    }
    .ft_inner {
        background-color: #f3f3f3;
        padding: 24px 28px;
        border-radius: 12px;
    }
    .ft_nav_list {
        gap: 12px 32px;
        flex-wrap: wrap;
    }
    .ft_bottom {
        align-items: flex-end;
        margin-top: 22px;
    }
    .ft_sub_list {
        flex-wrap: wrap;
        gap: 6px 20px;
        width: calc(100% - 217px);
        justify-content: flex-end;
    }
    .ft_copy {
        width: 217px;
        padding-right: 32px;
    }
    @media (max-width: 900px) {
        .ft_sub_list {
            justify-content: flex-start;
        }
    }
}
@media (max-width: 767px) {
    .footer {
        background-color: #f3f3f3;
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-top: 40px;
        padding: 24px 20px;
        text-align: left;
        border-radius: 12px 12px 0 0;
    }
    .ft_nav_list {
        flex-direction: column;
        gap: 12px 0;
    }
    .ft_bottom {
        flex-direction: column-reverse;
        margin-top: 20px;
        align-items: flex-start;
    }
    .ft_sub_list {
        flex-direction: column;
        gap: 12px 0;
        width: auto;
    }
    .ft_copy {
        margin-top: 32px;
    }
}

/* btn_concept_sheet */
.concept_sheet {
    text-align: center;
}
.btn_concept_sheet {
    background-color: var(--color-primary);
    color: var(--color-white);
    display: block;
    text-decoration: none;
    width: 100%;
    text-align: left;
    border-radius: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.btn_concept_ttl {
    font-size: 24px;
}
.btn_concept_txt {
    font-size: 14px;
    line-height: calc(20 / 14);
    letter-spacing: -0.02em;
    margin-top: 16px;
}
.btn_concept_icon {
    border-radius: 50%;
    margin-left: auto;
    background: #fff url(../img/default/icon_download.svg) no-repeat center center;
}
@media (min-width: 767.01px) {
    .concept_sheet {
        margin-top: 80px;
        padding: 0 30px;
    }
    .btn_concept_sheet {
        padding: 24px 40px;
        gap: 20px;
    }
    .btn_concept_txt_wrap {
        width: 334px;
        margin-right: 36px;
    }
    .btn_concept_icon {
        width: 52px;
        height: 52px;
    }
    @media (max-width: 1200px) {
        .btn_concept_txt_wrap {
            width: 100%;
            margin-right: 0;
        }
    }
}
@media (max-width: 767px) {
    .concept_sheet {
        margin-top: 40px;
    }
    .btn_concept_sheet {
        padding: 24px 20px;
    }
    .btn_concept_txt_wrap {
        margin-bottom: 16px;
    }
    .btn_concept_img {
        width: 236px;
    }
    .btn_concept_icon {
        width: 40px;
        height: 40px;
    }
}
