@charset "UTF-8";

:root {
    --designSizePc: 1100;
    --designSizeSp: 750;
    /* 
     * pxをvwに変換する式
     * min(calc(22 * var(--vw-pc)), 22px)
     */
    --vw-pc: calc(100vw / var(--designSizePc));
    --vw-sp: calc(100vw / var(--designSizeSp));
}

body{
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Helvetica Neue","Hiragino Kaku Gothic ProN", sans-serif;
}

/* 全ページ共通スタイル */
.top_mv_copy_btn,
.section_hamburger_wrap,
.header_hamburger_wrap,
.top_contact_form_submit_btn,
.page_wrap li,
.top_contact_privacy_modal_btn{
    cursor: pointer;
}

/* 共通 */
.page_title,
.link_btn,
.page_back_btn,
/* header */
.header_contact_link,
.header_menu,
.hamburger_menu_link_en,
.header_hamburger_menu_link_en,
/* TOP */
.top_mv_new_news,
.top_mv_new_news_btn,
.section_scroll,
.top_produce_cate,
.top_maerchandising_cate,
.top_outbound_cate,
.top_ip_cate,
.top_produce_title_en,
.top_maerchandising_title_en,
.top_outbound_title_en,
.top_ip_title_en,
.top_mv_copy_btn,
.top_contact_title,
.top_youtube_title,
/* COMPANY */
.company_service_title_cate,
.company_service_title_en,
.company_message_title,
.company_profile_title,
/* ARCHIVE */
.archive_member_head_en,
/* SINGLE */
.member_single_content_title_en,
/* footer */
.footer_contact_link,
.footer_google_map_text,
.footer_menu_en{
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.5px;
}

/* 共通 */
.link_btn,
.page_back_btn,
/* header */
.header_contact_link,
.header_menu,
.header_hamburger_menu_list,
/* TOP */
.top_mv_new_news_text,
.top_mv_new_news_btn,
.section_scroll_wrap,
/* COMPANY */
.company_service_item_wrap,
/* SINGLE */
.single_share_link,
/* footer */
.footer_menu,
.footer_contact_link{
    opacity: 1;
    transition: all 0.3s ease-out;
}
/* 共通 */
.link_btn:hover,
.page_back_btn:hover,
/* header */
.header_contact_link:hover,
.header_menu:hover,
.header_hamburger_menu_list:hover,
/* TOP */
.top_mv_new_news_text:hover,
.top_mv_new_news_btn:hover,
.section_scroll_wrap:hover,
/* COMPANY */
.company_service_item_wrap:hover .link_btn,
/* ARCHIVE NEWSページ */
.archive_news_inner:hover .link_btn,
/* SINGLE */
.single_share_link:hover,
/* footer */
.footer_menu:hover,
.footer_contact_link:hover{
    opacity: 0.7;
}

/* TOP */
.top_youtube_container,
/* COMPANY */
.company_service_container,
.company_message_container,
.company_profile_container,
/* ARCHIVE WORKSページ */
.archive_container,
/* ARCHIVE MEMBERSページ */
.archive_member_head_en,
.archive_member_container,
/* SINGLE */
.member_single_container,
.member_single_hirama_container .member_single_content_wrap,
/* PRIVACY */
.privacy_content_container,
/* RECRUIT */
.recruit_content_container{
    max-width: 1000px;
}


.section_page_title{
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 160px;
}

.page_title_container{
    text-align: center;
}

.page_title{
    color: #009fe8;
    font-size: 36px;
    font-weight: 500;
    text-transform: uppercase;

    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0,1.2,1.0,1.0);
}
.page_title.ready{
    opacity: 1;
    transform: translateY(0px);
}

.page_sub_title{
    background-color: #009fe8;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    margin-top: 10px;
    padding: 4px 30px;
    width: auto;

    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0,1.2,1.0,1.0);
}
.page_sub_title.ready{
    opacity: 1;
    transform: translateY(0px);
}

.link_btn{
    box-sizing: border-box;
    border-radius: 25px;
    border: 2px solid #000;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    margin-top: 20px;
    width: 100%;
    height: 50px;

    transition: all 0.3s ease-out;
}
.top_service_container .link_btn{
    width: 400px;
}
.section_top_produce .link_btn,
.section_top_maerchandising .link_btn,
.section_top_outbound .link_btn,
.section_top_ip .link_btn{
    background-color: #009fe8;
    border-color: #fff;
    color: #fff;
}
.top_message_inner .link_btn{
    background-color: #009fe8;
    border-color: #fff;
    color: #fff;

    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.6s cubic-bezier(.26,1.33,.6,1);
}
.top_message_inner .link_btn.ready{
    opacity: 1;
    transform: translateX(0px);
}
.company_service_item_wrap .link_btn{
    border-color: #fff;
    border-radius: 16px;
    color: #fff;
    font-size: 14px;
    width: 60%;
    height: 32px;
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
}
.archive_news_inner .link_btn{
    border-radius: 23px;
    font-size: 16px;
    height: 45px;
}

.link_btn_arrow{
    margin-left: 10px;
    margin-right: -10px;

    transition: all 0.3s ease-out;
}
.link_btn:hover .link_btn_arrow,
.company_service_item_wrap:hover .link_btn_arrow,
.archive_news_inner:hover .link_btn_arrow{
    margin-left: 15px;
    margin-right: -15px;
}

.page_back_btn_wrap{
    clear: both;
    padding-top: 60px;
    padding-bottom: 60px;
}

.page_back_btn{
    box-sizing: border-box;
    border-radius: 30px;
    border: 2px solid #000;
    color: #000;
    font-size: 22px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    width: 530px;
    height: 60px;
}

.page_back_arrow{
    margin-right: 10px;
    margin-left: -10px;

    transition: all 0.3s ease-out;
}
.page_back_btn:hover .page_back_arrow{
    margin-right: 15px;
    margin-left: -15px;
}

/* page-templates/btn/round.php */
.round_btn{
    background-color: #009FE8;
    border: min(calc(2 * var(--vw-pc)), 2px) solid #fff;
    border-radius: 1000px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: min(calc(20 * var(--vw-pc)), 20px);
    font-weight: 500;
    padding-top: min(calc(15 * var(--vw-pc)), 15px);
    padding-bottom: min(calc(15 * var(--vw-pc)), 15px);
    width: 100%;
}
.round_btn.en{
    font-family: 'Oswald', sans-serif;
}
.round_btn::after{
    content: "〉";
    display: block;
    margin-left: min(calc(10 * var(--vw-pc)), 10px);
}

/* ====================================
                header
======================================= */
.header_container{
    background-color: #fff;
    width: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 10;

    transition: all 0.3s ease-out;
}
/* #top_page .header_container{
    top: -100px;
}
#top_page .header_container.ready{
    top: 0px;
} */

.header_top_wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: auto;
    width: 95%;
    height: 60px;
}

.header_logo_wrap{
    display: block;
    width: 215px;
}

.header_logo_img{
    display: block;
    width: 100%;
}
.header_logo_img .cls-1{
    fill:#009fe8;
}

.header_contact_link{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #009fe8;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    width: 250px;
    height: 100%;
}

.header_hamburger_wrap{
    display: none;
}

.header_hamburger_menu_wrap{
    display: none;
}

.header_menu_wrap{
    box-sizing: border-box;
    border-top: 1px solid #009fe8;
    border-bottom: 1px solid #009fe8;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 40px;
}

.header_menu_scroll{
    height: 100%;
}

.header_menu_inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    height: 100%;
}

.header_menu{
    box-sizing: border-box;
    border-right: 1px solid #c9caca;
    color: #009fe8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    width: 20%;
    height: 20px;
    position: relative;
}
.header_menu:first-child{
    border-left: 1px solid #c9caca;
}
.header_menu.current{
    color: #000;
}
.header_menu.current::after{
    content: "";
    background-color: #000;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: -10px;
    left: 0px;
}

.header_space{
    height: 100px;
}
/* #top_page .header_space{
    display: none;
} */



/* ====================================
                TOP
======================================= */
/* メインビジュアル */
/* .section_top_mv{
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
}

.top_mv_container{
    width: 100%;
    height: 100vh;
    min-height: 630px;
}

.top_mv_video_wrap{
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
}
.top_mv_video_wrap::after{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.1);
	background-image: radial-gradient(#444 30%, transparent 31%);
	background-size: 3px 3px;
	background-position: 0 0, 2px 2px;
} */

/* .top_dot_cover{
    background: url(../image/top_mv_cover.png);
    background-repeat: repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0%;
    left: 0%;
} */

/* .top_mv_video{
    display: block;
    font-family: 'object-fit: cover;';
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.top_mv_video.sp{
    display: none;
}

.top_mv_logo_circle{
    background-color: #009fe8;
    border-radius: 50%;
    width: 640px;
    height: 640px;
    position: absolute;
    top: -250px;
    left: -250px;
    transform: translate(-50%, -50%);

    transition: all 0.3s cubic-bezier(.26,1.33,.6,1);

    animation-name: logo-circle-scale;
    animation-duration: 1.0s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
.top_mv_logo_circle.ready{
    top: -140px;
    left: 120px;
}

@keyframes logo-circle-scale{
    0%{
        transform: scale(1) translate(-50%, -50.5%);
    }
    100%{
        transform: scale(0.95) translate(-50%, -49.5%);
    }
}

.top_mv_logo{
    display: block;
    width: 230px;
    height: auto;
    position: fixed;
    top: 40px;
    left: 5%;

    opacity: 1;
    visibility: visible;
    transition: all 0.3s cubic-bezier(.26,1.33,.6,1);

    transform: translateX(-130%);
}
.top_mv_logo.opning{
    transform: translateX(0%);
}
.top_mv_logo.ready{
    opacity: 0;
    visibility: hidden;
}

.top_mv_copy_wrap{
    margin-top: 70px;
    width: 500px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.top_mv_copy{
    display: block;
    width: 100%;
    height: auto;
}

.top_mv_sub_copy{
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 9px;
    margin-top: 20px;
    text-align: center;
}

.top_mv_copy_btn{
    box-sizing: border-box;
    border: 2px solid #fff;
    border-radius: 25px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 120px;
    width: 500px;
    height: 50px;
}

.top_mv_copy_btn_arrow{
    font-size: 16px;
    margin-top: 2px;
    margin-left: 10px;
    margin-right: -10px;

    transition: all 0.5s ease-out;
}
.top_mv_copy_btn:hover .top_mv_copy_btn_arrow{
    margin-left: 15px;
    margin-right: -15px;
}

.section_scroll_wrap{
    display: flex;
    justify-content: space-between;
    width: 30px;
    height: 110px;
    position: absolute;
    bottom: 0px;
    left: 5%;

    transform-origin: bottom center;
    transform: rotate(-90deg);
    transition: all 0.6s cubic-bezier(.26,1.33,.6,1);
}
.section_scroll_wrap.ready{
    transform: rotate(0deg);
}
.section_top_mv .section_scroll_wrap{
    bottom: 50px;
}

.section_scroll_bar_wrap{
    overflow: hidden;
    width: 2px;
    height: 100%;
    position: relative;
}

.section_scroll_bar01,.section_scroll_bar02{
    width: 100%;
    height: 100%;
}
.section_scroll_bar01{
    background-color: #fff;
}
.section_scroll_bar02{
    background-color: #009fe8;
    position: absolute;
    top: -100%;
    left: 0;

    animation-name: scroll_bar;
    animation-duration: 1.7s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.section_top_message .section_scroll_bar02{
    background-color: #0e61c7;
}
.section_top_produce .section_scroll_bar02{
    background-color: #0096ff;
}
.section_top_maerchandising .section_scroll_bar02{
    background-color: #ff5031;
}
.section_top_outbound .section_scroll_bar02{
    background-color: #640096;
}
.section_top_ip .section_scroll_bar02{
    background-color: #1cc864;
}

@keyframes scroll_bar {
    0%{
        top: -100%;
    }
    15%{
        top: 0%;
    }
    45%{
        top: 0%;
    }
    60%{
        top: 100%;
    }
    100%{
        top: 100%;
    }
}

.section_scroll{
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}

.top_mv_new_news_wrap{
    background-color: #009fe8;
    width: 100%;
    height: 50px;
    position: absolute;
    bottom: -10%;
    left: 0px;

    transition: all 0.3s cubic-bezier(.26,1.33,.6,1);
}
.top_mv_new_news_wrap.opning{
    bottom: 0%;
}

.top_mv_new_news_inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    height: 100%;
}

.top_mv_new_news{
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.top_mv_new_news_text{
    color: #fff;
    font-size: 14px;
    margin-left: 5%;
    margin-right: 5%;
    overflow: hidden;
    height: 14px;
    text-align: justify;
    word-break: break-all;
}
.top_mv_new_news_text.ready{
    transform:translateY(20px);
    opacity: 0.0;
}

.top_mv_new_news_btn{
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    position: relative;
}
.top_mv_new_news_btn_arrow{
    font-weight: bold;
    margin-left: 10px;
    margin-right: -10px;
} */

/* MESSAGE */
/* .section_top_message{
    overflow: hidden;
    width: 100%;
    height: 700px;
}

.top_message_container{
    width: 100%;
    height: 100%;
    position: relative;
}

.top_message_bg{
    display: block;
    font-family: 'object-fit: cover;';
    object-fit: cover;
    width: 100%;
    height: 100%;
} */

/* .top_message_dot_cover{
    background: url(../image/company_mv_cover.png);
    background-repeat: repeat;
    background-position: 0px 0px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0%;
    left: 0%;

    animation-name: dot-bg-roop;
    animation-duration: 120s;
    animation-timing-function: linear;
    animation-iteration-count: infinite; 
}

@keyframes dot-bg-roop{
    0%{
        background-position: 0px 0px;
    }
    100%{
        background-position: 700px -700px;
    }
} */

/* .top_message_cover_circle{
    background-color: #01b4ff;
    border-radius: 50%;
    mix-blend-mode: multiply;
    width: 860px;
    height: 860px;
    position: absolute;
    top: 225px;
    left: 300px;

    transform: translate(-120%, -120%);
    transition: all 0.8s cubic-bezier(.26,1.33,.6,1);
}
.top_message_cover_circle.ready{
    transform: translate(-50%, -50%);
} */
@media all and (-ms-high-contrast: none) {
    /* ここに書く */
    /* .top_message_cover_circle{
        background-color: rgba(0,87,227,0.5);
        mix-blend-mode: normal;
    } */
}

/* .top_message_inner{
    width: 400px;
    position: absolute;
    top: 130px;
    left: 5%;
}

.top_message_logo{
    display: block;
    width: 230px;
    height: auto;
}

.top_message_head{
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
    text-align: justify;
    word-break: break-all;

    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.6s cubic-bezier(.26,1.33,.6,1);
}
.top_message_head.ready{
    opacity: 1;
    transform: translateX(0px);
}

.top_message_text{
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 2.0;
    margin-top: 20px;
    text-align: justify;
    word-break: break-all;

    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.6s cubic-bezier(.26,1.33,.6,1);
}
.top_message_text.ready{
    opacity: 1;
    transform: translateX(0px);
}

.top_message_illustration_wrap{
    border-radius: 50%;
    overflow: hidden;
    width: 44%;
    max-width: 560px;
    position: absolute;
    top: -100%;
    right: 8%;

    transition: all 0.6s cubic-bezier(.26,1.33,.6,1);
}
.top_message_illustration_wrap.ready{
    top: 75px;
}

.top_message_illustration_bg{
    background-color: #3296fa;
    border-radius: 50%;
    mix-blend-mode: multiply;
    padding-top: 100%;
    width: 100%;

    transform: translateY(0%);
    transition: all 0.6s cubic-bezier(.26,1.33,.6,1);
}
@media all and (-ms-high-contrast: none){
    .top_message_illustration_bg{
        background-color: rgba(0,87,227,0.5);
        mix-blend-mode: normal;
    }
}
_::-webkit-full-page-media, _:future, :root .top_message_illustration_bg{
    transform: rotateX(0deg);
}

.top_message_illustration_content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    width: 80%;
    position: absolute;
    top: -100%;
    right: 0%;
    bottom: 0%;
    left: 0%;

    transition: all 0.6s cubic-bezier(.26,1.33,.6,1);
}
.top_message_illustration_content.ready{
    top: 0%;
}
.top_message_illustration_content.sp{
    display: none;
}

.top_message_illustration_copy{
    display: block;
    width: 100%;
    height: auto;
}
@media all and (-ms-high-contrast: none) {
    .top_message_illustration_copy{
      min-height: 1px;
    }
}

.top_message_illustration_sub_copy{
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 7px;
    margin-top: 10px;
    text-align: center;
} */

/* SERVICE */
/* .section_top_produce,
.section_top_maerchandising,
.section_top_outbound,
.section_top_ip{
    overflow: hidden;
    width: 100%;
    height: 700px;
    position: relative;
}
.section_top_produce{
    background-color: #00b4ff;
}
.section_top_maerchandising{
    background-color: #fca797;
}
.section_top_outbound{
    background-color: #b07fc8;
}
.section_top_ip{
    background-color: #8ee1b0;
}

.top_produce_cover_circle,
.top_maerchandising_cover_circle,
.top_outbound_cover_circle,
.top_ip_cover_circle{
    border-radius: 50%;
    width: 900px;
    height: 900px;
    position: absolute;
    top: 200px;
    left: 300px;
    transform: translate(-120%, -120%);

    transition: all 0.6s cubic-bezier(.26,1.33,.6,1);
}
.top_produce_cover_circle.ready,
.top_maerchandising_cover_circle.ready,
.top_outbound_cover_circle.ready,
.top_ip_cover_circle.ready{
    transform: translate(-50%, -50%);
}
.top_produce_cover_circle{
    background-color: #9be1ff;
}
.top_maerchandising_cover_circle{
    background-color: #fcd1c3;
}
.top_outbound_cover_circle{
    background-color: #ecbbde;
}
.top_ip_cover_circle{
    background-color: #e5edd0;
}

.top_service_max_wrap{
    margin: auto;
    position: absolute;
    top: 0%;
    right: 0%;
    bottom: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
}

.top_service_container{
    width: 470px;
    position: absolute;
    top: 130px;
    left: 5%;
}

.top_service_logo{
    display: block;
    width: 230px;
    height: auto;
    min-height: 1px;
}

.top_produce_cate,
.top_maerchandising_cate,
.top_outbound_cate,
.top_ip_cate{
    font-size: 28px;
    font-weight: 500;
}
.top_produce_cate,
.top_produce_title_en,
.top_produce_title_ja,
.top_produce_text{
    color: #0096ff;
}
.top_maerchandising_cate,
.top_maerchandising_title_en,
.top_maerchandising_title_ja,
.top_maerchandising_text{
    color: #ff5031;
}
.top_outbound_cate,
.top_outbound_title_en,
.top_outbound_title_ja,
.top_outbound_text{
    color: #640096;
}
.top_ip_cate,
.top_ip_title_en,
.top_ip_title_ja,
.top_ip_text{
    color: #1cc864;
}

.top_produce_title_en,
.top_maerchandising_title_en,
.top_outbound_title_en,
.top_ip_title_en{
    font-size: 58px;
    font-weight: 500;
    margin-top: 10px;

    transition: all 0.3s ease-out;    
}

.top_produce_title_ja,
.top_maerchandising_title_ja,
.top_outbound_title_ja,
.top_ip_title_ja{
    font-size: 18px;
    font-weight: bold;
    margin-top: 15px;
}

.top_produce_head,
.top_maerchandising_head,
.top_outbound_head,
.top_ip_head{
    box-sizing: border-box;
    border-radius: 70px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-top: 25px;
    padding: 15px 20px;
    width: 150%;
}
.top_produce_head{
    background-color: #0096ff;
}
.top_maerchandising_head{
    background-color: #ff5031;
}
.top_outbound_head{
    background-color: #640096;
}
.top_ip_head{
    background-color: #1cc864;
}

.top_produce_head:nth-of-type(n+2),
.top_maerchandising_head:nth-of-type(n+2),
.top_outbound_head:nth-of-type(n+2),
.top_ip_head:nth-of-type(n+2){
    margin-top: 5px;
}

.top_produce_text,
.top_maerchandising_text,
.top_outbound_text,
.top_ip_text{
    font-size: 14px;
    font-weight: bold;
    line-height: 2.0;
    margin-top: 20px;
    text-align: justify;
    word-break: break-all;
    width: 400px;
}

.top_produce_cate,
.top_maerchandising_cate,
.top_outbound_cate,
.top_ip_cate,
.top_produce_title_en,
.top_maerchandising_title_en,
.top_outbound_title_en,
.top_ip_title_en,
.top_produce_title_ja,
.top_maerchandising_title_ja,
.top_outbound_title_ja,
.top_ip_title_ja,
.top_produce_head,
.top_maerchandising_head,
.top_outbound_head,
.top_ip_head,
.top_produce_text,
.top_maerchandising_text,
.top_outbound_text,
.top_ip_text,
.section_top_produce .link_btn,
.section_top_maerchandising .link_btn,
.section_top_outbound .link_btn,
.section_top_ip .link_btn{
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.6s cubic-bezier(.26,1.33,.6,1);
}
.top_produce_cate.ready,
.top_maerchandising_cate.ready,
.top_outbound_cate.ready,
.top_ip_cate.ready,
.top_produce_title_en.ready,
.top_maerchandising_title_en.ready,
.top_outbound_title_en.ready,
.top_ip_title_en.ready,
.top_produce_title_ja.ready,
.top_maerchandising_title_ja.ready,
.top_outbound_title_ja.ready,
.top_ip_title_ja.ready,
.top_produce_head.ready,
.top_maerchandising_head.ready,
.top_outbound_head.ready,
.top_ip_head.ready,
.top_produce_text.ready,
.top_maerchandising_text.ready,
.top_outbound_text.ready,
.top_ip_text.ready,
.section_top_produce .link_btn.ready,
.section_top_maerchandising .link_btn.ready,
.section_top_outbound .link_btn.ready,
.section_top_ip .link_btn.ready{
    opacity: 1;
    transform: translateX(0px);
}

.top_service_illustration_wrap{
    box-sizing: border-box;
    border: 8px solid #0096ff;
    background-color: #fff;
    border-radius: 50%;
    overflow: hidden;
    width: 42%;
    max-width: 560px;
    position: absolute;
    top: 110px;
    right: 8%;

    transform: translateY(-130%);
    transition: all 0.3s cubic-bezier(.26,1.33,.6,1);
}
.top_service_illustration_wrap.ready{
    transform: translateY(0%);
}
.top_service_illustration_wrap.sp{
    display: none;
}
.section_top_produce .top_service_illustration_wrap{
    border-color: #0096ff;
}
.section_top_maerchandising  .top_service_illustration_wrap{
    border-color: #ff5031;
}
.section_top_outbound  .top_service_illustration_wrap{
    border-color: #640096;
}
.section_top_ip  .top_service_illustration_wrap{
    border-color: #1cc864;
}

.top_produce_illustration_bg,
.top_maerchandising_illustration_bg,
.top_outbound_illustration_bg,
.top_ip_illustration_bg{
    border-radius: 50%;
    width: 100%;
    padding-top: 100%;
}

.top_service_illustration{
    display: block;
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.3s cubic-bezier(.26,1.33,.6,1);
}
.top_service_illustration.ready{
    transform: translate(-50%, -50%) scale(1);
} */

/* ハンバーガーメニュー */
/* .section_hamburger_wrap{
    box-sizing: border-box;
    border-radius: 50%;
    background-color: #009fe8;
    width: 70px;
    height: 70px;
    position: fixed;
    top: 30px;
    right: -10%;

    opacity: 1;
    visibility: visible;
    transition: all 0.3s cubic-bezier(.26,1.33,.6,1);
}
.section_hamburger_wrap.opning{
    right: 5%;
}
.section_hamburger_wrap.ready{
    opacity: 0;
    visibility: hidden;
}
.section_hamburger_wrap.click{
    border-radius: 0%;
    border: 0px solid #fff;
    width: 350px;
    height: 100%;
    top: 0px;
    right: 0%;
    z-index: 20;
    transition: all 0.3s ease-out;
}
.section_hamburger_wrap.auto_anim{
    animation-name: hamburger-scale;
    animation-duration: 1.0s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@keyframes hamburger-scale{  
    0%{
        transform: scale(1) translateY(-1px);
    }
    100%{
        transform: scale(0.95) translateY(1px);
    }
}

.hamburger_wrap_dark_layer::before{
    content: "";
    display: block;
    background-color: rgba(255,255,255,0.3);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0%;
    left: 0%;
    z-index: 10;

    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out;
}
.hamburger_wrap_dark_layer.click::before{
    opacity: 1;
    visibility: visible;
}

.section_hamburger_inner{
    width: 25px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: all 0s;
}
.section_hamburger_inner.click{
    top: 72px;
    left: auto;
    right: calc(3% + 17px);
}

.section_hamburger_inner span{
    display: block;
    background-color: #fff;
    border-radius: 1.5px;
    width: 100%;
    height: 3px;
    position: absolute;
    left: 0px;
}
.section_hamburger_inner .hamburger_line01{
    top: 0px;
}
.section_hamburger_inner .hamburger_line02{
    top: 13px;
}

.hamburger_line01.ready{
    animation-name: hamburger01-ready;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}
.hamburger_line02.ready{
    animation-name: hamburger02-ready;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}
.hamburger_line01.return{
    animation-name: hamburger01-return;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}
.hamburger_line02.return{
    animation-name: hamburger02-return;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

@keyframes hamburger01-ready{
    0%{
        opacity: 0;
        top: 0px;
        transform: rotate(0deg);
    }50%{
        opacity: 0;
        top: 6px;
        transform: rotate(0deg);
    }100%{
        opacity: 1;
        top: 6px;
        transform: rotate(45deg);
    }
}

@keyframes hamburger02-ready{
    0%{
        opacity: 0;
        top: 11px;
        transform: rotate(0deg);
    }50%{
        opacity: 0;
        top: 6px;
        transform: rotate(0deg);
    }100%{
        opacity: 1;
        top: 6px;
        transform: rotate(-45deg);
    }
}

@keyframes hamburger01-return{
    0%{
        opacity: 0;
        top: 6px;
        transform: rotate(45deg);
    }50%{
        opacity: 0;
        top: 6px;
        transform: rotate(0deg);
    }100%{
        opacity: 1;
        top: 0px;
        transform: rotate(0deg);
    }
}

@keyframes hamburger02-return{
    0%{
        opacity: 0;
        top: 6px;
        transform: rotate(-45deg);
    }50%{
        opacity: 0;
        top: 6px;
        transform: rotate(0deg);
    }100%{
        opacity: 1;
        top: 11px;
        transform: rotate(0deg);
    }
}

.hamburger_menu_inner{
    position: absolute;
    top: 100px;
    left: 15%;

    visibility: hidden;
}
.hamburger_menu_inner.click{
    visibility: visible;
}

.hamburger_menu_list{
    opacity: 0;
    transform: translateX(30px);
    visibility: hidden;

    transition: all 0.3s ease-out;
}
.hamburger_menu_list.click{
    opacity: 1;
    transform: translateX(0px);
    visibility: visible;
}
.hamburger_menu_list:not(:first-child){
    margin-top: 30px;
}

.hamburger_menu_link_en{
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 500;
    transform: translateX(0px) scale(1.0);
    transition: all 0.3s ease-out;
}
.hamburger_menu_inner:hover .hamburger_menu_link_en{
    opacity: 0.7;
}
.hamburger_menu_inner .hamburger_menu_link_en:hover{
    opacity: 1;
    transform: translateX(5px) scale(1.1);
}

.hamburger_menu_link_ja{
    font-size: 12px;
    font-weight: normal;
    margin-left: 10px;
    margin-top: 3px;
} */

/* CONTACT */
/* .section_top_contact{
    background-color: #009fe8;
    padding-top: 180px;
    padding-bottom: 110px;
    width: 100%;
    position: relative;
}

.top_contact_container{
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    min-width: 700px;
    max-width: 900px;
    position: relative;
}

.top_contact_title{
    color: #fff;
    font-size: 48px;
    font-weight: 500;
    text-align: center;
}

.top_contact_sub_title{
    color: #fff;
    font-size: 16px;
    margin-top: 15px;
    text-align: center;
}

.top_contact_form_container{
    margin-top: 30px;
    width: 100%;
}

.top_contact_form_must_text{
    color: #fff;
    font-size: 14px;
    margin-bottom: 5px;
    text-align: right;
}

.top_contact_form_line{
    background-color: #f0f0f0;
    display: flex;
    width: 100%;
}
.top_contact_form_line:nth-child(n+2){
    margin-top: 5px;
}

.top_contact_form_head{
    box-sizing: border-box;
    background-color: #0082ff;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.5;
    text-align: center;
    width: 25%;
    min-width: 205px;
}

.top_contact_form_head .must{
    position: relative;
}
.top_contact_form_head .must::after{
    content: "※";
    color: #fff;
    font-size: 12px;
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
}

.top_contact_form_data{
    border: none;
    box-sizing: border-box;
    display: block;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Helvetica Neue","Hiragino Kaku Gothic ProN", sans-serif;
    font-size: 16px;
    outline: none;
    padding: 10px 20px;
    width: 100%;
    height: 40px;
}
textarea.top_contact_form_data{
    height: 90px;
}

.top_contact_privacy_wrap{
    margin-top: 15px;
    text-align: center;
}
.top_contact_privacy_check{
    display: none;
}

.wpcf7-list-item-label{
    color: #fff;
    display: block;
    font-size: 12px;
    font-weight: bold;
    padding-left: 260px;
    position: relative;
}
.wpcf7-list-item-label::before{
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 15px;
    height: 15px;
    box-sizing: border-box;
    background-color: #f0f0f0;
}
.wpcf7-list-item-label::after{
    content: '';
    position: absolute;
    top: 1px;
    left: 5px;
    width: 3px;
    height: 7px;
    border-right: 2px solid #0082ff;
    border-bottom: 2px solid #0082ff;
    transform: rotate(45deg);
    transition: all 0.2s linear;
    opacity: 0;
}
.top_contact_privacy_check:checked + .wpcf7-list-item-label::after{
    opacity: 1;
}

.top_contact_privacy_modal_btn{
    display: inline;
    margin-top: -3px;
    color: #fff;
}
.top_contact_privacy_modal_btn:hover{
    text-decoration: underline;
}

.top_contact_form_submit_btn{
    background-color: #0082ff;
    border-radius: 0px !important;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Helvetica Neue","Hiragino Kaku Gothic ProN", sans-serif;
    font-size: 20px;
    font-weight: bold;
    margin-top: 15px;
    width: 100%;
    height: 70px;

    opacity: 1 !important;
    -webkit-appearance: none;
}

.modal_privacy_wrap{
    background-color: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 1;

    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
}
.modal_privacy_wrap.ready{
    opacity: 1;
    visibility: visible;
}

.modal_privacy_inner{
    box-sizing: border-box;
    background-color: #fff;
    padding: 90px 50px 90px;
    width: 70%;
    min-width: 700px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.modal_privacy_title{
    font-weight: bold;
    font-size: 16px;
}

.modal_privacy_text{
    font-size: 14px;
    margin-top: 15px;
    line-height: 2.0;
    text-align: justify;
    word-break: break-all;
}

.modal_privacy_close_img{
    width: 25px;
    position: absolute;
    top: 30px;
    right: 30px;
} */

/* Contact Form 7のCSS */
/* .wpcf7-form br{
    display: none;
}

.wpcf7-form-control-wrap{
    width: 75%;
}

.section_top_contact .wpcf7-not-valid-tip{
    box-sizing: border-box;
    border-radius: 5px;
    background-color: #e50031;
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-top: 10px;
    margin-left: max(25%, 205px);
    padding: 10px 10px;
    position: relative;
}
.section_top_contact .wpcf7-not-valid-tip::before{
    content: "";
    border: 10px solid transparent;
    border-bottom: 15px solid #e50031;
    position: absolute;
    top: -25px;
    left: 5%;
}

.wpcf7-response-output,
.ajax-loader,
.wpcf7-form-control-wrap .wpcf7-not-valid-tip{
    display: none !important;
} */

/* オープニングアニメーション */
/* .op_anim_container{
    background-color: #fff;
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}
.op_anim_container.ready{
    background-color: transparent;
}

.op_last_bg_wrap{
    background: radial-gradient(transparent 0% 1% ,#0091e8 1% 100%);
    background: -webkit-radial-gradient(transparent 0% 1% ,#0091e8 1% 100%);
    background: -moz-radial-gradient(transparent 0% 1% ,#0091e8 1% 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0%;
    left: 0%;

    opacity: 0;

    transition: all 0.5s ease;
}
.op_last_bg_wrap.opacity{
    opacity: 1;
}
.op_last_bg_wrap.opning{
    transform: scale(100);
}

.op_last_bg_inner{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0%;
    left: 0%;
}

.op_last_bg_wrap_ie{
    display: none;
}

.op_anim_bg{
    background-color: #007de8;
    clip-path: inset(100% 49.35% 0% 49.99%);
    -webkit-clip-path: inset(100% 49.35% 0% 49.99%);
    width: 4000px;
    height: 4000px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);

    opacity: 1;
    transition: all 0.5s ease;
}
.op_anim_bg.ready{
    animation-name: op-stripe;
    animation-duration: 3.0s;
    animation-timing-function: cubic-bezier(0,-0.01,0,1);
    animation-fill-mode: forwards;
}
.op_anim_bg.opacity{
    opacity: 0;
}

@keyframes op-stripe{
    0%{
        clip-path: inset(100% 49.35% 0% 49.99%);
        -webkit-clip-path: inset(100% 49.35% 0% 49.99%);
    }
    30%{
        clip-path: inset(0% 49.35% 0% 49.99%);
        -webkit-clip-path: inset(0% 49.35% 0% 49.99%);
    }
    100%{
        clip-path: inset(0% 0% 0% 0%);
        -webkit-clip-path: inset(0% 0% 0% 0%);
    }
}

.op_anim_logo{
    width: 50%;
    max-width: 700px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    opacity: 1;
    transition: all 0.5s ease;
}
.op_anim_logo.opacity{
    opacity: 0;
}

.op_anim_logo svg,
.op_anim_logo image {
    display: block;
    width: 100%;
    height: auto;
}

#op_anim_logo_copy .cls-1,
#op_anim_logo_copy .cls-2{
    fill:none;
}
#op_anim_logo_copy .cls-1{
    stroke:#fff;
    stroke-linecap:round;
    stroke-linejoin:round;
    stroke-width:15px;
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
}

.logo_border{
    border-radius: 3px;
    background-color: #fff;
    width: 0%;
    height: 5px;
    position: absolute;
    bottom: 25%;
    left: 0px;

    transition: all 0.3s cubic-bezier(0,0,0,1);
}
.logo_border.ready{
    width: 100%;
}


.op_anim_logo_img_ie{
    display: none;
}
@media all and (-ms-high-contrast: none){
    .op_last_bg_wrap{
        display: none;
    }

    .op_last_bg_wrap_ie{
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0%;
        left: 0%;
    
        opacity: 0;
    }
    .op_last_bg_wrap_ie.opacity{
        opacity: 1;
    }
    
    .op_last_bg_up_ie,
    .op_last_bg_down_ie{
        background-color: #007de8;
        width: 100%;
        height: 50%;
        position: absolute;
        left: 0%;
    
        transition: all 1.0s ease;
    }
    .op_last_bg_up_ie{
        top: 0%;
    }
    .op_last_bg_up_ie.ready{
        top: -100%;
    }
    .op_last_bg_down_ie{
        bottom: 0%;
    }
    .op_last_bg_down_ie.ready{
        bottom: -100%;
    }

    .op_anim_bg{
        background-color: #007de8;
    }

    .op_anim_logo_img_ie{
        display: block;
        width: 100%;
        height: auto;

        opacity: 0;
        transition: all 0.5s ease;
    }
    .op_anim_logo_img_ie.opning{
        opacity: 1;
    }

    #op_anim_logo_copy{
        display: none;
    }
} */


/* ====================================
            お問い合わせ完了画面
======================================= */
.section_contact_complete{
    background-color: #fff;
    padding-top: 60px;
    width: 100%;
}

.complete_text{
    font-size: 14px;
    line-height: 2.0;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
    width: 700px;
}


/* ====================================
            COMPANY
======================================= */
/* メインビジュアル */
.section_company_mv{
    overflow: hidden;
    width: 100%;
    height: 690px;
    position: relative;
}

.company_mv_bg{
    display: block;
    font-family: 'object-fit: cover;'; /*IE対策*/
    object-fit: cover;
    width: 100%;
    height: 100%;
    transform-origin: center;
}

.company_cover_circle{
    background-color: #01b4ff;
    border-radius: 50%;
    mix-blend-mode: multiply;
    width: 900px;
    height: 900px;
    position: absolute;
    top: -320px;
    left: -320px;
    transform: translate(-50%, -50%);

    transition: all 0.5s ease-out;
}
@media all and (-ms-high-contrast: none) {
    /* ここに書く */
    .company_cover_circle{
        background-color: rgba(0,87,227,0.5);
        mix-blend-mode: normal;
    }
}
.company_cover_circle.ready{
    top: 180px;
    left: 280px;
}

.company_mv_dot_cover{
    background: url(../image/company_mv_cover.png);
    background-repeat: repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0%;
    left: 0%;
}

.company_mv_container{
    width: 470px;
    position: absolute;
    top: 90px;
    left: 5%;
    opacity: 0;
    transform-origin: center right;
}
.company_mv_container.ready{
    animation-name: fadeIn-to-left;
    animation-duration: 1.0s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}

@keyframes fadeIn-to-left{
    0%{
        opacity: 0;
        transform: translateX(-100px) scale(1.0,1.0);
    }
    50%{
        opacity: 1;
        transform: translateX(0px) scale(0.95,1.05);
    }
    55%{
        opacity: 1;
        transform: translateX(0px) scale(0.95,1.05);
    }
    75%{
        transform: translateX(0px) scale(1.05,0.95);
    }
    100%{
        opacity: 1;
        transform: translateX(0px) scale(1.0,1.0);
    }
}

.company_mv_copy{
    display: block;
    width: 100%;
    height: auto;
}

.company_mv_sub_copy{
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 8px;
    margin-top: 20px;
}
_::-webkit-full-page-media, _:future, :root .company_mv_sub_copy{
    letter-spacing: 8px; /* safari 対策 */
}

.company_mv_head{
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 2.5px;
    margin-top: 30px;
}

.company_mv_text{
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 2.0;
    letter-spacing: 1.0px;
    margin-top: 25px;
    text-align: justify;
    word-break: break-all;
}

/* CONTENTS PRODUCE */
.section_company_service{
    background-color: #fff;
    padding-top: 60px;
    width: 100%;
}
#section_company_produce{
    padding-top: 90px;
}

.company_service_container{
    border-bottom: 1px dotted #969696;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 60px;
    width: 90%;
}
#section_company_ip .company_service_container{
    border-bottom: none;
}

.company_service_title_inner{
    display: flex;
    justify-content: space-between;
}

.company_service_title_wrap{
    width: 47%;
}
#section_company_produce .company_service_title_wrap{
    margin-right: 50px;
    min-width: 440px;
}

.company_service_title_cate{
    color: #c9caca;
    font-size: 28px;
    font-weight: 500;
}

.company_service_title_en{
    color: #009fe8;
    font-size: 54px;
    font-weight: 500;
    margin-top: 10px;
}

.company_service_title_ja{
    color: #009fe8;
    font-size: 18px;
    font-weight: normal;
    margin-top: 15px;
}
.company_service_title_cate,
.company_service_title_en,
.company_service_title_ja{
    overflow: hidden;
}
.company_service_title_cate_text,
.company_service_title_en_text,
.company_service_title_ja_text{
    opacity: 0;
    transform: translateY(100%);
    transition: all 1.0s cubic-bezier(0, 1.2, 1.0, 1.0);
}
.company_service_title_cate_text.ready,
.company_service_title_en_text.ready,
.company_service_title_ja_text.ready{
    opacity: 1;
    transform: translateY(0%);
}

.company_service_info_wrap{
    width: 50%;

    opacity: 0;
    transform: translateY(20px);
    transition: all 2.0s cubic-bezier(0, 1.2, 1.0, 1.0);
}
.company_service_info_wrap.ready{
    opacity: 1;
    transform: translateY(0px);
}

.company_service_info_head{
    box-sizing: border-box;
    background-color: #009fe8;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    padding: 8px 10px;
}
.company_service_info_head:nth-child(2){
    margin-top: 5px;
}

.company_service_info_text{
    font-size: 14px;
    line-height: 2.0;
    margin-top: 20px;
    text-align: justify;
    word-break: break-all;
}

.company_service_inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
}

.company_service_item_wrap{
    display: block;
    overflow: hidden;
    padding-top: 20%;
    width: 33.1%;
    position: relative;

    opacity: 0;
    transform: translateY(20px);
    transition: all 2.0s cubic-bezier(0, 1.2, 1.0, 1.0);
}
.company_service_item_wrap.ready{
    opacity: 1;
    transform: translateY(0px);
}
.company_service_item_wrap:nth-child(n+4){
    margin-top: 3px;
}

.company_service_item_dummy{
    width: 33.1%;
}

.company_service_item_wrap picture::after{
    content: "";
    background-color: rgba(0,0,0,0.2);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.company_service_item_img{
    display: block;
    font-family: 'object-fit: cover;'; /*IE対策*/
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.0);

    transition: all 0.3s ease-out;
}
.company_service_item_wrap:hover .company_service_item_img{
    transform: translate(-50%, -50%) scale(1.1);
}
.company_service_item_wrap.nolink:hover .company_service_item_img{
    transform: translate(-50%, -50%) scale(1.0);
}

.company_service_img{
    display: block;
    margin-top: 30px;
    width: 100%;
    height: auto;

    opacity: 0;
    transform: translateY(20px);
    transition: all 2.0s cubic-bezier(0, 1.2, 1.0, 1.0);
}
.company_service_img.ready{
    opacity: 1;
    transform: translateY(0px);
}

/* MESSAGE */
.section_company_message{
    background-color: #009fe8;
    margin-top: 60px;
    padding-top: 80px;
    padding-bottom: 110px;
    width: 100%;
}

.company_message_container{
    display: flex;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
}

.company_message_content_wrap{
    order: 1;
    width: 52%;

    opacity: 0;
    transform: translateY(20px);
    transition: all 2.0s cubic-bezier(0, 1.2, 1.0, 1.0);
}
.company_message_content_wrap.ready{
    opacity: 1;
    transform: translateY(0px);
}

.company_message_title{
    color: #fff;
    font-size: 52px;
    font-weight: 500;
}

.company_message_head{
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.7;
    margin-top: 40px;
}

.company_message_text{
    color: #fff;
    font-size: 14px;
    line-height: 2.0;
    margin-top: 25px;
    text-align: justify;
}

.company_message_officer{
    color: #fff;
    font-size: 18px;
    margin-top: 30px;
    text-align: right;
}

.company_message_name_img{
    display: block;
    margin-left: auto;
    margin-top: 20px;
    width: 100px;
    height: auto;
}

.company_messsage_img_wrap{
    order: 2;
    width: 40%;

    opacity: 0;
    transform: translateY(20px);
    transition: all 2.0s cubic-bezier(0, 1.2, 1.0, 1.0);
}
.company_messsage_img_wrap.ready{
    opacity: 1;
    transform: translateY(0px);
}
.company_messsage_img_wrap.sp{
    display: none;
}

.company_message_img{
    display: block;
    width: 100%;
    height: auto;
}

/* PROFILE */
.section_company_profile{
    overflow: hidden;
    width: 100%;
    height: 730px;
    position: relative;
}

.company_profile_bg{
    display: block;
    font-family: 'object-fit: cover;'; /*IE対策*/
    object-fit: cover;
    width: 100%;
    height: 100%;

    animation-name: auto-scale;
    animation-duration: 15.0s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
@keyframes auto-scale {
    0%{
        transform: scale(1.0);
    }
    50%{
        transform: scale(1.2);
    }
    100%{
        transform: scale(1.0);
    }
}

.company_profile_container{
    width: 90%;
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
}

.company_profile_title{
    color: #fff;
    font-size: 52px;
    font-weight: 500;
}

.company_profile_inner{
    display: flex;
    margin-top: 90px;
}

.company_profile_content_l{
    width: 45%;
}

.company_profile_content_r{
    width: 50%;
}

.company_profile_line{
    display: flex;
}

.company_profile_head{
    color: #fff;
    display: flex;
    font-size: 14px;
    line-height: 2.0;
    min-width: 110px;
}
.company_profile_head span{
    display: block;
    margin-left: auto;
}

.company_profile_data{
    color: #fff;
    font-size: 14px;
    line-height: 2.0;
    margin-left: 30px;
}
.company_profile_data a{
    color: #fff;
}


/* ====================================
             ARCHIVEページ
======================================= */
/* ページネーション */
.navigation.pagination{
    margin-top: 60px;
}

.screen-reader-text{
    display: none;
}

.nav-links{
    display: flex;
    justify-content: center;
}

.page-numbers{
    display: flex;
    align-items: center;
}

ul.page-numbers li .page-numbers{
    box-sizing: border-box;
    border: 2px solid #009fe8;
    border-radius: 50%;
    color: #000;
    display: flex;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
    margin-right: 5px;
    width: 30px;
    height: 30px;
}
ul.page-numbers li span.page-numbers.current{
    background-color: #009fe8;
    color: #fff;
}
ul.page-numbers li a.next.page-numbers,
ul.page-numbers li a.prev.page-numbers{
    border: none;
    width: auto;
}
ul.page-numbers li span.page-numbers.dots{
    border: none;
    margin-left: 0px;
    margin-right: 0px;
    width: auto;
}



/* ====================================
            ARCHIVE WORKSページ
======================================= */
.section_archive{
    padding-top: 60px;
    padding-bottom: 60px;
    width: 100%;
}

.archive_container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
}

.archive_inner,
.dummy_box{
    width: 33.1%;
}
.archive_inner{
    opacity: 0;
    transform: translateY(20px);
    transition: all 2.0s cubic-bezier(0, 1.2, 1.0, 1.0);
}
.archive_inner.ready{
    opacity: 1;
    transform: translateY(0px);
}
.archive_inner:nth-child(n+4){
    margin-top: 60px;
}

.archive_img_wrap{
    display: block;
    overflow: hidden;
    padding-top: 56.25%;
    width: 100%;
    position: relative;
}

.archive_img{
    display: block;
    font-family: 'object-fit: cover;'; /*IE対策*/
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.0);

    transition: all 0.3s ease-out;
}
.archive_inner:hover .archive_img{
    transform: translate(-50%, -50%) scale(1.1);
}

.archive_text_wrap{
    width: 95%;
}

.archive_top_text{
    color: #000;
    font-size: 14px;
    margin-top: 15px;
    line-height: 1.5;
    text-align: justify;
    word-break: break-all;
}

.archive_title{
    color: #000;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
    margin-top: 10px;
    text-align: justify;
    word-break: break-all;
}
.archive_inner:hover .archive_title{
    text-decoration: underline;
}

.archive_bottom_text{
    color: #000;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 5px;
    text-align: justify;
    word-break: break-all;
}


/* ====================================
            ARCHIVE MEMBERページ
======================================= */
.section_member_archive{
    width: 100%;
}

.archive_member_container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 60px;
    width: 90%;
}
.archive_member_container:not(:last-child){
    border-bottom: 1px dotted #969696;
}

.archive_member_head_en{
    color: #009fe8;
    display: flex;
    align-items: center;
    font-size: 40px;
    font-weight: 500;
    margin-top: 60px;
    margin-bottom: 60px;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
}

.archive_member_head_ja{
    color: #969696;
    font-size: 14px;
    font-weight: bold;
    margin-left: 15px;
}

.archive_member_inner,
.dummy_box{
    width: 33.1%;
}
.archive_member_inner{
    background-color: #f0f0f0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 2.0s cubic-bezier(0, 1.2, 1.0, 1.0);
}
.archive_member_inner.ready{
    opacity: 1;
    transform: translateY(0px);
}
.archive_member_inner:nth-child(n+4){
    margin-top: 60px;
}

.archive_member_img_wrap{
    display: block;
    overflow: hidden;
    padding-top: 100%;
    width: 100%;
    position: relative;
}

.archive_member_img{
    display: block;
    font-family: 'object-fit: cover;'; /*IE対策*/
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.0);

    transition: all 0.3s ease-out;
}
.archive_member_inner:hover .archive_member_img{
    transform: translate(-50%, -50%) scale(1.1);
}

.archive_member_text_wrap{
    box-sizing: border-box;
    padding: 20px 5% 30px;
    width: 100%;
    min-height: 160px;
}

.archive_member_top_text{
    color: #000;
    font-size: 14px;
    line-height: 1.5;
    text-align: justify;
    word-break: break-all;
}

.archive_member_title{
    color: #000;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
    margin-top: 10px;
    text-align: justify;
    word-break: break-all;
}
.archive_member_inner:hover .archive_member_title{
    text-decoration: underline;
}

.archive_member_bottom_text{
    color: #000;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 5px;
    text-align: justify;
    word-break: break-all;
}


/* ====================================
          ARCHIVE NEWSページ
======================================= */
.section_archive_news{
    padding-top: 20px;
    padding-bottom: 60px;
    width: 100%;
}

.archive_news_container{
    margin-left: auto;
    margin-right: auto;
    width: 800px;
}

.archive_news_inner{
    box-sizing: border-box;
    border-bottom: 1px dotted #969696;
    display: flex;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    padding: 40PX;

    opacity: 0;
    transform: translateY(20px);
    transition: all 2.0s cubic-bezier(0, 1.2, 1.0, 1.0);
}
.archive_news_inner.ready{
    opacity: 1;
    transform: translateY(0px);
}

.archive_news_img_wrap{
    width: 35%;
}

.archive_news_img_wrap picture{
    display: block;
    overflow: hidden;
    padding-top: 56.25%;
    width: 100%;
    position: relative;
    transition: all 0.3s ease-out;
}


.archive_news_img{
    display: block;
    font-family: 'object-fit: cover;'; /*IE対策*/
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.0);

    transition: all 0.3s ease-out;
}
.archive_news_inner:hover .archive_news_img{
    transform: translate(-50%, -50%) scale(1.1);
}


.archive_news_text_wrap{
    width: 57%;
}

.archive_news_date{
    color: #009fe8;
    font-size: 16px;
}

.archive_news_title{
    color: #000;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.7;
    margin-top: 10px;
    text-align: justify;
    word-break: break-all;
}
.archive_news_inner:hover .archive_news_title{
    text-decoration: underline;
}


/* ====================================
              SINGLEページ
======================================= */
.section_single_share{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    padding-bottom: 60px;
    width: 700px;
}

.single_share_link{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 75px;
}
.single_share_link:nth-child(1){
    /* 24.03.21 A 変更 */
    background-color: #000;
}
.single_share_link:nth-child(2){
    /* 24.03.21 A 変更 */
    background-color: #0866ff;
}

.single_share_content{
    display: flex;
    align-items: center;
}

.single_share_icon{
    display: block;
    width: 25px;
    height: auto;
}

/* 24.03.21 A 追加 */
.single_share_link:nth-child(2) .single_share_icon{
    width: 40px;
}

.single_share_text{
    color: #fff;
    font-size: 16px;
    margin-left: 5px;
}


/* ====================================
    SINGLEページ(SELF-INTRODUCTION)
======================================= */
.section_member_single{
    margin-top: 60px;
    padding-bottom: 60px;
    width: 100%;
}

.member_single_container{
    margin-left: auto;
    margin-right: auto;
    width: 85%;
    min-width: 800px;
}

.member_single_top_wrap{
    display: flex;
}

.member_single_top_l{
    background-color: #f0f0f0;
    box-sizing: border-box;
    padding: 60px 40px 40px 40px;
    width: 50%;
}

.member_single_top_copy{
    font-size: 18px;
    line-height: 1.5;
    text-align: justify;
    word-break: break-all;
}

.member_single_top_name_ja{
    font-size: 28px;
    font-weight: bold;
    margin-top: 25px;
    line-height: 1.5;
}

.member_single_top_name_en{
    font-size: 14px;
    line-height: 1.5;
    margin-top: 5px;
}

.member_single_top_officer{
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    margin-top: 5px;
}

.member_single_top_border{
    border-top: 1px dotted #969696;
    margin-top: 60px;
    margin-bottom: 30px;
    width: 100%;
}

.member_single_top_head{
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
}

.member_single_top_text{
    font-size: 14px;
    line-height: 2.0;
    margin-top: 5px;
    text-align: justify;
    word-break: break-all;
}

.member_single_top_r{
    width: 50%;
}

.member_single_top_img{
    display: block;
    font-family: 'object-fit: cover;'; /* IE対策 */
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.member_single_content_wrap{
    clear: both;
    margin-left: auto;
    margin-right: auto;
    overflow: auto;
    padding-top: 60px;
    width: 100%;
    min-width: 800px;
}

.member_single_content_title_en{
    color: #009fe8;
    display: flex;
    align-items: center;
    font-size: 46px;
    font-weight: 500;
    margin-bottom: 45px;
}

.member_single_content_title_ja{
    color: #969696;
    font-size: 16px;
    font-weight: bold;
    margin-left: 15px;
    margin-top: 5px;
}

.member_single_content_cate{
    font-size: 16px;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 15px;
}

.member_single_content_line{
    box-sizing: border-box;
    background-color: #fafafa;
    display: flex;
    align-items: center;
    margin-bottom: 3px;
}
.member_single_content_line:nth-of-type(even){
    background-color: #f5f5f5;
}
.member_single_content_line:last-of-type{
    margin-bottom: 0px;
}

.member_single_content_head{
    font-size: 13px;
    text-align: center;
    min-width: 110px;
}

.member_single_content_data{
    border-left: 1px solid #f0f0f0;
    font-size: 14px;
    line-height: 1.7;
    padding: 25px;
}

.member_single_content_it,
.member_single_content_ti{
    display: flex;
    justify-content: space-between;
    padding-top: 45px;
}
.member_single_content_it:first-of-type{
    padding-top: 0px;
}

.member_single_content_it_i{
    width: 35%;
}

.member_single_content_it_img,
.member_single_content_ti_img{
    display: block;
    margin-top: 6px;
    width: 100%;
    height: auto;
}

.member_single_content_it_t,
.member_single_content_ti_t{
    font-size: 14px;
    line-height: 2.3;
    text-align: justify;
    word-break: break-all;
    width: 60%;
}
.member_single_content_ti_t{
    order: 1;
}

.member_single_content_ti_i{
    order: 2;
    width: 35%;
}

.member_single_hirama_container{
    background-color: #fafafa;
    clear: both;
    margin-top: 60px;
    padding-bottom: 60px;
    width: 100%;
}

.member_single_hirama_container .member_single_content_wrap{
    width: 85%;
    min-width: 800px;
}

.member_single_content_text{
    font-size: 14px;
    line-height: 2.0;
    text-align: justify;
    word-break: break-all;
    margin-top: 30px;
    width: 550px;
}

.member_single_content_hayashi_wrap{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.member_single_content_hayashi_img_box{
    margin-top: 5px;
    width: 32%;
}

.member_single_content_hayashi_img{
    display: block;
    width: 100%;
    height: auto;
}
.member_single_content_hayashi_img.sp{
    display: none;
}

.member_single_content_hayashi_text_wrap{
    width: 65%;
}

.member_single_content_hayashi_text_wrap .member_single_content_text{
    width: 100%;
}

.member_single_content_info{
    border: 1px solid #000;
    display: flex;
    margin-top: 45px;
    padding-left: 25px;
}

.member_single_content_info_img_box{
    margin-left: auto;
    order: 2;
}

.member_single_content_info_img{
    display: block;
    font-family: 'object-fit: cover;';
    object-fit: cover;
    width: 200px;
    height: 100%;
}
.member_single_content_info_img.sp{
    display: none;
}

.member_single_content_info_text_wrap{
    order: 1;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 70%;
}

.member_single_content_info_head,
.member_single_content_info_title{
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.member_single_content_info_title{
    margin-bottom: 15px;
}

.member_single_content_info_text{
    font-size: 14px;
    line-height: 2.0;
    margin-top: 10px;
    text-align: justify;
    word-break: break-all;
}


/* ====================================
            SINGLEページ(WORKS)
======================================= */
.section_works_single{
    padding-top: 60px;
    width: 100%;
}

.works_single_container{
    margin-left: auto;
    margin-right: auto;
    width: 700px;
}

.works_single_title{
    color: #000;
    font-size: 22px;
    line-height: 1.5;
}

.works_single_main_img{
    display: block;
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100%;
    height: auto;
}

.works_single_head{
    color: #009fe8;
    font-size: 18px;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 20px;
    padding-top: 30px;
    padding-bottom: 5px;
    position: relative;
}
.works_single_head::after{
    content: "";
    background-color: #009fe8;
    width: 60%;
    height: 1px;
    position: absolute;
    bottom: 0%;
    left: 0%;
}

.single_text_m30,
.single_text_m60{
    font-size: 14px;
    line-height: 2.0;
    padding-bottom: 30px;
    text-align: justify;
    word-break: break-all;
}
.single_text_m60{
    padding-bottom: 60px;
}

.single_link{
    color: #0046ff;
}
.single_link:hover{
    text-decoration: underline;
}


/* ====================================
          SINGLEページ(NEWS)
======================================= */
.section_single_news{
    padding-top: 60px;
    width: 100%;
}

.single_news_container{
    margin-left: auto;
    margin-right: auto;
    width: 700px;
}

.single_news_date{
    color: #009fe8;
    font-size: 18px;
}

.single_news_date_border{
    background-color: #009fe8;
    margin-top: 7px;
    width: 55%;
    height: 1px;
}

.single_news_title{
    font-size: 22px;
    font-weight: bold;
    line-height: 1.5;
    margin-top: 20px;
    text-align: justify;
    word-break: break-all;
}

.single_news_main_img{
    display: block;
    margin-top: 30px;
    margin-bottom: 60px;
    width: 100%;
    height: auto;
}

.single_img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 30px;
    max-width: 100%;
    height: auto;
}


/* ====================================
            PRIVACY POLYCYページ
======================================= */
.section_privacy_content{
    background-color: #fff;
    padding-bottom: 60px;
    width: 100%;
}

.privacy_content_container{
    border-bottom: 1px dotted #969696;
    margin-left: auto;
    margin-right: auto;
    padding-top: 60px;
    padding-bottom: 60px;
    width: 90%;
}

.privacy_content_inner{
    margin-left: auto;
    margin-right: auto;
    width: 700px;
}

.privacy_content_head{
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
}

.privacy_content_text{
    font-size: 14px;
    margin-top: 25px;
    line-height: 2.0;
    text-align: justify;
    word-break: break-all;
}
.privacy_content_text a{
    color: #000;
}


/* ====================================
            PRIVACY POLYCYページ
======================================= */
.section_recruit_content{
    background-color: #fff;
    padding-bottom: 60px;
    width: 100%;
}

.recruit_content_container{
    border-bottom: 1px dotted #969696;
    margin-left: auto;
    margin-right: auto;
    padding-top: 60px;
    padding-bottom: 60px;
    width: 90%;
}

.recruit_content_inner{
    margin-left: auto;
    margin-right: auto;
    width: 700px;
}

.recruit_content_gather_line{
    display: flex;
    align-items: center;
    margin-top: 30px;
    width: 100%;
}

.recruit_content_gather_head{
    font-size: 14px;
    line-height: 1.5;
    min-width: 190px;
    height: 100%;
}

.recruit_content_gather_text{
    border-left: 1px solid #c9caca;
    font-size: 14px;
    line-height: 2.0;
    padding-left: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: justify;
    word-break: break-all;
}

.recruit_content_head{
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
}

.recruit_content_text{
    font-size: 14px;
    margin-top: 25px;
    line-height: 2.0;
    text-align: justify;
    word-break: break-all;
}
.recruit_content_text a{
    color: #000;
}
.recruit_content_link:hover{
    text-decoration: underline;
}

/* 24.03.21 A 追加 */
/* ====================================
        ANTISOCIAL FORCES POLICYページ
======================================= */

.afp_right_text{
    display: block;
    text-align: right;
}


/* ====================================
                footer
======================================= */
.footer_container{
    background-color: #009fe8;
    width: 100%;
}

.footer_contact_link{
    background-color: #009fe8;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:  26px;
    font-weight: 500;
    width: 100%;
    height: 96px;
}
/* #top_page .footer_contact_link{
    display: none;
} */
.footer_contact_link_small_text{
    font-size: 14px;
    font-weight: bold;
    margin-left: 15px;
}
.footer_contact_link_arrow{
    font-size: 22px;
    font-weight: bold;
    margin-left: 15px;
    margin-right: -180px;
    transition: all 0.3s ease-out;
}
.footer_contact_link:hover .footer_contact_link_arrow{
    margin-left: 20px;
    margin-right: -185px;
}

.footer_contact_img{
    display: block;
    margin-left: 30px;
    width: 180px;
    height: auto;
}

.footer_google_map{
    display: block;
    overflow: hidden;
    position: relative;
    width: 100%;
    padding-top: 27%;
}
.footer_google_map iframe{
    filter: grayscale(100%) brightness(55%);
    margin-top: -200px;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: calc(100% + 400px);

    pointer-events: none;
}

.footer_google_map_text{
    color: #fff;
    font-size: 15px;
    position: absolute;
    bottom: 25px;
    right: 5%;
}
.footer_google_map_arrow{
    margin-left: 10px;
}

.footer_google_map_pin{
    display: block;
    width: 90px;
    height: auto;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.footer_menu_wrap{
    display: flex;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
    width: 90%;
}

.footer_menu_inner{
    box-sizing: border-box;
    border-left: 1px dotted #0064ff;
    padding-left: 3%;
    padding-bottom: 70px;
}
.footer_menu_inner:nth-child(1){
    width: 25%;
}
.footer_menu_inner:nth-child(2){
    width: 40%;
}
.footer_menu_inner:nth-child(3){
    width: 35%;
}

.footer_menu{
    display: flex;
    align-items: center;
}
.footer_menu:not(:first-child){
    margin-top: 25px;
}

.footer_menu_en{
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.footer_menu_ja{
    color: #fff;
    font-size: 12px;
    margin-left: 10px;
}

.footer_logo_img_wrap{
    display: block;
    width: 200px;
}

.footer_logo_img{
    display: block;
    width: 100%;
    height: auto;
}

.footer_company{
    margin-top: 20px;
}
.footer_company,.footer_address{
    color: #fff;
    font-size: 14px;
    line-height: 2.0;
}

.footer_copyright{
    box-sizing: border-box;
    border-top: 1px solid #0064ff;
    color: #fff;
    font-size: 14px;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    width: 100%;
}


br.pc{
    display: block;
}
br.tb{
    display: none;
}
br.sp{
    display: none;
}
br.sp500{
    display: none;
}




@media screen and (min-width: 1200px){
    /* 全ページ共通スタイル */
    .top_message_inner .link_btn{
        border-radius: 30px;
        font-size: 22px;
        margin-top: 30px;
        height: 60px;
    }

    .section_top_produce .link_btn,
    .section_top_maerchandising .link_btn,
    .section_top_outbound .link_btn,
    .section_top_ip .link_btn{
        border-radius: 30px;
        font-size: 22px;
        margin-top: 30px;
        height: 60px;
    }
    .top_service_container .link_btn{
        width: 470px;
    }

    /* ====================================
                    TOP
    ======================================= */
    /* メインビジュアル */

    /* MESSAGE */
    /* .section_top_message{
        height: 800px;
    }

    .top_message_cover_circle{
        width: 900px;
        height: 900px;
        left: 350px;
    }

    .top_message_inner{
        width: 37%;
    }

    .top_message_head{
        font-size: 26px;
    }

    .top_message_text{
        font-size: 18px;
    }

    .top_message_illustration_wrap{
        width: 47%;
        max-width: 620px;
    }

    .top_message_illustration_sub_copy{
        font-size: 18px;
    } */

    /* SERVICE */
    /* .section_top_produce,
    .section_top_maerchandising,
    .section_top_outbound,
    .section_top_ip{
        height: 800px;
    }

    .top_produce_cover_circle,
    .top_maerchandising_cover_circle,
    .top_outbound_cover_circle,
    .top_ip_cover_circle{
        top: 270px;
        left: 350px;
    }

    .top_service_container{
        width: 510px;
    }

    .top_produce_cate,
    .top_maerchandising_cate,
    .top_outbound_cate,
    .top_ip_cate{
        font-size: 32px;
    }

    .top_produce_title_en,
    .top_maerchandising_title_en,
    .top_outbound_title_en,
    .top_ip_title_en{
        font-size: 62px;
    }

    .top_produce_title_ja,
    .top_maerchandising_title_ja,
    .top_outbound_title_ja,
    .top_ip_title_ja{
        font-size: 22px;
    }

    .top_produce_head,
    .top_maerchandising_head,
    .top_outbound_head,
    .top_ip_head{
        font-size: 22px;
        padding: 20px;
    }

    .top_produce_text,
    .top_maerchandising_text,
    .top_outbound_text,
    .top_ip_text{
        font-size: 18px;
        width: 470px;
    }

    .top_service_illustration_wrap{
        width: 47%;
        max-width: 620px;
    } */


    /* ====================================
                COMPANY
    ===================================== */
    .company_cover_circle.ready{
        top: 225px;
        left: 350px;
    }

    .company_mv_container{
        width: 610px;
    }

    .company_mv_sub_copy{
        font-size: 26px;
        letter-spacing: 13px;
    }

    .company_mv_head{
        font-size: 26px;
    }

    .company_mv_text{
        font-size: 18px;
    }
}





@media screen and (min-width: 1500px){
    .top_produce_head,
    .top_maerchandising_head,
    .top_outbound_head,
    .top_ip_head{
        width: 250%;
    }
}






























@media screen and (max-width: 959px){
    /* 全ページ共通スタイル */
    .link_btn{
        border-radius: 23px;
        font-size: 16px;
        margin-top: 20px;
        height: 45px;
    }
    .top_service_container .link_btn{
        width: 320px;
    }

    .section_page_title{
        height: 140px;
    }

    .page_title{
        font-size: 32px;
    }

    .page_back_btn{
        border-radius: 25px;
        font-size: 20px;
        font-weight: bold;
        width: 60%;
        min-width: 320px;
        height: 50px;
    }


    /* ====================================
                    header
    ======================================= */
    

    /* ====================================
                    TOP
    ======================================= */
    /* メインビジュアル */
    /* .top_mv_logo{
        width: 200px;
    }

    .top_mv_logo_circle{
        width: 600px;
        height: 600px;
    }
    .top_mv_logo_circle.ready{
        top: -160px;
        left: 90px;
    }

    .section_hamburger_wrap{
        width: 60px;
        height: 60px;
    }

    .section_hamburger_inner{
        width: 20px;
        height: 13px;
    }

    .section_hamburger_inner .hamburger_line02{
        top: 10px;
    }

    @keyframes hamburger02-ready{
        0%{
            opacity: 0;
            top: 10px;
            transform: rotate(0deg);
        }50%{
            opacity: 0;
            top: 6px;
            transform: rotate(0deg);
        }100%{
            opacity: 1;
            top: 6px;
            transform: rotate(-45deg);
        }
    }

    @keyframes hamburger02-return{
        0%{
            opacity: 0;
            top: 6px;
            transform: rotate(-45deg);
        }50%{
            opacity: 0;
            top: 6px;
            transform: rotate(0deg);
        }100%{
            opacity: 1;
            top: 10px;
            transform: rotate(0deg);
        }
    }

    .section_hamburger_wrap.click{
        width: 280px;
    }

    .hamburger_menu_inner{
        left: 10%;
    }

    .hamburger_menu_link_en{
        font-size: 20px;
    }

    .top_mv_copy_wrap{
        min-width: 500px;
    }

    .top_mv_sub_copy{
        font-size: 20px;
        letter-spacing: 8px;
        margin-top: 15px;
    }

    .top_mv_copy_btn{
        border-radius: 23px;
        font-size: 16px;
        width: 100%;
        height: 45px;
    }

    .section_scroll_wrap{
        width: 25px;
        height: 90px;
    }

    .section_scroll{
        font-size: 15px;
    }
    
    .top_mv_new_news{
        font-size: 16px;
    }

    .top_mv_new_news_btn{
        font-size: 16px;
    } */


    /* MESSAGE */
    /* .top_message_inner{
        width: 42%;
        min-width: 350px;
    }

    .top_message_logo{
        width: 200px;
    }

    .top_message_head{
        font-size: 18px;
    }

    .top_message_illustration_content{
        width: 90%;
    }

    .top_message_illustration_sub_copy{
        letter-spacing: 3px;
    } */

    /* SERVICE */
    /* .top_produce_cover_circle,
    .top_maerchandising_cover_circle,
    .top_outbound_cover_circle,
    .top_ip_cover_circle{
        width: 700px;
        height: 700px;
        top: 180px;
        left: 200px;
    }

    .top_service_logo{
        width: 200px;
    }

    .top_produce_cate,
    .top_maerchandising_cate,
    .top_outbound_cate,
    .top_ip_cate{
        font-size: 24px;
    }

    .top_produce_title_en,
    .top_maerchandising_title_en,
    .top_outbound_title_en,
    .top_ip_title_en{
        font-size: 48px;
        margin-top: 10px;
    }

    .top_produce_title_ja,
    .top_maerchandising_title_ja,
    .top_outbound_title_ja,
    .top_ip_title_ja{
        font-size: 16px;
        margin-top: 10px;
    }

    .top_produce_head,
    .top_maerchandising_head,
    .top_outbound_head,
    .top_ip_head{
        font-size: 16px;
        margin-top: 20px;
        padding: 12px 15px;
        width: 100%;
    }

    .top_produce_text,
    .top_maerchandising_text,
    .top_outbound_text,
    .top_ip_text{
        margin-top: 15px;
        width: 320px;
    } */

    /* CONTACT */
    /* .top_contact_container{
        min-width: 500px;
    }

    .top_contact_title{
        font-size: 42px;
    }

    .top_contact_privacy_modal_btn{
        display: inline;
        color: #fff;
    }

    .top_contact_form_submit_btn{
        font-size: 18px;
        height: 50px;
    }

    .modal_privacy_inner{
        padding: 50px 40px 60px;
        min-width: 500px;
    }

    .modal_privacy_title{
        font-size: 14px;
    }

    .modal_privacy_text{
        font-size: 12px;
    }

    .modal_privacy_close_img{
        width: 20px;
    } */

    /* Contact Form 7のCSS */
    /* .wpcf7-form-control-wrap{
        width: 100%;
    }

    .section_top_contact .wpcf7-not-valid-tip{
        margin-left: 0px;
    } */

    /* オープニングアニメーション */
    /* .op_anim_logo{
        width: 80%;
    } */


    /* ====================================
                お問い合わせ完了画面
    ======================================= */
    .complete_text{
        width: 90%;
    }


    /* ====================================
                COMPANY
    ======================================= */
    /* メインビジュアル */
    .section_company_mv{
        height: 600px;
    }

    .company_cover_circle.ready{
        top: 120px;
        left: 220px;
    }

    .company_mv_container{
        width: 450px;
    }

    .company_mv_sub_copy{
        font-size: 20px;
        letter-spacing: 9px;
    }
    _::-webkit-full-page-media, _:future, :root .company_mv_sub_copy{
        letter-spacing: 9px; /* safari 対策 */
    }

    .company_mv_head{
        font-size: 20px;
    }

    .company_mv_text{
        width: 450px;
    }

    /* CONTENTS PRODUCE */
    .company_service_title_inner{
        flex-direction: column;
    }

    .company_service_title_wrap{
        width: 100%;
    }

    .company_service_title_cate{
        font-size: 24px;
    }

    .company_service_title_en{
        font-size: 48px;
    }

    .company_service_info_wrap{
        margin-top: 20px;
        width: 100%;
    }

    .company_service_info_head{
        font-size: 20px;
        width: 400px;
    }

    .company_service_item_wrap{
        padding-top: 28%;
        width: 49.8%;
    }
    .company_service_item_wrap:nth-child(n+3){
        margin-top: 3px;
    }

    .company_service_item_dummy{
        width: 49.8%;
    }

    /* MESSAGE */
    .section_company_message{
        padding-bottom: 70px;
    }

    /* PROFILE */
    .section_company_profile{
        height: 1050px;
    }

    .company_profile_bg{
        width: auto;
        position: absolute;
        top: 50%;
        left: 0%;

        animation-duration: 100.0s;
    }
    @media all and (-ms-high-contrast: none){
        .company_profile_bg{
            top: 0%; /* IE 対策 */
        }
    }
    @keyframes auto-scale {
        0%{
            transform: scale(1.0) translateY(-50%);
            left: 0%;
        }
        50%{
            transform: scale(1.0) translateY(-50%);
            left: calc(-1776px + 100%);
        }
        100%{
            transform: scale(1.0) translateY(-50%);
            left: 0%;
        }
    }

    .company_profile_title{
        font-size: 46px;
    }

    .company_profile_inner{
        flex-direction: column;
        margin-top: 50px;
    }

    .company_profile_content_l{
        width: 100%;
    }

    .company_profile_content_r{
        width: 100%;
    }

    .company_profile_line{
        display: flex;
    }


    /* ====================================
            ARCHIVE WORKSページ
    ======================================= */
    .archive_inner,
    .dummy_box{
        width: 49.8%;
    }
    .archive_inner:nth-child(n+3){
        margin-top: 60px;
    }


    /* ====================================
            ARCHIVE MEMBERページ
    ======================================= */
    .archive_member_head_en{
        font-size: 36px;
    }

    .archive_member_inner,
    .dummy_box{
        width: 49.8%;
    }

    .archive_member_inner:nth-child(n+3){
        margin-top: 60px;
    }


    /* ====================================
            ARCHIVE NEWSページ
    ======================================= */

    .archive_news_container{
        width: 90%;
    }

    .archive_news_inner{
        padding: 40px 20px 40px;
    }

    .archive_news_img_wrap{
        width: 40%;
    }

    .archive_news_text_wrap{
        width: 57%;
    }


    /* ====================================
                SINGLEページ
    ======================================= */
    .section_single_share{
        width: 90%;
    }


    /* ====================================
        SINGLEページ(SELF-INTRODUCTION)
    ======================================= */
    .member_single_container{
        width: 90%;
        min-width: 0px;
    }

    .member_single_top_wrap{
        display: flex;
    }

    .member_single_top_l{
        padding: 30px 20px 30px 20px;
    }

    .member_single_top_copy{
        font-size: 16px;
    }

    .member_single_top_name_ja{
        font-size: 24px;
    }

    .member_single_top_officer{
        font-size: 14px;
    }

    .member_single_top_border{
        margin-top: 40px;
        margin-bottom: 20px;
        width: 100%;
    }

    .member_single_content_wrap{
        width: 100%;
        min-width: 0px;
    }

    .member_single_content_title_en{
        font-size: 42px;
    }

    .member_single_content_data{
        padding-left: 20px;
        padding-right: 20px;
    }

    .member_single_hirama_container .member_single_content_wrap{
        min-width: 0px;
    }

    .member_single_content_info{
        display: block;
        overflow: auto;
    }

    .member_single_content_info_img{
        float: right;
        margin-left: 25px;
        width: 200px;
    }
    
    .member_single_content_info_text_wrap{
        box-sizing: border-box;
        padding-right: 25px;
        width: 100%;
    }

    .member_single_content_info_head,
    .member_single_content_info_title{
        margin-bottom: 15px;
    }

    .member_single_content_text{
        width: 100%;
    }

    .member_single_content_hayashi_wrap{
        display: block;
        overflow: auto;
    }

    .member_single_content_hayashi_img_box{
        margin-top: 5px;
        float: left;
        margin-right: 25px;
        min-width: 200px;
    }

    .member_single_content_hayashi_wrap .member_single_content_title_en{
        align-items: flex-start;
        flex-direction: column;
    }

    .member_single_content_hayashi_wrap .member_single_content_title_ja{
        margin-left: 0px;
    }
    
    .member_single_content_hayashi_text_wrap{
        width: 100%;
    }


    /* ====================================
                SINGLEページ(WORKS)
    ======================================= */
    .works_single_container{
        width: 90%;
    }


    /* ====================================
            SINGLEページ(NEWS)
    ======================================= */
    .single_news_container{
        width: 90%;
    }


    /* ====================================
                PRIVACY POLYCYページ
    ======================================= */

    .privacy_content_inner{
        width: 100%;
    }

    /* ====================================
                RECRUITページ
    ======================================= */
    .recruit_content_inner{
        width: 100%;
    }

    .recruit_content_gather_head{
        min-width: 140px;
    }

    .recruit_content_gather_text{
        padding-left: 30px;
    }


    /* ====================================
                    FOOTER
    ======================================= */
    .footer_contact_img{
        width: 160px;
    }

    .footer_google_map{
        padding-top: 50%;
    }

    .footer_google_map_pin{
        width: 70px;
    }

    .footer_menu_wrap{
        flex-wrap: wrap;
        width: 90%;
    }

    .footer_menu_inner{
        border-left: none;
        margin-bottom: 50px;
        padding-left: 4%;
        padding-bottom: 0px;
        width: 50%;
    }
    .footer_menu_inner:nth-child(1){
        border-left: none;
        width: 50%;
    }
    .footer_menu_inner:nth-child(2){
        width: 50%;
    }
    .footer_menu_inner:last-child{
        border-top: 1px dotted #0064ff;
        padding-top: 50px;
        padding-left: 0%;
        width: 100%;
    }

    .footer_logo_img_wrap{
        margin-left: auto;
        margin-right: auto;
    }

    .footer_company,
    .footer_address{
        text-align: center;
    }

    .footer_copyright{
        border-top: 1px dotted #0064ff;
    }



    br.pc{
        display: none;
    }
    br.tb{
        display: block;
    }
    br.sp{
        display: none;
    }
    br.sp500{
        display: none;
    }
    
}




@media screen and (max-width: 750px){
    .company_message_container{
        display: block;
    }

    .company_message_content_wrap{
        width: 100%;
    }

    .company_message_title{
        font-size: 46px;
    }

    .company_message_head{
        margin-top: 30px;
        font-size: 20px;
    }

    .company_message_text{
        margin-top: 20px;
    }

    .company_message_officer{
        font-size: 16px;
    }

    .company_messsage_img_wrap.pc{
        display: none;
    }
    .company_messsage_img_wrap.sp{
        display: block;
        margin-top: 30px;
        width: 100%;
    }

    .company_message_img{
        width: 100%;
    }
}























@media screen and (max-width: 768px){
    /* 全ページ共通スタイル */
    .section_top_produce .link_btn,
    .section_top_maerchandising .link_btn,
    .section_top_outbound .link_btn,
    .section_top_ip .link_btn{
        margin-top: 50px;
        margin-left: auto;
        margin-right: auto;
        width: 320px;
    }
    .top_message_inner .link_btn{
        margin-top: 50px;
        margin-left: auto;
        margin-right: auto;
        width: 320px;
        position: relative;
        z-index: 1;
    }

    /* page-templates/btn/round.php */
    .round_btn{
        border: calc(2 * var(--vw-sp)) solid #fff;
        font-size: calc(28 * var(--vw-sp));
        padding-top: calc(25 * var(--vw-sp));
        padding-bottom: calc(25 * var(--vw-sp));
    }
    .round_btn::after{
        margin-left: calc(15 * var(--vw-sp));
    }


    /* ====================================
                    header
    ======================================= */
    .header_top_wrap{
        justify-content: flex-start;
        margin-right: auto;
        width: 90%;
        height: 60px;
    }

    .header_logo_wrap{
        width: 180px;
        z-index: 1;
    }

    .header_logo_img .cls-1{
        transition: all 0.5s ease-out;
    }
    .header_logo_img .cls-1.ready{
        fill:#fff;
    }

    .header_contact_link{
        margin-left: auto;
        width: 100px;
        height: 36px;
        z-index: 1;
    }
    .header_contact_link.ready{
        background-color: #fff;
        color: #009fe8;
    }

    .header_contact_link_icon{
        display: block;
        width: 100%;
        height: auto;
    }

    .header_hamburger_wrap{
        border-radius: 50%;
        box-sizing: border-box;
        background-color: #009fe8;
        display: block;
        margin-left: 10px;
        width: 40px;
        height: 40px;
        position: relative;
        z-index: 1;

        transition: all 0.5s ease-out;
    }
    .header_hamburger_wrap.ready{
        background-color: #fff;
    }

    .header_hamburger_inner{
        width: 17px;
        height: 10px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        transition: all 0s;
    }
    
    .header_hamburger_inner span{
        display: block;
        background-color: #fff;
        border-radius: 1px;
        width: 100%;
        height: 2px;
        position: absolute;
        left: 0px;
    }
    .header_hamburger_inner .header_hamburger_line01{
        top: 0px;
    }
    .header_hamburger_inner .header_hamburger_line02{
        top: 8px;
    }
    
    .header_hamburger_line01.ready{
        animation-name: header_hamburger01-ready;
        animation-duration: 0.5s;
        animation-fill-mode: forwards;
    }
    .header_hamburger_line02.ready{
        animation-name: header_hamburger02-ready;
        animation-duration: 0.5s;
        animation-fill-mode: forwards;
    }
    .header_hamburger_line01.return{
        animation-name: header_hamburger01-return;
        animation-duration: 0.5s;
        animation-fill-mode: forwards;
    }
    .header_hamburger_line02.return{
        animation-name: header_hamburger02-return;
        animation-duration: 0.5s;
        animation-fill-mode: forwards;
    }
    
    @keyframes header_hamburger01-ready{
        0%{
            top: 0px;
            transform: rotate(0deg);
        }50%{
            top: 5px;
            transform: rotate(0deg);
        }100%{
            background-color: #009fe8;
            top: 5px;
            transform: rotate(45deg);
        }
    }
    
    @keyframes header_hamburger02-ready{
        0%{
            top: 8px;
            transform: rotate(0deg);
        }50%{
            top: 5px;
            transform: rotate(0deg);
        }100%{
            background-color: #009fe8;
            top: 5px;
            transform: rotate(-45deg);
        }
    }
    
    @keyframes header_hamburger01-return{
        0%{
            top: 5px;
            transform: rotate(45deg);
        }50%{
            top: 5px;
            transform: rotate(0deg);
        }100%{
            background-color: #fff;
            top: 0px;
            transform: rotate(0deg);
        }
    }
    
    @keyframes header_hamburger02-return{
        0%{
            top: 5px;
            transform: rotate(-45deg);
        }50%{
            top: 5px;
            transform: rotate(0deg);
        }100%{
            background-color: #fff;
            top: 8px;
            transform: rotate(0deg);
        }
    }

    .header_hamburger_menu_wrap{
        background-color: rgba(0,159,232,0.95);
        display: block;
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0px;
        left: 0px;

        opacity: 0;
        visibility: hidden;
        transition: all 0.5s ease-out;
    }
    .header_hamburger_menu_wrap.ready{
        opacity: 1;
        visibility: visible;
    }

    .header_hamburger_menu_inner{
        margin-top: 120px;
        margin-left: auto;
        margin-right: auto;
        width: 70%;
        min-width: 300px;
    }

    .header_hamburger_menu_list{
        width: 100%;
        position: relative;
    }
    .header_hamburger_menu_list:not(:first-child){
        margin-top: 30px;
    }
    .header_hamburger_menu_list::after{
        content: "〉";
        color: #fff;
        display: block;
        font-size: 20px;
        position: absolute;
        top: 50%;
        right: 0%;
        transform: translateY(-50%);
    }

    .header_hamburger_menu_link_en{
        color: #fff;
        display: flex;
        align-items: center;
        font-size: 22px;
        font-weight: bold;
    }

    .header_hamburger_menu_link_ja{
        color: #fff;
        font-size: 14px;
        font-weight: normal;
        margin-left: 10px;
    }

    .header_menu_wrap{
        display: none;
    }

    .header_space{
        height: 60px;
    }


    /* ====================================
                    TOP
    ======================================= */
    /* メインビジュアル */
    /* .section_top_mv{
        height: 100% !important;
    }

    .top_mv_copy_wrap{
        width: 80%;
    }

    .top_mv_sub_copy{
        font-size: 18px;
        letter-spacing: 13px;
    }

    .section_scroll_wrap{
        left: 50%;
        z-index: 1;
    } */

    /* MESSAGE */
    /* .section_top_message{
        height: 820px !important;
    }

    .top_message_container{
        height: 100%;
    }

    .top_message_cover_circle{
        top: 150px;
        left: 220px;
    }

    .top_message_gray_cover{
        background-color: rgba(150,150,150,0.5);
        mix-blend-mode: multiply;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0%;
        left: 0%;
    }
    @media all and (-ms-high-contrast: none){
        .top_message_gray_cover{
            background-color: rgba(150,150,150,0.3);
            mix-blend-mode: normal;
        }
    }
    
    .top_message_inner{
        margin-left: auto;
        margin-right: auto;
        width: 80%;
        min-width: 0px;
        top: 150px;
        left: 0%;
        right: 0%;
    }

    .top_message_head{
        font-size: 22px;
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .top_message_text{
        font-weight: normal;
        margin-top: 30px;
        position: relative;
        z-index: 1; 
    }

    .top_message_illustration_wrap.pc{
        display: none;
    }

    .top_message_illustration_content.sp{
        display: block;
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        max-width: 500px;
        position: relative;
        top: auto;
        left: auto;
    }

    .top_message_illustration_copy{
        position: relative;
        z-index: 1;

        opacity: 0;
        transform: translateX(-100px);
        transition: all 0.6s cubic-bezier(.26,1.33,.6,1);
    }
    .top_message_illustration_copy.ready{
        opacity: 1;
        transform: translateX(0px);
    }

    .top_message_illustration_sub_copy{
        font-size: 16px;
        margin-top: 25px;
        letter-spacing: 10px;
        position: relative;
        z-index: 1;

        opacity: 0;
        transform: translateX(-100px);
        transition: all 0.6s cubic-bezier(.26,1.33,.6,1);
    }
    .top_message_illustration_sub_copy.ready{
        opacity: 1;
        transform: translateX(0px);
    }

    .top_message_illustration_bg_sp{
        background-color: #3296fa;
        border-radius: 50%;
        mix-blend-mode: multiply;
        padding-top: 110%;
        width: 110%;
        position: absolute;
        top: 0%;
        right: 0%;
        bottom: 0%;
        margin: auto;
        left: -5%;
    }
    _::-webkit-full-page-media, _:future, :root .top_message_illustration_bg_sp{
        top: -200%;
        transform: rotateX(0deg);
    }
    @-moz-document url-prefix() {
        .top_message_illustration_bg_sp{
            top: -200%;
        }
    } */

    /* SERVICE */
    /* .section_top_produce,
    .section_top_maerchandising,
    .section_top_outbound,
    .section_top_ip{
        height: 1300px !important;
    }

    .top_service_container{
        width: 90%;
        top: 150px;
        left: 50%;
        transform: translateX(-50%);
    }

    .top_produce_cover_circle,
    .top_maerchandising_cover_circle,
    .top_outbound_cover_circle,
    .top_ip_cover_circle{
        top: 280px;
        left: 50%;
        transform: translate(-140%, -140%);
    }

    .top_produce_cate,
    .top_maerchandising_cate,
    .top_outbound_cate,
    .top_ip_cate{
        font-size: 24px;
        text-align: center;
    }

    .top_produce_title_en,
    .top_maerchandising_title_en,
    .top_outbound_title_en,
    .top_ip_title_en{
        font-size: 46px;
        text-align: center;
    }

    .top_produce_title_ja,
    .top_maerchandising_title_ja,
    .top_outbound_title_ja,
    .top_ip_title_ja{
        font-size: 22px;
        margin-top: 15px;
        text-align: center;
    }

    .top_produce_head,
    .top_maerchandising_head,
    .top_outbound_head,
    .top_ip_head{
        border-top-right-radius: 0px;
        border-bottom-right-radius: 0px;
        font-size: 18px;
        margin-top: 25px;
        margin-left: -50vw;
        margin-right: -50vw;
        padding-right: 10vw;
        text-align: center;
        width: 100vw;
        position: relative;
        left: 55%;
        right: 50%;
    }

    .top_produce_text,
    .top_maerchandising_text,
    .top_outbound_text,
    .top_ip_text{
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
        width: 90%;
    }

    .top_service_illustration_wrap{
        margin-top: 60px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        max-width: 500px;
        position: relative;
        top: auto;
        right: auto;

        transform: translateY(0%);
    }
    .top_service_illustration_wrap.pc{
        display: none;
    }
    .top_service_illustration_wrap.sp{
        display: block;
    }

    .top_service_illustration{
        transform: translate(-50%, -50%);
    } */

    /* CONTACT */
    /* .top_contact_container{
        width: 90%;
        min-width: 0px;
    }
    
    .top_contact_sub_title{
        font-size: 22px;
    }

    .top_contact_form_head{
        min-width: 180px;
    }

    .top_contact_privacy_modal_btn{
        display: inline;
        color: #fff;
    }

    .top_contact_form_submit_btn{
        font-size: 18px;
        height: 50px;
    }

    .pagenation_header_container{
        position: relative;
        z-index: 10;
    } */


    /* ====================================
                COMPANY
    ===================================== */
    .company_mv_text{
        font-weight: normal;
    }

}































@media screen and (max-width: 519px){
    /* 全ページ共通スタイル */
    .section_top_produce .link_btn,
    .section_top_maerchandising .link_btn,
    .section_top_outbound .link_btn,
    .section_top_ip .link_btn{
        margin-top: 30px;
        width: 90%;
    }
    .top_message_inner .link_btn{
        margin-top: 30px;
        width: 100%;
    }

    .page_back_btn_wrap{
        padding-top: 0px;
    }

    .page_title{
        letter-spacing: -0.5px;
    }

    .page_back_btn{
        width: 90%;
        min-width: 0px;
    }
    

    /* ====================================
                    header
    ======================================= */
    .header_logo_wrap{
        width: 130px;
    }

    .header_contact_link{
        width: 80px;
    }

    
    /* ====================================
                    TOP
    ======================================= */
    /* メインビジュアル */
    /* .section_top_mv{
        height: -webkit-fill-available !important;
        height: fill-available !important;
    }
    .top_mv_logo{
        width: 160px;
        top: 35px;
    }

    .top_mv_video.sp{
        display: block;
    }
    .top_mv_video.pc{
        display: none;
    }

    .section_hamburger_wrap{
        width: 55px;
        height: 55px;
        top: 25px;
    }

    .section_hamburger_inner{
        width: 20px;
        height: 13px;
    }

    .section_hamburger_inner .hamburger_line02{
        top: 10px;
    }

    @keyframes hamburger02-ready{
        0%{
            opacity: 0;
            top: 10px;
            transform: rotate(0deg);
        }50%{
            opacity: 0;
            top: 6px;
            transform: rotate(0deg);
        }100%{
            opacity: 1;
            top: 6px;
            transform: rotate(-45deg);
        }
    }

    @keyframes hamburger02-return{
        0%{
            opacity: 0;
            top: 6px;
            transform: rotate(-45deg);
        }50%{
            opacity: 0;
            top: 6px;
            transform: rotate(0deg);
        }100%{
            opacity: 1;
            top: 10px;
            transform: rotate(0deg);
        }
    }
    
    .section_hamburger_wrap.click{
        width: 230px;
    }

    .header_hamburger_menu_link_en{
        letter-spacing: -0.5px;
    }

    .top_mv_logo_circle {
        width: 390px;
        height: 390px;
    }
    .top_mv_logo_circle.ready{
        top: -80px;
        left: 70px;
    }

    .top_mv_copy_wrap{
        margin-top: 20px;
        min-width: 0px;
    }

    .top_mv_sub_copy{
        font-size: 14px;
        letter-spacing: 4px;
    }

    .top_mv_copy_btn{
        font-size: 16px;
        margin-top: 70px;
    }

    .section_scroll_wrap{
        width: 25px;
        height: 80px;
    }

    .top_mv_new_news_text{
        font-size: 13px;
        margin-left: 3%;
        margin-right: 3%;
        height: 12px;
    }

    .top_mv_new_news_btn_arrow{
        margin-left: 5px;
        margin-right: -5px;
    } */

    /* MESSAGE */
    /* .section_top_message{
        height: 680px !important;
    }

    .top_message_inner{
        width: 80%;
        top: 120px;
    }

    .top_message_cover_circle{
        width: 480px;
        height: 480px;
        top: 200px;
        left: 130px;
    }

    .top_message_head{
        font-size: 18px;
    }

    .top_message_text{
        line-height: 1.75;
        margin-top: 25px;
    }

    .top_message_illustration_content.sp{
        margin-top: 20px;
    }

    .top_message_illustration_sub_copy{
        font-size: 14px;
        margin-top: 15px;
        letter-spacing: 4px;
    } */

    /* SERVICE */
    /* .section_top_produce,
    .section_top_maerchandising,
    .section_top_outbound,
    .section_top_ip{
        height: 950px !important;
    }

    .top_produce_cover_circle,
    .top_maerchandising_cover_circle,
    .top_outbound_cover_circle,
    .top_ip_cover_circle{
        width: 500px;
        height: 500px;
        top: 200px;
        left: 50%;

    }

    .top_service_container{
        top: 110px;
    }

    .top_produce_cate,
    .top_maerchandising_cate,
    .top_outbound_cate,
    .top_ip_cate{
        font-size: 18px;
    }

    .top_produce_title_en,
    .top_maerchandising_title_en,
    .top_outbound_title_en,
    .top_ip_title_en{
        font-size: 34px;
        letter-spacing: -0.5px;
        margin-top: 5px;
    }

    .top_produce_title_ja,
    .top_maerchandising_title_ja,
    .top_outbound_title_ja,
    .top_ip_title_ja{
        font-size: 16px;
        margin-top: 10px;
    }

    .top_produce_head,
    .top_maerchandising_head,
    .top_outbound_head,
    .top_ip_head{
        font-size: 14px;
        margin-top: 15px;
        padding-left: 10px;
    }

    .top_produce_text,
    .top_maerchandising_text,
    .top_outbound_text,
    .top_ip_text{
        line-height: 1.7;
        letter-spacing: -0.5px;
        margin-top: 20px;
        width: 90%;
    }

    .top_service_illustration_wrap{
        margin-top: 20px;
    } */

    /* CONTACT */
    /* .section_top_contact{
        padding-top: 120px;
    }

    .top_contact_title{
        font-size: 32px;
    }

    .top_contact_sub_title{
        font-size: 16px;
        margin-top: 10px;
    }

    .top_contact_form_head{
        font-size: 12px;
        min-width: 120px;
    }

    .top_contact_form_data{
        padding: 10px;
    }

    .top_contact_form_head .must::after{
        top: 9px;
    }

    .top_contact_form_submit_btn{
        font-size: 16px;
    }

    .modal_privacy_inner{
        padding: 50px 20px 60px;
        width: 90%;
        min-width: 0px;
    } */

    /* オープニングアニメーション */
    /* .op_anim_logo{
        width: 90%;
    }

    .logo_border{
        height: 3px;
    } */


    /* ====================================
                お問い合わせ完了画面
    ======================================= */
    .section_contact_complete{
        padding-bottom: 60px;
    }

    /* ====================================
                COMPANY
    ======================================= */
    /* メインビジュアル */
    .section_company_mv{
        height: auto;
    }

    .company_cover_circle{
        width: 750px;
        height: 750px;
        top: -270px;
        left: -270px;
    }
    .company_cover_circle.ready {
        top: 150px;
        left: 40%;
    }

    .company_mv_container{
        width: 90%;
        top: 50px;
    }

    .company_mv_copy{
        width: 100%;
    }

    .company_mv_sub_copy{
        font-size: 18px;
        letter-spacing: 3px;
    }
    _::-webkit-full-page-media, _:future, :root .company_mv_sub_copy{
        letter-spacing: 3px; /* safari 対策 */
    }

    .company_mv_head{
        font-size: 18px;
    }

    .company_mv_text{
        font-size: 14px;
    }

    .company_mv_text{
        width: 100%;
    }

    /* CONTENTS PRODUCE */
    #section_company_produce{
        padding-top: 60px;
    }

    #section_company_produce .company_service_title_wrap{
        min-width: 0px;
    }

    .company_service_title_cate{
        letter-spacing: -0.5px;
    }

    .company_service_title_en{
        font-size: 38px;
        letter-spacing: -0.5px;
    }

    .company_service_title_ja{
        margin-top: 10px;
    }

    .company_service_info_head{
        font-size: 18px;
        width: 100%;
    }

    .company_service_item_wrap{
        padding-top: 56.25%;
        width: 100%;
    }
    .company_service_item_wrap:nth-child(n+2){
        margin-top: 3px;
    }

    .company_service_item_dummy{
        width: 100%;
    }

    /* MESSAGE */
    .section_company_message{
        padding-bottom: 50px;
    }

    .section_company_message{
        padding-top: 60px;
    }

    .company_message_title{
        font-size: 36px;
        letter-spacing: -0.5px;
    }

    .company_message_head{
        font-size: 18px;
    }

    .company_message_officer{
        margin-top: 30px;
    }

    .company_message_img{
        margin-top: 25px;
    }

    /* PROFILE */
    .section_company_profile{
        margin-bottom: 60px;
        height: 1100px;
    }
    @keyframes auto-scale {
        0%{
            transform: scale(1.0) translateY(-50%);
            left: 0%;
        }
        50%{
            transform: scale(1.0) translateY(-50%);
            left: calc(-1860px + 100%);
        }
        100%{
            transform: scale(1.0) translateY(-50%);
            left: 0%;
        }
    }

    .company_profile_container{
        top: 60px;
    }

    .company_profile_title{
        font-size: 36px;
        letter-spacing: -0.5px;
    }

    .company_profile_head{
        min-width: 90px;
    }

    .company_profile_data{
        margin-left: 15px;
    }


    /* ====================================
                ARCHIVE WORKSページ
    ======================================= */
    .archive_inner,
    .dummy_box{
        width: 100%;
    }
    .archive_inner:nth-child(n+2){
        margin-top: 60px;
    }

    .archive_text_wrap{
        width: 100%;
    }


    /* ====================================
            ARCHIVE MEMBERページ
    ======================================= */
    .archive_member_head_en{
        align-items: flex-start;
        flex-direction: column;
    }

    .archive_member_head_ja{
        margin-top: 10px;
        margin-left: 0px;
    }

    .archive_member_inner,
    .dummy_box{
        width: 100%;
    }

    .archive_member_inner:nth-child(n+2){
        margin-top: 60px;
    }

    
    /* ====================================
            ARCHIVE NEWSページ
    ======================================= */

    .archive_news_container{
        width: 90%;
    }

    .archive_news_inner{
        flex-direction: column;
        padding: 40px 0px;
    }
    /* .archive_news_inner:first-child{
        padding-top: 0px;
    } */

    .archive_news_img_wrap{
        width: 100%;
    }

    .archive_news_text_wrap{
        margin-top: 25px;
        width: 100%;
    }


    /* ====================================
                SINGLEページ
    ======================================= */
    .section_single_share{
        flex-direction: column;
    }

    .single_share_link{
        width: 100%;
        height: 50px;
    }
    .single_share_link:nth-child(2){
        margin-top: 10px;
    }

    .single_share_icon{
        width: 20px;
    }

    .single_share_text{
        font-size: 14px;
    }


    /* ====================================
        SINGLEページ(SELF-INTRODUCTION)
    ======================================= */
    .member_single_top_wrap{
        flex-direction: column-reverse;
    }

    .member_single_top_l{
        width: 100%;
    }

    .member_single_top_name_ja{
        font-size: 22px;
    }

    .member_single_top_r{
        width: 100%;
    }

    .member_single_content_title_en{
        align-items: flex-start;
        flex-direction: column;
        font-size: 36px;
    }

    .member_single_content_title_ja{
        margin-left: 0px;
        margin-top: 10px;
    }

    .member_single_content_line{
        align-items: flex-start;
        flex-direction: column;
        padding: 20px 10px;
    }

    .member_single_content_head{
        border-bottom: 1px solid #f0f0f0;
        padding-top: 5px;
        padding-bottom: 5px;
        text-align: left;
        width: 100%;
        min-width: 0px;
    }

    .member_single_content_data{
        border-left: none;
        padding: 0px;
        margin-top: 15px;
    }

    .member_single_content_it,
    .member_single_content_ti{
        flex-direction: column;
    }

    .member_single_content_it_i{
        width: 100%;
    }

    .member_single_content_it_t,
    .member_single_content_ti_t{
        margin-top: 15px;
        width: 100%;
    }
    .member_single_content_ti_t{
        order: 2;
    }

    .member_single_content_ti_i{
        order: 1;
        width: 100%;
    }
    
    .member_single_content_hayashi_img_box{
        float: none;
        margin-right: 0px;
        min-width: 100%;
    }

    .member_single_content_hayashi_img.pc{
        display: none;
    }
    .member_single_content_hayashi_img.sp{
        display: block;
    }

    .member_single_content_info_img{
        float: none;
        margin-left: 0px;
        width: 100%;
    }
    .member_single_content_info_img.pc{
        display: none;
    }
    .member_single_content_info_img.sp{
        display: block;
    }
    

    /* ====================================
                SINGLEページ(WORKS)
    ======================================= */
    .works_single_title{
        font-size: 20px;
    }

    .works_single_main_img{
        margin-top: 15px;
        margin-bottom: 0px;
    }
    .works_single_head::after{
        width: 70%;
    }

    /* ====================================
            SINGLEページ(NEWS)
    ======================================= */
    .single_news_date_border{
        width: 70%;
    }

    .single_news_main_img{
        margin-bottom: 35px;
    }

    .single_news_title{
        font-size: 20px;
    }


    /* ====================================
                PRIVACY POLYCYページ
    ======================================= */


    /* ====================================
                RECRUITページ
    ======================================= */
    .recruit_content_inner{
        width: 100%;
    }

    .recruit_content_gather_line{
        flex-direction: column;
        align-items: flex-start;
    }

    .recruit_content_gather_head{
        border-bottom: 1px solid #c9caca;
        padding-bottom: 5px;
        width: 70%;
        min-width: 0px;
    }

    .recruit_content_gather_text{
        border-left: none;
        margin-top: 25px;
        padding-left: 0px;
        padding-top: 0px;
        padding-bottom: 0px;
    }


    /* ====================================
                    FOOTER
    ======================================= */
    .footer_contact_link{
        font-size: 24px;
        height: 80px;
    }
    .footer_contact_link_arrow{
        font-size: 22px;
        margin-left: 15px;
        margin-right: -15px;
    }
    .footer_contact_link:hover .footer_contact_link_arrow{
        margin-left: 20px;
        margin-right: -20px;
    }

    .footer_contact_img{
        width: 130px;
    }

    .footer_google_map{
        padding-top: 60%;
    }

    .footer_google_map_pin{
        width: 60px;
    }

    .footer_google_map_text{
        bottom: 20px;
    }

    .footer_menu_inner:nth-child(1){
        margin-bottom: 30px;
        width: 100%;
    }
    .footer_menu_inner:nth-child(2){
        width: 100%;
    }

    .footer_menu:not(:first-child){
        margin-top: 30px;
    }

    .footer_menu_en{
        font-size: 20px;
        /* 24.03.21 A 追加 */
        line-height: 1.3em;
    }

    .footer_menu_ja{
        font-size: 13px;
        /* 24.03.21 A 追加 */
        line-height: 1.3em;
    }

    .footer_copyright{
        font-size: 12px;
    }


    br.pc{
        display: none;
    }
    br.tb{
        display: none;
    }
    br.sp{
        display: block;
    }
    br.sp500{
        display: none;
    }

}





















@media screen and (max-width: 320px){
    /* ====================================
                    header
    ======================================= */
    .header_hamburger_menu_inner{
        min-width: 280px;
    }


    /* ====================================
                    TOP
    ======================================= */
    /* MESSAGE */
    /* .section_top_message{
        height: 730px !important;
    }

    .top_message_head{
        font-size: 16px;
    }

    .top_message_illustration_sub_copy{
        font-size: 12px;
    } */

    /* SERVICE */
    /* .section_top_produce,
    .section_top_maerchandising,
    .section_top_outbound,
    .section_top_ip{
        height: 970px !important;
    }

    .top_maerchandising_head{
        line-height: 1.5;
    } */

    /* CONTACT */
    /* .top_contact_form_submit_btn{
        display: block;
        text-align: center;
    } */


    /* ====================================
                COMPANY
    ======================================= */
    /* メインビジュアル */
    .company_mv_sub_copy{
        font-size: 16px;
    }

    .company_mv_head{
        font-size: 16px;
    }

    /* CONTENTS PRODUCE */
    .company_service_title_en{
        font-size: 34px;
    }

    /* MESSAGE */
    .company_message_title{
        font-size: 32px;
    }

    .company_message_head{
        font-size: 16px;
    }

    /* PROFILE */
    .section_company_profile{
        height: 1200px;
    }
    @keyframes auto-scale {
        0%{
            transform: scale(1.0) translateY(-50%);
            left: 0%;
        }
        50%{
            transform: scale(1.0) translateY(-50%);
            left: calc(-2030px + 100%);
        }
        100%{
            transform: scale(1.0) translateY(-50%);
            left: 0%;
        }
    }

    .company_profile_title{
        font-size: 32px;
    }


    /* ====================================
                    FOOTER
    ======================================= */
    .footer_copyright{
        font-size: 10px;
    }


    br.pc{
        display: none;
    }
    br.tb{
        display: none;
    }
    br.sp{
        display: block;
    }
    br.sp500{
        display: block;
    }
}