@charset "UTF-8";
@import url(reset.css);

@font-face {
    font-family: "news-gothic";
    src: url("news-gothic-mt.ttf") format('truetype');
}
:root {
    --main-blue: #052A6B;
    --main-white: #FFFFFF;
    --border-color: #052A6B;
    --bg-gray: #D9E1F2;
}
* html body {
    background: url(null) fixed;
    width: 100%;
}
html, body {
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
    padding: 0;
    color: #2b2b2b;
    background-color: var(--main-white);
    font-family: "Noto Sans JP", sans-serif;
    animation: fadeIn 1s ease 0s 1 normal;
    -webkit-animation: fadeIn 1s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}
html {
    overflow-x: hidden;
}
a {
    color: #1c4e93;
    text-decoration: none;
}
a:hover {
    color: #1c4e93;
    text-decoration: underline;
}
.fade-in-item {
    opacity: 0;
    filter: blur(15px);
    transform: translateY(10px);
    transition:
        opacity 1.0s ease-out, filter 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, filter, transform;
}
.fade-in-item.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}
html.lenis, html.lenis body {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: hidden;
}
.lenis.lenis-scrolling iframe {
    pointer-events: none;
}
.clear_pc {
    display: none;
}
@media (max-width: 480px) {
    .clear_pc {
        display: block;
    }
    .clear {
        display: none;
    }
}
/*-- メインビジュアル -----------------------*/
.mainvisual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 100%;
    height: 70vh;
    background: url(../img/2026/recruit_mainvisal_01.webp) center right / cover no-repeat;
}
.mainvisual h2 {
    color: var(--main-white);
    font-size: 80px;
    letter-spacing: .04em;
    font-family: "news-gothic";
}
.static-works-section {
    padding: 120px 0;
    background-color: var(--main-white);
    width: 100%;
    overflow: hidden;
}
.static-works-section .text-container {
    max-width: 800px;
    margin: auto;
    text-align: center;
}
.static-works-section .main-title {
    font-size: 46px;
    color: var(--main-blue);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}
.static-works-section .en-title {
    font-size: 28px;
    color: #2069B1;
    font-weight: 700;
    margin-bottom: 50px;
}
.static-works-section .lead-text p {
    font-size: 18px;
    font-weight: 700;
    line-height: 2.2;
}
.static-works-section .images-area {
    position: relative;
    width: 96%;
    margin: 0 auto;
    aspect-ratio: 16 / 10;
    height: auto;
}
.static-works-section .photo-item {
    position: absolute;
    margin: 0;
    line-height: 0;
    will-change: transform;
}
.static-works-section .photo-item img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.static-works-section .photo-right {
    top: 0%;
    right: 0%;
    width: 32%;
    z-index: 1;
}
.static-works-section .photo-left {
    top: 20%;
    left: 5%;
    width: 25%;
    z-index: 2;
}
.static-works-section .photo-center {
    top: 45%;
    left: 50%;
    transform: translateX(-50%);
    width: 45%;
    z-index: 3;
}
.works-about-section {
    padding: 0 0 120px;
    background-color: #F6F6F6;
    width: 100%;
}
.works-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 120px;
}
.works-text-col {
    padding: 0 0 0 10%;
    width: 35%;
}
.works-heading {
    font-size: 46px;
    color: var(--main-blue);
    font-weight: 700;
    margin-bottom: 20px;
}
.works-subheading {
    font-size: 28px;
    color: #2069B1;
    font-weight: 700;
    margin-bottom: 50px;
    letter-spacing: 0.05em;
}
.works-desc p {
	padding: 0 20px 0 0;
    font-size: 16px;
    line-height: 2.2;
}
.works-slider-col {
    width: 54%;
    position: relative;
}
.works-slider-wrapper {
    position: relative;
    margin-top: -5%;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease;
}
.slide-image.active {
    opacity: 1;
    z-index: 1;
}
.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slide-counter {
    position: absolute;
    bottom: 20px;
    right: 30px;
    color: #fff;
    z-index: 2;
    font-family: "news-gothic";
    font-size: 40px;
    line-height: 1;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.slide-counter .current-num {
    font-size: 50px;
}
.slide-counter .divider {
    font-size: 24px;
    margin: 0 5px;
    vertical-align: middle;
}
.slide-counter .total-num {
    font-size: 30px;
}
.works-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 90%;
    margin: 0 auto;
}
.works-bottom-left {
    width: 45%;
}
.works-about-section .blue-image {
    margin-bottom: 20px;
    width: 100%;
}
.works-about-section .blue-image img {
    width: 100%;
    display: block;
}
.works-bottom-text-area {
    padding-left: 10%;
}
.bottom-heading {
    font-size: 32px;
    color: var(--main-blue);
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 50px;
}
.bottom-desc p {
    font-size: 16px;
    line-height: 2.0
}
.works-bottom-right {
    width: 45%;
    padding-top: 200px;
}
.gray-image {
    margin: 0;
    width: 100%;
}
.gray-image img {
    width: 100%;
    display: block;
}
@media (max-width: 480px) {
    .works-top-row, .works-bottom-row {
        flex-direction: column;
    }
    .works-text-col, .works-slider-col, .works-bottom-left, .works-bottom-right {
        width: 100%;
    }
    .works-slider-col {
        margin-top: 40px;
    }
    .works-bottom-right {
        padding-top: 0;
        margin-top: 40px;
    }
}

.features-section {
    padding: 120px 0;
    background: url(../img/2026/recruit_bg_01.png) 0 0 repeat;
}
.features-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.features-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}
.features-section .header-titles {
    width: 40%;
}
.features-section .main-title {
    font-size: 46px;
    color: var(--main-blue);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}
.features-section .sub-title {
    font-size: 20px;
    color: #2069B1;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.features-section .header-desc {
    width: 55%;
    font-size: 16px;
    line-height: 2;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}
.feature-card {
    background: #fff;
    border: 2px solid var(--main-blue);
    border-radius: 15px 15px 0 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, .2);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 200px;
}
.features-section .card-head {
    font-size: 32px;
    color: var(--main-blue);
    font-weight: 700;
    padding-bottom: 30px;
    margin-bottom: 20px;
    position: relative;
}
.features-section .card-head::after {
    content: "";
    display: block;
    width: 80%; /* 線の長さ */
    height: 1px;
    background-color: var(--main-blue);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.features-section .card-body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}
.features-section .large-text {
    font-weight: 700;
    line-height: 1;
}
.features-section .large-text .number {
    font-size: 80px;
}
.features-section .large-text .unit {
    font-size: 60px;
}
.features-section .large-text .text {
    font-size: 40px;
}
.features-section .text-content {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.6;
}
/*
@media (max-width: 480px) {
    .features-header {
        display: block;
        margin-bottom: 40px;
    }
    .header-titles {
        width: 100%;
        margin-bottom: 20px;
    }
    .features-section .header-desc {
        width: 100%;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .feature-card {
        min-height: auto;
        padding: 25px;
    }
}
*/

.flow-section {
    padding: 120px 0;
    background-color: #F6F6F6;
    width: 100%;
}
.flow-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.flow-header {
    margin-bottom: 60px;
    text-align: left;
}
.flow-header .main-title {
    font-size: 46px;
    color: var(--main-blue);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}
.flow-header .sub-title {
    font-size: 28px;
    color: #2069B1;
    font-weight: 700;
}
.flow-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}
.flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.flow-circle {
    width: 190px;
    height: 190px;
    background-color: var(--main-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.flow-circle img {
    width: 60%;
    height: auto;
    display: block;
}
.flow-circle img.monot {
    width: 50%;
}
.flow-name {
    font-size: 18px;
    color: #0D438E;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-top: -10px;
}
.flow-arrow {
    display: inline-block;
    position: relative;
    width: 30px;
    height: 20px;
    --arrow-color: var(--main-blue);
    --arrow-width: 4px;
}
.flow-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: var(--arrow-width);
    background-color: var(--arrow-color);
    transform: translateY(-50%);
}
.flow-arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 2px;
    width: 16px;
    height: 16px;
    border-top: var(--arrow-width) solid var(--arrow-color);
    border-right: var(--arrow-width) solid var(--arrow-color);
    transform: translateY(-50%) rotate(45deg);
}
.flow-footer-text {
    text-align: center;
    font-size: 18px;
    line-height: 2;
}

.recruit-requirements {
    padding: 120px 0;
    background-color: var(--main-white);
    width: 100%;
}
.recruit-inner {
    max-width: 900px;
    margin: 0 auto;
}
.recruit-header {
    text-align: center;
    margin-bottom: 60px;
}
.recruit-header .main-title {
    font-size: 46px;
    color: var(--main-blue);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}
.recruit-header .sub-title {
    font-size: 28px;
    color: #2069B1;
    font-weight: 700;
}
.recruit-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}
.tab-btn {
    width: 50%;
    max-width: 300px;
    padding: 15px 0;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border: 1px solid #0D438E;
    transition: all 0.3s ease;
    background-color: var(--main-white);
    color: #0D438E;
}
.tab-btn.active {
    background-color: #0D438E;
    color: var(--main-white);
}
.tab-btn:first-child {
    border-right: none;
}
.requirement-list {
    display: none;
    border-top: 1px solid #ccc;
    animation: fadeIn 0.5s ease;
}
.requirement-list.active {
    display: block;
}
.recruit-row {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #ccc;
    margin: 0;
    padding: 20px 0;
}
.recruit-row dt {
    width: 25%;
    font-weight: 500;
}
.recruit-row dd {
    width: 75%;
    line-height: 1.8;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*
@media (max-width: 480px) {
    .recruit-row {
        flex-direction: column;
    }
    .recruit-row dt {
        width: 100%;
        margin-bottom: 8px;
        padding-left: 0;
        color: #0D438E;
    }
    .recruit-row dd {
        width: 100%;
        padding-left: 0;
    }
    .tab-btn {
        font-size: 16px;
        padding: 12px 0;
    }
}
*/

.application-section {
    background-color: var(--main-blue);
    padding: 120px 0;
    color: var(--main-white);
}
.application-inner {
    max-width: 900px;
    margin: 0 auto;
}
.app-header {
    text-align: center;
    margin-bottom: 80px;
}
.app-main-title {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
}
.app-sub-title {
    font-size: 28px;
    font-weight: bold;
    opacity: 0.8;
}
.recruit-form-table {
    border-top: 1px solid #C3C3C3;
    margin-bottom: 80px;
}
.form-row {
    display: flex;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #C3C3C3;
}
.form-row.no-border {
    border-bottom: none;
}
.form-header {
    width: 30%;
    display: flex;
    align-items: center;
    gap: 15px;
}
.form-header.top-align {
    align-self: flex-start;
    padding-top: 10px;
}
.form-header label {
    font-weight: bold;
    font-size: 16px;
}
.required-badge {
    background-color: var(--main-white);
    color: var(--main-blue);
    font-size: 13px;
    font-weight: bold;
    padding: 4px 15px;
    border-radius: 20px;
    white-space: nowrap;
}
.form-input {
    width: 70%;
}
.application-section input[type="text"], .application-section input[type="email"], .application-section input[type="tel"], .application-section textarea {
    background-color: var(--main-white);
    border: none;
    border-radius: 10px;
    padding: 15px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}
.full-width {
    width: 100%;
}
.radio-group span.wpcf7-list-item {
    margin: 0 20px 0 0;
}
.radio-group input[type="radio"] {
    margin-right: 5px;
    transform: scale(1.2);
}
.address-group {
    display: flex;
    align-items: center;
    gap: 10px;
}
.zip-mark {
    font-size: 18px;
}
.hyphen {
    margin: 0 5px;
}
.zip-input {
    width: 80px !important;
    text-align: center;
}
.addr-input {
    flex: 1;
    margin-left: 20px;
}
.privacy-box {
    background-color: var(--main-white);
    color: #2b2b2b;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
}
.privacy-title {
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 16px;
}
.privacy-content {
    height: 150px;
    overflow-y: scroll;
    border: 1px solid #ccc;
    padding: 15px;
    font-size: 15px;
    line-height: 1.8;
    background-color: var(--main-white);
}
.privacy-content p {
    margin-bottom: 20px;
}
.privacy-content strong {
    color: var(--main-blue);
    display: inline-block;
    margin-bottom: 5px;
}
.privacy-list {
    margin: 0 0 15px 15px;
    padding: 0;
    list-style: none;
}
.privacy-list li {
    margin-bottom: 3px;
    text-indent: -1em;
    padding-left: 1em;
}
.privacy-content hr {
    margin: 20px 0;
    border: none;
    border-top: 1px solid #ddd;
}
.privacy-check {
    text-align: center;
    margin-bottom: 40px;
    font-size: 16px;
}
.privacy-check input[type="checkbox"] {
    transform: scale(1.5);
    margin-right: 10px;
}
.submit-area {
    text-align: center;
}
.application-section input[type="submit"] {
    background: linear-gradient(to bottom, #7da5d6 0%, #466e9e 100%); /* グラデーション */
    color: var(--main-white);
    font-size: 20px;
    font-weight: bold;
    border: 1px solid var(--main-white);
    border-radius: 30px;
    padding: 15px 80px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}
.application-section input[type="submit"]:hover {
    opacity: 0.9;
    transform: translateY(2px);
}

@media (max-width: 480px) {
    .form-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .form-header, .form-input {
        width: 100%;
    }
    .form-header {
        margin-bottom: 10px;
    }
    .address-group {
        flex-wrap: wrap;
    }
    .addr-input {
        width: 100%;
        margin-top: 10px;
    }
}
.wpcf7-spinner {
    display: none !important;
}
.wpcf7-not-valid-tip {
    font-size: 10px;
    margin-top: 5px;
    color: #f00;
}
.wpcf7-response-output {
    margin: 20px 0 0 !important;
    padding: 15px !important;
    border-radius: 8px !important;
    font-size: 15px;
}
.file-input-hidden {
    display: none !important;
}
.agree-label .wpcf7-list-item {
    margin: 0;
    display: inline-block;
}

footer {
    padding: 80px 0 40px;
    clear: both;
    color: var(--main-white);
    background-color: #404857;
}
footer .inner {
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
    margin: auto;
    width: 1000px;
    max-width: 90%;
}
footer .data {
    width: 400px;
    font-size: 15px;
    line-height: 1.4em;
}
footer .data h5 {
    margin-bottom: 50px;
}
footer .link {
    width: 300px;
}
footer .link ul {
    float: left;
    position: relative;
    width: calc((100% - 30px) / 2);
}
footer .link li {
    margin-bottom: 30px;
}
footer .link a {
    color: var(--main-white);
    font-size: 14px;
    text-decoration: none;
}
footer .link a:hover {
    text-decoration: underline;
}
footer .link ul:not(:first-child) {
    margin-left: 30px;
}
footer address {
    padding-top: 60px;
    width: 100%;
    font-size: 14px;
    text-align: center;
}
@media (max-width: 480px) {
    footer {
        padding: 40px 0 20px;
    }
    footer .inner {
        flex-direction: column;
        padding: 0 15px;
    }
    footer .data {
        width: 100%;
        text-align: center;
    }
    footer .data h5 {
        margin-bottom: 30px;
    }
    footer .link {
        display: none;
    }
    footer address {
        width: 100%;
    }
}

#pagetop {
    position: fixed;
    right: 5px;
    bottom: 100px;
    z-index: 1000;
}
#pagetop a:hover {
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .recruit-inner, .application-inner, .features-inner, .flow-inner, .works-container, .text-container {
        padding: 0 20px;
        box-sizing: border-box;
        width: 100%;
    }
    
    .mainvisual {
        height: auto;
        min-height: 400px;
        background-position: right center;
        gap: 30px;
    }
    .mainvisual h1 {
        text-align: center;
    }
    .mainvisual h1 img {
        width: 150px;
    }
    .mainvisual h2 {
        font-size: 50px;
    }
    
    .static-works-section {
        padding: 60px 0;
    }
    .static-works-section .main-title {
        font-size: 28px;
        line-height: 1.4;
    }
    .static-works-section .en-title {
        font-size: 18px;
        margin-bottom: 30px;
    }
    .static-works-section .lead-text p {
        font-size: 15px;
    }
    .static-works-section .images-area {
        margin: 60px auto;
        width: 100%;
    }
    .static-works-section .photo-right {
        top: 5%;
        width: 40%;
    }
    .static-works-section .photo-left {
        top: 20%;
        width: 35%;
    }
    .static-works-section .photo-center {
        top: 60%;
        width: 55%;
    }
    .works-about-section {
        padding-bottom: 60px;
    }
    .works-top-row {
        margin-bottom: 40px;
    }
    .works-text-col {
        padding: 0;
        margin-top: 30px;
        width: 45%;
    }
    .works-heading {
        font-size: 28px;
    }
    .works-subheading {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .works-desc p {
        font-size: 15px;
        text-align: justify;
    }
    .works-slider-col {
        width: 50%;
    }
    .works-slider-wrapper {
        margin-top: -15%;
    }
    .works-bottom-row {
        width: 100%;
    }
    .works-bottom-text-area {
        padding-left: 0;
        margin-top: 30px;
    }
    .bottom-heading {
        font-size: 24px;
        margin-bottom: 30px;
    }
    .bottom-desc p {
        font-size: 15px;
    }
    .works-bottom-right {
        padding-top: 0;
        margin-top: 40px;
    }
    
    .features-section {
        padding: 60px 0 80px;
    }
    .features-header {
        margin-bottom: 20px;
        flex-direction: column;
    }
    .features-section .header-titles {
        width: 100%;
    }
    .features-section .main-title {
        font-size: 28px;
    }
    .features-section .sub-title {
        font-size: 18px;
    }
    .features-section .header-desc {
        width: 100%;
        font-size: 15px;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .feature-card {
        padding: 20px;
        margin: auto;
        width: 100%;
        min-height: 200px;
        box-sizing: border-box;
    }
    .features-section .card-head {
        font-size: 20px;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    .features-section .large-text .number {
        font-size: 40px;
    }
    .features-section .large-text .unit {
        font-size: 24px;
    }
    .features-section .large-text .text {
        font-size: 20px;
    }
    .features-section .text-content {
        font-size: 18px;
    }
    
    .flow-section {
        padding: 60px 0 80px;
    }
    .flow-header {
        margin-bottom: 40px;
        text-align: left;
    }
    .flow-header .main-title {
        font-size: 46px;
        color: var(--main-blue);
        font-weight: 700;
        margin-bottom: 20px;
        letter-spacing: 0.05em;
    }
    .flow-header .sub-title {
        font-size: 28px;
        color: #2069B1;
        font-weight: 700;
    }
    .flow-header .main-title {
        font-size: 28px;
    }
    .flow-header .sub-title {
        font-size: 18px;
    }
    .flow-container {
        margin-bottom: 40px;
    }
    .flow-name {
        margin-top: 0;
        font-size: 16px;
    }
    .flow-item {
        width: 45%;
        flex-direction: column;
        align-items: center;
        z-index: 2;
    }
    .flow-circle {
        width: 160px;
        height: 160px;
        background-color: var(--main-white);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .flow-circle img {
        width: 50%;
        height: auto;
        display: block;
    }
    .flow-circle img.monot {
        width: 40%;
    }
    .flow-name {
        font-size: 16px;
    }
    .flow-item:nth-child(1), .flow-item:nth-child(5) {
        align-self: flex-start;
        margin-right: auto;
    }
    .flow-item:nth-child(3), .flow-item:nth-child(7) {
        align-self: flex-end;
        margin-left: auto;
    }

    .flow-footer-text {
        text-align: left;
        font-size: 15px;
    }
    .recruit-requirements {
        padding: 60px 0 80px;
    }
    .recruit-header {
        margin-bottom: 40px;
    }
    .recruit-header .main-title {
        font-size: 28px;
    }
    .recruit-header .sub-title {
        font-size: 18px;
    }
    .tab-btn {
        font-size: 14px;
        padding: 12px 0;
    }
    .recruit-row {
        align-items: center;
    }
    .application-section {
        padding: 60px 0 80px;
    }
    .app-header {
        margin-bottom: 40px;
    }
    .app-main-title {
        font-size: 28px;
    }
    .app-sub-title {
        font-size: 16px;
    }
    .recruit-tabs {
        margin-bottom: 30px;
    }
    .recruit-form-table {
        border-top: none;
        margin-bottom: 40px;
    }
    .address-group {
        flex-wrap: wrap;
    }
    .zip-input {
        width: 80px !important;
    }
    .addr-input {
        margin-left: 0;
        margin-top: 10px;
        width: 100% !important;
    }
    .application-section input[type="submit"] {
        width: 100%;
        padding: 15px 0;
        font-size: 18px;
    }
    #pagetop {
        position: fixed;
        right: 18px;
        bottom: 90px;
        z-index: 1000;
    }
    #pagetop img {
        width: 40px;
    }
}




@media (max-width: 480px) {
    
    .mainvisual {
        min-height: 300px;
    }
    .static-works-section .photo-right {
        top: 0;
        width: 50%;
    }
    .static-works-section .photo-left {
        top: 20%;
        width: 35%;
    }
    .static-works-section .photo-center {
        top: 60%;
        width: 70%;
    }
    .works-top-row {
        flex-direction: column-reverse;
    }
    .works-text-col {
        margin-top: 20px;
        width: 100%;
    }
    .works-slider-col {
        width: 100%;
    }
    .works-bottom-row {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .feature-card {
        padding: 20px;
        margin: auto;
        width: 80%;
        min-height: auto;
    }
    
    .flow-container {
        flex-direction: column;
    }
    .flow-arrow {
        display: block !important;
        width: 40px;
        margin: -10px 0;
        align-self: center;
        z-index: 1;
    }
    .flow-arrow:nth-child(2), .flow-arrow:nth-child(6) {
        transform: rotate(45deg);
    }
    .flow-arrow:nth-child(4) {
        transform: rotate(135deg);
    }
    .recruit-row {
        flex-direction: column;
        padding: 15px 0;
    }
    .recruit-row dt {
        width: 100%;
        margin-bottom: 5px;
        color: var(--main-blue);
        background: #f4f4f4;
        padding: 10px;
        border-radius: 4px;
        box-sizing: border-box;
    }
    .recruit-row dd {
        width: 100%;
        padding-left: 10px;
        box-sizing: border-box;
    }

}