@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+Antique:wght@400;500;700&display=swap');

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

body {
    font-family: 'Zen Kaku Gothic New', sans-serif;
}

.header {
    background-color: #FFFFFF;
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #E5E5E5;
    position: fixed;
    top: 0px;
    z-index: 30000;
}

.header-container {
    width: 100%;
    /* max-width: 1400px; */
    margin: 0 auto;
    /* padding: 0 40px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 13px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.logo-section:hover {
    text-decoration: none;
}

.logo-section:hover .company-name-main,
.logo-section:hover .company-name-sub {
    text-decoration: none;
}

.logo {
    width: 44px;
    height: 55px;
    object-fit: contain;
}

.company-name {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.company-name-main {
    font-family: 'Zen Kaku Gothic New';
    font-size: 18px;
    font-weight: 500;
    color: #000000;
}

.company-name-main br.sp {
    display: none;
}

.company-name-sub {
    font-family: 'Zen Kaku Gothic New';
    font-size: 14px;
    font-weight: 400;
    color: #000000;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 16px;
    /* font-weight: 500; */
    color: #333333;
    text-decoration: none !important;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.nav-link:hover {
    color: #333333 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #154994;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease, transform-origin 0s ease 0.3s;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.3s ease, transform-origin 0s ease;
}

.nav-button {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #FFFFFF;
    text-decoration: none;
    width: 200px;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #52B6E7, #2F98DD);
    transition: opacity 0.5s ease;
    text-decoration: none !important;
    z-index: 100000;
}

.nav-button:hover {
    background: linear-gradient(to right, #A8D9F2, #96CBEE);
    color: #ffffff !important;
}

.menu-toggle {
    display: none;
    width: 56px;
    height: 56px;
    border: 4px solid #A2B6D3;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    position: relative;
    padding: 0;
    margin-right: 13px;
}

.menu-line {
    display: block;
    height: 3px;
    background-color: #154994;
    transition: all 0.3s ease;
    border-radius: 3px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.menu-line-top {
    width: 25px;
    top: 18px;
}

.menu-line-middle {
    width: 25px;
    top: 26.5px;
}

.menu-line-bottom {
    width: 14px;
    top: 35px;
    margin-left: -5px;
}

/* Sidebar Menu Styles */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

.sidebar-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: #154994;
    z-index: 999;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.sidebar-menu.active {
    left: 0;
}

.sidebar-header {
    background-color: #C8D9F2;
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 13px;
    position: relative;
}

.sidebar-header-content {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.sidebar-logo {
    width: 44px;
    height: 55px;
    object-fit: contain;
}

.sidebar-company-name {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.sidebar-company-name-main {
    font-family: 'Zen Kaku Gothic New';
    font-size: 16px;
    color: #000000;
}

.sidebar-company-name-sub {
    font-family: 'Zen Kaku Gothic New';
    font-size: 14px;
    font-weight: 400;
    color: #000000;
}

.sidebar-body {
    flex: 1;
    background: linear-gradient(to right, #144892, #062859);
    padding: 40px 0px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-nav-link {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-size: 24px;
    color: #FFFFFF;
    text-decoration: none;
    padding: 20px 0px;
    width: 310px;
    margin: auto;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: background-color 0.3s ease;
    text-decoration: none !important;
}

.sidebar-nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.sidebar-nav-link:last-of-type {
    border-bottom: none;
}

.sidebar-button {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #FFFFFF;
    text-decoration: none !important;
    width: 300px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #8BE6F7, #218CD9);
    border-radius: 4px;
    margin: 40px auto 0;
    gap: 10px;
    transition: opacity 0.3s ease;
    border-radius: 36px;
}

.sidebar-button:hover {
    opacity: 0.9;
    color: #FFFFFF !important;
}

.sidebar-button-text {
    display: inline-block;
}

.sidebar-button-arrow {
    display: inline-block;
    font-size: 24px;
}

/* Sidebar Close Button */
.sidebar-close {
    width: 56px;
    height: 56px;
    border: 4px solid #81A1CD;
    border-radius: 50%;
    background: #FFFFFF;
    cursor: pointer;
    position: relative;
    padding: 0;
    margin-right: 13px;
}

.close-line {
    display: block;
    height: 3px;
    background-color: #154994;
    border-radius: 3px;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 25px;
    transform: translate(-50%, -50%);
}

.close-line-top {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-line-bottom {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Slideshow Section */
.slideshow-section {
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    margin-top: 80px;
}

.slideshow-section .uk-position-relative {
    height: calc(100vh - 80px);
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slideshow-section .uk-slideshow-items {
    height: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

.slideshow-section .uk-slideshow-items li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.slideshow-section .uk-slideshow-items img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-small-image {
    position: absolute;
    height: calc(100vh - 200px) !important;
    width: calc(100% - 240px) !important;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 5;
    object-fit: contain;
}

.slide-text-overlay {
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
}

.slide-catch-copy {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 40px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 1.4;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(68, 76, 85, 1);
}
.slide-catch-copy.sp
{
    display: none;
}

.slide-body-text {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 24px;
    color: #FFFFFF;
    line-height: 1.6;
    text-shadow: 0 0 10px rgba(68, 76, 85, 1);
}

@media (max-width: 960px) {
    .slide-catch-copy.sp
    {
        display: block;
    }
    .slide-catch-copy.pc
    {
        display: none;
    }
}

/* Background Section */
.background-section {
    width: 100%;
    height: 1700px;
    /* background-image: url('images/back-1.png'); */
    background: #E1EAF5;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    display: block;
    position: relative;
}

.scroll-indicator {
    position: absolute;
    right: 86px;
    bottom: 25px;
    width: 136px;
    height: 136px;
    max-width: 136px;
    max-height: 136px;
    border-radius: 50%;
    border: 6px solid #C9D7EC;
    background-color: #FFFFFF;
    box-shadow: 0 15px 35px rgba(17, 48, 93, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #13448B;
    letter-spacing: 0.08em;
    text-transform: capitalize;
    z-index: 20;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-decoration: none !important;
}

.scroll-indicator:hover {
    transform: translateY(4px);
    box-shadow: 0 10px 25px rgba(17, 48, 93, 0.35);
    border-color: #FFFFFF;
    color: #13448B;
    text-decoration: none !important;
}

.scroll-indicator-label {
    pointer-events: none;
}

.scroll-indicator-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.scroll-indicator-arrow img {
    width: 23px;
    height: 46px;
}

.background-section .path-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 300px;
    pointer-events: none;
}

.background-section .path-img img {
    width: 2000px;
    height: auto;
    pointer-events: none;
}

.background-text {
    position: absolute;
    top: 470px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
}

.background-img-1 {
    position: absolute;
    top: 170px;
    left: 237px;
}

.background-img-1 img {
    width: 240px;
    height: 160px;
}

.background-img-2 {
    position: absolute;
    top: 200px;
    right: 0px;
}

.background-img-2 img {
    width: 400px;
    height: 256px;
}

.background-img-3 {
    position: absolute;
    top: 410px;
    left: 0px;
}

.background-img-3 img {
    width: 400px;
    height: 256px;
}

.background-img-4 {
    position: absolute;
    top: 700px;
    left: 340px;
}

.background-img-4 img {
    width: 200px;
    height: 120px;
}

.background-text-line {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 35px;
    font-weight: bold;
    color: #154994;
    line-height: 1.8;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.products-section {
    position: absolute;
    top: 1000px;
    left: 50%;
    transform: translateX(-50%);
    width: min(100%, 1280px);
    display: flex;
    justify-content: center;
    z-index: 15;
}

.products-card {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 60px 70px 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.products-heading {
    align-self: stretch;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.products-heading-jp {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #444C55;
}

.products-heading-en {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #154994;
    letter-spacing: 0.08em;
    border-bottom: 1px solid #86A1C8;
    padding-bottom: 10px;
}

.products-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-item {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 50px;
    /* width: 352px; */
}

.product-image {
    width: 352px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 352px;
    height: 248px;
    object-fit: cover;
}

.product-name {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #154994;
    text-align: center;
}
@media (min-width: 1200px) {
    .product-name {
        padding-top: 20px;
    }
}

.product-button {
    width: 300px;
    height: 72px;
    border-radius: 36px;
    border: 4px solid #B7C7DE;
    background-color: #103D7D;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #ffffff;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, filter 0.3s ease;
    text-decoration: none !important;
}

.product-button:hover {
    border-color: #103D7D;
    transform: translateY(-2px);
    filter: blur(0.5px);
    color: #FFFFFF;
}

.product-button-text {
    display: inline-block;
}

.product-button-icon {
    width: 16px;
    height: 16px;
}

.info-section {
    margin-top: 200px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    z-index: 14;
    background-image: url('../images/back-2.png');
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
}

.info-section::before {
    content: "";
    position: absolute;
    top: -200px;
    left: 0;
    width: 100%;
    height: 200px;
    background: #e5edf6;
}

.info-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 400px;
    gap: 40px;
}

.info-card-link {
    display: block;
    text-decoration: none !important;
    color: inherit;
    width: 520px;
    height: 272px;
}

.info-card-link:hover,
.info-card-link:focus {
    text-decoration: none !important;
    color: inherit;
}

.info-card {
    width: 520px;
    height: 272px;
    display: flex;
    flex-wrap: wrap;
    padding: 40px;
    background: linear-gradient(#13448B, #011D45);
    box-shadow: 0 30px 50px rgba(21, 73, 148, 0.2);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.info-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    background-image: url('../images/swap-img.webp');
    background-size: cover;
    background-position: center;
    transform-origin: right center;
    transition: width 0.6s ease;
    z-index: 0;
}

.info-card-facility::before {
    background-image: url('../images/swap-fa-img.png');
}

.info-card:hover::before {
    width: 100%;
}

.info-card .card-content {
    width: 100%;
    color: #FFFFFF !important;
    position: relative;
    z-index: 1;
}

.info-card .card-content>P {
    font-size: 16px;
    font-family: Zen Kaku Gothic New;
    margin-bottom: 0;
}

.info-card .card-content .card-content-title {
    font-size: 48px;
    font-weight: 900;
}

.card-tag {
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.card-tag-content>p {
    font-size: 16px;
    font-family: Zen Kaku Gothic New;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

.card-tag-button {
    width: 63px;
    height: 63px;
    border-radius: 50%;
    border: 4px solid #4E6381;
    background-color: #FFFFFF;
    transition: background-color 0.3s ease, border-color 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.card-tag-button:hover {
    border-color: #FFFFFF;
    filter: blur(0.5px);
}

.recruit {
    width: 100%;
    height: 440px;
    background-image: url('../images/back-3.webp');
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 150px;
    position: relative;
}

.recruit-section {
    width: 716px;
    height: 519px;
    background-image: url('../images/back-4.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    right: 0;
    top: 136px;
    display: flex;
    z-index: 900;
}

.recruit-card {
    width: 100%;
    background: transparent;
    border-radius: 24px;
    padding: 42px 80px;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.recruit-tag {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.recruit-dot {
    width: 8px;
    height: 8px;
}

.recruit-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 42px;
    font-weight: 900;
    margin: 0;
}

.recruit-text {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.recruit-button {
    width: 300px;
    height: 72px;
    border-radius: 34px;
    border: 4px solid #81A1CD;
    background-color: #FFFFFF;
    color: #13448B;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, filter 0.3s ease;
    text-decoration: none !important;
}

.recruit-button:hover {
    border-color: #FFFFFF;
    color: #13448B;
}

.recruit-button-icon {
    width: 24px;
    height: 24px;
}


.news {
    width: 100%;
    min-height: 700px;
    background-image: url('../images/back-5.png');
    background-image: linear-gradient(90deg, #f2f3f3, #e9eff6 25%, #e9eef6 50%, #e8edf5);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 80px 237px;
    padding-top: 375px;
    position: relative;
    display: flex;
    justify-content: center;
}

.news-container {
    width: 963px;
    display: flex;
    justify-content: space-between;
    gap: 48px;
}

.news-left {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
}

.news-tag {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #444C55;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.news-dot {
    width: 8px;
    height: 8px;
}

.news-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #154994;
    letter-spacing: 0.1em;
    margin: 0;
    letter-spacing: 0px;
}

.news-lens {
    position: absolute;
    left: -40px;
    top: 120px;
}

.news-lens img {
    width: 200px;
    height: auto;
    transform: rotate(-15deg);
}

.news-right {
    width: 720px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.news-list {
    display: flex;
    flex-direction: column;
}

.news-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(16, 61, 125, 0.1);
    gap: 10px;
}

.news-item:last-of-type {
    border-bottom: none;
}

.news-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-date {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #666666;
}

.news-item-text {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 1.6;
    margin: 0;
    /* letter-spacing: -2px; */
}

.news-item-link {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 4px solid #B7C7DE;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #FFFFFF;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.news-item-link img {
    width: 20px;
    height: 20px;
}

.news-item-link:hover {
    border-color: #FFFFFF;
    transform: translateX(4px);
}

.news-button {
    width: 300px;
    height: 72px;
    border-radius: 36px;
    border: 4px solid #B7C7DE;
    background-color: #103D7D;
    /* background: linear-gradient(to right,#13458E, #082D61); */
    color: #FFFFFF;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    align-self: flex-end;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    text-decoration: none !important;
}

.news-button-icon {
    width: 24px;
    height: 24px;
}

.news-button:hover {
    border-color: #103D7D;
    transform: translateY(-2px);
    color: #FFFFFF;
}

.contact {
    width: 100%;
    min-height: 640px;
    background-image: url('../images/back-6.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
}

.contact-container {
    max-width: 960px;
    height: 320px;
    margin: 0 auto;
    padding: 44px 108px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #FFFFFF;
}

.contact-left {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 85px;
}

.contact-tag {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #444C55;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.contact-dot {
    width: 8px;
    height: 8px;
}

.contact-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #103D7D;
    margin: 0;
}

.contact-description {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #444C55;
    line-height: 1.8;
    margin: 0;
    max-width: 400px;
    letter-spacing: -1px;
}

.contact-right {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    gap: 24px;
}

.contact-email {
    width: 384px;
    height: 104px;
    border-radius: 52px;
    background: linear-gradient(to right, #13458E, #082D61);
    color: #FFFFFF !important;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    gap: 16px;
    text-decoration: none !important;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-email-icon {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
}

.contact-email-text {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    text-align: left;
}

.contact-email-arrow {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 4px solid #B7C7DE;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.contact-email-arrow img {
    width: 20px;
    height: 20px;
}

.contact-email-arrow:hover {
    border-color: #FFFFFF;
    transform: translateX(4px);
}

.contact-phone {
    width: 384px;
    height: 104px;
    border-radius: 52px;
    background-color: #D1E7F7;
    display: flex;
    align-items: center;
    padding: 24px 32px;
    gap: 24px;
}

.contact-phone-icon {
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-phone-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-phone-label {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #103D7D;
    margin: 0;
}

.contact-phone-number {
    font-family: Heebo;
    font-size: 32px;
    font-weight: bold;
    color: #103D7D;
    margin: 0;
    letter-spacing: 0.05em;
}

.contact-phone-hours {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #103D7D;
    margin: 0;
}


footer {
    width: 100%;
    min-height: 500px;
    background: linear-gradient(to right, #144892, #062859);
    padding: 100px 80px;
    position: relative;
    overflow: visible;
}

.scroll-to-top {
    position: absolute;
    top: -44px;
    right: 80px;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 4px solid #FFFFFF;
    background-color: #103D7D;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    z-index: 1000;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:hover {
    background-color: #0b2f62;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.scroll-arrow {
    font-size: 24px;
    line-height: 1;
    font-weight: bold;
}

.scroll-text {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
}

.footer-g-icon {
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 400px;
    height: auto;
}

.footer-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.footer-left {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    width: 93px;
    height: 117px;
    object-fit: contain;
}

.footer-company-name {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 1.4;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 16px;
}

.footer-info p {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.6;
}

.footer-privacy {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding-top: 24px;
}

.footer-privacy-link {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-privacy-link:hover {
    opacity: 0.8;
}

.footer-privacy-icon {
    width: 12px;
    height: 12px;
    border: 1px solid #FFFFFF;
    display: inline-block;
    font-size: 0;
}

.footer-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 40px;
}

.footer-nav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-nav-link {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s ease;
    text-decoration: none !important;
}

.footer-nav-link:hover {
    opacity: 0.8;
    color: #FFFFFF;
}

.bottom {
    width: 100%;
    border-top: 1px solid #677EA1;
    margin-top: 120px;
    display: flex;
    justify-content: space-between;
    color: #FFFFFF;
    padding-top: 20px;
    position: relative;
    z-index: 2;
}

.bottom-left {
    font-size: 16px;
}

.bottom-right {
    font-size: 16px;
}

@media(min-width: 1900px) {
    .recruit-section {
        width: 900px;
    }
}

@media (max-width: 1440px) {
    .background-section .path-img img {
        width: 1440px;
    }
}

@media (min-width: 1200px) {

    .products-section {
        padding: 0;
        background-image: linear-gradient(90deg, #e1edf6, #e1ebf5);
    }
    .product-item {
        width: 100%;
    }

    .product-image {
        width: 100%;
    }

    .product-image img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 1300px) {
    @media (min-width: 1200px) {
        .products-card {
            max-width: 1100px;
        }
        
    }
}
@media (max-width: 1280px) {

    .background-section {
        height: 716px;
    }

    .background-text {
        top: 50%;
        gap: 0px;
    }

    .background-text-line {
        font-size: 25px;
    }

    .background-img-1 {
        width: 240px;
        height: 160px;
        position: absolute;
        top: 70px;
        left: 125px;
    }

    .background-img-1 img {
        width: 240px;
        height: 160px;
    }

    .background-img-2 {
        width: 300px;
        height: 200px;
        position: absolute;
        top: 90px;
        right: 0px;
    }

    .background-img-2 img {
        width: 300px;
        height: 200px;
    }

    .background-img-3 {
        width: 300px;
        height: 200px;
        position: absolute;
        top: 340px;
    }

    .background-img-3 img {
        width: 300px;
        height: 200px;
    }

    .background-img-4 {
        width: 200px;
        height: 120px;
        position: absolute;
        top: 560px;
        left: 240px;
    }

    .background-img-4 img {
        width: 200px;
        height: 120px;
    }

    .background-section .path-img {
        top: 200px;
    }

    .background-section .path-img img {
        width: 1100px;
    }


    .products-section {
        top: 716px;
    }

    .products-card {
        padding: 40px 30px 50px;
        gap: 30px;
    }

    .info-section {
        position: static;
        transform: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
        /* gap: 40px; */
        margin-top: 1000px;
    }

    /* .info-card {
        width: min(520px, 90%);
    } */

    .recruit {
        height: auto;
        padding: 140px 0 200px;
    }

    .info-cards {
        margin-top: 150px;
    }

    .footer-container {
        display: flex;
        flex-wrap: wrap;
    }

    .footer-left {
        width: 100%;
        display: flex;
        flex-direction: unset;
        justify-content: center;
    }

    .footer-right {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 1160px) {

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .product-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-bottom: 50px;
    }

    .info-card-link {
        width: min(520px, 90%);
    }

    .info-card {
        width: 100%;
    }

    .scroll-indicator {
        right: 40px;
        width: 110px;
        height: 110px;
    }

    .scroll-indicator-arrow img {
        width: 15px;
        height: 30px;
    }

    .info-section {
        margin-top: 1300px;
    }
}

/* Responsive styles for screens under 1025px */
@media (max-width: 1024px) {
    .navigation {
        display: none;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sidebar-close {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slide-text-overlay {
        left: 0px;
        padding: 0 20px;
    }

    .slide-catch-copy {
        font-size: 24px;
    }

    .slide-body-text {
        font-size: 16px;
    }

    .slide-small-image {
        width: calc(100% - 60px) !important;
    }

    .scroll-indicator {
        right: 32px;
        width: 104px;
        height: 104px;
        font-size: 14px;
        gap: 6px;
    }

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

    .news-container {
        width: 100%;
        flex-wrap: wrap;
    }

    .news-left {
        width: 100%;
    }

    .news-right {
        width: 100%;
    }

    .news-item {
        gap: 24px;
    }

    .news-lens {
        display: none;
    }

    .footer-left {
        width: 100%;
    }

}

@media (max-width: 900px) {

    .company-name-main br.sp {
        display: block;
    }

    .footer-container {
        gap: 0;
        flex-wrap: wrap;
    }

    .background-section .path-img img {
        display: none;
    }

    .background-section .path-img {
        background-image: url('../images/another-path.png');
        background-repeat: no-repeat;
        background-size: 120% 100%;
        transform: scale(-1, 1);
        top: 170px;
        background-position: center;

    }

    .background-img-1 {
        width: 240px;
        height: 160px;
        position: absolute;
        top: 35px;
        left: 40px;
    }

    .background-img-1 img {
        width: 240px;
        height: 160px;
    }

    .background-img-2 {
        width: 240px;
        height: 160px;
        position: absolute;
        top: 556px;
        right: 40px;
    }

    .background-img-2 img {
        width: 240px;
        height: 160px;
    }

    .background-img-3 {
        width: 200px;
        height: 120px;
        position: absolute;
        top: 225px;
        left: 0px;
    }

    .background-img-3 img {
        width: 200px;
        height: 120px
    }

    .background-img-4 {
        width: 200px;
        height: 120px;
        position: absolute;
        top: 420px;
        left: calc(100% - 200px);
    }

    .background-img-4 img {
        width: 200px;
        height: 120px;
    }

    .scroll-indicator {
        right: 20px;
        bottom: 60px;
        width: 92px;
        height: 92px;
        font-size: 13px;
    }

    .products-card {
        padding: 40px 10px 50px;
        gap: 30px;
    }

    .products-heading-en {
        font-size: 32px;
    }

    .products-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 50px;
    }

    .product-item {
        margin-bottom: 0px;
    }

    .info-section {
        margin-top: 2330px;
    }

    .info-cards {
        margin-top: 300px;
        flex-wrap: wrap;
    }

    .info-card {
        width: 100%;
        padding: 20px;
        align-items: flex-start;
        gap: 28px;
    }

    .info-card .card-content .card-content-title {
        font-size: 32px;
    }

    .info-card-button {
        align-self: flex-end;
    }

    .recruit-card {
        padding: 36px 50px;
        gap: 24px;
    }

    .recruit-title {
        font-size: 32px;
    }

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

    .contact-title {
        font-size: 32px;
        letter-spacing: 0px;
    }

    .contact-email {
        width: fit-content;
    }

    .contact-phone {
        width: fit-content;
        padding: 24px 20px;
    }

    .contact-phone-number {
        font-size: 24px;
    }

    .contact-container {
        width: 100%;
        height: auto;
        margin: 0 auto;
        padding: 40px 20px;
    }

    .footer-logo-section {
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo-content {
        width: 100%;
        text-align: center;
    }

    .bottom {
        flex-wrap: wrap;
        justify-content: center !important;
        gap: 42px;
    }

    .bottom-left {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .bottom-right {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .news-title {
        font-size: 32px;
    }
    .footer-right {
        display: none !important;
    }
}
@media (max-width: 716px) {

    .background-text-line {
        font-size: 25px;
    }

    .background-img-1 {
        width: 140px;
        height: 120px;
        position: absolute;
        top: 35px;
        left: 40px;
    }

    .background-img-1 img {
        width: 140px;
        height: 120px;
    }

    .background-img-2 {
        width: 140px;
        height: 120px;
        position: absolute;
        top: 556px;
        right: 40px;
    }

    .background-img-2 img {
        width: 140px;
        height: 90px;
    }

    .background-img-3 {
        width: 120px;
        height: 80px;
        position: absolute;
        top: 175px;
        left: 0px;
    }

    .background-img-3 img {
        width: 120px;
        height: 80px;
    }

    .background-img-4 {
        width: 120px;
        height: 80px;
        position: absolute;
        top: 460px;
        left: calc(100% - 120px);
    }

    .background-img-4 img {
        width: 120px;
        height: 80px;
    }

    .background-section .path-img {
        background-size: 140% 100%;

    }

    .recruit {
        width: 100%;
        height: 440px;
        background-image: url('../images/back-3-again.webp');
        background-repeat: no-repeat;
        background-size: cover;
        margin-top: 150px;
        position: relative;
    }

    .recruit-section {
        width: 370px;
        height: 457px;
        background-image: url('../images/back-4-top.png');
        background-repeat: no-repeat;
        background-size: 100% 100%;
        position: absolute;
        right: 0;
        top: 180px;
        display: flex;
    }

    .recruit-card {
        margin-top: 35px;
    }

    .news {
        padding-top: 250px;
    }

    .news-button {
        align-self: center;
    }

    .scroll-to-top {
        top: -28px;
        width: 56px;
        height: 56px;
        right: 20px;
        font-size: 16px;
        font-weight: bold;
    }

    .footer-g-icon {
        display: none;
    }

}

@media (max-width: 650px) {

    .slideshow-section .uk-slideshow-items img {
        object-position: -370px center;
    }

    .slideshow-section .uk-slideshow-items img.slide-small-image-1 {
        object-position: center;
    }

    .slideshow-section .uk-slideshow-items img.slide-small-image-3 {
        object-position: right;
    }

    .slide-text-overlay {
        top: 60%;
    }

    .info-cards {
        margin-top: 100px;
    }

    .info-card-link {
        width: min(350px, 100%);
        height: 196px;
    }

    .info-card {
        width: 100%;
        height: 100%;
        gap: 0;
    }

    .contact-container {
        width: 100%;
        height: auto;
        margin: 0 auto;
        padding: 40px 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        background-color: #FFFFFF;
        gap: 30px;
    }

    .recruit {
        margin-top: 100px;
    }

    .contact {
        background-size: contain;
        background-position: 100% 100%;
    }

    .contact-left {
        width: 100%;
        gap: 24px;
    }

    .contact-right {
        width: 100%;
    }

    footer {
        padding: 50px 40px;
    }

    .scroll-to-top {
        border: 3px solid #FFFFFF;
    }

    .info-section {
        background-size: contain;
        background-color: #e3e6f4;
    }

    .bottom-left {
        font-size: 14px;
    }

    .bottom-right {
        font-size: 14px;
    }

    .footer-company-name {
        font-size: 18px;
    }

}

@media (max-width: 400px) {
    .logo-content {
        text-align: start;
    }
}