@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    background-color: #fff
}

body {
    font-family: "Noto Sans JP", sans-serif;
    background-color: #fff;
    color: #333;
    font-size: 16px;
    color: #000;
    line-height: 1.6
}

main:not(.top) .content {
    background: url(img/common/sub_content_bg.svg);
    background-repeat: no-repeat;
    background-position: center 0px;
    padding: 0px;
    width: 100%
}

table {
    box-shadow: 0px 5px 5px #bfbfbf
}

table td,
table th {
    background: rgba(255, 255, 255, 0.9)
}

img {
    max-width: 100%;
    margin: auto
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    background: transparent;
    transition: background 0.3s ease
}

header .header_wrap {
    padding: 10px 10px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center
}

header .header_wrap .logo {
    padding: 0 10px;
    margin-bottom: 0px;
}

header .header_wrap .logo img {
    height: 50px
}

header .header_wrap nav {
    display: flex;
    margin-right: 15vw;
    width: 50%;
    max-width: 800px;
    justify-content: space-between;
    position: static
}

header .header_wrap nav a,
header .header_wrap nav .dropdown {
    text-decoration: none;
    color: #295180;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s;
    text-align: center;
    white-space: nowrap
}

header .header_wrap nav a:hover {
    color: #1A3D6D
}

header .header_wrap nav .dropdown {
    position: relative
}

header .header_wrap nav .dropdown:hover {
    color: #1A3D6D
}

header .header_wrap nav .dropdown .dropdown-toggle {
    display: block;
    width: 100%;
    color: #295180;
    text-decoration: none;
    padding: 0;
    border: none
}

header .header_wrap nav .dropdown .dropdown-toggle:hover {
    color: #1A3D6D
}

header .header_wrap nav .dropdown .dropdown-menu {
    background: #1A3D6D;
    border-radius: 0px;
    padding: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    word-break: break-word;
    white-space: normal
}

header .header_wrap nav .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

header .header_wrap nav .dropdown .dropdown-menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    font-size: 16px;
    color: #fff;
    background: #1A3D6D;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    position: relative;
    line-height: 1.4;
    font-weight: normal;
    width: 100%;
    text-align: left
}

header .header_wrap nav .dropdown .dropdown-menu a:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2)
}

header .header_wrap nav .dropdown .dropdown-menu a::after {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("img/common/arrow_right_white.svg");
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 10px;
    transition: transform 0.3s ease;
    flex-shrink: 0
}

header .header_wrap nav .dropdown .dropdown-menu a:hover {
    background: #295180;
    transform: translateX(3px)
}

header .header_wrap nav .dropdown .dropdown-menu a:hover::after {
    transform: translateX(5px)
}

header .header_wrap .h_contact {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%)
}

header .header_wrap .h_contact a {
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    padding-right: 20px;
    position: relative
}

header .header_wrap .h_contact a::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-size: contain;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%)
}

header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1)
}

header.scrolled .header_wrap .h_contact a {
    color: #E28532
}

@media screen and (max-width: 800px) {
    header .header_wrap nav {
        position: absolute;
        top: 77px;
        left: 0;
        margin-right: 0;
        flex-direction: column;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1)
    }

    header .header_wrap nav a {
        width: 100%;
        padding: 10px;
        border: none !important;
        text-align: center;
        font-size: 17px
    }

    header .header_wrap nav .dropdown {
        width: 100%;
        padding: 10px;
        border: none !important;
        text-align: center;
        font-size: 17px;
        background: transparent;
        padding: 0
    }

    header .header_wrap nav .dropdown .dropdown-toggle {
        pointer-events: none;
        color: #1A3D6D;
        padding: 10px;
        position: relative;
        font-weight: bold
    }

    header .header_wrap nav .dropdown .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        margin: 0 auto 5px;
        box-shadow: none;
        background-color: transparent;
        display: block !important;
        border-radius: 8px;
        overflow: hidden;
        width: 98%
    }

    header .header_wrap nav .dropdown .dropdown-menu a {
        padding: 8px 20px;
        text-align: center;
        background: rgba(41, 81, 128, 0.03);
        margin: 1px 0;
        border-radius: 4px;
        transition: all 0.3s ease;
        position: relative;
        font-size: 15px;
        color: #295180;
        display: flex;
        align-items: center;
        justify-content: center
    }

    header .header_wrap nav .dropdown .dropdown-menu a:hover {
        background: rgba(41, 81, 128, 0.08);
        transform: translateX(3px)
    }

    header .header_wrap nav .dropdown .dropdown-menu a:nth-child(1) {
        border-left: 3px solid #1A3D6D
    }

    header .header_wrap nav .dropdown .dropdown-menu a:nth-child(2) {
        border-left: 3px solid #E28532
    }

    header .header_wrap nav .dropdown .dropdown-menu a:nth-child(3) {
        border-left: 3px solid #bb0066
    }

    header .header_wrap nav .dropdown .dropdown-menu a:nth-child(4) {
        border-left: 3px solid #29A745
    }

    header .header_wrap.nav-open nav {
        max-height: none;
        opacity: 1;
        visibility: visible
    }
}

.hero {
    position: relative
}

.hero .hero-image {
    position: relative;
    max-width: 100%;
    background-color: #fff
}

.hero .hero-image .main_overview {
    height: 100%;
    position: relative;
    z-index: 2;
    top: 0px
}

.hero .hero-image .main_video {
    position: absolute;
    height: 96%;
    top: 0px;
    right: 20px;
    z-index: 1
}

.hero .hero-image .hero_mess {
    position: absolute;
    z-index: 3;
    max-width: 100%;
    top: 20%;
    left: 80px;
    display: block;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center
}

.hero .hero-image .hero_mess img {
    display: block;
    max-width: 100%;
    margin: 30px auto
}

.hero .hero-image .main_slider {
    position: absolute;
    top: 50%;
    left: 62%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 62vw;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .hero-image .main_slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.8s, clip-path 1.2s;
    z-index: 1;
    will-change: clip-path, opacity;
    clip-path: inset(0% 0% 0% 0%);
}

.hero .hero-image .main_slider .slide.active {
    opacity: 1;
    z-index: 2;
}

@media screen and (max-width: 900px) {
    .hero .hero-image .main_slider {
        right: 0;
        min-height: 180px;
    }
}

@media screen and (max-width: 600px) {
    .hero .hero-image .main_slider {

        min-height: 120px;
    }
}

.content {
    background: url(img/home/background_yellow.jpg);
    padding: 120px 0px;
    width: 100%
}

.top .content {
    background: url(img/common/content_bg.svg), url(img/home/background_yellow.jpg);
    background-repeat: no-repeat, no-repeat;
    background-position: center 0px, center center
}

.business_pori .area .borad {
    padding: 0px
}

.business_pori .area .borad .pc {
    display: block
}

.business_pori .area .borad .sp {
    display: none
}

@media screen and (max-width: 1000px) {
    .business_pori .area .borad .pc {
        display: none
    }

    .business_pori .area .borad .sp {
        display: block
    }
}

.footer {
    color: white;
    padding: 0;
    text-align: center;
}

.footer .contact {
    position: relative;
    padding-bottom: 40px
}

.footer .contact .bg img {
    width: 100%;
    height: auto
}

.footer .contact .banner {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translate(-50%, 0);
    margin: 0 auto;
    text-align: center;
    z-index: 999;
    display: block;
    width: 80%
}

.footer .contact .banner .btn {
    z-index: 999;
    position: absolute;
    top: 66%;
    left: 50%;
    transform: translate(-50%, 0)
}

.footer .contact .banner .btn a {
    display: inline-block;
    transition: transform 0.3s ease
}

.footer .contact .banner .btn a:hover {
    transform: scale(1.05)
}

.footer .contact .footer-content {
    background-color: #295180;
    z-index: 1;
    padding: 50px 70px 50px 70px;
    width: 100%;
    position: absolute;
    top: 50%
}

.footer .contact .footer-content.top-ft {
    padding: 350px 70px 20px 70px
}

.footer .contact .footer-content .logo {
    margin: 20px auto 50px auto
}

.footer .contact .footer-content .address {
    font-size: 18px;
    margin-bottom: 70px
}

.footer .contact .footer-content .footer-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-around;
    max-width: 1000px;
    margin: auto
}

.footer .contact .footer-content .footer-nav ul li {
    display: inline-block;
    text-align: center
}

.footer .contact .footer-content .footer-nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease
}

.footer-bottom .fb_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 50px 20px 10px 20px;
    background-color: #2c4f7a;
    color: #fff;
    font-size: 16px
}

.footer-bottom .fb_wrap .cr {
    color: #ffffff
}

.footer-bottom .fb_wrap .link {
    display: flex;
    list-style: none;
    gap: 60px;
    margin: 0;
    padding: 0
}

.footer-bottom .fb_wrap .link li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px
}

.footer-bottom .fb_wrap .link li a:hover {
    text-decoration: underline
}

#scrollToTop {
    position: fixed;
    bottom: 80px;
    right: 80px;
    cursor: pointer;
    display: none;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 999
}

#scrollToTop:hover {
    opacity: 1;
    transform: scale(1.1)
}

#scrollToTop img {
    width: 100%;
    height: auto
}

.top .about {
    position: relative
}

.top .about .bg {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%
}

.top .about .bg img {
    width: 100%;
    height: auto;
    object-fit: cover
}

.top .about .title {
    text-align: center
}

.top .about .desc {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px
}

.top .about .desc h2 {
    font-size: 36px;
    font-weight: bold;
    color: #F19D47;
    margin-bottom: 15px;
    text-align: center
}

.top .about .desc p {
    font-size: 18px;
    color: #000;
    line-height: 1.8
}

.top .business {
    position: relative;
    padding: 80px 20px;
    text-align: center
}

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

.top .business .bg img {
    width: 100%;
    height: auto;
    object-fit: cover
}

.top .business .title {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
    text-align: left;
    padding-left: 180px
}

.top .business .title img {
    height: auto
}

.top .business .box {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    max-width: 1800px;
    gap: 40px;
    position: relative;
    z-index: 3
}

.top .business .item {
    max-width: 400px;
    width: 100%;
    border-radius: 8px;
    text-align: left
}

.top .business .item .image {
    text-align: center;
    margin-bottom: 15px
}

.top .business .item .image img {
    width: 100%;
    height: auto;
    border-radius: 5px
}

.top .business .item p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    padding: 0px 1em
}

.top .company {
    position: relative
}

.top .company .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 88
}

.top .company .bg img {
    max-width: 100%
}

.top .company .area {
    display: flex;
    align-items: bottom;
    justify-content: center;
    gap: 40px;
    margin: auto;
    padding: 180px 0;
    flex-wrap: nowrap;
    position: relative;
    z-index: 99
}

.top .company .thumb {
    position: relative;
    width: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding-left: 50px
}

.top .company .thumb img {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block
}

.top .company .cont {
    width: 50%;
    text-align: left;
    padding: 0 0 100px 0
}

.top .company .cont .title {
    margin-bottom: 30px
}

.top .company .cont .rwrap {
    padding-left: 70px
}

.top .company .cont .rwrap h2 {
    font-size: 40px;
    font-weight: bold;
    color: #295180;
    margin-bottom: 15px
}

.top .company .cont .rwrap p {
    font-size: 18px;
    color: #000;
    line-height: 1.6;
    margin-bottom: 40px
}

.top .recruit {
    position: relative
}

.top .recruit .bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    text-align: right;
    z-index: 1
}

.top .recruit .bg img {
    max-width: 100%
}

.top .recruit .area {
    position: relative;
    display: flex;
    align-items: bottom;
    justify-content: center;
    gap: 40px;
    margin: auto;
    padding: 180px 0;
    flex-wrap: nowrap;
    z-index: 2
}

.top .recruit .thumb {
    position: relative;
    width: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding-left: 50px
}

.top .recruit .thumb img {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block
}

.top .recruit .cont {
    width: 50%;
    text-align: left;
    padding: 0 0 0 10vw
}

.top .recruit .cont .title {
    margin-bottom: 30px
}

.top .recruit .cont .rwrap {
    padding-left: 70px
}

.top .recruit .cont .rwrap h2 {
    font-size: 40px;
    font-weight: bold;
    color: #F19D47;
    margin-bottom: 15px
}

.top .recruit .cont .rwrap p {
    font-size: 20px;
    color: #000;
    line-height: 1.6;
    margin-bottom: 40px
}

.top .message {
    position: relative
}

.top .message .bg {
    text-align: center
}

.top .message .btn {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translate(-50%, 0)
}

.top .sdgs {
    text-align: center;
    padding: 120px 0
}

main:not(.top) .sub_hero {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center
}

main:not(.top) .sub_hero img {
    height: 100%;
    max-width: 100%;
    object-fit: cover
}

main:not(.top) .content section {
    max-width: 1200px;
    margin: auto;
    padding:0 40px;
}

main:not(.top) .h2_wrap {
    text-align: center;
    padding: 100px 0 0 0
}

main:not(.top) .h2_wrap h2 {
    display: inline-block;
    text-align: center;
    font-size: 44px;
    color: #295180;
    border-bottom: 2px dashed #295180;
    margin-bottom: 20px
}

main:not(.top) .desc {
    font-size: 18px;
    line-height: 1.8em;
    margin-bottom: 40px
}

.business_pori .h2_wrap,
.business_processing .h2_wrap {
    text-align: center
}

.business_pori .h2_wrap h2,
.business_processing .h2_wrap h2 {
    display: inline-block;
    text-align: center;
    font-size: 44px;
    color: #E28532;
    border-bottom: 2px dashed #E28532;
    margin-bottom: 20px
}

.business_logistics .hero {
    position: relative;
    text-align: center
}

.business_logistics .area h3 {
    display: inline-flex;
    gap: 8px;
    font-size: 28px;
    font-weight: bold;
    margin: 20px 0
}

.business_logistics .area h3 span {
    background-color: #E28532;
    color: white;
    padding: 8px 12px;
    display: inline-block;
    line-height: 1;
    min-width: 40px;
    text-align: center
}

.business_logistics .hero img {
    max-width: 100%;
    height: auto
}

.business_logistics .content {
    background: url("img/logistics/content_bg.svg");
    padding: 0px
}

.business_logistics .content .logi_cont .h2_wrap {
    text-align: center
}

.business_logistics .content .logi_cont .h2_wrap h2 {
    display: inline-block;
    text-align: center;
    font-size: 44px;
    color: #295180;
    border-bottom: 2px dashed #295180;
    margin-bottom: 20px
}

.business_logistics .content .logi_cont .area {
    display: flex;
    flex-wrap: wrap
}

.business_logistics .content .logi_cont .area .block {
    max-width: 1200px;
    margin-bottom: 40px
}

.business_logistics .content .s_desc {
    max-width: 700px;
    margin: auto;
    text-align: left
}

.business_logistics .content .fld {
    display: flex;
    justify-content: center;
    padding: 30px 0 50px 0;
    gap: 40px
}

.business_logistics .content .area {
    padding: 50px 0;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    text-align: center
}

.business_logistics .content .group1 {
    background-color: rgba(241, 157, 71, 0.2);
    max-width: 100%
}

.business_logistics .content .group1 .area.g1 .s_desc {
    color: #754C24
}

.business_logistics .content .group2 {
    background-color: rgba(41, 81, 128, 0.2);
    max-width: 100%
}

.business_logistics .content .group2 .area.g2 .g2_header h3 span {
    background-color: #295180
}

.business_logistics .content .group2 .area.g2 .g2_header .s_desc {
    color: #295180
}

.business_logistics .content .group3 {
    background-color: rgba(241, 157, 71, 0.2);
    max-width: 100%
}

.business_logistics .content .group3 .area.g3 .g3_content .g3_text .s_desc {
    color: #754C24
}

.business_processing .processing_features {
    text-align: center
}

.business_processing .processing_features .feature {
    max-width: 1200px;
    margin: auto
}

.business_processing .processing_features .feature .h2_wrap {
    text-align: center
}

.business_processing .processing_features .feature .h2_wrap h2 {
    display: inline-block;
    text-align: center;
    font-size: 44px;
    color: #E28532;
    border-bottom: 2px dashed #E28532;
    margin-bottom: 20px
}

.business_processing .processing_features .feature .desc {
    font-size: 18px;
    line-height: 1.8em;
    font-weight: bold;
    margin-bottom: 80px;
    text-align: left
}

.business_processing .processing_features .block .box {
    margin-bottom: 50px
}

.business_processing .processing_features .mess {
    text-align: center;
    padding: 20px 0
}

.business_pori .area {
    width: 100%;
    margin-bottom: 50px
}

.business_pori .area .block {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

.business_pori .area .box {
    width: 33%;
    padding: 50px 10px;
    text-align: center
}

.business_pori .mess {
    text-align: center
}

.company .content {
    width: 100%;
    margin-bottom: 50px
}

.company .content .greeting {
    text-align: center;
    padding: 80px 10px
}

.company .content .greeting .h2_wrap {
    margin-bottom: 20px
}

.company .content .greeting .h2_wrap h2 {
    font-size: 44px;
    color: #295180;
    border-bottom: 2px dashed #295180;
    display: inline-block;
    padding-bottom: 5px
}

.company .content .greeting .desc {
    font-size: 18px;
    line-height: 1.8;
    max-width: 1000px;
    margin: 0 auto
}

.company .content .company_overview {
    width: 100%;
    padding: 50px 10px;
    text-align: center
}

.company .content .company_overview .h2_wrap {
    text-align: center;
    margin-bottom: 30px
}

.company .content .company_overview .h2_wrap h2 {
    font-size: 44px;
    color: #295180;
    border-bottom: 2px dashed #295180;
    display: inline-block;
    padding-bottom: 5px
}

.company .content .company_overview .company_table {
    width: 100%;
    border-collapse: collapse;
    font-size: 18px;
    color: #333;
    background: transparent;
    overflow: hidden
}

.company .content .company_overview .company_table tr:nth-child(odd) {
    border-bottom: 1px solid #295180
}

.company .content .company_overview .company_table tr:nth-child(even) {
    border-bottom: 1px solid #E28532
}

.company .content .company_overview .company_table tr:last-child {
    border-bottom: none
}

.company .content .company_overview .company_table th,
.company .content .company_overview .company_table td {
    padding: 30px 10px;
    text-align: left
}

.company .content .company_overview .company_table th {
    width: 20%;
    font-weight: bold;
    background-color: transparent;
    color: #295180
}

.company .content .company_overview .company_table td {
    width: 80%
}

.company .content .company_overview .map {
    margin-top: 30px
}

.company .content .company_overview .map .map_button {
    display: inline-block;
    background-color: #E28532;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease
}

.company .content .company_overview .map .map_button:hover {
    background-color: #c56c1c
}

main.contact {
    width: 100%;
    background: #fff;
    font-family: "Noto Sans JP", sans-serif;
    color: #333
}

main.contact h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1A3D6D
}

main.contact p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px
}

main.contact form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #ccc
}

main.contact form label {
    font-weight: 500;
    display: block;
    margin-top: 15px;
    font-size: 16px;
    color: #1A3D6D
}

main.contact form .required {
    color: #E28532;
    font-size: 14px;
    margin-left: 5px
}

main.contact form input[type="text"],
main.contact form input[type="email"],
main.contact form input[type="tel"],
main.contact form input[type="number"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    margin-top: 5px;
    background: #f8f8f8;
    transition: border-color 0.3s ease
}

main.contact form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    margin-top: 5px;
    background: #f8f8f8;
    transition: border-color 0.3s ease
}

main.contact form input[type="text"]:focus,
main.contact form input[type="email"]:focus,
main.contact form input[type="tel"]:focus,
main.contact form input[type="number"]:focus {
    border-color: #295180;
    outline: none;
    background: #fff
}

main.contact form textarea:focus {
    border-color: #295180;
    outline: none;
    background: #fff
}

main.contact form input[type="radio"],
main.contact form input[type="checkbox"] {
    margin-right: 10px
}

main.contact form .radio-group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px
}

main.contact form .radio-group label {
    font-weight: normal;
    color: #333
}

main.contact form textarea {
    height: 120px;
    resize: vertical
}

main.contact form .privacy {
    display: flex;
    align-items: center;
    margin-top: 15px
}

main.contact form .privacy label {
    font-size: 14px;
    color: #333
}

main.contact form .btn-wrap {
    display: flex;
    justify-content: center;
    margin-top: 20px
}

main.contact form input[type="submit"] {
    width: auto;
    background: #1A3D6D;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 40px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s
}

main.contact form input[type="submit"]:hover {
    background: #102644
}

main.contact form .c_bottom {
    text-align: center
}

main.contact form .c_bottom label {
    margin-bottom: 10px
}

.business .sub_hero {
    width: 100%;
    text-align: center;
    margin-bottom: 40px
}

.business .sub_hero img {
    width: 100%
}

.business .content {
    margin: 0 auto;
    padding: 40px 20px
}

.business .content .business_intro {
    text-align: center;
    margin-bottom: 40px
}

.business .content .business_intro h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1A3D6D;
    margin-bottom: 10px
}

.business .content .business_intro p {
    font-size: 18px;
    color: #333
}

.business .content .business_grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 30px;
    margin-bottom: 100px
}

.business .content .business_grid .business_item {
    width: 50%;
    max-width: 400px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out
}

.business .content .business_grid .business_item:nth-child(1) a h3 {
    background: #1A3D6D
}

.business .content .business_grid .business_item:nth-child(2) a h3 {
    background: #E28532
}

.business .content .business_grid .business_item:nth-child(3) a h3 {
    background: #bb0066
}

.business .content .business_grid .business_item:nth-child(4) a h3 {
    background: #29A745
}

.business .content .business_grid .business_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15)
}

.business .content .business_grid .business_item a {
    display: block;
    text-decoration: none;
    color: inherit
}

.business .content .business_grid .business_item a img {
    width: 100%;
    height: 300px;
    object-fit: cover
}

.business .content .business_grid .business_item a h3 {
    font-size: 20px;
    font-weight: 600;
    padding: 15px;
    background: #295180;
    color: #fff
}

.messages .messages_overview {
    text-align: center
}

@media screen and (max-width: 1200px) {
    header {
        background-color: #fff
    }

    header .header_wrap .h_contact {
        text-align: center
    }

    header .header_wrap .h_contact a {
        color: #e97100;
        text-align: center;
        padding-right: 10px;
        font-size: 14px
    }

    .top .about .desc p {
        font-size: 16px
    }

    header .header_wrap nav a,
    header .header_wrap nav .dropdown {
        font-size: 14px
    }
}

@media screen and (max-width: 800px) {
    header .header_wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        width: 100%
    }

    header .header_wrap .hamburger {
        display: block;
        width: 40px;
        height: 30px;
        position: relative;
        cursor: pointer;
        z-index: 10
    }

    header .header_wrap .hamburger span {
        display: block;
        width: 100%;
        height: 4px;
        background-color: #1A3D6D;
        margin: 6px 0;
        transition: 0.3s;
        border-radius: 3px
    }

    header .header_wrap .hamburger.active span:nth-child(1) {
        transform: translateY(10px) rotate(45deg)
    }

    header .header_wrap .hamburger.active span:nth-child(2) {
        opacity: 0
    }

    header .header_wrap .hamburger.active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg)
    }

    header .header_wrap nav {
        position: absolute;
        top: 77px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        text-align: center;
        opacity: 0;
        transform: translateY(-20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
        pointer-events: none;
        max-height: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column
    }

    header .header_wrap nav a {
        display: block;
        padding: 15px;
        color: #1A3D6D;
        text-decoration: none;
        border-bottom: 1px solid #ccc;
        transition: background 0.3s ease;
        width: 100%
    }

    header .header_wrap nav a:hover {
        background-color: #295180;
        color: #fff
    }

    header .header_wrap .h_contact {
        display: none
    }

    header .header_wrap.nav-open nav {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        max-height: 100vh
    }
}

@media screen and (max-width: 800px) {
    .h2_wrap h2 {
        font-size: 34px !important
    }

    main {
        margin-top: 77px
    }

    main.contact form {
        margin: 10px
    }

    .hero .hero-image .hero_mess {
        left: 10px;
        width: 60%
    }

    .hero .hero-image .hero_mess img {
        margin: 10px
    }

    .top .about .desc h2 {
        font-size: 20px
    }

    .top .business .box {
        flex-wrap: wrap
    }

    #scrollToTop {
        width: 80px;
        height: 80px;
        right: 5px;
        bottom: 5px
    }

    .top .business .title {
        padding-left: 0px
    }

    .top .company .area {
        display: block
    }

    .top .company .thumb {
        width: 100%;
        padding: 10px
    }

    .top .company .cont {
        width: 100%;
        padding: 10px
    }

    .top .company .cont .rwrap {
        padding: 10px
    }

    .top .company .area {
        padding: 30px 10px
    }

    .top .recruit .area {
        padding: 30px 10px;
        display: block
    }

    .top .recruit .cont {
        width: 100%
    }

    .top .recruit .cont .rwrap {
        padding: 10px
    }

    .top .recruit .thumb {
        width: 100%
    }

    .top .title img {
        width: 400px !important
    }

    .area .cont {
        display: flex;
        justify-content: center;
        flex-wrap: wrap
    }

    .top .message .btn {
        width: 200px;
        bottom: 18px
    }

    .top .sdgs {
        padding: 30px
    }

    .footer .contact .footer-content .footer-nav ul li a {
        font-size: 18px
    }

    .footer .contact .footer-content .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: center
    }

    .footer .contact .footer-content .footer-bottom ul {
        margin: 10px auto
    }

    .content section {
        padding: 0 20px
    }
}

@media screen and (max-width: 500px) {
    th {
        white-space: nowrap
    }

    .h2_wrap {
        margin-bottom: 10px !important
    }

    .h2_wrap h2 {
        margin-bottom: 0px !important
    }

    .top .recruit .cont,
    .top .recruit .thumb {
        padding: 10px
    }

    .footer .contact .banner {
        width: 96%
    }

    .footer .contact .footer-content {
        padding: 40px 30px
    }

    .footer .contact .footer-content .address {
        font-size: 16px
    }

    .footer .contact .footer-content.top-ft {
        padding: 170px 10px 50px 10px
    }

    .footer .contact .footer-content .footer-nav ul {
        display: block;
        width: 100%
    }

    .footer .contact .footer-content .footer-nav ul li {
        margin-bottom: 10px;
        display: block;
        border-left: none !important;
        border-right: none;
        border-bottom: 1px dashed #838383;
        padding-bottom: 10px
    }

    .footer .contact .footer-content .footer-nav ul li a {
        font-size: 14px
    }

    .footer .contact .footer-content .footer-bottom {
        margin-top: 20px
    }

    main:not(.top) .h2_wrap h2 {
        font-size: 24px !important;
        text-align: left !important
    }

    .business_pori .area .box {
        width: 100%;
        padding: 20px 10px
    }

    .business .content .business_grid .business_item {
        width: 100%;
        margin-bottom: 20px
    }

    .company .content .greeting {
        padding: 20px
    }
}