@charset "utf-8";

body {
    font-family:
        'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo,
        'ＭＳ Ｐゴシック', sans-serif;
    font-feature-settings: 'palt';
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
}

.font_montserrat {
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    /*
    500:medium
    800:extra-bold
    */
}
.tategaki {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}
img {
    vertical-align: bottom;
}
* {
    letter-spacing: 0.04em;
}
a {
    text-decoration: none;
}

::selection,
::-moz-selection {
    background: #585557;
    color: #fff;
}

/* header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 21;
    width: 100%;
    border-bottom: 1px solid #000;
    background-color: #fff;
}
.hd_logo {
    display: grid;
}
@keyframes navfade {
    0% {
        opacity: 0;
        transform: translateY(-15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}
@media (min-width: 520px) {
    .header {
        min-width: 1160px;
        display: flex;
        justify-content: space-between;
    }
    .hd_logo {
        margin-top: 24px;
        margin-left: 40px;
    }
    .gnav {
        padding-right: 25px;
    }
    .gnav_menu {
        display: flex;
    }
    .menu_parent > a {
        position: relative;
        color: #000;
        display: block;
        font-size: 15px;
        padding: 0 15px;
        height: 72px;
        line-height: 72px;
    }
    .menu_parent.is_current > a {
        font-size: 20px;
        font-weight: 800;
    }
    .menu_child {
        position: absolute;
        left: 0;
        width: 100%;
        background-color: #fff;
        border-top: 1px solid #000;
        border-bottom: 1px solid #000;
        box-shadow: 12px 21px 40px 0px rgba(0, 0, 0, 0.16);
    }
    .menu_child_list {
        border-left: 1px solid #000;
        border-right: 1px solid #000;
        display: flex;
        justify-content: space-between;
    }
    .menu_child_list li {
        width: 100%;
    }
    .menu_child_listitem + .menu_child_listitem {
        border-left: 1px solid #000;
    }
    .menu_child_listitem > a {
        height: 102px;
        display: flex;
        position: relative;
        color: #000;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 24px;
        padding: 0 12px;
    }
    .menu_pkg_img_wrap {
        width: 26px;
    }
    .menu_pkg_img_bleach_wrap {
        max-width: 106px;
        margin-right: -12px;
        width: 40%;
    }
    .menu_pkg_img_makeup_wrap,
    .menu_pkg_img_tonedown_wrap,
    .menu_pkg_img_exchange_wrap {
        width: 37px;
    }
    .menu_pkg_img_1day_wrap {
        width: 19px;
    }
    .menu_pkg_img {
        display: block;
        margin: auto;
        width: 100%;
        height: auto;
        filter: drop-shadow(8px 12px 12px rgba(0, 0, 0, 0.16));
    }
    .menu_item_name_en {
        font-weight: 800;
        font-size: 18px;
        line-height: calc(20 / 18);
    }
    .menu_item_name_jp {
        font-size: 12px;
        font-weight: 700;
        margin-top: 5px;
        line-height: 1.2;
        font-style: italic;
    }
    .menu_item_name_jp_word {
        display: inline-block;
        vertical-align: middle;
    }
    .menu_item_name {
        padding-right: 5px;
    }
    .menu_parent .menu_child {
        display: none;
        opacity: 0;
        transition: 0.3s;
    }
    .menu_parent.is_active .menu_child {
        display: block;
        animation: navfade 0.2s ease-out forwards;
    }
    @media (max-width: 1200px) {
        .menu_child_listitem > a {
            gap: 12px;
        }
        .menu_pkg_img_bleach_wrap {
            margin-right: -4px;
        }
    }
}
@media (max-width: 519px) {
    .header {
        height: 4.8rem;
    }
    .hd_logo {
        margin: 1.5rem auto 0;
        width: 12rem;
    }
    .hd_logo > img {
        width: 100%;
        height: auto;
    }
    .btn_menu {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 6rem;
        height: 4.8rem;
        z-index: 22;
        border: none;
    }
    .btn_menu_line {
        position: absolute;
        left: 1.6rem;
        width: 2.8rem;
        height: 0.2rem;
        background-color: #000;
        transition: all 0.2s ease;
    }
    .btn_menu_line_1 {
        top: 1.5rem;
    }
    .btn_menu_line_2 {
        top: 2.3rem;
    }
    .btn_menu_line_3 {
        top: 3.1rem;
    }
    .btn_menu.is_open .btn_menu_line_1 {
        top: 2.3rem;
        transform: rotate(30deg);
    }
    .btn_menu.is_open .btn_menu_line_2 {
        opacity: 0;
    }
    .btn_menu.is_open .btn_menu_line_3 {
        top: 2.3rem;
        transform: rotate(-30deg);
    }
    .menu {
        /* display: none; */
        background-color: #eee;
        position: fixed;
        top: 4.8rem;
        left: 0;
        width: 100%;
        height: 100%;
        height: calc(100% - 4.8rem);
        z-index: 20;
        transform: translateY(-100%);
        transition: transform 0.4s;
    }
    .menu_scroll_area {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        height: 100%;
        position: relative;
    }
    /* .menu_sp_search_area {
        background-color: #000;
        padding: 0.4rem 1.6rem;
    }

    .search_result {
        display: none;
        opacity: 0;
    }
    .menu_sp_search_input {
        display: block;
        border: none;
        color: #fff;
        font-size: 1.4rem;
        padding: 1rem 1rem 1rem 3.5rem;
        width: 100%;
        background: url(../img/default/icon_search_white.svg) no-repeat 0.3rem center;
        background-size: 1.75rem auto;
        outline: none;
    } */
    .btn_menu.is_open + .menu {
        transform: translateY(0%);
    }
    .menu_inner {
        padding: 2rem 1.6rem;
    }
    .menu_scroll_area::before,
    .menu_scroll_area::after {
        content: '';
        display: block;
        position: fixed;
        top: 0;
        width: 1px;
        background-color: #000;
        height: 100%;
        z-index: 1;
    }
    .menu_scroll_area::before {
        left: 1.6rem;
    }
    .menu_scroll_area::after {
        right: 1.6rem;
    }
    .menu_sp_listitem {
        display: flex;
        flex-wrap: wrap;
    }
    .menu_sp_listitem > a {
        padding: 1.6rem 2rem;
        letter-spacing: 0;
        color: #000;
        display: block;
        border: 1px solid #000;
        background-color: #fff;
        background-image: url(../img/default/icon_arrow_black.svg);
        background-repeat: no-repeat;
        background-size: 0.7rem auto;
    }
    .menu_sp_listitem + .menu_sp_listitem {
        margin-top: 1rem;
    }
    .menu_sp_listitem + .menu_sp_listitem > a {
        border-left: none;
    }
    .menu_sp_full {
        width: 100%;
        font-size: 1.8rem;
        background-position: right 2.4rem center;
    }
    .menu_sp_half {
        width: 50%;
        font-size: 1.6rem;
        background-position: right 1.8rem center;
    }
    .menu_sp_childlist {
        display: flex;
        flex-wrap: wrap;
    }
    .menu_sp_childlistitem {
        width: 50%;
    }
    .menu_sp_childlistitem > a {
        display: flex;
        font-size: 1.6rem;
        line-height: 1.125;
        padding: 0 1.6rem 0 6rem;
        height: 8rem;
        align-items: center;
        border-bottom: 1px solid #000;
        color: #000;
        position: relative;
    }
    .menu_sp_childlistitem:nth-child(odd) > a {
        border-right: 1px solid #000;
    }
    .menu_item_name_en {
        font-weight: 800;
    }
    .menu_pkg_img_wrap {
        position: absolute;
        top: 50%;
        left: 1.5rem;
        transform: translateY(-50%);
        width: 3.4rem;
        text-align: center;
    }
    .menu_pkg_img {
        display: block;
        margin: auto;
        width: 100%;
        height: auto;
        filter: drop-shadow(0.6rem 1.5rem 1.5rem rgba(0, 0, 0, 0.16));
    }
    .menu_pkg_img_mu {
        width: 3.1rem;
    }
    .menu_pkg_img_bu {
        width: 3.1rem;
    }
    .menu_pkg_img_pc {
        width: 2.15rem;
    }
    .menu_pkg_img_td {
        width: 3.1rem;
    }
    .menu_pkg_img_1day {
        width: 1.6rem;
    }
    .menu_pkg_img_exchange {
        width: 3.1rem;
    }
    .menu_pkg_img_me {
        width: 3.4rem;
    }
    .hd_sns {
        display: flex;
        align-items: flex-end;
        border-bottom: 1px solid #000;
    }
    .hd_sns_ttl {
        font-size: 2rem;
        font-weight: 800;
        width: 4.2rem;
        line-height: 4.2rem;
        padding: 2rem 0 3rem;
    }
    .hd_sns_list {
        display: flex;
        width: calc(100% - 4.2rem);
        border-top: 1px solid #000;
        padding-right: 0.4rem;
    }
    .hd_sns_list > li {
        padding-right: 0.8rem;
        width: 33.3%;
    }
    .menu_tw {
        width: 2.8rem;
    }
    .menu_ig {
        width: 2.8rem;
    }
    .menu_yt {
        width: 3.2rem;
    }
    .menu_tt {
        width: 3rem;
    }
    .hd_online {
        display: flex;
        align-items: flex-end;
        border-bottom: 1px solid #000;
    }
    .hd_online_ttl {
        font-size: 1.6rem;
        font-weight: 800;
        line-height: 1.125;
        width: 6.2rem;
        padding: 1.5rem 1.2rem 1rem;
    }
    .hd_online_list {
        display: flex;
        width: calc(100% - 6.2rem);
        border-top: 1px solid #000;
        padding-left: 0.4rem;
    }
    .hd_online_list > li {
        padding-left: 0.8rem;
        width: 50%;
    }
    .hd_sns_list > li > a,
    .hd_online_list > li > a {
        display: flex;
        border-right: 1px solid #000;
        border-left: 1px solid #000;
        background-color: #fff;
        align-items: center;
        height: 6rem;
        justify-content: center;
    }
    .menu_amazon {
        width: 9rem;
    }
    .menu_rakuten {
        width: 10rem;
    }
    .hd_lang {
        text-align: center;
        margin-top: 3rem;
    }
    .hd_langlist {
        font-size: 0;
    }
    .hd_langlist > li {
        display: inline-block;
        vertical-align: middle;
        position: relative;
        width: 33%;
    }
    .hd_langlist > li + li::before {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        left: 0;
        background-color: #000;
        width: 0.1rem;
        height: 1.6rem;
        margin-top: -0.8rem;
        margin-left: -0.05rem;
    }
    .hd_lang a {
        color: #000;
        display: block;
        font-size: 1.2rem;
        height: 4rem;
        line-height: 4rem;
    }
    /* .btn_search_sp {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 12;
        width: 4.8rem;
        height: 4.7rem;
        border: none;
        background: url(../img/default/icon_search.svg) no-repeat right 1.5rem center;
        background-size: 2.3rem auto;
    } */
}

/* local_nav */
.local_nav {
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 15;
    position: relative;
    pointer-events: none;
}
.local_nav.is_fade {
    opacity: 1;
    transition: opacity 0.5s;
    pointer-events: all;
}
.local_nav_list {
    background-color: #fff;
    border: solid 1px #000;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 0;
}
.local_nav_list_link {
    display: block;
    color: #000;
    font-weight: 900;
    font-size: 20px;
}
.local_nav_item_txt {
    font-family: inherit;
    font-weight: 500;
    font-size: 8px;
    text-align: center;
}
.local_nav_list_img_1 {
    margin: 0 auto 2px;
}
@media (min-width: 520px) {
    .local_nav_list {
        flex-direction: column;
        top: 50%;
        transform: translateY(-50%);
    }
    .local_nav_item:not(:last-of-type) {
        border-bottom: solid 1px #000;
    }
    .local_nav_list_link {
        width: 80px;
        height: 60px;
        display: grid;
        place-content: center;
        transition: opacity 0.3s;
    }
    .local_nav_list_img_1 {
        width: 24px;
        height: 18px;
        margin: 0 auto 2px;
    }
    .local_nav_list_img_2 {
        width: 61px;
        height: 16px;
    }
    .local_nav_list_img_3 {
        width: 64px;
        height: 14px;
    }
    @media (hover: hover) {
        .local_nav_list_link:hover {
            opacity: 0.6;
        }
    }
}
@media (max-width: 519px) {
    .local_nav_list {
        left: 0;
        bottom: 0;
    }
    .local_nav_item {
        width: 25%;
        display: grid;
        place-content: center;
    }
    .local_nav_item:not(:last-of-type) {
        border-right: solid 1px #000;
    }
    .local_nav_list_link {
        width: 8rem;
        height: 6rem;
        display: grid;
        place-content: center;
        transition: opacity 0.3s;
    }
    .local_nav_list_img_1 {
        width: 2.9rem;
        height: 2.2rem;
    }
    .local_nav_list_img_2 {
        width: 6.1rem;
        height: 1.7rem;
    }
    .local_nav_list_img_3 {
        width: 7.5rem;
        height: 1.6rem;
    }
}

/* main */
.wrapper {
    overflow: hidden;
}
.main {
    display: block;
}

/* wrap */
.wrap {
    position: relative;
}
.wrap_all {
    background-color: #eee;
    border: 1px solid #000;
}
.wrap::before,
.wrap::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    width: 1px;
    background-color: #000;
    height: 100%;
    z-index: 2;
}
.content {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    background-color: #fff;
}
.inner {
    margin: auto;
}

@media (min-width: 520px) {
    body {
        min-width: 1160px;
    }
    .wrapper {
        padding-top: 72px;
    }
    .wrap {
        margin: auto;
        max-width: 1760px;
        padding-left: 40px;
        padding-right: 40px;
    }
    .wrap::before {
        left: 40px;
    }
    .wrap::after {
        right: 40px;
    }
    .inner {
        width: 1020px;
    }
    .sp_only {
        display: none !important;
    }
    .sheer_link {
        -webkit-transition: opacity 0.3s;
        transition: opacity 0.3s;
    }
    .sheer_link:hover {
        opacity: 0.6;
    }
    .bgleft_link {
        position: relative;
        overflow: hidden;
        transition: color 0.4s 0.2s;
    }
    .bgleft_link::before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        background: #000;
        width: 100%;
        height: 100%;
        transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
        transform: scale(0, 1);
        transform-origin: right top;
    }
    .bgleft_link:hover {
        color: #fff;
    }
    .bgleft_link:hover::before {
        transform-origin: left top;
        transform: scale(1, 1);
    }
    .bgleft_link_in {
        position: relative;
        z-index: 3;
    }
}

@media (max-width: 519px) {
    /* remの設定 */
    html {
        font-size: 10px;
        font-size: 2.66666vw;
    }
    body {
        font-size: 1rem; /*1rem = 10pxとする*/
    }
    .wrapper {
        padding-top: 4.8rem;
    }
    .wrap {
        padding-left: 1.6rem;
        padding-right: 1.6rem;
    }
    .wrap::before {
        left: 1.6rem;
    }
    .wrap::after {
        right: 1.6rem;
    }
    .pc_only {
        display: none !important;
    }
}

/* bnr_jikomancp_wrap */
.bnr_jikomancp_wrap {
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    background-color: #eee;
}
.bnr_jikomancp_inner {
    margin: auto;
    max-width: 1760px;
}
.bnr_jikomancp_inner {
    position: relative;
}
.bnr_jikomancp_inner::before,
.bnr_jikomancp_inner::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    width: 1px;
    background-color: #000;
    height: 100%;
    z-index: 2;
}
.bnr_jikomancp_link {
    display: block;
}
.bnr_jikomancp_img {
    width: 100%;
    height: auto;
}
@media (min-width: 520px) {
    .bnr_jikomancp_inner {
        padding-left: 40px;
        padding-right: 40px;
    }
    .bnr_jikomancp_inner::before {
        left: 40px;
    }
    .bnr_jikomancp_inner::after {
        right: 40px;
    }
}
@media (max-width: 519px) {
    .bnr_jikomancp_inner {
        padding-left: 1.6rem;
        padding-right: 1.6rem;
    }
    .bnr_jikomancp_inner::before {
        left: 1.6rem;
    }
    .bnr_jikomancp_inner::after {
        right: 1.6rem;
    }
}

.safety {
    border-left: 1px solid #000;
    border-right: 1px solid #000;
}
.safety_ttl {
    font-weight: 700;
}
.safety_top {
    border-bottom: 1px dashed #000;
}
.safety_list {
    line-height: 1.33;
}
.safety_listitem {
    padding-left: 1em;
    text-indent: -1em;
}
.safety_patchtest {
    background-color: #e6e6e6;
    color: #000;
    font-weight: 700;
    background-image: url(../img/default/icon_arrow_black.svg);
    background-repeat: no-repeat;
}
.safety_jhcia {
    color: #000;
    display: inline-block;
    text-decoration: underline;
    position: relative;
    background-image: url(../img/default/icon_safety_jhcia.svg);
    background-repeat: no-repeat;
}
@media (min-width: 520px) {
    .safety {
        padding: 20px 0;
    }
    .safety_inner {
        max-width: 1080px;
        margin: auto;
    }
    .safety_ttl {
        font-size: 16px;
    }
    .safety_top {
        margin-top: 5px;
        padding-bottom: 15px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    .safety_list {
        font-size: 12px;
    }
    .safety_patchtest {
        font-size: 14px;
        padding: 13px 40px 13px 16px;
        border-radius: 8px;
        background-position: right 16px center;
        background-size: 10px auto;
    }
    .safety_jhcia {
        margin-top: 15px;
        font-size: 12px;
        padding-left: 22px;
        background-size: 14px auto;
        background-position: left top;
    }
}
@media (max-width: 519px) {
    .safety {
        padding: 1.2rem 0 1.5rem;
    }
    .safety_inner {
        padding: 0 1.6rem;
    }
    .safety_ttl {
        font-size: 1.2rem;
    }
    .safety_top {
        margin-top: 0.4rem;
        padding-bottom: 0.8rem;
    }
    .safety_list {
        font-size: 0.9rem;
    }
    .safety_patchtest {
        display: block;
        padding: 0.7rem;
        border-radius: 0.4rem;
        margin-top: 0.8rem;
        background-position: right 1.3rem center;
        background-size: 0.7rem auto;
    }
    .safety_jhcia {
        margin-top: 0.4rem;
        font-size: 0.9rem;
        background-size: 1.1rem auto;
        padding-left: 1.6rem;
        background-position: left 0.3rem;
    }
}
/* footer */
.ft_lang {
    background-color: #000;
    text-align: center;
    position: relative;
    z-index: 2;
}
.ft_langlist {
    font-size: 0;
}
.ft_langlist > li {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}
.ft_langlist > li + li::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    background-color: #8c8c8c;
}
.ft_lang a {
    color: #aaaaaa;
    display: block;
}
.ft_bottom {
    position: relative;
    z-index: 2;
    background-color: #fff;
}
.ft_link_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ft_link_list > li {
    vertical-align: middle;
    display: inline-block;
    line-height: 1;
}
.ft_link_list a {
    color: #000;
    display: block;
}
.ft_notes_list > li {
    padding-left: 1em;
    text-indent: -1em;
}
.ft_patchtest {
    color: #000;
    text-decoration: underline;
}
@media (min-width: 520px) {
    .ft_langlist > li {
        width: 360px;
    }
    .ft_langlist > li + li::before {
        width: 1px;
        height: 32px;
        margin-top: -16px;
        margin-left: -1px;
    }
    .ft_lang a {
        font-size: 20px;
        height: 80px;
        line-height: 80px;
        -webkit-transition: color 0.4s;
        transition: color 0.4s;
    }
    .ft_lang a:hover {
        color: #fff;
    }
    .ft_bottom {
        padding: 40px 30px;
    }
    .ft_link_list {
        margin-top: 23px;
    }
    .ft_link_list a {
        font-size: 14px;
    }
    .ft_link_list > li + li {
        padding-left: 15px;
        margin-left: 10px;
        border-left: 1px solid #000;
    }
    .ft_notes_list {
        font-size: 12px;
        line-height: 1.33;
        margin-top: 22px;
    }
    .ft_patchtest {
        font-size: 12px;
        margin-top: 21px;
        display: inline-block;
    }
    .ft_copyright {
        position: absolute;
        bottom: 40px;
        right: 30px;
        font-size: 12px;
    }
}
@media (max-width: 519px) {
    .ft_langlist > li {
        width: 33%;
    }
    .ft_langlist > li + li::before {
        width: 0.1rem;
        height: 2.4rem;
        margin-top: -1.2rem;
        margin-left: -0.05rem;
    }
    .ft_lang a {
        font-size: 1.4rem;
        height: 6rem;
        line-height: 6rem;
    }
    .ft_bottom {
        padding: 3rem 1.6rem 8.5rem;
    }
    .ft_hoyu_logo {
        width: 7.4rem;
        flex-shrink: 0;
    }
    .ft_hoyu_logo > img {
        width: 100%;
        height: auto;
    }
    .ft_link_wrap {
        align-items: start;
    }
    .ft_link_list {
        overflow: hidden;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem 0;
    }
    .ft_link_list a {
        font-size: 1.4rem;
    }
    .ft_link_list > li {
        padding-left: 1rem;
        padding-right: 1rem;
        margin-left: -1px;
        border-left: 1px solid #000;
    }
    .ft_notes_list {
        font-size: 1.2rem;
        line-height: 1.44;
        margin-top: 2.9rem;
    }
    .ft_patchtest {
        font-size: 1.1rem;
        margin-top: 1.8rem;
        display: block;
        line-height: 1.6;
    }
    .ft_copyright {
        font-size: 1.2rem;
        margin-top: 2.5rem;
        display: block;
        text-align: center;
    }
}

/* mv_black */
.mv_black_wrap {
    overflow: hidden;
    background-color: #000;
    position: relative;
}
.mv_black {
    width: 100%;
    position: relative;
}
.mv_black_wrap::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 0;
}
.mv_black_bg {
    display: block;
    position: absolute;
    background-color: #282828;
    top: 100%;
    transform-origin: top left;
}
.mv_black_content {
    width: 100%;
    height: 100%;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    position: relative;
    z-index: 1;
}
.mv_black_inner {
    position: relative;
    height: 100%;
    z-index: 1;
}
.mv_black_ttl_wrap {
    position: absolute;
    color: #fff;
}
.mv_black_ttl_sub {
    line-height: 1;
    font-weight: 700;
}
.mv_black_ttl {
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0;
    z-index: 1;
    position: relative;
}
@media (min-width: 520px) {
    .mv_black {
        padding: 0 41px;
        height: 184px;
        max-width: 1760px;
        margin: auto;
    }
    .mv_black_wrap::after {
        bottom: 24px;
    }
    .mv_black_bg {
        transform: rotate(-19deg);
        left: 50%;
        width: 2500px;
        height: 1000px;
    }
    .mv_black_inner {
        max-width: 1360px;
        margin: 0 auto;
    }
    .mv_black_ttl_wrap {
        left: 50%;
        bottom: 16px;
        margin-left: -510px;
    }
    .mv_black_ttl_sub {
        font-size: 20px;
    }
    .mv_black_ttl {
        font-size: 64px;
        margin-top: 15px;
    }
    .mv_black_ttl_small {
        font-size: 40px;
        padding: 0 10px;
    }
    .mv_black_item_wrap {
        position: absolute;
        right: 50%;
        bottom: 16px;
        margin-right: -510px;
    }
    .mv_black_item_list {
        display: flex;
        align-items: flex-end;
    }
    .mv_black_item_list li + li {
        margin-left: 16px;
    }
}
@media (max-width: 519px) {
    .mv_black {
        padding: 0 1.6rem;
        height: 10.4rem;
    }
    .mv_black_wrap::after {
        bottom: 1.6rem;
    }
    .mv_black_bg {
        transform: rotate(-19deg);
        left: 0;
        width: 200%;
        height: 200%;
    }
    .mv_black_inner {
        width: 100%;
    }
    .mv_black_ttl_wrap {
        left: 0;
        bottom: 1.2rem;
    }
    .mv_black_ttl_sub {
        font-size: 1.4rem;
    }
    .mv_black_ttl {
        font-size: 3.6rem;
        margin-top: 0.8rem;
    }
    .mv_black_ttl_small {
        font-size: 2.4rem;
        padding: 0 0.6rem;
    }
}
