@charset "utf-8";

/* 文字設定 */
html,
body {
    font-family: 'Noto Sans JP', sans-serif;
    font-feature-settings: 'palt';
}

/* remの設定 */
@media (min-width: 1441px) {
    html {
        font-size: 100px;
    }
    body {
        font-size: 0.14rem;
        line-height: 1.4;
    }
}
@media (max-width: 1440px) and (min-width: 751px) {
    html {
        font-size: 6.94444vw; /*1440:100vw=100px:x -> x = 6.94444vw */
    }
    body {
        font-size: 0.14rem;
        line-height: 1.4;
    }
}
@media (max-width: 750px) {
    html {
        font-size: 10px;
        font-size: 2.66666vw;
    }
    body {
        font-size: 1.4rem;
        line-height: 1.4;
    }
}

/* 切り替え */
@media (min-width: 751px) {
    .sp_only {
        display: none !important;
    }
    .pc_only {
        display: inherit;
    }
    .pc_only.block {
        display: block;
    }
    .pc_only.inline_block {
        display: inline-block;
    }
    .pc_only.inline {
        display: inline;
    }
    .pc_only.table {
        display: table;
    }
    .pc_only.table_cell {
        display: table-cell;
    }
    .pc_only.flex {
        display: flex;
    }
}
@media (max-width: 750px) {
    .pc_only {
        display: none !important;
    }
    .sp_only {
        display: inherit;
    }
    .sp_only.block {
        display: block;
    }
    .sp_only.inline_block {
        display: inline-block;
    }
    .sp_only.inline {
        display: inline;
    }
    .sp_only.table {
        display: table;
    }
    .sp_only.table_cell {
        display: table-cell;
    }
    .sp_only.flex {
        display: flex;
    }
}

/* アニメーションストップ */
body.is_stop_animation *,
body.is_stop_animation *::before,
body.is_stop_animation *::after {
    transition: none !important;
}

/* logo */
.header_logo {
    position: fixed;
    z-index: 5;
}
@media (min-width: 751px) {
    .header_logo {
        top: 34px;
        left: 30px;
    }
}
@media (max-width: 750px) {
    .header_logo {
        top: 1.7rem;
        left: 1.5rem;
    }
    .header_logo_img {
        width: 5.6rem;
        height: auto;
    }
}

/* メニュー */
.menu_btn_wrap {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 50;
}
.menu_btn {
    position: relative;
    background: #000;
    cursor: pointer;
}
.menu_btn li {
    position: absolute;
    height: 0;
    transition: 0.4s;
}
.menu_contact_btn {
    position: relative;
    text-decoration: none;
    display: block;
    overflow: hidden;
    background: -webkit-gradient(linear, left top, left bottom, from(#335976), to(#003054));
    background: -webkit-linear-gradient(#335976 0%, #003054 100%);
    background: linear-gradient(#335976 0%, #003054 100%);
}
.menu_contact_btn_txt_cover {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.menu_contact_btn_txt {
    position: relative;
    color: #fff;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}
.v_rl {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}
@media (min-width: 751px) {
    .menu_btn_wrap {
        width: 100px;
    }
    .menu_btn {
        width: 100px;
        height: 100px;
    }
    .menu_btn li {
        border-top: 2px solid #fff;
    }
    .menu_btn li:nth-child(1) {
        top: 44px;
        left: 26px;
        width: 30px;
    }
    .menu_btn li:nth-child(2) {
        top: 54px;
        left: 26px;
        width: 50px;
    }
    .menu_btn.is_menu_open li:nth-child(1) {
        transform: rotate(45deg) scaleX(2) translate(5px, -3px);
    }
    .menu_btn.is_menu_open li:nth-child(2) {
        transform: rotate(-45deg) scaleX(1.2) translate(2px, -4px);
    }
    .menu_contact_btn_wrap {
        position: fixed;
        top: 100px;
        right: 0;
        width: 100px;
        z-index: 20;
        opacity: 0;
        transform: translateY(20px);
        pointer-events: none;
        transition: 0.4s;
    }
    .menu_contact_btn_wrap.is_show {
        opacity: 1;
        transform: translateY(0px);
        pointer-events: all;
    }
    .menu_contact_btn {
        width: 100px;
        height: 200px;
        border: 1px solid #003054;
    }
    .menu_contact_btn_txt_cover::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        width: 100%;
        height: 100%;
        background: #fff;
        transform: translateX(-100%);
        transition: transform 0.4s;
    }
    .menu_contact_btn:hover .menu_contact_btn_txt_cover::before {
        transform: translateX(0%);
    }
    .menu_contact_btn .menu_contact_btn_txt {
        transition: color 0.4s;
    }
    .menu_contact_btn:hover .menu_contact_btn_txt {
        color: #003054;
    }
    .menu_contact_btn_txt {
        font-size: 18px;
    }
}
@media (max-width: 750px) {
    .menu_btn_wrap {
        width: 5rem;
    }
    .menu_btn {
        width: 5rem;
        height: 5rem;
    }
    .menu_btn li {
        border-top: 1px solid #fff;
    }
    .menu_btn li:nth-child(1) {
        top: 2.2rem;
        left: 1.2rem;
        width: 1.5rem;
    }
    .menu_btn li:nth-child(2) {
        top: 2.7rem;
        left: 1.2rem;
        width: 2.5rem;
    }
    .menu_btn.is_menu_open li:nth-child(1) {
        transform: rotate(45deg) scaleX(2) translate(0.3rem, -0.2rem);
    }
    .menu_btn.is_menu_open li:nth-child(2) {
        transform: rotate(-45deg) scaleX(1.2) translate(0.1rem, -0.1rem);
    }
    .menu_contact_btn_wrap {
        position: absolute;
        top: 5rem;
        right: 0;
        z-index: 20;
        opacity: 1 !important;
        transform: translateY(0px) !important;
        pointer-events: all !important;
    }
    .menu_contact_btn {
        width: 5rem;
        height: 10.2rem;
        border: 1px solid #003054;
    }
    .menu_contact_btn_txt {
        font-size: 1rem;
    }
}

/* menu */
.menu_overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 40;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
}
.menu_overlay.is_menu_overlay_show {
    pointer-events: all;
    opacity: 1;
}
.menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 45;
    height: 100%;
    background: #000;
    transform: translateX(100%);
    transition: transform 0.4s;
}
.menu.is_menu_open {
    transform: translateX(0%);
}
.menu_list {
    overflow: auto;
}
.menu_list > li > a {
    position: relative;
    display: block;
    width: 100%;
    color: #fff;
    text-decoration: none;
    font-style: italic;
    font-weight: 700;
}
.menu_list > li.menu_item_contact > a {
    color: #000;
    background: #fff;
}
.menu_list > li.menu_item_contact > a::after {
    content: '';
    display: block;
    position: absolute;
    transform: scaleY(0.6) rotate(45deg);
}
@media (min-width: 751px) {
    .menu {
        width: 3.4rem;
    }
    .menu_list {
        padding-top: 100px;
        height: 100%;
    }
    .menu_list > li > a {
        font-size: 0.24rem;
        line-height: 1;
        padding: 0.25rem 0.7rem;
    }
    .menu_txt_cover {
        display: inline-block;
        position: relative;
    }
    .menu_txt_cover::after {
        content: '';
        position: absolute;
        bottom: -0.1rem;
        left: 0;
        width: 100%;
        border-bottom: 1px solid #fff;
        transform: scaleX(0);
        transform-origin: 0% 0%;
        transition: transform 0.4s;
    }
    .menu_item_contact .menu_txt_cover::after {
        border-color: #000;
    }
    a:hover .menu_txt_cover::after {
        transform: scaleX(100%);
    }
    .menu_list > li.menu_item_contact {
        margin-top: 0.4rem;
    }
    .menu_list > li.menu_item_contact > a::after {
        top: 0.3rem;
        right: 0.44rem;
        width: 0.15rem;
        height: 0.15rem;
        border-top: 2px solid #000;
        border-right: 2px solid #000;
    }
}
@media (max-width: 750px) {
    .menu {
        width: 20rem;
    }
    .menu_list {
        padding-top: 50px;
        height: 100%;
    }
    .menu_list > li > a {
        font-size: 1.2rem;
        line-height: 1;
        padding: 1.9rem 3.9rem;
    }
    .menu_list > li.menu_item_contact {
        margin-top: 2rem;
    }
    .menu_list > li.menu_item_contact > a::after {
        top: 2.05rem;
        right: 2.1rem;
        width: 0.9rem;
        height: 0.9rem;
        border-top: 1px solid #000;
        border-right: 1px solid #000;
    }
}

/* common */
.wrap {
    overflow: hidden;
}
.content_wrap {
    position: relative;
    overflow: hidden;
}

.inner {
    padding: 1px 0;
    margin: 0 auto;
}
@media (min-width: 751px) {
    .inner {
        width: 10.8rem;
    }

}

/* footer */
.footer {
    position: relative;
    overflow: hidden;
    background: #000;
}
.footer_contact_btn_wrap {
    text-align: center;
    font-size: 0;
    line-height: 0;
}
.footer_contact_btn {
    position: relative;
    overflow: hidden;
    display: inline-block;
    line-height: 1;
    color: #fff;
    background: #000;
    border: 1px solid #fff;
    text-decoration: none;
    font-style: italic;
    font-weight: 700;
}
.footer_contact_btn::after {
    content: '';
    position: absolute;
    top: 0.9rem;
    right: 0.44rem;
    display: block;
    width: 0.18rem;
    height: 0.18rem;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: scaleY(0.5) rotate(45deg);
}
.footer_contact_btn_txt {
    position: relative;
    z-index: 1;
}
.footer_logo_wrap {
    text-align: center;
}
.footer_copy {
    text-align: center;
    color: #808080;
    font-weight: 500;
    font-feature-settings: 'palt';
    padding-bottom: 20px;
}
.pagetop_wrap {
    position: absolute;
    bottom: 0;
}
.pagetop_wrap a {
    position: relative;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagetop_icon {
    height: auto;
}
.decoration_f {
    position: absolute;
    left: 50%;
}

.footer_menu{
    text-align: center;
}
.footer_menu a{
    color:#fff;
    text-decoration: none;
}

.footer_menu a:hover{
    border-bottom: #fff solid 1px;
}

.footer_menu span{
    color: #fff;
    padding: 0 10px;
}


.ft_sns_links{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px 0 20px;
}

.ft_sns_links a{
    display: block;
}

.ft_sns_links .sns_icon{
    margin: initial;
    padding: 5%;
    background-color: #fff;
    width: auto;
    height: 40px;
}



@media (min-width: 751px) {
    .footer {
        height: fit-content;
    }
    .footer_contact_btn_wrap {
        margin-top: 1.16rem;
    }
    .footer_contact_btn {
        font-size: 0.32rem;
        line-height: 1;
        padding: 0.84rem 0;
        width: 9.6rem;
        padding-right: 0.1rem;
    }
    .footer_contact_btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        transform: translateX(-100%);
        background: -webkit-gradient(linear, left top, left bottom, from(#335976), to(#003054));
        background: -webkit-linear-gradient(#335976 0%, #003054 100%);
        background: linear-gradient(#335976 0%, #003054 100%);
        transition: transform 0.4s;
    }
    .footer_contact_btn:hover::before {
        transform: translateX(0%);
    }
    .footer_contact_btn::after {
        top: 0.9rem;
        right: 0.44rem;
        width: 0.18rem;
        height: 0.18rem;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
    }
    .footer_logo_wrap {
        margin-top: 0.8rem;
    }
    .footer_copy {
        margin-top: 0.3rem;
        font-size: 0.14rem;
    }
    .pagetop_wrap {
        right: 0;
    }
    .pagetop_wrap a {
        width: 1rem;
        height: 1rem;
    }
    .pagetop_icon {
        width: 0.12rem;
    }
    .decoration_f {
        top: -0.05rem;
        margin-left: 5.4rem;
    }
}
@media (max-width: 750px) {
    .footer {
        height: fit-content;
    }

    .footer_menu{
        display: none;
    }

    .footer_contact_btn_wrap {
        margin-top: 5.86rem;
    }
    .footer_contact_btn {
        font-size: 1.6rem;
        line-height: 1;
        padding: 4.1rem 0;
        width: 27.6rem;
        padding-right: 0.4rem;
    }
    .footer_contact_btn::after {
        top: 4.4rem;
        right: 1.4rem;
        width: 1rem;
        height: 1rem;
        border-top: 1px solid #fff;
        border-right: 1px solid #fff;
    }
    .footer_logo_wrap {
        margin-top: 4rem;
    }
    .footer_copy {
        margin-top: 0.5rem;
        font-size: 1rem;
    }
    .pagetop_wrap {
        left: 0;
    }
    .pagetop_wrap a {
        width: 5rem;
        height: 5rem;
    }
    .pagetop_icon {
        width: 0.62rem;
    }
    .decoration_f {
        top: 0rem;
        margin-left: 10.9rem;
        width: 14.4rem;
        height: auto;
    }
    .dooox_logo_f {
        width: 5.7rem;
        height: auto;
    }

    .ft_sns_links .sns_icon {
        margin: initial;
        height: 4rem;
        width: auto;
    }
}

/* animation */
.is_animation_ready .anim_fade_up,
.is_animation_ready .anim_fade_slide_from_left,
.is_animation_ready .anim_fade_slide_from_right {
    opacity: 0;
}
.is_animation_load .anim_fade_up,
.is_animation_load .anim_fade_slide_from_left,
.is_animation_load .anim_fade_slide_from_right {
    transition: 0.4s;
}
.is_animation_ready .is_animated .anim_fade_up,
.is_animation_ready .is_animated .anim_fade_slide_from_left,
.is_animation_ready .is_animated .anim_fade_slide_from_right {
    opacity: 1;
    transform: translate(0rem, 0rem);
}
.is_animation_load .anim_delay_0 {
    transition-delay: 0s;
}
.is_animation_load .anim_delay_1 {
    transition-delay: 0.4s;
}
.is_animation_load .anim_delay_2 {
    transition-delay: 0.8s;
}
.is_animation_load .anim_delay_3 {
    transition-delay: 1.2s;
}
.is_animation_load .anim_delay_4 {
    transition-delay: 1.6s;
}
.is_animation_load .anim_delay_5 {
    transition-delay: 2s;
}
.is_animation_load .anim_delay_6 {
    transition-delay: 2.4s;
}
.is_animation_load .anim_delay_7 {
    transition-delay: 2.8s;
}
.is_animation_load .anim_delay_8 {
    transition-delay: 3.2s;
}
.is_animation_load .anim_delay_9 {
    transition-delay: 3.6s;
}
.is_animation_load .anim_delay_10 {
    transition-delay: 4s;
}

@media (min-width: 751px) {
    .is_animation_ready .anim_fade_up {
        transform: translateY(0.4rem);
    }
    .is_animation_ready .anim_fade_slide_from_left {
        transform: translateX(-0.4rem);
    }
    .is_animation_ready .anim_fade_slide_from_right {
        transform: translateX(0.4rem);
    }
}
@media (max-width: 750px) {
    .is_animation_ready .anim_fade_up {
        transform: translateY(4rem);
    }
    .is_animation_ready .anim_fade_slide_from_left {
        transform: translateX(-4rem);
    }
    .is_animation_ready .anim_fade_slide_from_right {
        transform: translateX(4rem);
    }
}

/* hover */
@media (min-width: 751px) {
    .d_hover {
        transition: opacity 0.4s;
    }
    .d_hover:hover {
        opacity: 0.8;
    }
}
