@media (min-width: 1441px) {
    html {
        font-size: 100px;
    }
}
@media (max-width: 1440px) and (min-width: 768px) {
    html {
        font-size: 6.944444444444444vw; /*1440px:100vw=100px:x -> x = 6.944444444444444vw */
    }
}
@media (max-width: 767px) {
    html {
        font-size: 10px;
        font-size: 2.66666vw;
    }
}

/* サイズ変更時のアニメーションを制限 */
body.is_stop_animation *,
body.is_stop_animation *::before,
body.is_stop_animation *::after {
    transition: none !important;
}

/* 設定 */
body {
    font-size: 0.14rem;
    line-height: 1.4;
    font-family: "メイリオ", sans-serif;
    background: #d10020;
}
.font_kolker_brush {
    font-family: 'Kolker Brush', cursive;
}
.font_oswald {
    font-family: 'Oswald', sans-serif;
}

@media (min-width: 768px) {
    .sp_only {
        display: none !important;
    }
}
@media (max-width: 767px) {
    .pc_only {
        display: none !important;
    }
}

/* header */
.header {
    display: block;
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
    background: #7f5fa0;
}
.header_inner {
    display: flex;
    justify-content: space-between;
}
.header_others {
    display: flex;
}
.header_others_list > li a {
    color: #fff;
    text-decoration: none;
}
@media (min-width: 768px) {
    .header {
        height: 1rem;
        overflow: hidden;
    }
    .header_inner {
        margin: 0.27rem 0.3rem 0.21rem;
    }
    .header_others_inner {
        display: flex;
    }
    .header_logo_img {
        width: 1.8rem;
    }
    .header_others {
        align-items: center;
    }
    .header_others_icon {
        width: 0.48rem;
    }
    .header_others_list {
        display: flex;
        align-items: center;
    }
    .header_others_list > li + li {
        margin-left: 0.3rem;
    }
    .header_others_list > li {
        margin-top: -0.08rem;
        font-size: 0.16rem;
        font-weight: 700;
    }
    .header_others_list + .header_others_icon_list {
        margin-left: 0.4rem;
    }
    .header_others_icon_list {
        display: flex;
    }
    .header_others_icon_list > li + li {
        margin-left: 0.16rem;
    }
}
@media (max-width: 767px) {
    .header {
        height: 5rem;
    }
    .header_inner {
        margin: 1.3rem 1.6rem 1.2rem;
    }
    .menu_sp_overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 20;
        opacity: 0;
        pointer-events: none;
        transition: 0.4s;
    }
    .is_sp_menu_open .menu_sp_overlay {
        opacity: 1;
        pointer-events: all;
    }
    .header_sp_menu_btn {
        position: relative;
        z-index: 30;
        display: block;
        width: 2.5rem;
        height: 2.5rem;
        left: 0.4rem;
        border: none;
        padding: 0;
    }
    .header_sp_menu_btn_line {
        position: absolute;
        left: 0;
        width: 100%;
        border-top: 1px solid #fff;
    }
    .header_sp_menu_btn_line:nth-child(1) {
        top: 0.4rem;
        transition: top 0.2s 0.2s, transform 0.2s 0s;
    }
    .header_sp_menu_btn_line:nth-child(2) {
        top: 1.1rem;
        transition: transform 0.4s 0s;
    }
    .header_sp_menu_btn_line:nth-child(3) {
        top: 1.8rem;
        transition: top 0.2s 0.2s, transform 0.2s 0s;
    }
    .is_sp_menu_open .header_sp_menu_btn_line:nth-child(1) {
        top: 1.1rem;
        transform: rotate(45deg);
        transition: top 0.2s 0s, transform 0.2s 0.2s;
    }
    .is_sp_menu_open .header_sp_menu_btn_line:nth-child(2) {
        transform: scaleX(0);
    }
    .is_sp_menu_open .header_sp_menu_btn_line:nth-child(3) {
        top: 1.1rem;
        transform: rotate(-45deg);
        transition: top 0.2s 0s, transform 0.2s 0.2s;
    }
    .header_others {
        position: fixed;
        z-index: 5;
        width: 18.7rem;
        top: 0;
        right: 0;
        height: 100%;
        background: #7f5fa0;
        align-items: center;
        transform: translate(100%);
        transition: transform 0.4s;
        overflow: auto;
        display: block;
    }
    .is_sp_menu_open .header_others {
        transform: translate(0%);
    }
    .header_others::before {
        content: '';
        display: inline-block;
        vertical-align: middle;
        height: 100%;
        margin-left: 4rem;
    }
    .header_others_inner {
        display: inline-block;
        vertical-align: middle;
        padding: 4rem 0;
    }
    .header_logo_img {
        width: 8.8rem;
    }
    .header_others_icon {
        width: 4.8rem;
    }
    .header_others_list > li + li {
        margin-top: 4.2rem;
    }
    .header_others_list > li {
        font-size: 1.6rem;
        font-weight: 400;
    }
    .header_others_list + .header_others_icon_list {
        margin-top: 5rem;
    }
    .header_others_icon_list > li + li {
        margin-top: 1.4rem;
    }
}

/* main */
.main {
    display: block;
    background: #fff;
}
@media (min-width: 768px) {
    .main {
        padding-top: 1rem;
    }
}
@media (max-width: 767px) {
    .main {
        padding-top: 5rem;
    }
}

/* footer */
.footer {
    background: #fff;
}
.footer_bnr_list {
    display: flex;
    justify-content: center;
}
.footer_bnr_list > li a,
.footer_bnr_list > li a img {
    display: block;
}
.footer_box_links_list {
    display: flex;
}
.footer_box_links_list > li a {
    color: #333;
    text-decoration: none;
}
.footer_ribbon {
    position: relative;
    background: #7f5fa0;
    color: #fff;
    text-align: center;
}
.footer_pagetop_btn {
    display: flex;
    height: 100%;
    border-left: 1px solid #fff;
    position: absolute;
    top: 0;
    right: 0;
    justify-content: center;
    align-items: center;
}
.footer_pagetop_btn_arrow {
    display: block;
    transform: rotate(-45deg);
}
@media (min-width: 768px) {
    .footer {
        padding-top: 1.26rem;
    }
    .footer_logo {
        width: 3.22rem;
    }
    .footer_bnr_list > li {
        margin: 0 0.5rem;
    }
    .footer_box {
        width: 10.8rem;
        margin: 0 auto 0;
        display: flex;
        justify-content: space-between;
    }
    .footer_bnr_list + .footer_box {
        margin-top: 0.84rem;
    }
    .footer_box_links {
        display: flex;
        align-items: center;
    }
    .footer_box_sns .footer_box_links_list > li + li {
        margin-left: 0.2rem;
    }
    .footer_box_links_list > li + li {
        margin-left: 0.4rem;
    }
    .footer_box_links_list > li a::after {
        content: '';
        width: 0.15rem;
        height: 0.15rem;
        background: url(../images/common/icon_link.svg) no-repeat 50% 50% / contain;
        display: inline-block;
        margin-left: 0.14rem;
    }
    .footer_box_links_list > li a {
        font-size: 0.16rem;
    }
    .footer_ribbon {
        padding: 0.28rem 0;
        margin-top: 0.34rem;
        font-size: 0.16rem;
    }
    .footer_pagetop_btn {
        width: 0.8rem;
    }
    .footer_pagetop_btn_arrow {
        width: 0.12rem;
        height: 0.12rem;
        margin-top: 0.1rem;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
    }
}
@media (max-width: 767px) {
    .footer {
        padding-top: 7.9rem;
    }
    .footer_logo {
        width: 16rem;
    }
    .footer_bnr_list > li {
        margin: 0 1rem;
    }
    .footer_box {
        margin: 0 auto;
    }
    .footer_bnr_list + .footer_box {
        margin-top: 2.4rem;
    }
    .footer_box_links {
        margin-top: 2.1rem;
    }
    .footer_box_links_list {
        display: flex;
        justify-content: center;
    }
    .footer_box_links_list > li + li {
        margin-left: 2.1rem;
    }
    .footer_box_links_list > li a::after {
        content: '';
        width: 0.8rem;
        height: 0.8em;
        background: url(../images/common/icon_link.svg) no-repeat 50% 50% / contain;
        display: inline-block;
        margin-left: 0.6rem;
    }
    .footer_box_links_list > li a {
        font-size: 1rem;
    }
    .footer_ribbon {
        padding: 1.3rem 0;
        margin-top: 2.1rem;
        font-size: 1rem;
        padding-right: 3.2rem;
    }
    .footer_pagetop_btn {
        width: 4.1rem;
    }
    .footer_pagetop_btn_arrow {
        width: 0.7rem;
        height: 0.7rem;
        margin-top: 0.7rem;
        border-top: 1px solid #fff;
        border-right: 1px solid #fff;
    }
}

/* hover */
@media (min-width: 768px) {
    a[href] {
        transition: opacity 0.4s;
    }
    a[href]:not(.anim_no_hover):hover {
        opacity: 0.7;
    }
}
a[target=_blank]:after {
    content: "";
    display: inline-block;
    transition: all .2s;
    background: url(../images/common/icon_blank.svg) no-repeat right center;background-size: 1em 1em;
    width: 1.5em;
    height: 1em;
    vertical-align: middle;
}
