* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px;
}

html,
body {
    margin: 0;
}

body {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(0, 49, 82, 1);
}

h1,
h2,
h3,
h4,
p {
    margin: 0;
    padding: 0;
}

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

#wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.header-inner,
.content-inner,
.footer-inner,
.breadcrumb {
    margin: 0 auto;
    max-width: 1100px;
    padding: 20px;
}

.content-inner {
    padding-bottom: 70px;
    padding-top: 0;
}

.home .content-inner {
    padding-top: 0;
}

.home .content {
    background:
        url(../images/deco.png) no-repeat right 40vw,
        url(../images/deco2.png) no-repeat left calc(100% + 80px);
}

/* ===== reset ===== */
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    color: #00a4e1;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ===== header ===== */
.header-logo {
    max-width: 200px;
}

.site-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    z-index: 100;
    position: fixed;
    width: 100%;
}

.header-inner {
    margin: auto;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
}

@media (max-width: 1024px) {
    html {
        scroll-padding-top: 65px;
    }

    .site-header {
        position: fixed;
        width: 100%;
    }

    .header-inner {
        padding: 5px 20px;
    }
}

.breadcrumb {
    font-size: 13px;
    padding-bottom: 0;
}

.breadcrumb a {
    font-weight: 600;
}

/* ===== menu PC ===== */
.menu {
    display: flex;
    gap: 40px;
}

.menu>li {
    position: relative;
    text-align: center;
}

.menu>li>a {
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.menu span.jp {
    font-size: 13px;
    color: #000;
    transition: all 0.3s ease;
}

.menu span.en {
    font-size: 10px;
    color: #999;
    transition: all 0.3s ease;
}

.menu>li>a.current,
.menu>li>a.current span.en,
.menu>li>a.current span.jp,
.menu>li>a:hover,
.menu>li>a:hover span.en,
.menu>li>a:hover span.jp {
    color: #00a4e1;
}

/* arrow */
.arrow {
    position: absolute;
    right: -16px;
    top: 16px;
    width: 6px;
    height: 6px;
    border-right: 1px solid #555;
    border-bottom: 1px solid #555;
    transform: rotate(45deg);
    transition: transform 0.35s ease;
}

/* ===== submenu ===== */
.sub-menu {
    position: absolute;
    top: 100%;
    margin-top: 30px;
    left: -65px;
    min-width: 200px;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    padding-top: 10px;
    padding-bottom: 10px;
    /* background-color: #f7f8fa; */
    background-color: rgba(247, 248, 250, 0.9);
    box-sizing: border-box;
    transition: all 0.5s ease;
}

.sub-menu::before {
    content: "";
    position: absolute;
    left: 0px;
    top: -15px;
    width: 100%;
    height: 30px;
}

.sub-menu a {
    display: block;
    padding: 12px 14px;
    font-size: 12px;
    color: #000;
}

.sub-menu a:hover {
    color: #00a4e1;
}

.has-sub::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 16px;
}

/* ===== Menu PC hover ===== */
@media (min-width: 1025px) {
    .has-sub:hover .sub-menu {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .has-sub:hover .arrow {
        transform: rotate(225deg);
    }

    .has-sub:hover .sub-menu {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .has-sub::before {
        content: "";
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 16px;
    }
}

/* ===== toggle button ===== */
.menu-toggle {
    display: none;
    width: 32px;
    height: 22px;
    position: relative;
    background: none;
    border: none;
}

.menu-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #111;
    transition: 0.4s ease;
}

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 10px;
}

.menu-toggle span:nth-child(3) {
    bottom: 0;
}

/* X animation */
.menu-toggle.is-open span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 10px;
}

/* ===== SP ===== */
@media (max-width: 1024px) {
    .menu-toggle {
        display: block;
    }

    .gnav {
        top: 64px;
        position: absolute;
        left: 0;
        width: 100%;
        background-color: #fff;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition:
            opacity 0.4s ease,
            transform 0.4s ease,
            visibility 0.4s ease;
        pointer-events: none;
    }

    .gnav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        height: 100vh;
        overflow-y: auto;
        overflow-x: hidden;
        padding-bottom: 65px;
        pointer-events: auto;
    }

    .menu {
        flex-direction: column;
        gap: 0;
    }

    .menu>li {
        border-bottom: 1px solid #eee;
    }

    .menu>li>a {
        padding: 16px 20px;
        align-items: center;
        width: 100%;
        align-items: center;
    }

    .sub-menu {
        position: static;
        border: none;
        opacity: 0;
        transform: none;
        max-height: 0;
        overflow: hidden;
        pointer-events: auto;
        transition:
            max-height 0.5s ease,
            opacity 0.3s ease,
            padding 0.3s ease;
        margin-top: 0;
        background-color: #f7f8fa;
        padding: 0;
    }

    .sub-menu.is-open {
        max-height: 300px;
        border-top: 1px solid #eee;
        opacity: 1;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .arrow {
        border: none;
        transform: none;
        position: absolute;
        right: 0;
        top: 0;
        width: 50px;
        height: 66.5px;
        z-index: 2;
    }

    .arrow::before {
        content: "";
        position: absolute;
        inset: 0;
        border-right: 1px solid #555;
        border-bottom: 1px solid #555;
        transform: rotate(45deg);
        transition: transform 0.35s ease;
        width: 7px;
        height: 7px;
        top: 28px;
        left: 15px;
    }

    .arrow.rotate::before {
        transform: rotate(225deg);
    }

    .has-sub::before,
    .sub-menu::before {
        display: none;
    }

    /* .arrow.rotate {
        transform: rotate(225deg);
    } */
}

/* ==== Title ==== */
.site-title {
    font-size: 24px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    color: #003152;
    width: 100%;
}

.site-title .divide {
    font-size: 90%;
}

.site-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #003152;
    margin-left: 16px;
}

.site-title span {
    font-size: 14px;
    margin-left: 6px;
}

/* ==== FOOTER ==== */
.site-footer {
    background: #1f4a96;
    color: #fff;
}

.footer-inner {
    padding: 25px 20px 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.footer-inner a:hover {
    color: #fff;
    opacity: 0.85;
}

.content section {
    margin-top: 40px;
}

/* top */
.footer-top {
    width: 100%;
    text-align: center;
}

.footer-top .arrow-top {
    position: absolute;
    top: 0;
    left: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: translate(-50%, -50%) rotate(45deg);
    margin-top: -3px;
}

/* left */
.footer-left {
    width: 43%;
}

.footer-logo {
    max-width: 160px;
    margin-bottom: 15px;
}

.site-footer .company-name {
    font-size: 13px;
    margin-bottom: 6px;
}

.site-footer .company-info {
    font-size: 12px;
    line-height: 1.7;
}

.page-top {
    display: inline-block;
    font-size: 12px;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
}

.site-footer .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.site-footer .footer-menu li {
    margin-bottom: 8px;
}

.site-footer .footer-menu a {
    font-size: 12px;
    color: #fff;
    transition: all 0.3s ease;
}

/* right */
/* .footer-right {
    width: 50%;
} */

.site-footer .tel-label {
    font-size: 12px;
}

.site-footer .tel {
    font-size: 22px;
    font-weight: 600;
}

.site-footer .tel-time {
    font-size: 11px;
    opacity: 0.85;
    margin-bottom: 12px;
}

.site-footer .privacy {
    max-width: 70px;
    margin-right: 0;
}

.site-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    font-size: 11px;
    padding: 14px 10px;
    opacity: 0.85;
}

.site-footer .footer-sub {
    display: flex;
    width: 100%;
}

.site-footer .footer-sub>div {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: end;
    text-align: center;
}

/* ===== SP ===== */
@media (max-width: 767px) {
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-right {
        width: 100%;
    }

    .site-footer .footer-menu {
        grid-template-columns: 1fr 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 16%;
    }

    .site-footer .footer-menu li {
        display: inline-block;
        margin: 0 8px 8px;
        text-align: left;
    }

    .site-footer .privacy {
        margin-top: 10px;
        margin-right: auto;
    }

    .footer-left {
        width: 100%;
    }

    .site-footer .footer-sub>div:first-child {
        display: none;
    }

    .site-footer .footer-sub {
        flex-direction: column;
    }

    .footer-menu li.empty {
        display: none;
    }
}

/* ===== list ===== */
.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item {
    padding: 20px;
    background-color: rgba(246, 246, 246, 0.51);
}

/* meta */
.news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
    font-size: 12px;
    color: #777;
}

.news-meta time {
    position: relative;
    padding-left: 20px;
}

.news-meta time::before {
    content: "";
    display: inline-block;
    background: url(../images/calendar-days.svg) no-repeat;
    background-size: 100% auto;
    width: 17px;
    height: 17px;
    position: absolute;
    left: 0;
}

/* tag */
.tag {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 12px;
    white-space: nowrap;
    min-width: 80px;
    text-align: center;
}

.tag.notice {
    background-color: #bfd9f6;
    color: #1d4695;
}

.tag.press-release {
    background-color: #deeec2;
    color: #003152;
}

.tag.all {
    background-color: #d9dcf4;
}

.tag-list {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.tag-list>.tag {
    cursor: pointer;
}

/* link */
.news-link {
    display: block;
    color: #1d4695;
    margin-bottom: 6px;
    font-weight: 600;
}

.news-link:hover {
    text-decoration: underline;
}

/* text */
.news-text {
    font-size: 13px;
    color: #555;
    margin: 0;
}

/* more */
.news-more {
    text-align: center;
    margin-top: 30px;
}

.news-more a {
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #333;
}

.news-more a:hover {
    color: #00a4e1;
    border-color: #00a4e1;
}

/* ===== SP ===== */
@media (max-width: 767px) {
    .site-title {
        font-size: 18px;
    }

    .news-meta {
        flex-wrap: wrap;
        gap: 6px;
    }

    .news-link {
        font-size: 13px;
    }

    .news-text {
        font-size: 12px;
    }
}

/* ===== SERVICE ===== */
.service .detail {
    max-width: 85%;
    margin: 0 auto;
}

.service-list {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 30px;
    margin-top: 80px;
}

/* card */
.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 24px 50px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 3px solid #f3f3f3;
}

.service-card:hover {
    transform: translateY(-6px);
}

/* icon */
.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -96px auto 20px;
}

.icon-circle img,
.icon-circle iframe {
    width: 45px;
    height: 45px;
    stroke-width: 1.5;
    color: #0b3c78;
}

/* text */
.service-card h3 {
    font-size: 16px;
    margin-bottom: 4px;
    color: #003152;
}

.service-card .en {
    font-size: 12px;
    color: #999;
    margin-bottom: 12px;
}

.service-card .desc {
    font-size: 13px;
    color: #1d4695;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* arrow link */
.arrow-link {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #f3f3f3;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        background 0.3s ease,
        border-color 0.3s ease;
}

.arrow-link::before {
    content: "\2192";
    /* → */
    font-size: 16px;
    color: #0b3c78;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
    font-weight: 600;
}

.service-card:hover .arrow-link {
    background: #0b3c78;
    border-color: #0b3c78;
}

.service-card:hover .arrow-link::before {
    color: #fff;
}

.service-box {
    margin: 40px auto;
    padding: 32px 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 0px 5px 2px rgba(0, 0, 0, 0.07)
}

/* title */
.service-box .s-title {
    color: rgba(0, 49, 82, 1);
    font-weight: 600;
    margin-bottom: 16px;
}

/* description */
.service-box .s-desc {
    color: #000;
}

/* responsive */
@media (max-width: 767px) {
    .service .detail {
        max-width: 100%;
    }

    .service-box {
        padding: 24px 20px;
    }
}

.content {
    margin-top: 81px;
    width: 100%;
    min-width: 0;
    overflow-x: hidden;
}

.fv-banner {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    line-height: 0;
}

.fv-banner img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 1600px) {
    .fv-banner img{
        aspect-ratio: 4;
    }

    .home .fv-banner img{
        aspect-ratio: 3.3;
        object-position: left center;
    }
}

/* SP */
@media (max-width: 1100px) {
    .fv-banner img{
        aspect-ratio: 3.3;
    }

    .home .fv-banner img{
        aspect-ratio: 2.8;
        object-position: left center;
    }
}
@media (max-width: 1024px) {
    .home .content {
        background-size: 26%, 36%;
        background-position: right 87vw, left calc(100% + 50px);
    }

    .content {
        margin-top: 63px;
    }
}

@media (max-width: 767px) {
    .home .fv-banner img {
        aspect-ratio: auto;
        height: auto;
        max-height: none;
        object-fit: contain;
        object-position: left top;
        background: linear-gradient(180deg, #0c6bae 0%, #1d4695 100%);
    }

    .service-list {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding-top: 50px;
    }

    .icon-circle {
        margin-top: -106px;
    }

    .news-cover {
        display: block;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .news-cover img {
        max-width: 100%;
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
        object-position: center;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .content {
        background-size: 62%;
        background-position: 133% 17%;
    }
}

/* ===== RECRUIT ===== */
.recruit {
    color: #1d4695;
}

.recruit h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.recruit .recruit-txt {
    padding-bottom: 20px;
}

.recruit .recruit-contact {
    display: flex;
    gap: 30px;
}

.recruit .recruit-contact>div:first-child img,
.recruit .recruit-contact>div:first-child iframe {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.recruit .contact-video {
    width: 65%;
}

.recruit .contact-line {
    text-align: center;
    width: 35%;
    background: rgba(240, 240, 240, 1);
    border-radius: 20px;
    padding: 30px 20px;
}

.recruit .contact-line h3 {
    font-size: 20px;
}

.recruit .contact-line img {
    border-radius: 10px;
}

.site-btn .rbtn {
    background-color: rgba(191, 217, 246, 1);
    padding: 15px;
    max-width: 320px;
    margin: 0 auto;
    display: block;
    text-align: center;
    margin-top: 35px;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #000;
    font-size: 17px;
}

.site-btn .rbtn:hover {
    opacity: 0.8;
}

@media (max-width: 767px) {
    .recruit .recruit-contact {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
    }

    .recruit .contact-video,
    .recruit .contact-line {
        width: 100%;
    }

    .recruit h3 {
        font-size: 18px;
    }
}

.detail {
    color: rgba(29, 70, 149, 1);
}

.detail h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #003152;
}

/* Company */
.company-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 0;
    margin-top: 30px;
}

.company-nav li {
    padding: 0 15px;
    line-height: 0.9;
    border-right: 1px solid #1d4695;
    transition: all 0.3s ease;
}

.company-nav li a {
    text-decoration: underline;
}

.company-nav li:first-child {
    padding-left: 0;
}

.company-nav li:last-child {
    border-right: 0;
    padding-right: 0;
}

.company #access .detail {
    display: block;
}

.company #access .access-item {
    display: flex;
    align-items: flex-start;
    gap: 48px;
}

.company #access .access-copy {
    flex: 0 0 32%;
    max-width: 360px;
    color: rgba(29, 70, 149, 1);
}

.company #access .access-copy h3 {
    margin: 10px 0 28px;
    font-size: 22px;
    line-height: 1.4;
    color: rgba(0, 49, 82, 1);
}

.company #access .access-address {
    font-size: 16px;
    line-height: 1.9;
}

.company #access .access-address p {
    margin: 0 0 14px;
}

.company #access .access-map {
    flex: 1 1 auto;
}

.company #access .access-map iframe,
.company #access .access-map :is(iframe) {
    width: 100%;
    min-height: 320px;
}

.company .detail {
    max-width: 85%;
    margin: 0 auto;
}

.company .company-info {
    margin: 40px auto;
    background: #fff;
}

.company .row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    gap: 10px;
}

.company .c-label {
    min-width: 90px;
}

/* label pill */
.company .c-label span {
    background: rgba(191, 217, 246, 1);
    color: rgba(29, 70, 149, 1);
    padding: 2px 20px;
    border-radius: 999px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

/* content */
.company .c-content {
    margin-left: 20px;
    color: #000;
    line-height: 1.8;
}

/* list style */
.company .c-content ul {
    padding-left: 18px;
    margin: 0;
}

.company .c-content li {
    margin-bottom: 4px;
    list-style: disc;
}

.company .c-content li::marker {
    font-size: 8px;
}

/* responsive */
@media (max-width: 767px) {
    .company .c-content {
        margin-left: 0;
    }
}

/* row layout */
.company .history-row {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
}

/* left date box */
.company .h-date {
    min-width: 180px;
    background: #f6f6f6;
    padding: 12px 16px;
    text-align: center;
    color: #000;
}

/* right detail box */
.company .h-detail {
    flex: 1;
    background: #f6f6f6;
    padding: 12px 20px;
    color: #000;
    text-align: center;
}

@media (max-width: 767px) {
    .company .h-date {
        width: 110px;
        min-width: unset;
        padding: 10px;
    }

    .company .history-row {
        gap: 8px;
    }

    .company .h-detail {
        padding: 10px;
        text-align: left;
    }
}

.company-list {
    margin: auto;
    color: #000;
}

.l-note {
    color: rgba(29, 70, 149, 1);
    margin-bottom: 10px;
}

/* list */
.company-list ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

/* custom bullet */
.company-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

.company-list li::before {
    content: "・";
    position: absolute;
    left: 0;
    top: 0;
    color: #333;
}

.company .access {
    max-width: 85%;
    margin: auto;
}

/* responsive */
@media (max-width: 767px) {
    .company .detail {
        max-width: 100%;
    }

    .company #access .access-item {
        flex-direction: column;
        gap: 24px;
    }

    .company #access .access-copy,
    .company #access .access-map {
        width: 100%;
        max-width: none;
        flex: none;
    }

    .company #access .access-copy h3 {
        margin: 0 0 18px;
        font-size: 20px;
    }

    .company #access .access-address {
        font-size: 15px;
    }

    .company #access .access-map iframe,
    .company #access .access-map :is(iframe) {
        min-height: 260px;
    }

    .company-nav li {
        font-size: 13px;
        padding: 0 10px;
    }
}

/* Privacy */
.privacy .detail {
    padding: 30px;
    background-color: #fafafa;
}

/* Recruitment */
/* TAB */
.recruit-tabs {
    display: flex;
    justify-content: flex-end;
    max-width: 77%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    margin-top: 50px;
}

.recruit-tabs .tab-btn {
    background: rgba(191, 217, 246, 1);
    border: none;
    padding: 12px 30px;
    border-radius: 14px 14px 0 0;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    color: rgba(29, 70, 149, 1);
    text-align: center;
}

.recruit-tabs .tab-btn.active {
    background: rgba(0, 0, 0, 0.05);
}

.recruitment .detail {
    border-radius: 30px;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.05);
    margin: 0 auto;
    max-width: 85%;
    display: none;
}

/* active show */
.recruitment .detail.active {
    display: block;
}

/* content */
.recruitment-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* text style */
.recruitment h3 {
    color: inherit;
}

.recruitment p {
    margin: 0 0 5px;
}

.recruitment .small-text {
    font-size: 0.85rem;
    color: #5570a5;
}

/* list */
.recruitment ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.recruitment .line-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #06C755;
    color: #fff;
    text-decoration: none;
    padding: 15px 15px 15px 50px;
    min-width: 300px;
    margin: 0 auto 20px;
    transition: opacity 0.2s ease;
    margin-top: 50px;
    font-weight: 600;
    max-width: 320px;
    width: 100%;
    font-size: 17px;
}

.recruitment .line-button:hover {
    opacity: 0.8;
}

.recruitment .line-icon {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.recruitment .line-icon img {
    height: 22px;
}

.recruitment .line-text {
    flex-grow: 0;
    margin-right: 35px;
    display: flex;
}

.recruitment .external-icon {
    display: flex;
    align-items: center;
}

.recruitment .external-icon img {
    height: 18px;
}

.recruit .recruit-video {
    display: flex;
    gap: 15px;
}

.recruit .recruit-video>div {
    flex: 1;
}

.recruit .recruit-video>div iframe {
    width: 100%;
    aspect-ratio: 16/9;
}

@media (max-width: 767px) {
    .recruit-tabs {
        max-width: 90%;
    }

    .recruit-tabs .tab-btn {
        padding: 10px 12px;
        border-radius: 10px 10px 0 0;
    }

    .recruitment .detail {
        max-width: 100%;
        border-radius: 12px;
        padding: 30px 25px;
    }

    .recruit .recruit-video {
        flex-direction: column;
    }
}



/* news */
.pagination {
    margin: 30px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination .page {
    padding: 5px;
    min-width: 20px;
}

.pagination .page.current {
    font-weight: 600;
}

.article-content {
    margin-top: 30px;
    padding: 20px;
    background-color: #fafafa;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.article-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.back-btn {
    text-align: center;
    margin-top: 30px;
    font-weight: 600;
}

@media (max-width: 767px) {
    .article-title {
        font-size: 20px;
    }
}

/* product */
.product {
    margin-top: 40px;
}

.product .product-list {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    padding-top: 20px;
    padding-bottom: 20px;
}

.product a.product-item {
    display: flex;
    /* border-top: 1px solid rgba(202, 213, 226, 1); */
    /* padding: 40px 0; */
    box-shadow: 0px 1px 16px 0px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
}

.product a.product-item .detail {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product a.product-item>div:first-child {
    width: 35%;
    overflow: hidden;
    border-radius: 10px 0 0 10px;
}

.product a.product-item>div:last-child {
    width: 65%;
    padding: 20px 30px 30px;
}

.product a.product-item>div:first-child img {
    object-fit: cover;
    aspect-ratio: 1.6;
    width: 100%;
    height: 100%;
    transition: all .3s ease;
}

.product a.product-item:hover{
    box-shadow: 0px 1px 16px 0px rgba(0, 0, 0, 0.1);
}

.product a.product-item:hover>div:first-child img {
    transform: scale(1.05);
}

.product a.product-item .site-title::after {
    display: none;
}

.product-detail {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 0;
}

.pd-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px 60px;
    margin-bottom: 80px;
}

.pd-img {
    flex: 1;
}

.pd-img img {
    width: 100%;
    border-radius: 10px;
}

.pd-text {
    flex: 1;
    color: #3b5ea7;
}

.pd-item.reverse {
    flex-direction: row-reverse;
}

.pd-item.center {
    flex-direction: column;
    text-align: center;
}

.pd-item.center .pd-img {
    max-width: 500px;
}

.text-center {
    text-align: center;
}

@media (max-width: 1200px) {
    .product a.product-item>div:first-child {
        width: 40%;
    }

    .product a.product-item>div:last-child {
        width: 60%;
    }

    .pd-item{
        gap: 30px 35px;
    }
}

/* Responsive */
@media (max-width: 767px) {

    .pd-item,
    .pd-item.reverse {
        flex-direction: column;
    }

    .product a.product-item {
        flex-direction: column;
    }

    .product a.product-item>div {
        width: 100% !important;
    }

    .product a.product-item>div:first-child {
        border-radius: 10px 10px 0 0;
    }

    .product a.product-item>div:last-child {
        padding: 20px 20px 25px;
    }

    .product .product-list .site-title{
        margin-bottom: 15px;
    }
}

/* contact */
.contact-form {
    max-width: 65%;
    margin: 40px auto;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-form .form-group label span {
    color: #334e85;
    margin-left: 5px;
}

/* Input & Select Style */
.contact-form .form-group input[type="text"],
.contact-form .form-group input[type="email"],
.contact-form .form-group input[type="tel"],
.contact-form .form-group select,
.contact-form .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(202, 213, 226, 1);
    border-radius: 6px;
    box-sizing: border-box;
    background-color: #fff;
    font-size: 16px;
    /* max-width: 500px; */
    width: 100%;
    color: inherit;
}

/* .contact-form .form-group select {
    width: auto;
    min-width: 150px;
    color: #666;
} */

.contact-form .form-group textarea {
    height: 150px;
}

/* Checkbox Style */
.contact-form .checkbox-group {
    margin: 30px 0;
}

.contact-form .checkbox-group label {
    display: block;
    margin-bottom: 12px;
    font-size: 16px;
    cursor: pointer;
}

.contact-form .checkbox-group input[type="checkbox"] {
    margin-right: 10px;
}

.contact-form .checkbox-group a {
    color: rgba(0, 164, 225, 1);
    text-decoration: underline;
}

/* Button Style */
.contact-form .button-group {
    text-align: center;
    margin-bottom: 40px;
}

.contact-form .btn-check,
.contact-form .btn-submit {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 15px;
    padding: 12px;
    border: none;
    border-radius: 30px;
    background-color: #e2efc5;
    color: inherit;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.2s;
}

.contact-form .btn-check:hover,
.contact-form .btn-submit:hover {
    opacity: 0.8;
}

/* Form Footer Style */
.contact-form .form-footer a {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .contact-form {
        max-width: 100%;
    }
}

.privacy .page-title {
    text-align: center;
    margin-bottom: 24px;
}

.privacy .meta {
    text-align: right;
    line-height: 1.8;
    margin-bottom: 24px;
}

.privacy p {
    margin-bottom: 12px;
}

.privacy ul {
    margin: 8px 0 12px 16px;
    padding: 0 0 0 10px;
}

.privacy ul li {
    list-style: disc;
    margin-bottom: 8px;
    line-height: 1.8;
}

.privacy ul li::marker {
    font-size: 8px;
}

.privacy .closing {
    margin: 16px 0 32px;
}

.privacy .contact-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 13px;
}

.privacy .contact-title .circle {
    width: 14px;
    height: 14px;
    border: 1.5px solid #333;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.privacy .contact-box {
    border: 1px solid rgba(145, 145, 145, 0.9);
    margin-bottom: 24px;
    overflow: hidden;
    max-width: 700px;
}

.privacy .contact-box-title {
    padding: 8px 16px;
    font-size: 13px;
}

.privacy .contact-box table {
    width: 100%;
    border-collapse: collapse;
}

.privacy .contact-box table tr {
    border-top: 1px solid rgba(145, 145, 145, 0.9);
}

.privacy .contact-box table th {
    width: 90px;
    padding: 12px 16px;
    font-weight: normal;
    vertical-align: middle;
    white-space: nowrap;
    font-size: 13px;
    border-right: 1px solid rgba(145, 145, 145, 0.9);
}

.privacy .contact-box table td {
    padding: 12px 16px;
    font-size: 13px;
    line-height: 1.8;
}

.privacy .contact-box .plain {
    padding: 12px 16px;
    font-size: 13px;
    line-height: 1.9;
    border-top: 1px solid rgba(145, 145, 145, 0.9);
}

.privacy .section-heading {
    color: rgba(0, 164, 225, 1);
    font-size: 13.5px;
    margin: 24px 0 10px;
    font-weight: 600;
}

.privacy .indent {
    margin-left: 20px;
    line-height: 1.8;
}

.privacy .black-square {
    margin-bottom: 4px;
}

.privacy .black-square::before {
    content: "■";
    margin-right: 4px;
}
