@charset "UTF-8";

/* 基本
============================================ */
body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    line-height: 2.0;
    font-weight: 400;
    font-feature-settings: "palt";
    letter-spacing: 0.05em;
    color: #333333;
    text-align: justify; /* 両端揃え */
    text-justify: inter-ideograph; /* IEとEdgeへの対応 */
}

/* PC／SP 表示切り替え
============================================ */
.pc { display: block !important; }
.sp { display: none !important; }
@media only screen and (max-width: 767px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}

/* Page top
============================================ */
.pagetop {
	display: none;
	position: fixed;
	bottom: 100px;
	right: 40px;
	z-index: 99;
}
.pagetop a {
	display: block;
	width: 50px;
	height: 50px;
}
.pagetop a:hover{
	opacity: 0.7;
	transition: 0.4s ;
}

/* ヘッダー
============================================ */
.header_company-name {
    width: 330px;
    margin-top: 45px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
}
.header_company-name img {
    width: 100%;
    height: auto;
}
p.header_founding-year {
    font-size: 15px;
    line-height: 1.0;
    text-align: center;
    margin-bottom: 30px;
}
.header_line {
    border-top: 1px solid #D1D1D1;
}

/* グローバルナビ
============================================ */
ul.header_nav {
    max-width: 920px;
    height: 80px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
}
ul.header_nav li {
    font-size: 16px;
    font-family: 'Oswald', sans-serif;
    line-height: 1.5;
    text-align: center;
    padding-top: 24px;
}
.header_nav_j{
    font-size: 11px;
    font-weight: 700;
}
ul.header_nav li a {
    color: #0062A0;
    transition : all 0.3s ease 0s;
}
ul.header_nav li a p {
    color: #333333;
    transition : all 0.3s ease 0s;
}
ul.header_nav li a:hover {
    opacity: 0.5;
    transition : all 0.3s ease 0s;
}

/* フッター
============================================ */
.footer_wrap {
    width: 100%;
    background-color: #0062A0;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 80px;
    padding-bottom: 80px;
    margin-top: 120px;
}
.footer_area {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    color: #FFFFFF;
}
.footer_corporate_box {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.footer_company-name {
    width: 330px;
    margin-bottom: 10px;
}
.footer_company-name img {
    width: 100%;
    height: auto;
}
p.footer_founding-year {
    font-size: 13px;
    line-height: 1.0;
}
p.address_company-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}
.address_company-name_s {
    font-size: 12px;
}
ul.address_list {
    font-size: 13px;
    line-height: 1.8;
}
.footer_nav_wrap {
    max-width: 590px;
    display: flex;
    justify-content: space-between;
}
dl.footer_nav {
    line-height: 1.8;
}
dl.footer_nav dt {
    font-size:16px;
    font-weight: 700;
    margin-bottom: 18px;
}
dl.footer_nav dd {
    font-size:14px;
    font-weight: 500;
    margin-bottom: 22px;
    
}
dl.footer_nav dd p.footer_nav_company-business {
    font-size: 10px;
    font-weight: 500;
}
/* フッターメニュー202209追加
============================================ */
.footer_menu2 {
    flex-direction: column;
    justify-content: space-between;
}
ul.footer_menu2 {
    max-width: 100%;
    height: 100px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
}
ul.footer_menu2 li {
    font-size: 16px;
    font-family: 'Oswald', sans-serif;
    line-height: 1.5;
    text-align: center;
    padding-top: 5px;
}
.footer_menu2_j{
    font-size: 10px;
    font-weight: 100;
}
ul.footer_menu2 li a {
    color: whitesmoke;
    transition : all 0.3s ease 0s;
}
ul.footer_menu2 li a p {
    color: whitesmoke;
    transition : all 0.3s ease 0s;
}
ul.footer_menu2 li a:hover {
    opacity: 0.5;
    transition : all 0.3s ease 0s;
}
/* 矢印アイコン配置
-------------------------------------------------- */
dl.footer_nav dd {
    padding-left: 42px;
    position: relative;
    transition : all 0.3s ease 0s;
}
dl.footer_nav dd:before {
    content: "";     /*テキストがなくても必須*/
    display: block;  /*シェイプを作成*/
    width: 10px;     /*アイコン画像-幅*/
    height: 10px;     /*アイコン画像-高*/
    background: url("../../common/images/arrow_footer-nav.svg"); /*アイコン画像*/
    position: absolute;
    left: 21px;     /*位置調整*/
    top: 50%;   /*位置調整*/
    transform: translate(0,-50%)
}
dl.footer_nav dd:hover {
    opacity: 0.4; 
    transition : all 0.3s ease 0s;
}
/* copylight
-------------------------------------------------- */
.copylight_wrap {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #2D3033;
}
p.copylight {
    font-size: 10px;
    font-family: Arial, Helvetica, "sans-serif";
    text-align: center;
    color: #FFFFFF;
}

/* margin
============================================ */
.mg_t_10 { margin-top: 10px; }
.mg_t_20 { margin-top: 20px; }
.mg_t_30 { margin-top: 30px; }
.mg_t_40 { margin-top: 40px; }
.mg_t_50 { margin-top: 50px; }
.mg_t_60 { margin-top: 60px; }
.mg_t_70 { margin-top: 70px; }
.mg_t_80 { margin-top: 80px; }

.mg_b_10 { margin-bottom: 10px; }
.mg_b_20 { margin-bottom: 20px; }
.mg_b_30 { margin-bottom: 30px; }
.mg_b_40 { margin-bottom: 40px; }
.mg_b_50 { margin-bottom: 50px; }
.mg_b_60 { margin-bottom: 60px; }
.mg_b_70 { margin-bottom: 70px; }
.mg_b_80 { margin-bottom: 80px; }

.mg_l_10 { margin-left: 10px; }
.mg_l_20 { margin-left: 20px; }
.mg_l_30 { margin-left: 30px; }
.mg_l_40 { margin-left: 40px; }
.mg_l_50 { margin-left: 50px; }
.mg_l_60 { margin-left: 60px; }
.mg_l_70 { margin-left: 70px; }
.mg_l_80 { margin-left: 80px; }

.mg_r_10 { margin-right: 10px; }
.mg_r_20 { margin-right: 20px; }
.mg_r_30 { margin-right: 30px; }
.mg_r_40 { margin-right: 40px; }
.mg_r_50 { margin-right: 50px; }
.mg_r_60 { margin-right: 60px; }
.mg_r_70 { margin-right: 70px; }
.mg_r_80 { margin-right: 80px; }


/* ============================================

　スマートフォン設定

============================================ */

@media only screen and (max-width: 767px) {
    
    /* Page top
    ============================================ */
    .pagetop {
        bottom: 20px;
        right: 20px;
    }
    
    /* ヘッダー
    ============================================ */
    .header_wrap_sp {
        width: 100%;
        height:51px;
        background-color: #FFFFFF;
        position: fixed;
        top: 0px;
        right: 0px;
        z-index: 99;
        border-bottom: solid 1px #D1D1D1;
    }
    h1.header_company-name_sp {
        width: 165px;
        height: 15px;
        margin-top: 0px;
        margin-bottom: 3px;
        margin-left: auto;
        margin-right: auto;
    }
    h1.header_company-name_sp img {
        width: 100%;
        height: auto;
    }
    p.header_founding-year_sp {
        font-size: 10px;
        line-height: 1.0;
        text-align: center;
        margin-top: 15px;
        margin-bottom: 0;
    }
    /* アコーディオンメニュー
    -------------------------------------------------- */
    .acd-menu {
        width: 100%;
        background-color: #FFFFFF;
        margin-top: 50px;
    }
    .open_btn {
        width: 100%;
        height: 58px;
        color: #0062A0;
        font-size: 12px;
        line-height: 58px;
        background-color: #FFFFFF;
        padding-left: 16px;
        cursor: pointer;
        position: relative;
    }
    .open_btn {
        border-bottom: solid 1px #666666; /* 閉時のライン */
    }    
    .open_btn.active {
        border-bottom: solid 1px #CCCCCC; /* 開時のライン */
    }
    .open_btn:after, 
    .open_btn.active:after {
        display: block;  /*シェイプを作成*/
        width: 10px;     /*幅*/
        height: 10px;     /*高*/
        position: absolute;
        right: 16px;
        top: 5px;
        transform: translate(0,-50%)
    }
    .open_btn.active::after {
        content: url(../images/icon_acd-menu_close.svg);
    }
    .open_btn::after {
        content: url(../images/icon_acd-menu_open.svg);
    }
    .acd-menu_item {
        font-size: 16px;
        font-family: 'Oswald', sans-serif;
        font-weight: 400;
        }
    .openBlock {
        background-color: #F8F9F9;
    }
    .sub-menu {
        background-color: #F8F9F9;
        border-bottom: solid 1px #CCCCCC;
        padding-left: 55px;
        padding-top: 14px;
        padding-bottom: 16px;
        line-height: 1.0;
        }
    .border_b {
        border-bottom: solid 1px #666666;
        }
    p.sub-menu_text_s {
        font-size: 10px;
        margin-bottom: 5px;
        }
    p.sub-menu_text_l {
        font-size: 13px;
        font-weight: 500;
        }    
    .close_btn {
        width: 100%;
        height: 58px;
        color: #333333;
        font-size: 12px;
        line-height: 58px;
        background-color: #FFFFFF;
        padding-left: 16px;
        cursor: pointer;
        position: relative;
        border-bottom: solid 1px #666666;
    }    

    /* フッター
    ============================================ */
    .footer_wrap {
        padding-top: 35px;
        padding-bottom: 35px;
        margin-top: 50px;
    }
    .footer_corporate_box {
        max-width: none;
        width: 100%;
        display: block;
    }
    .footer_company-name {
        width: 210px;
        margin-bottom: 5px;
        margin-left: auto;
        margin-right: auto;
    }
    p.footer_founding-year {
        font-size: 11px;
        text-align: center;
        margin-bottom: 40px;
    }
    p.address_company-name {
        font-size: 15px;
        margin-bottom: 4px;
    }
    .address_company-name_s {
        font-size: 11px;
    }
    ul.address_list {
        font-size: 11px;
    }
    /* copylight
    -------------------------------------------------- */
    .copylight_wrap {
        width: 100%;
        padding-top: 25px;
        padding-bottom: 25px;
    }

}