@charset "utf-8";

html {
    background-color: #f7fcff; /*全体の背景*/
    font-family: "Zen Kaku Gothic New", sans-serif; /*日本語*/
    font-size: 10px;
}

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

body {
    margin: 0;
    padding: 0;
}
/* /header共通部分 */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    box-sizing: border-box;
    background: transparent; /* ←初期は透明 */
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

/* スクロール後：白背景に切り替え */
header.scrolled {
    background: #f7fcff;
}

.header-contact-btn {
    display: none;
}

.logo-box img {
    display: block; /* 余計な隙間防止 */
}
/* PCナビゲーション (デフォルト非表示) */
.nav-pc {
    display: none;
}

.nav-pc ul {
    list-style: none;
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
}

.nav-pc a {
    color: #000233;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s;
}

.nav-pc a:hover {
    color: #0072e3;
}

/* ハンバーガーメニューアイコン */
.menu-icon {
    /* position: fixed は不要 (headerがfixedのため) */
    width: 40px;
    height: 30px;
    z-index: 2001;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    height: 4px;
    background: #003366;
    margin: 4.5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-icon.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.menu-icon.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* === オーバーレイメニュー === */

.overlay-menu.open {
    top: 0; /* 開いたときに画面内に */
    opacity: 1;
}

/* 閉じるボタン */
.overlay-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 38px;
    color: #004b9b;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2100;
    transition: 0.3s;
}

.overlay-close:hover {
    transform: scale(1.1);
}

/* メニュー内容 */
.overlay-content {
    display: flex;
    flex-direction: column; /* スマホでは縦並び */
    justify-content: center;
    align-items: center;
    width: 80%;
    max-width: 950px;
    height: 80%; /* メニュー全体の高さに対する割合 */
    gap: 30px; /* スマホでの隙間 */
}

.overlay-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center; /* スマホでは中央揃え */
}

.overlay-nav li {
    margin-bottom: 28px;
}

.overlay-nav .menu-item {
    font-family: "Roboto", sans-serif; /*セクションの英語*/
    display: block;
    font-size: 2rem; /* スマホでのサイズ */
    letter-spacing: 3.6px;
    font-weight: 800;
    color: #000233;
}

.overlay-nav .menu-item2 {
    display: block;
    font-size: 1.2rem; /* スマホでのサイズ */
    font-weight: 600;
    letter-spacing: 2px;
    color: #000233;
}

.overlay-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-contact-btn {
    /* オーバーレイ内のボタン */
    display: inline-block;
    background: linear-gradient(to right, #ff5f4d, #ff7a73);
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    border-radius: 40px;
    padding: 18px 56px;
    font-size: 1.6rem; /* スマホ・タブレット共通サイズ */
    transition: 0.3s ease;
}

.overlay-contact-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* //header共通部分 */

/* セクションの英語 */
h1 {
    font-family: "Roboto", sans-serif; /*セクションの英語*/
    font-weight: 900;
    color: #000233;
    line-height: 1;
}
/* //セクションの英語 */

/* セクションの日本語 */
h2 {
    font-weight: 700;
    color: #000233;
    line-height: 1.2;
}
/* //セクションの日本語 */

/* 福利厚生 */
h3 {
    font-weight: 700;
    color: #000233;
}

h4 {
    font-weight: 700;
    color: #000233;
    letter-spacing: 0.15em;
}

p {
    color: #000233;
    font-weight: 500;
    letter-spacing: 0.15em;
}

/* //福利厚生 */

/* PC VIEW 1440px */
@media (min-width: 1161px) {
    .header-contact-btn {
        padding: 24px 56px;
    }
}
@media (max-width: 1160px) and (min-width: 1060px) {
    .header-contact-btn {
        padding: 20px 40px;
    }
}

@media (max-width: 1060px) and (min-width: 1025px) {
    .header-contact-btn {
        padding: 20px 30px;
    }
}

@media (min-width: 1025px) {
    /* header共通部分 */
    header {
        padding-right: 2vw;
        padding-left: 2vw;
    }

    .header-contact-btn {
        display: inline-block;
        background: linear-gradient(to right, #ff5f4d, #ff7a73);
        color: #fff;
        font-weight: 500;
        text-decoration: none;
        border-radius: 100px;
        font-size: clamp(12px, 1vw, 18px);
        letter-spacing: 4px;
        transition: 0.3s ease;
        order: 2;
    }

    .menu-icon {
        display: none;
    }

    .overlay-menu {
        display: none !important;
    }

    .nav-pc {
        display: block;
        order: 1;
        font-size: clamp(12px, 1vw, 18px);
        margin-left: auto;
        margin-right: 20px;
        letter-spacing: 3px;
    }
    .logo-box img {
        height: 5vw;
        display: block; /* 余計な隙間防止 */
    }

    /* //header共通部分 */

    /* footer共通部分 */
    /* モバイル用のフッターは非表示 */
    .footer-mobile {
        display: none;
    }

    /* PC用のフッター */
    .footer-pc {
        display: block;
        padding: 80px 8% 20px 8%;
        color: #000233;
    }

    .footer-inner {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 60px;
        max-width: 1400px;
        margin: 0 auto;
    }

    .footer-left {
        flex: 1;
    }

    .footer-menu_top li {
        margin-top: 20px;
    }
    .footer-menu_news li {
        margin-top: 20px;
    }
    .footer-menu {
        display: grid;
        grid-template-columns: repeat(2, auto);
        gap: 30px 80px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-menu a {
        font-family: "Roboto", sans-serif; /*セクションの英語*/
        text-decoration: none;
        font-size: 2.4rem;
        letter-spacing: 3.6px;
        font-weight: 900;
        color: #000233;
    }

    .footer-menu span {
        font-size: 1.6rem;
        font-weight: 700;
        letter-spacing: 2.4px;
        opacity: 0.8;
        margin-top: 3px;
    }

    .footer-right {
        flex: 1;
        text-align: left;
        background: url("../../images/logo_lightbule.png") no-repeat right
            bottom;
        background-size: contain;
        padding-left: 40px;
    }

    .footer-right h2 {
        font-size: 4.8rem;
        font-weight: 900;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    .footer-text {
        font-size: 1.6rem;
        line-height: 1.8;
        font-weight: 700;
        margin-bottom: 40px;
    }

    .footer-btn {
        display: inline-block;
        background: linear-gradient(90deg, #ff5f4d, #ff7a73);
        color: #fff;
        font-size: 1.6rem;
        font-weight: 500;
        text-decoration: none;
        padding: 24px 60px;
        border-radius: 100px;
        letter-spacing: 4px;
        transition: all 0.3s ease;
    }

    .footer-btn:hover {
        transform: translateY(-2px);
    }

    .footer-copy {
        font-weight: 500;
        text-align: center;
        margin-top: 60px;
        font-size: 1.6rem;
        opacity: 0.8;
    }

    /* //footer共通部分 */

    .head {
        background-image: url(../../images/kasou_top_back_pc.svg);
        background-repeat: no-repeat;
        background-size: contain;
    }

    .container {
        display: none;
    }
    .page {
        padding-top: 20%;
        max-width: 75%;
        margin: 0 auto;
    }

    .houtei-pc {
        display: block;
    }

    h1 {
        font-size: 8.3vw;
        letter-spacing: 0.1em;
    }

    h2 {
        font-size: 3.3vw;
        letter-spacing: 0.1em;
    }

    .page-title {
        margin-left: -5%;
    }

    .page_subtitle p {
        font-size: 1.38vw;
        margin-top: 2.8vw;
    }

    .title_pc {
        display: block;
    }

    .title_sp-tb {
        display: none;
    }

    .images-tb {
        display: none;
    }

    .images-sp {
        display: none;
    }

    .welfare {
        justify-content: center;
    }

    .welfare_p1 {
        display: flex;
        align-items: center;
        margin-top: 20px;
        border-top: 1px solid #b8b8b8;
        border-bottom: 1px solid #b8b8b8;
    }

    .welfare_p3 {
        display: none;
    }

    .welfare_pc2 {
        display: flex;
        align-items: center;
        margin-top: 20px;
        border-top: 1px solid #b8b8b8;
        border-bottom: 1px solid #b8b8b8;
    }

    .welfare_pc3 {
        display: flex;
        align-items: center;
        border-bottom: 1px solid #b8b8b8;
    }

    .welfare_pc4 {
        display: flex;
        align-items: center;
        border-bottom: 1px solid #b8b8b8;
    }

    .welfare_pc5 {
        display: flex;
        align-items: center;
        border-bottom: 1px solid #b8b8b8;
    }

    .welfare_pc6 {
        display: flex;
        align-items: center;
        border-bottom: 1px solid #b8b8b8;
    }

    .welfare_pc7 {
        display: flex;
        align-items: center;
        border-bottom: 1px solid #b8b8b8;
    }

    .welfare_pc8 {
        display: flex;
        align-items: center;
        border-bottom: 1px solid #b8b8b8;
    }

    .welfare_pc7 {
        display: flex;
        align-items: center;
        border-bottom: 1px solid #b8b8b8;
    }

    .welfare_pc8 {
        display: flex;
        align-items: center;
        border-bottom: 1px solid #b8b8b8;
    }

    .title_pc p {
        background-color: #cdf0ff;
        padding: 3.958vw 3.33vw;
    }

    .title_pc2 p {
        background-color: #cdf0ff;
        padding: 9.09vw 1.18vw;
    }

    .title_pc3 p {
        background-color: #cdf0ff;
        padding: 1.875vw 3.35vw;
    }

    .title_pc4 p {
        background-color: #cdf0ff;
        padding: 1.875vw 1.18vw;
    }

    .title_pc5 p {
        background-color: #cdf0ff;
        padding: 6.736vw 1.94vw 6.736vw 1.875vw;
    }

    .title_pc6 p {
        background-color: #cdf0ff;
        padding: 3.8vw 3.35vw;
    }

    .title_pc7 p {
        background-color: #cdf0ff;
        padding: 4.65vw 1.94vw 4.65vw 1.875vw;
    }

    .title_pc8 p {
        background-color: #cdf0ff;
        padding: 4.7vw 3.35vw;
    }

    .welfare-container-sp1 {
        display: none;
    }

    .welfare-container-tb1 {
        display: none;
    }

    .welfare-container-pc1 {
        display: block;
    }

    h3 {
        font-size: 2.2vw;
        padding-top: 7vw;
        display: flex;
        justify-content: center;
        letter-spacing: 0.15em;
    }

    h4 {
        font-size: 1.6vw;
    }

    p {
        font-size: 1.25vw;
    }

    .main-text {
        margin-left: 3.4vw;
        line-height: 2vw;
    }

    .h4_1 {
        margin-top: 4vw;
    }

    .h4_2 {
        margin-top: 3.5vw;
    }

    .decade-telework {
        margin-top: 30%;
        display: flex;
        justify-content: space-between;
    }

    .decade-telework img {
        width: 48%;
    }

    .images-pc-1 img {
        margin-top: 2.4vw;
    }

    .huniki-fashion-business {
        display: flex;
        justify-content: space-between;
    }

    .huniki-fashion-business img {
        width: 31%;
    }

    .method img {
        width: 100%;
    }

    .time-yarigai {
        display: flex;
        justify-content: space-between;
    }

    .time-yarigai img {
        width: 48%;
    }

    .industry-language-job {
        display: flex;
        justify-content: space-between;
    }

    .industry-language-job img {
        width: 31%;
    }

    .holiday-bunri-travel {
        display: flex;
        justify-content: space-between;
    }

    .holiday-bunri-travel img {
        width: 31%;
    }

    .sweets img {
        width: 100%;
    }

    /* PCimages */
    .images-pc {
        display: block;
    }
}

/* //PC VIEW 1440px */

/* TB VIEW 768px */
@media (max-width: 1024px) {
    .welfare-item {
        display: flex;
        margin-bottom: 1.95vw;
        align-items: flex-start;
    }

    .welfare-label {
        display: flex;
        align-items: flex-start;
        min-width: 0;
    }

    .label-text {
        text-align: right;
        white-space: nowrap;
        flex: 1;
    }

    .colon {
        margin: 0 5px;
        flex-shrink: 0;
    }

    .welfare-content {
        flex: 1;
        min-width: 0;
    }

    .welfare-content p {
        letter-spacing: 0.05em;
        margin: 0;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    /*/header共通部分 */
    /* ヘッダーのお問い合わせボタン (タブレットでは非表示のまま) */
    header {
        padding-right: 4vw;
        padding-left: 4vw;
        padding-top: 2vw;
    }
    .header-contact-btn {
        display: none;
    }
    .logo-box img {
        height: 7vw;
        display: block; /* 余計な隙間防止 */
    }
    .overlay-menu {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        background-image: url(../../images/TB_humberger_back.svg);
        background-repeat: no-repeat;
        background-size: 100% auto;
        background-position: center top;
        border-radius: 10px;
        box-sizing: border-box;
        opacity: 0;
        transition: all 0.6s ease;
        z-index: 2000;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding-top: 80px;
        padding-bottom: 101px;
        overflow-y: auto;
    }

    .overlay-content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        width: 90%;
        margin: 0 auto;
        padding: 4vw 5vw;
        gap: 5vw;
    }
    .overlay-nav {
        flex: 1;
    }

    .overlay-nav ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2vw 4vw;
        text-align: left;
    }

    .overlay-nav li {
        text-align: left;
    }

    .overlay-nav .menu-item {
        font-size: clamp(1.4rem, 1.8vw, 2.2rem);
        letter-spacing: 0.2vw;
    }

    .overlay-nav .menu-item2 {
        font-size: clamp(1rem, 1.2vw, 1.6rem);
    }

    .overlay-right {
        flex: 0 0 auto;
        align-self: flex-end; /* ボタン自体は上下中央 */
        margin-top: auto; /* 上に余白を作り下に配置 */
        margin-bottom: 25px; /* 下からの余白 */
        margin-right: 60px; /* 右からの余白 */
    }
    /* //header共通部分 */

    /* footer共通部分 */
    /* モバイル用のフッターは非表示 */
    .footer-mobile {
        display: none;
    }

    .footer-pc {
        display: block;
        padding: 80px 7.6vw 20px 7.6vw;
        color: #000233;
    }

    .footer-inner {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 60px;
        max-width: 1400px;
        margin: 0 auto;
    }

    .footer-left {
        flex: 1;
    }

    .footer-menu {
        display: grid;
        grid-template-columns: repeat(2, auto);
        gap: 30px 80px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-menu a {
        font-family: "Roboto", sans-serif; /*セクションの英語*/
        text-decoration: none;
        font-size: 1.8rem;
        font-weight: 900;
        letter-spacing: 3px;
        color: #000233;
    }

    .footer-menu span {
        letter-spacing: 3px;
        font-size: 1.2rem;
        font-weight: 700;
        margin-top: 3px;
    }

    .footer-right {
        flex: 1;
        text-align: left;
        background: url("../../images/logo_lightbule.png") no-repeat right
            bottom;
        background-size: contain;
        padding-left: 40px;
    }

    .footer-right h2 {
        font-size: 3.6rem;
        font-weight: 900;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    .footer-text {
        font-size: 1.2rem;
        line-height: 1.8;
        font-weight: 700;
        margin-bottom: 30px;
    }

    /* フッターのお問い合わせボタン */
    .footer-btn {
        display: inline-block;
        background: linear-gradient(90deg, #ff5f4d, #ff7a73);
        color: #fff;
        font-size: 1.4rem;
        font-weight: 500;
        text-decoration: none;
        padding: 24px 60px;
        border-radius: 100px;
        transition: all 0.3s ease;
        letter-spacing: 3px;
    }

    .footer-btn:hover {
        transform: translateY(-2px);
    }

    .footer-copy {
        text-align: center;
        font-weight: 500;
        margin-top: 60px;
        font-size: 1.4rem;
        opacity: 0.8;
    }

    .footer-menu_top li {
        margin-top: 20px;
    }
    .footer-menu_news li {
        margin-top: 20px;
    }

    /* //footer共通部分 */

    .head {
        max-width: 100%;
        min-width: 100%;
        background-repeat: no-repeat;
        background-image: url(../../images/kasou_top_back_tb.svg);
        background-size: contain;
    }
    .page {
        max-width: 74%;
        padding-top: 16vw;
        margin: 0 auto;
    }

    .page_subtitle p {
        font-size: clamp(10px, 1.8vw, 14px);
        margin-top: 3vw;
    }

    .page-title {
        margin-left: -5%;
    }

    .images-pc {
        display: none;
    }

    .images-sp {
        display: none;
    }

    .images-tb {
        display: block;
    }

    /* セクション */
    h1 {
        font-size: 7.3vw;
        letter-spacing: 0.1em;
    }

    h2 {
        font-size: 2.6vw;
        letter-spacing: 0.1em;
    }
    /* //セクション */

    h3 {
        font-size: 24px;
        letter-spacing: 0.15em;
    }

    h4 {
        font-size: 1.6rem;
        background-color: #cdf0ff;
        display: flex;
        justify-content: center;
        padding-top: 7px;
        padding-bottom: 8px;
        margin-top: 30px;
    }

    p {
        font-size: 1.4rem;
        line-height: 24px;
    }

    .title_pc {
        display: none;
    }

    .title_sp-tb {
        display: block;
    }

    .welfare {
        margin-top: 13vw;
    }

    .welfare_p1 {
        display: flex;
        justify-content: center;
        margin-top: 3.9vw;
    }

    .welfare_p2 {
        display: flex;
        text-align: right;
    }

    .welfare_p3 {
        width: 47vw;
        display: block;
    }

    .container {
        display: flex;
        justify-content: center;
        max-width: 80%;
        margin: 0 auto;
        display: block;
    }

    .welfare-label {
        width: 38%;
    }

    .label-text {
        font-size: 1.4rem;
        line-height: 24px;
    }

    .colon {
        font-size: 1.4rem;
        line-height: 24px;
    }

    .welfare-content {
        width: 55%;
    }

    .welfare-item {
        margin-top: 3.9vw;
    }

    .welfare-content p {
        font-size: 1.4rem;
        line-height: 24px;
    }
    .welfare-container {
        display: flex;
        justify-content: center;
        margin-top: 3.9vw;
    }

    .welfare-container-sp1 {
        display: none;
    }

    .welfare-container-tb1 {
        display: block;
    }

    .welfare-container-pc1 {
        display: none;
    }

    /* 画像 */
    .images-tb-1 img {
        margin-top: 2.5vw;
    }
    .decade-telework {
        margin-top: 30vw;
        display: flex;
        justify-content: space-between;
    }
    .decade-telework img {
        width: 48%;
    }

    .huniki-fashion {
        display: flex;
        justify-content: space-between;
    }

    .huniki-fashion img {
        width: 48%;
    }

    .method img {
        width: 100%;
    }

    .huniki-fashion img {
        width: 48%;
    }

    .time-business {
        display: flex;
        justify-content: space-between;
    }

    .time-business img {
        width: 48%;
    }

    .industry-language {
        display: flex;
        justify-content: space-between;
    }

    .industry-language img {
        width: 48%;
    }

    .yarigai img {
        width: 100%;
    }

    .job-travel {
        display: flex;
        justify-content: space-between;
    }

    .job-travel img {
        width: 48%;
    }

    .holiday-bunri {
        display: flex;
        justify-content: space-between;
    }

    .holiday-bunri img {
        width: 48%;
    }

    .houtei-pc {
        display: none;
    }

    .sweets img {
        width: 100%;
    }
    /* //画像 */
}
/* //TB VIEW 768px */

/* SP VIEW 768px */
@media (max-width: 768px) and (min-width: 466px) {
    /* header共通 */
    header {
        padding-right: 6vw;
        padding-left: 6vw;
        padding-top: 2vw;
    }
    .overlay-content {
        flex-direction: column;
        gap: 30px;
    }

    .overlay-nav ul {
        display: block;
    }

    .overlay-nav li {
        text-align: start;
    }

    .overlay-menu {
        position: fixed;
        top: -100%; /* 初期状態は画面外 */
        left: 0;
        width: 100%;
        height: 100vh; /* スマホでは全画面 */
        background-image: url(../../images/SP_humberger_back.svg);
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 10px;
        box-sizing: border-box;
        opacity: 0;
        transition: all 0.6s ease;
        z-index: 2000;
        display: flex;
        align-items: center; /* スマホでは中央揃え */
    }

    .logo-box img {
        height: 8vw;
        display: block; /* 余計な隙間防止 */
    }
    /*// header共通 */
}

@media (max-width: 465px) {
    /* header共通 */
    header {
        padding-right: 6vw;
        padding-left: 6vw;
        padding-top: 2vw;
    }
    .overlay-content {
        flex-direction: column;
        gap: 30px;
    }

    .overlay-nav ul {
        display: block;
    }

    .overlay-nav li {
        text-align: start;
    }

    .overlay-menu {
        position: fixed;
        top: -100%; /* 初期状態は画面外 */
        left: 0;
        width: 100%;
        height: 100vh; /* スマホでは全画面 */
        background-image: url(../../images/SP_humberger_back3.svg);
        background-repeat: no-repeat;
        background-size: cover;
        box-sizing: border-box;
        opacity: 0;
        transition: all 0.6s ease;
        z-index: 2000;
        display: flex;
        align-items: center; /* スマホでは中央揃え */
    }

    .logo-box img {
        height: 8vw;
        display: block; /* 余計な隙間防止 */
    }
    /*// header共通 */
}

@media (max-width: 768px) {
    /* footer共通部分 */
    /* フッター（モバイル） */
    .footer-mobile {
        background: transparent url("../../images/footer_back.svg") no-repeat
            center;
        background-size: cover;

        padding: 80px 15vw 24px;
        text-align: left;
        color: #000233;
    }

    .footer-mobile .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-mobile .footer-nav li {
        margin-bottom: 5.6vw;
    }

    .footer-mobile .footer-nav a {
        font-family: "Roboto", sans-serif; /*セクションの英語*/
        text-decoration: none;
        font-size: clamp(20px, 6vw, 28px);
        color: #000233;
        letter-spacing: 3px;
        font-weight: 900;
    }

    .footer-mobile .footer-nav span {
        display: block;
        font-weight: 700;
        font-size: clamp(10px, 3vw, 14px);
        letter-spacing: 2px;
        opacity: 0.8;
    }

    .footer-mobile .footer-copy {
        font-family: "Roboto", sans-serif; /*セクションの英語*/
        font-size: clamp(10px, 2.5vw, 14px);
        font-weight: 500;
        letter-spacing: 2px;
        opacity: 0.8;
        margin-top: 40px;
        text-align: center;
    }

    .footer-pc {
        display: none;
    }
    /* //footer共通部分 */

    main {
        max-width: 100%;
        margin: 0 auto;
    }

    .head {
        max-width: 100%;
        background-repeat: no-repeat;
        background-image: url(../../images/kasou_top_back_sp.svg);
    }

    .back_tb {
        display: none;
    }

    .page {
        padding-top: 23vw;
        max-width: 85%;
        margin: 0 auto;
    }
    .page_subtitle p {
        font-size: clamp(10px, 2.5vw, 14px);
        margin-top: 3vw;
    }

    .images-pc {
        display: none;
    }

    .images img {
        width: 100%;
    }

    .images-sp {
        display: block;
    }

    .decade img {
        width: 100%;
    }

    .images-tb {
        display: none;
    }
    /* セクションの英語 */
    h1 {
        font-size: 10.17vw;
        letter-spacing: 0.06em;
    }
    /* //セクションの英語 */

    /* セクションの日本語 */
    h2 {
        font-size: 5vw;
        letter-spacing: 0.15em;
    }
    /* //セクションの日本語 */

    /* 福利厚生 */
    .welfare {
        /* padding-top: 18.83vw; */
    }

    .welfare p {
        margin-top: 3.8vw;
    }

    .main-text-2 {
        width: 46.8%;
    }

    .welfare_p1 {
        display: flex;
        justify-content: center;
    }

    .welfare-container-sp1 {
        display: block;
    }

    .welfare-container-tb1 {
        display: none;
    }

    .welfare-container-pc1 {
        display: none;
    }

    .container {
        max-width: 85%;
    }

    .welfare-label {
        width: 45%;
    }

    .label-text {
        font-size: 1.2rem;
    }

    .colon {
        font-size: 1rem;
    }

    .welfare-content {
        width: 55%;
    }

    .welfare-content p {
        font-size: 1.2rem;
        line-height: 1.7;
    }

    .title_pc {
        display: none;
    }

    .houtei-pc {
        display: none;
    }

    .title_sp-tb {
        display: block;
    }

    h3 {
        padding-top: 18.83vw;
        font-size: 2rem;
        letter-spacing: 0.15em;
    }

    .h4_1 {
        background-color: #cdf0ff;
        font-size: 1.2rem;
        display: flex;
        justify-content: center;
        padding-top: 5px;
        padding-bottom: 6px;
        border-radius: 5px;
        margin-top: 30px;
    }

    .h4_2 {
        background-color: #cdf0ff;
        font-size: 1.4rem;
        display: flex;
        justify-content: center;
        padding-top: 5px;
        padding-bottom: 6px;
        border-radius: 5px;
        margin-top: 15px;
    }

    p {
        font-size: 1.2rem;
        line-height: 17px;
    }
    /* //福利厚生 */

    .decade {
        margin-top: 40vw;
    }

    .images img {
        margin-top: 2.5vw;
    }

    .yoko {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .yoko img {
        width: 48%;
    }
}

/* //SP VIEW 460px */
