/* *********************************
汎用
*************************************/
body {
    line-height: 2;
    -webkit-font-smoothing: antialiased;
    font-family: 游ゴシック, "Yu Gothic", YuGothic, sans-serif !important;
    font-size: 15px;
    max-width: 1366px;
    margin: 0 auto;
    font-weight: 500;
}

main {
    padding-bottom: 0;
}

a {
    transition: .3s ease-in;
    color: #737981;
}

a:hover {
    opacity: .7;
}

h2.cmn_ttl {
    margin-bottom: 40px;
}

h2.cmn_ttl .en {
    font-family: "EB Garamond";
    font-weight: 600;
    font-size: 50px;
    letter-spacing: 0.12em;
    color: #e3493a;
    display: block;
}

h2.cmn_ttl .ja {
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.08em;
}

h2.cmn_ttl02 {
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 36px;
    letter-spacing: 0.06em;
    text-align: center;
    padding-bottom: 20px;
    position: relative;
    margin-bottom: 80px;
}

h2.cmn_ttl02::after {
    position: absolute;
    content: "";
    background: #e3493a;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
}


p.cmn_btn a {
    font-family: Roboto;
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 0.12em;
    color: #242424;
    display: table;
    padding-right: 50px;
    position: relative;
    transition: .3s ease-in;
}

p.cmn_btn a:hover {
    opacity: .7;
}

p.cmn_btn a::after {
    position: absolute;
    content: "";
    background: url(../images/arrow.svg) no-repeat 50% /11px 9px #e3493a;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.to_top {
    color: #fff;
    width: 63px;
    height: 63px;
    background: #737981;
    border-radius: 100%;
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 0.05em;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 10px;
    bottom: -63px;
}

.to_top::before {
    content: "";
    background: url(../images/arrow.svg) no-repeat 50% /contain;
    width: 13px;
    height: 17px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%) rotate(-90deg);
}

.breadcrumb {
    height: 40px;
    background: #F4F4F4;
    display: flex;
    align-items: center;
    padding: 15px 30px;
    margin-top: 90px;
}

.breadcrumb p {
    font-family: "Noto Sans JP";
    font-weight: normal;
    font-size: 12px;
    color: #737981;
}

.breadcrumb p .top a {
    font-size: 12px;
    color: #737981;
}

.breadcrumb p .top a:hover {
    opacity: 1;
}

@media screen and (max-width: 991px) {
    .breadcrumb {
        margin-top: 60px;
    }
}

@media (max-width: 768px) {
    h2.cmn_ttl {
        margin-bottom: 40px;
    }

    h2.cmn_ttl .en {
        font-size: 40px;
    }

}

/* *********************************
ヘッダー
*************************************/
header {
    padding: 0;
    min-height: 90px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;

}

header .header_inner {
    height: 100%;
    max-width: 1366px;
    padding-left: 40px;
}

@media (max-width: 768px) {
    header .header_inner {
        padding-left: 0;
    }

}

header .header_company img {
    width: 177px;
    box-sizing: content-box;
}

header ul.global_nav {
    display: flex;
    width: calc(100% - 177px - 148px - 166px - 50px);
    justify-content: center;
    padding-right: 0px;
}

header ul.global_nav>li {
    margin: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 90px;
}

header ul.global_nav>li>a {
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
    z-index: 200;
}

header ul.global_nav li a .en {
    font-family: Roboto;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-align: center;
    color: #e3493a;
    display: block;
}

header ul.global_nav li a .ja {
    font-weight: bold;
    font-size: 12px;
    text-align: center;
    color: #242424;
    display: block;
}

@media (min-width: 900px) and (max-width: 1330px) {
    header ul.global_nav li a .ja {
        height: 36px;
    }
}


ul.language {
    display: flex;
    flex-direction: row;
    margin-left: auto;
    margin-right: 20px;
}

ul.language li a {
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 11px;
    color: #737981;
    padding: 0px 5px;
}

ul.language li.current a {
    position: relative;
}

ul.language li.current a::before,
ul.language li.current a:after {
    position: absolute;
    content: "";
    left: 50%;
    transform: translateX(-50%);
}

ul.language li.current a::before {
    width: 30px;
    height: 2px;
    background: #B0B9C7;
    bottom: -4px;
}

ul.language li.current a::after {
    border-style: solid;
    border-width: 3px 2.5px 0 2.5px;
    border-color: #b0b9c7 transparent transparent transparent;
    bottom: -6px;

}

ul.language li:not(:last-child) a {
    border-right: 1px solid #737981;
}

@media (max-width: 768px) {
    ul.language {
        margin-top: 2em;
        justify-content: center;
    }

    ul.language li {
        width: inherit;
    }

    ul.language li a {
        font-size: 14px;
    }
}

header p.contact_btn a {
    color: #fff;
    background: #000;
    background: #E3493A;
    height: 90px;
    display: flex;
    line-height: 1.5;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 47px;
}

header p.contact_btn a .en {
    font-family: Roboto;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-align: center;
    display: block;
}

header p.contact_btn a .ja {
    font-weight: bold;
    font-size: 12px;
    text-align: center;
    display: block;
}

header nav.sub_menu {
    min-height: 482px;
    border-radius: 3px;
    background: #f7f8fa;
    position: fixed;
    top: 90px;
    left: 0;
    padding: 50px 0;
    width: 100vw;
    display: none;

}

header ul.global_nav li.has_sub:hover nav.sub_menu {
    display: block;
}

header nav.sub_menu .container {
    max-width: 1030px;
}

header nav.sub_menu ul {
    margin: 0 -16px -32px;
    display: flex;
    flex-wrap: wrap;
}

header nav.sub_menu ul li {
    width: calc(25% - 32px);
    margin: 0 16px 32px;
}

header nav.sub_menu ul li a p.img {
    margin-bottom: 8px;
}

header nav.sub_menu ul li a p.txt {
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.05em;
    position: relative;
    padding-left: 10px;
    color: #000;
}

header nav.sub_menu ul li a p.txt::before {
    position: absolute;
    content: "";
    border-style: solid;
    border-width: 5px 0 5px 6px;
    border-color: transparent transparent transparent #e3483a;
    left: 0;
    top: 17px;
    transform: translateY(-50%);
}

@media (min-width: 768px) and (max-width: 1204px) {

    header .header_company img {
        width: 145px;
    }

    header ul.global_nav {
        display: flex;
        width: calc(100% - 145px - 148px - 114px - 35px);
        justify-content: center;
        padding-right: 10px;
    }

    header ul.global_nav li {
        margin: 0 10px;

    }

    header ul.global_nav li a .en {
        font-size: 11px;
    }

    header ul.global_nav li a .ja {
        font-size: 10px;
    }

    header ul.language {
        margin-right: 15px;
    }

    header p.contact_btn a {
        padding: 15px 27px;
    }

    header p.contact_btn a .en {
        font-size: 11px;
    }

    header p.contact_btn a .ja {
        font-size: 10px;
    }

}

@media screen and (max-width: 991px) {
    header {
        padding: 10px;
        min-height: auto;
    }

    header ul.global_nav,
    header ul.language,
    header p.contact_btn {
        display: none;
    }

    .trigger span,
    .trigger:after,
    .trigger:before {
        background: #e3493a;
    }
}


/* *********************************
ハンバーガー
*************************************/
.global {
    background: #e3493a;

}

.global a .en {
    display: block;
}

/* *********************************
プロモ
*************************************/
.main_visual {
    position: relative;
    overflow: visible;
}

.main_visual .cover {
    overflow: visible;
}

.main_visual p.main_txt {
    width: 50%;
    position: absolute;
    bottom: -40px;
    left: 127px;
}

.main_visual .scroll {
    position: absolute;
    bottom: 35px;
    right: 22px;
}

.main_visual .scroll p {
    font-family: "EB Garamond";
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: #fff;
    position: relative;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    padding: 0 0px 0px 5px;
}

.main_visual .scroll::after {
    position: absolute;
    content: "";
    background: url(../images/promo_arrow.png) no-repeat 50% /contain;
    width: 11px;
    height: 150px;
    top: 0;
    left: 0;

}

@media (max-width: 768px) {
    .main_visual p.main_txt {
        bottom: -25px;
        left: 25px;
    }

    .main_visual .promo {
        padding-top: 60px;
    }

    .main_visual .scroll {
        bottom: 0px;
        // right: 10px;
        right: 20px;
    }

    .main_visual .scroll p {
        font-size: 10px;
    }

    .main_visual .scroll::after {
        width: 6px;
        height: 75px;
    }
}

/* *********************************
About
*************************************/
.about_content {
    background: url(../images/about_bg.png) no-repeat left 87% bottom -160px / 1897px 892px #F7F8FA;
    padding: 260px 0 295px;
}

@media (max-width: 1024px) {
    .about_content {
        background-size: 1460px auto;
        background-position: left 67% bottom;
    }
}


.about_content .container {
    max-width: 1145px;
}

.about_content .about_inner {
    padding-right: 58%;
}

@media (max-width: 1024px) {
    .about_content .about_inner {
        padding-right: 49%;
    }
}

.about_content .about_inner h2.main_ttl {
    font-weight: bold;
    font-size: 32px;
    line-height: 1.59375;
    margin-bottom: 20px;
    letter-spacing: .08em;
}

.about_content .about_inner p.main_txt {
    font-size: 15px;
    letter-spacing: 2.13333;
    line-height: 32px;
}

@media (max-width: 768px) {
    .about_content {
        padding: 80px 0 260px;
        background-size: 800px auto;
        background-position: left 67% bottom -90px;
    }

    .about_content .about_inner {
        padding: 0;
    }

    .about_content .about_inner h2.main_ttl {
        font-size: 24px;
    }



}


/* *********************************
SERVICE
*************************************/
.service_content {
    position: relative;
    padding-bottom: 65px;
}


.service_content::after {
    position: absolute;
    content: "SERVICE";
    font-family: "EB Garamond";
    font-weight: normal;
    font-size: 200px;
    letter-spacing: 0.04em;
    color: #f7f8fa;
    opacity: 0.7;
    bottom: calc(50% - -20px);
    right: 0;
    z-index: -1;
}

@media (min-width: 768px) and (max-width: 905px) {
    .service_content::after {
        font-size: 150px;
        bottom: calc(50% - -86px);
    }
}

.service_content .container {
    max-width: 1030px;
}

.service_content .se_inner h2 {
    margin-top: -30px;
    margin-bottom: 30px;
}

.service_content .se_inner .se_box {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-right: 115px;
    margin-bottom: 65px;
}

.service_content .se_inner .se_box p.main_txt {
    font-size: 15px;
    letter-spacing: 0.05em;
    font-weight: 500;
    padding-right: 30px;
}

.service_content .over_wrap {
    overflow: hidden;
}

.service_content .img_area {
    background: url("../images/se_slide.jpg");
    width: 2781px;
    height: 303px;
    animation: bg-slider 80s linear infinite;
}

/* スライドアニメーション */
@keyframes bg-slider {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -2781px 0;
    }
}

@media (max-width: 768px) {

    .service_content::after {
        bottom: auto;
        top: -20px;

    }

    .service_content .se_inner .se_box {
        margin: 0 0 35px;
        display: block;
    }

    .service_content .se_inner .se_box p.main_txt {
        padding: 0;
        margin-bottom: 15px;
    }

    .service_content .se_inner .se_box p.btn_r a {
        margin-left: auto;
    }

}


/* *********************************
COMPANY
*************************************/
.com_content {
    background: #F7F8FA;
    position: relative;
    padding: 160px 0 265px;
    z-index: 0;
}

.com_content::after {
    background: url(../images/com_logo.png) no-repeat 50% / contain;
    max-width: 1027px;
    max-height: 141px;
    width: 76vw;
    height: 11vw;
    top: 15%;
    left: -1px;
    position: absolute;
    content: "";
    z-index: -1;
}

.com_content .container {
    max-width: 1030px;
}

.com_content .container .com_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.com_content h2 {
    padding-top: 50px;
    margin-right: 20px;
    margin-bottom: 63px;
}

.com_content p.main_txt {
    letter-spacing: 0.05em;
    margin-top: 41px;
    padding-right: 82px;
}

.com_content ul.com_items {
    margin: 0 -10px -20px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.com_content ul.com_items li {
    width: calc(50% - 20px);
    border-radius: 3px;
    margin: 0 10px 20px;
    position: relative;
}

.com_content ul.com_items li h3.ttl a {
    font-weight: bold;
    font-size: 17px;
    letter-spacing: 0.08em;
    max-width: 295px;
    width: 80%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #E3493A;
    color: #fff;
}

.com_content ul.com_items li h3.ttl a span {
    position: relative;
    display: block;
    padding-right: 50px;
    padding: 20px 50px 20px 15px;
}

.com_content ul.com_items li h3.ttl a span::after {
    position: absolute;
    content: "";
    background: url(../images/arrow.svg)no-repeat 50% /contain;
    width: 15px;
    height: 12px;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    transition: .3s ease-in;
}

.com_content ul.com_items li h3.ttl a:hover span::after {
    right: 10px;
}


@media (max-width: 768px) {
    .com_content {
        padding: 80px 0 160px;
    }

    .com_content::after {
        top: 9%;
    }

    .com_content .container .com_inner {
        display: block;
        margin-bottom: 30px;
    }

    .com_content h2 {
        margin-bottom: 30px;
    }

    .com_content p.main_txt {
        padding: 0;
    }

    .com_content ul.com_items {
        display: block;
        margin: 0 0 -20px;
    }

    .com_content ul.com_items li {
        margin: 0 0 20px;
        width: 100%;
    }
}


/* *********************************
BASE
*************************************/
.base_content {
    position: relative;
    padding-bottom: 55px;
}

.base_content::after {
    position: absolute;
    content: "";
    background: url(../images/base_logo.png) no-repeat 50% /contain;
    max-width: 477px;
    max-height: 140px;
    width: 35vw;
    height: 11vw;
    bottom: -5px;
    left: 0;
    z-index: -1;
}

.base_content .container {
    max-width: 1030px;
}

.base_content .base_inner {
    display: flex;
    margin-top: -55px;
}

.base_content .base_inner .area_a {
    width: 45%;
    padding-right: 50px;
    padding-top: 20px;
}

.base_content .base_inner .area_a h2 {
    margin-bottom: 30px;
}

.base_content .base_inner .area_a p.main_txt {
    font-size: 15px;
    letter-spacing: 0.05em;
    margin-bottom: 40px;
}

.base_content .base_inner .area_b {
    width: 55%;
    max-width: 546px;
}

@media (max-width: 768px) {
    .base_content .base_inner {
        display: block;
    }

    .base_content .base_inner .area_a {
        width: 100%;
        padding: 0;
    }

    .base_content .base_inner .area_a p.main_txt {
        margin-bottom: 20px;
    }

    .base_content .base_inner .area_a p.btn_r a {
        margin-left: auto;
        margin-bottom: 40px;

    }

    .base_content .base_inner .area_b {
        width: 100%;
    }
}

/* *********************************
CSR
*************************************/
.csr_content {
    background: #F7F8FA;
    padding: 150px 0 160px;
}

.csr_content .container {
    max-width: 1030px;
}

.csr_content h2 {
    text-align: center;
    position: relative;
    z-index: 0;
    padding-top: 55px;
}

.csr_content h2::after {
    position: absolute;
    content: "";
    background: url(../images/csr_logo.png) no-repeat 50% /contain;
    max-width: 385px;
    max-height: 137px;
    width: 29vw;
    height: 11vw;
    top: 0;
    transform: translateX(-50%);
    left: 50%;
    z-index: -1;
}

.csr_content ul.csr_items {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px -20px;
}

.csr_content ul.csr_items li {
    width: calc(50% - 20px);
    border-radius: 5px;
    margin: 0 10px 20px;
    background: no-repeat 50% / cover;
    min-height: 136px;
    /* align-items: center;
    display: flex;
    padding: 0 35px; */
}

.csr_content ul.csr_items li:first-child {
    background-image: url(../images/csr_img01.jpg);
}

.csr_content ul.csr_items li:nth-child(2) {
    background-image: url(../images/csr_img02.jpg);
}

.csr_content ul.csr_items li:nth-child(3) {
    background-image: url(../images/csr_img03.jpg);
}

.csr_content ul.csr_items li:nth-child(4) {
    background-image: url(../images/csr_img04.jpg);
}

.csr_content ul.csr_items li a {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 0 35px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .05em;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .csr_content {
        padding: 80px 0;
    }

    .csr_content h2 {
        padding-top: 20px;
    }

    .csr_content ul.csr_items {
        margin: 0 0 -20px;
    }

    .csr_content ul.csr_items li {
        margin: 0 0 20px;
        width: 100%;
    }
}


/* *********************************
RECRUIT
*************************************/
.re_content {
    background: linear-gradient(#e3493a 0%, #ffaea5 75%, #fff 75%);
    color: #fff;
    padding: 70px 0 105px;
}

.re_content .container {
    max-width: 1030px;
}

.re_content .re_inner {
    display: flex;
}

.re_content .re_inner .area_a {
    width: 45%;
    padding-right: 55px;
    padding-top: 10px;
}

.re_content .re_inner .area_a h2 {
    margin-bottom: 35px;
}

.re_content .re_inner .area_a h2 .en {
    color: #fff;
}

.re_content .re_inner .area_a h2 .ja {}

.re_content .re_inner .area_a p.main_txt {
    font-size: 15px;
    letter-spacing: .05em;
    margin-bottom: 40px;
}

@media (max-width: 900px) {
    .re_content .re_inner .area_a p.main_txt {
        margin-bottom: 20px;
    }
}

.re_content .re_inner .area_a p.btn_r a {
    color: #fff;
}

.re_content .re_inner .area_b {
    width: 55%;
    max-width: 546px;
}

.re_content .re_inner .area_b p.img {
    overflow: hidden;
    border-radius: 3px;
}

@media (max-width: 768px) {
    .re_content .re_inner {
        display: block;
    }

    .re_content .re_inner .area_a {
        width: 100%;
        padding: 0;
    }

    .re_content .re_inner .area_a p.btn_r a {
        margin: 0 0 40px auto;
    }

    .re_content .re_inner .area_b {
        width: 100%;
    }
}


/* *********************************
CONTACT
*************************************/
.contact_content {
    background: #35383B;
    color: #fff;
    padding: 70px 0 50px;
    margin-top: 5em;
}

.contact_content .container {
    max-width: 1030px;
}

.contact_content .contact_inner {
    display: flex;
}

.contact_content .contact_inner .area_a {
    width: 50%;
    padding: 13px 0 0 0;
}

.contact_content .contact_inner .area_a h2 {
    margin-bottom: 32px;
}

.contact_content .contact_inner .area_a h2 .en {
    color: #fff;
    font-size: 40px;
}

.contact_content .contact_inner .area_a p.com_name {
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 0.05em;
    color: #b0b9c7;
}

.contact_content .contact_inner p.addr {
    font-weight: bold;
    font-size: 15px;
    letter-spacing: 0.05em;
}

.contact_content .contact_inner .area_b {
    width: 50%;
}

.contact_content .contact_inner .area_b .tel_wrap {
    display: flex;
    align-items: center;
    line-height: 1;
}

.contact_content .contact_inner .area_b .tel_wrap.fax {
    margin-top: 20px;
    margin-bottom: 15px;
}

.contact_content .contact_inner .area_b p.tel_name {
    font-weight: bold;
    font-size: 14px;
    position: relative;
    width: 110px;
    border-radius: 5px;
    background: #737981;
    padding: 18px 10px 18px 26px;
    text-align: center;
    margin-right: 7px;
}

.contact_content .contact_inner .area_b p.tel_name::before {
    position: absolute;
    content: "";
    background: no-repeat 50% /contain;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
}

.contact_content .contact_inner .area_b .tel p.tel_name::before {
    background-image: url(../images/tel.png);
    width: 15px;
    height: 15px;
}

.contact_content .contact_inner .area_b .fax p.tel_name::before {
    background-image: url(../images/fax.png);
    width: 17px;
    height: 15px;
}

.contact_content .contact_inner .area_b .fax p.num {
    font-family: "EB Garamond";
    font-weight: 600;
    font-size: 40px;
    letter-spacing: 0.06em;
    color: #fff;
}

.contact_content .contact_inner .area_b .tel p.num a,
.contact_content .contact_inner .area_b .fax p.num a {
    font-family: "EB Garamond";
    font-weight: 600;
    font-size: 40px;
    letter-spacing: 0.06em;
    color: #fff;
}

.contact_content p.contact_btn a {
    font-weight: bold;
    font-size: 15px;
    color: #fff;
    max-width: 387px;
    border-radius: 5px;
    background: #e3493a;
    position: relative;
    display: block;
    text-align: center;
    padding: 20px 50px;
}

.contact_content p.contact_btn a::before {
    content: "";
    background: url(../images/mail.png) no-repeat 50% /contain;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    width: 18px;
    height: 15px;
    display: inline-block;
    vertical-align: bottom;
    margin-right: 15px;
}

@media (max-width: 800px) {
    .contact_content .contact_inner .area_b .fax p.num {
        font-size: 35px;
    }

    .contact_content .contact_inner .area_b .tel p.num a,
    ,
    .contact_content .contact_inner .area_b .fax p.num a {
        font-size: 35px;

    }

    .contact_content .contact_inner .area_b {
        width: 100%;
    }
}


@media (max-width: 768px) {
    .contact_content .contact_inner {
        display: block;
    }

    .contact_content .contact_inner .area_a {
        width: 100%;
    }

    .contact_content .contact_inner p.addr {
        margin-bottom: 20px;
    }
}

/* *********************************
footer
*************************************/
footer {
    background: #fff;
    padding: 70px 0 0px;
}

footer .container {
    max-width: 1030px;
}

footer .footer_inner {
    display: flex;
}


footer .footer_box:not(:last-child) {
    margin-right: 3.5vw;
}

@media (min-width: 1367px) {
    footer .footer_box:not(:last-child) {
        margin-right: 50px;
    }
}


footer .footer_box p.ttl {
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.05em;
    color: #e3493a;
    margin-bottom: 13px;
}

footer .footer_box ul.nav_items li {
    margin-bottom: 10px;
    line-height: 1;
}

footer .footer_box ul.nav_items a {
    font-size: 13px;
    letter-spacing: 0.05em;
    color: #242424;
    line-height: 1;
    position: relative;
    padding-left: 7px;
}

footer .footer_box ul.nav_items a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-top: solid 1px #E3493A;
    border-right: solid 1px #E3493A;
    position: absolute;
    left: -5px;
    top: 5px;
    transform: rotate(45deg);
}

footer .footer_bottom {
    display: flex;
    border-top: 1px solid #E7EAEF;
    margin-top: 60px;
    padding: 0 35px;
    height: 70px;
    align-items: center;
}

footer .footer_bottom p.logo {
    width: 177px;
}

footer .footer_bottom p.copyright {
    font-family: "Noto Sans JP";
    font-weight: normal;
    font-size: 10px;
    letter-spacing: 0.05em;
    color: #242424;
    margin: 0 20px 0 35px;
    background: transparent;
}

footer .footer_bottom ul.policy {
    margin-left: auto;
    display: flex;
}

footer .footer_bottom ul.policy li {
    margin: 0 10px;
    line-height: 1.2;
}

footer .footer_bottom ul.policy li a {
    font-family: "Noto Sans JP";
    font-weight: normal;
    text-decoration: underline;
    font-size: 10px;
    letter-spacing: 0.05em;
    color: #242424;

}

footer .footer_bottom ul.mark {
    display: flex;
    margin: 0 15px 0 53px;
}

footer .footer_bottom ul.mark li {
    margin: 0 7px;
}

footer .footer_bottom ul.mark li img {}

@media (max-width: 768px) {
    footer .footer_inner {
        flex-wrap: wrap;

    }

    footer .footer_box {
        width: 47%;
        margin-bottom: 15px;
    }

    footer .footer_box:not(:last-child) {
        margin-right: 10px;
    }

    footer .footer_box ul.nav_items a {
        line-height: 1.2;
    }

    footer .footer_bottom {
        display: block;
        padding: 15px 0;
        height: auto;
    }

    footer .footer_bottom p.logo {
        margin: 0 auto;
    }

    footer .footer_bottom ul.policy {
        justify-content: center;
        padding-bottom: 15px;
    }

    footer .footer_bottom ul.mark {
        justify-content: center;
    }
}



/* *********************************
下層　＞　日発運輸のロジスティクス
*************************************/

main.logi .main_visual p.promo_txt {
    font-family: "Zen Kaku Gothic New";
    font-weight: bold;
    font-size: 42px;
    letter-spacing: 0.04em;
    text-align: center;
    color: #fff;
    line-height: 1.45238;
    position: absolute;
    display: table;
    margin: 0 auto 15px;
    padding: 0 45px;
    font-size: clamp(20px, 3.2vw, 42px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

main.logi .main_visual p.promo_txt::before,
main.logi .main_visual p.promo_txt::after {
    position: absolute;
    top: -30px;
    font-family: "EB Garamond";
    font-weight: 600;
    font-size: 80px;
    letter-spacing: 0.04em;
    color: #e3493a;
}

main.logi .main_visual p.promo_txt::before {
    content: "“";
    left: 0;
}

main.logi .main_visual p.promo_txt::after {
    content: "”";
    right: 0;
}

@media (max-width: 768px) {

    main.logi .main_visual p.promo_txt {
        margin-bottom: 0;
        font-size: 20px;
        width: 100%;
    }

    main.logi .main_visual p.promo_txt::before,
    main.logi .main_visual p.promo_txt::after {
        font-size: 40px;
        top: -10px;
    }

    main.logi .main_visual p.promo_txt::before {
        left: calc(50% - 140px);
    }

    main.logi .main_visual p.promo_txt::after {
        right: calc(50% - 140px);
    }

}

main.logi .under_about {
    position: relative;
    background: #F7F8FA;
    z-index: 0;
    overflow: hidden;
    padding: 135px 0 125px;
}

main.logi .under_about::after {
    position: absolute;
    content: "";
    width: 1925px;
    height: 920px;
    background: url(../images/logi_bg01.png) no-repeat 50% / cover;
    top: -12px;
    left: -22%;
    z-index: -1;
}

main.logi .under_about .container {
    max-width: 1366px;
}

main.logi .under_about p.main_lead {
    font-size: 15px;
    letter-spacing: .05em;
    line-height: 2.1333;
    max-width: 740px;
    margin: 0 auto 35px;
}

main.logi .under_about p.img {
    max-width: 448px;
    margin: 0 auto 25px;
}

main.logi .box {
    border-radius: 3px;
    background: #e3493a;
    position: relative;
    max-width: 726px;
    margin: 0 auto;
    padding: 18px 30px 27px;
    margin-bottom: 21px;
}

main.logi .box::after {
    position: absolute;
    content: "";
    border-width: 24px 20px 0 20px;
    border-color: #e3483a transparent transparent transparent;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-style: solid;
}

main.logi .box h3.ttl {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    letter-spacing: .08em;
    margin-bottom: 15px;
    color: #fff;
}

main.logi .box ul.items {
    display: flex;
    margin: 0 -7px;
}

main.logi .box ul.items li {
    border-radius: 3px;
    background: #fff;
    border: 5px solid #fcddda;
    width: calc(33.3333% - 14px);
    margin: 0 7px;
    display: flex;
    align-items: center;
    padding: 15px 10px;
    justify-content: center;
    font-weight: bold;
}

main.logi .box ul.items li::before {
    content: "";
    display: inline-block;
    background: no-repeat 50% /contain;
    top: 50%;
    margin-right: 24px;
}

main.logi .box ul.items li:first-child:before {
    background-image: url(../images/logi_icon01.png);
    width: 46px;
    height: 41px;
    right: 15px;
}

main.logi .box ul.items li:nth-child(2):before {
    background-image: url(../images/logi_icon02.png);
    width: 73px;
    height: 56px;
    right: 15px;
}

main.logi .box ul.items li:nth-child(3):before {
    background-image: url(../images/logi_icon03.png);
    width: 46px;
    height: 49px;
    right: 15px;
}

main.logi p.main_txt {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: .04em;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    text-align: center;
}

main.logi p.main_txt .c_o {
    color: #e3493a;
}


@media (max-width: 768px) {
    main.logi .under_about {
        padding: 80px 0;
    }

    main.logi .under_about p.img {
        width: 75%;
    }

    main.logi .under_about::after {
        position: absolute;
        content: "";
        width: 967px;
        height: 460px;
        top: 24%;
        left: -22%;
    }

    main.logi .box {
        padding: 18px 15px 27px;
    }

    main.logi .box h3.ttl {
        font-size: 18px;
    }

    main.logi .box ul.items {
        display: block;
        margin: 0;
    }

    main.logi .box ul.items li {
        width: 100%;
        margin: 0 0 15px;
        padding: 15px 10px;
    }


    main.logi p.main_txt {
        font-size: 24px;
    }


}

/* 強み */
main.logi .under_strong {
    padding: 105px 0 125px;
}

main.logi .under_strong .container {
    max-width: 940px;
}

main.logi .under_strong ul.items {
    margin: 0 -20px -40px;
    display: flex;
    flex-wrap: wrap;
}

main.logi .under_strong ul.items li {
    width: calc(50% - 40px);
    margin: 0 20px 40px;
}

main.logi .under_strong ul.items li p.img {
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
}

main.logi .under_strong ul.items li p.main_txt {
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.08em;
    text-align: center;
}

@media (max-width: 768px) {
    main.logi .under_strong {
        padding: 55px 0;
    }

    main.logi .under_strong ul.items {
        margin: 0 0 -20px;
        display: block;
    }

    main.logi .under_strong ul.items li {
        width: 100%;
        margin: 0 0 20px;
    }
}



/* サービス */
main.logi .under_service {
    background: #F7F8FA;
    padding: 125px 0 0;
}

main.logi .under_service .container {
    max-width: 1366px;
    padding: 0;
}

main.logi .under_service ul.items {
    display: flex;
    flex-wrap: wrap;
}

main.logi .under_service ul.items li {
    width: 33.3333%;
    min-height: 530px;
    background: no-repeat 50% / cover;
    /* display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 20px; */
    cursor: pointer;
    transition: .3s ease-in;
}

main.logi .under_service ul.items li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 20px;
}

main.logi .under_service ul.items li:hover {
    opacity: .7;
}

main.logi .under_service ul.items li.list01 {
    background-image: url(../images/logi_img06.jpg);
}

main.logi .under_service ul.items li.list02 {
    background-image: url(../images/logi_img07.jpg);
}

main.logi .under_service ul.items li.list03 {
    background-image: url(../images/logi_img08.jpg);
}

main.logi .under_service ul.items li.list04 {
    background-image: url(../images/logi_img09.jpg);
}

main.logi .under_service ul.items li.list05 {
    background-image: url(../images/logi_img10.jpg);
}

main.logi .under_service ul.items li.list06 {
    background-image: url(../images/logi_img11.jpg);
}

main.logi .under_service ul.items li p.main_txt {
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.08em;
    text-align: center;
    color: #fff;
    line-height: 2.25;
    margin-bottom: 80px;
}

main.logi .under_service ul.items li.list05 p.main_txt {
    min-height: 144px;
}

/* main.logi .under_service ul.items li h3.ttl a { */
main.logi .under_service ul.items li h3.ttl {
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 0.06em;
    text-align: center;
    color: #fff;
    position: relative;
    padding-bottom: 65px;
}

/* main.logi .under_service ul.items li h3.ttl a::after { */
main.logi .under_service ul.items li h3.ttl::after {
    position: absolute;
    content: "";
    background: url(../images/arrow.svg) no-repeat 50% /11px 9px #e3493a;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}


@media (max-width: 768px) {
    main.logi .under_service ul.items {
        display: flex;
    }

    main.logi .under_service ul.items li {
        width: 100%;
        padding: 50px 20px;
    }
}


/* *********************************
下層　＞　拠点
*************************************/

main.base .promo_txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    line-height: 1.4;
}

main.base .promo_txt .en {
    font-family: "EB Garamond";
    font-weight: 500;
    font-size: 20px;
    color: #fff;
    display: block;
}

main.base .promo_txt .ja {
    font-family: "Zen Kaku Gothic New";
    font-weight: bold;
    font-size: 42px;
    letter-spacing: 0.04em;
    color: #fff;
}

main.base .under_kyoten {
    padding: 80px 0 95px;
}

main.base .under_kyoten.kokunai {
    background: #F7F8FA;
    overflow: hidden;
}

main.base .under_kyoten .inner {
    position: relative;
}

main.base .under_kyoten h2 {
    margin-bottom: 35px;
}

main.base .under_kyoten p.main_lead {
    text-align: center;
    font-size: 15px;
    letter-spacing: .05em;
    margin-bottom: 40px;
}

main.base .under_kyoten p.img {
    text-align: center;
}

main.base .under_kyoten p.area {
    position: absolute;
}

main.base .under_kyoten p.area.chubu {
    top: calc(50% - 84px);
    left: calc(50% - 200px);
}

main.base .under_kyoten p.area.chuugoku {
    top: 59.3%;
    left: calc(50% - 341px);
}

main.base .under_kyoten p.area.touhoku {
    top: 57%;
    right: calc(50% - 370px);
}

main.base .under_kyoten p.area.kantou {
    top: 69%;
    /* right: calc(50% - 640px); */
    right: calc(50% - 740px);
}

main.base .under_kyoten p.area.honsha {
    bottom: 8.5%;
    right: calc(50% - 140px);
}

main.base .under_kyoten p.area.kyushu {
    bottom: 0%;
    left: calc(50% - 310px);
}

main.base .under_kyoten p.area.kinki {
    bottom: -5.8%;
    left: calc(50% - 80px);
}

main.base .under_kyoten p.area.china {
    top: 58%;
    right: calc(50% - 330px);
}

main.base .under_kyoten p.area.thai {
    bottom: 25.5%;
    right: calc(50% - 330px);
}


main.base .under_kyoten p.area a {
    font-family: "Noto Sans JP";
    font-weight: 900;
    font-size: 20px;
    letter-spacing: 0.06em;
    text-align: center;
    color: #fff;
    width: 151px;
    height: 35px;
    border-radius: 5px;
    background: #e3493a;
    display: flex;
    align-items: center;
    justify-content: center;

}

main.base .under_kyoten p.area.kantou a {
    width: 288px;
}

main.base .under_kyoten p.area.honsha a {
    width: 85px;
}

main.base .under_kyoten p.area img {
    width: 50%;
    display: block;
    margin-top: 5px;
}

@media (min-width: 769px) and (max-width: 1024px) {
    main.base .under_kyoten p.img {
        width: 600px;
        margin: 0 auto;
    }

    main.base .under_kyoten p.area a {
        font-size: 14px;
    }

    main.base .under_kyoten p.area.chubu {
        top: 43.5%;
        left: calc(50% - 186px);
    }

    main.base .under_kyoten p.area.chuugoku {
        top: 62%;
        left: calc(50% - 283px);
    }

    main.base .under_kyoten p.area.touhoku {
        top: 59.5%;
        right: calc(50% - 306px);
    }

    main.base .under_kyoten p.area.kantou {
        top: 70.5%;
        left: calc(50% - -115px);
    }

    main.base .under_kyoten p.area.honsha {
        bottom: 7%;
        right: calc(50% - 106px);
    }

    main.base .under_kyoten p.area.kyushu {
        bottom: -1.5%;
        left: calc(50% - 260px);
    }


    main.base .under_kyoten p.area.kinki {
        bottom: -6.2%;
        left: calc(50% - 70px);
    }


    main.base .under_kyoten p.area.china {
        top: 59.5%;
        right: calc(50% - 300px);
    }

    main.base .under_kyoten p.area.thai {
        bottom: 23.8%;
        right: calc(50% - 300px);
    }

    main.base .under_kyoten p.area img {
        width: 34%;
    }

}


@media (max-width: 768px) {

    main.base .under_kyoten p.img {
        width: 300px;
        margin: 0 auto;
    }

    main.base .under_kyoten p.area a {
        font-size: 10px;
        width: 70px;
        height: 22px;
        color: #fff;
    }

    main.base .under_kyoten p.area.chubu {
        top: 58.5%;
        left: calc(50% - 88px);
    }

    main.base .under_kyoten p.area.chuugoku {
        top: 72%;
        left: calc(50% - 135px);
    }

    main.base .under_kyoten p.area.touhoku {
        top: 69.8%;
        right: calc(50% - 236px);
    }

    main.base .under_kyoten p.area.kantou {
        top: 78.5%;
        left: calc(50% - -55px);
        right: auto;
    }

    main.base .under_kyoten p.area.honsha {
        bottom: 4.5%;
        right: calc(50% - 45px);
    }

    main.base .under_kyoten p.area.kyushu {
        bottom: -4.2%;
        left: calc(50% - 140px);
    }

    main.base .under_kyoten p.area.kinki {
        bottom: -9.2%;
        left: calc(50% - 59px);
    }

    main.base .under_kyoten p.area.china {
        top: 69.5%;
        right: calc(50% - 140px);
    }

    main.base .under_kyoten p.area.thai {
        bottom: 17%;
        right: calc(50% - 140px);
    }

    main.base .under_kyoten p.area.kantou a {
        width: 70px;
    }

    main.base .under_kyoten p.area.honsha a {
        width: 35px;
    }

    main.base .under_kyoten p.area img {
        width: 27%;
        margin: 0;
    }

    main.base .under_kyoten p.area.chubu img {
        width: 14%;
    }

    main.base .under_kyoten p.area.kantou img {
        width: 75%;
    }



}

@media (max-width: 500px) {
    main.base .under_kyoten p.main_lead {
        font-size: 13px;
    }
}

/*  */
main.base .under_archive {
    padding: 105px 0;
}

main.base .under_archive .container {
    max-width: 930px;
}

main.base .under_archive h2 {
    margin-bottom: 62px;
}

main.base .under_archive .box:not(:last-child) {
    margin-bottom: 80px;
}

main.base .under_archive .box .box_inner {
    border-bottom: 3px solid #E3493A;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

main.base .under_archive .box h3.ttl {
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 26px;
    letter-spacing: 0.06em;
    line-height: 2;
}

main.base .under_archive .box p.base_btn a {
    font-weight: bold;
    font-size: 17px;
    letter-spacing: 0.08em;
    color: #fff;
    background: #E3493A;
    min-width: 248px;
    position: relative;
    display: block;
    padding: 2px 45px 2px 17px;
}

main.base .under_archive .box p.base_btn a::after {
    position: absolute;
    content: "";
    background: url(../images/arrow.svg) no-repeat 50% /contain;
    width: 15px;
    height: 12px;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
}

main.base .under_archive .box ul.items li {
    display: flex;
    padding: 10px 10px;
    min-height: 90px;
    align-items: center;
    border-bottom: 2px solid #E7EAEF;
}



main.base .under_archive .box ul.items li p.name {
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.08em;
    width: 22%;
}

main.base .under_archive .box ul.items li p.addr {
    font-size: 16px;
    letter-spacing: 0.08em;
    color: #242424;
    width: 55%;
    line-height: 1.4375;
}

main.base .under_archive .box ul.items li p.cmn_btn {
    width: 23%;
}

main.base .under_archive .box ul.items li p.cmn_btn a {
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.04em;
    color: #e3493a;
    padding-right: 40px;
    margin-left: auto;
}

main.base .under_archive .box ul.items li p.cmn_btn a::after {
    width: 22px;
    height: 22px;
    background-size: 7px 9px;

}

@media screen and (max-width: 768px) {
    main.base .promo_txt .en {
        font-size: 16px;
    }

    main.base .promo_txt .ja {
        font-size: 24px;
    }

    main.base .under_archive .box .box_inner {
        display: block;
    }

    main.base .under_archive .box ul.items li {
        display: block;
    }


    main.base .under_archive .box ul.items li p.name {
        width: 100%;
    }

    main.base .under_archive .box ul.items li p.addr {
        width: 100%;

    }

    main.base .under_archive .box ul.items li p.cmn_btn {
        width: 100%;
    }


}

header .header_icon img {
    display: block;
    height: 42px;
}

/* Exteng 2025/04 */
.about_content {
    padding-top: 180px;
}

.ex_news_content {
    /* margin-bottom: 295px; */
    margin-top: 180px;
    background-color: #EDEFF4;
}

.ex_news_content h2 {
    position: absolute;
    top: -3.5rem;
}

.ex_news_content .se_inner {
    position: relative;
}

.ex_news_content .se_box {
    padding-top: 5rem;
    padding-bottom: 8rem;
}

.ex_news_content dl {
    display: grid;
    grid-template-columns: 16rem 1fr;
    padding: 20px 30px;
    background-color: #fff;
}

.ex_news_content dt,
.ex_news_content dd {
    margin-bottom: 15px;
}

.ex_news_content dd a {
    color: #000;
}

.ex_news_content dd a:hover {
    text-decoration: underline;
}

.ex_news_content .btn_r a {
    /* margin-left: auto; */
    position: absolute;
    right: 0;
    bottom: 3rem;
}

@media (max-width: 768px) {
    .ex_news_content dl {
        display: block;
    }

    .ex_news_content dt {
        margin-bottom: 0;
    }
}
