/* 基本設定と変数 */
:root {
    --fm-green: #00a33e;
    --fm-blue: #008cd6;
    --fm-dark: #333333;
    --fm-light: #f8fafc;
    --white: #ffffff;
    --text-gray: #4b5563;
    --shadow-soft: 0 10px 40px -10px rgba(0,0,0,0.08);
    --space-section: clamp(64px, 10vw, 120px);
    --space-container: clamp(16px, 5vw, 24px);
}
p{
    margin: 0;
}

.site-header .nav-item:nth-child(3) .dropdown-toggle {
    color: var(--fm-green) !important;
    font-weight: 600;
    /* pointer-events: none; */
}

.section-title {
    margin-bottom: 70px;
    font-weight: bold;
    color: var(--fm-dark);
    font-size: clamp(17px, 3.5vw, 1.875rem) !important;
}

/* --- ヒーローセクション --- */
.hero-section {
    position: relative;
    max-height: 90%;
    display: flex;
    padding-top: 5rem; /* pt-20 相当 */
}

.about-hero {
    position: relative;
    min-height: 500px;
    height: 70vh; /* 画面高に合わせる */
    max-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}
@media (max-width: 768px) {
    .about-hero {
        min-height: initial;
        height: 50vh; 
    }
}

.hero-image-bg {
    position: absolute;
    inset: 0;
    background-image: url('../image/recruit-top.jpg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.top-container{
    width: 100%;
}

.hero-background-image {
    position: absolute;
    inset: 0;
    background-image: url('../image/image_3.png');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.6) 100%);
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    display: block;
    height: 100%;
}



.hero-main-content {
    display: inline-table;
    height: 50%;
    backdrop-filter: blur(4px); /* backdrop-blur-md 相当 */
    padding: 2rem; /* p-8 相当 */
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-white);
    border-radius: 5%;
    max-width: 100%; /* md:w-full lg:w-11/12 xl:w-full を考慮し、レスポンシブで調整 */
    transform: translateY(1rem) scale(0.9);
}

@media (min-width: 768px) {
    .hero-content-wrapper {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr)); /* md:grid-cols-2 相当 */
        gap: 3rem; /* gap-12 相当 */
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--color-white);
    border: 1px solid var(--fm-blue);
    color: var(--fm-blue);
    padding: 0.375rem 1rem; /* px-4 py-1.5 相当 */
    border-radius: 9999px;
    font-weight: bold;
    margin-bottom: 1.5rem; /* mb-6 相当 */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm 相当 */
}

.hero-badge span {
    font-size: 17px;
}

.hero-title {
    font-size: 2.5rem; /* 3xl/5xl / style="font-size: 2.5rem;" */
    font-weight: 900; /* font-black 相当 */
    line-height: 1.5;
    margin-bottom: 1.5rem; /* mb-6 相当 */
    color: var(--color-gray-800);
}

.hero-title .text-highlight {
    color: var(--fm-green);
    background-color: #f0fff4; /* green-50 相当 */
    padding: 0 0.5rem; /* px-2 相当 */
}

.hero-subtitle {
    color: var(--color-gray-600);
    font-size: 1.125rem; /* text-lg 相当 */
    margin-bottom: 2rem; /* mb-8 相当 */
    line-height: 1.625; /* leading-relaxed 相当 */
}

.hero-action {
    display: flex;
    flex-direction: column; /* flex-col 相当 */
    gap: 1rem; /* gap-4 相当 */
}

@media (min-width: 640px) {
    .hero-action {
        flex-direction: row; /* sm:flex-row 相当 */
    }
}
.label-green-border {
    display: inline-block;
    border-bottom: 2px solid var(--fm-green);
    margin-bottom: 24px;
    padding-bottom: 4px;
}

.label-en {
    color: var(--fm-green);
    font-weight: bold;
    letter-spacing: 0.15em;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.page-title {
    /* 画面幅に応じて40px〜56pxに変化 */
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    margin-top: 0;
}

.hero-lead {
    font-size: clamp(1.0rem, 3vw, 1.5rem);
    word-break: keep-all; /* 変な位置での改行を防ぐ */
    font-weight: bold;
    color: #374151;
}

.text-blue {
    color: var(--fm-blue);
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 40px;
    fill: white;
}

/* 部署紹介 */
.department{
    padding-top: clamp(9rem, 12vw, 12rem);
}

/* 部署紹介全体の親要素 */
.department-wraper{
    display: flex;
    flex-wrap: wrap;
    margin-top: 5rem;
}

/* 部署紹介の要素 */
.department-content{
    width: 45%;
    height: 500px;
    margin: 0 2.42%;
    border: 1px solid var(--color-gray-600);
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* 部署紹介の画像 */
.department-image{
    width: 100%;
    border-bottom: 1px solid var(--color-gray-100);
    object-fit: contain;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

/* 部署紹介の文字 */
.department-text{
    width: calc(100% - 2rem);
    padding: 1rem;
    font-size: 16px;
    line-height: 1.5;
}

/* 部署名 */
.department-text p{
    font-size: 22px;
    font-weight: 700;
    padding-bottom: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--fm-green);
    margin-bottom: 0.5rem;
}

/* 左側にある部署紹介の要素 */
.department-left{
    margin-bottom: 100px;
}

/* 右側にある部署紹介の要素 */
.department-right{
    margin-top: 100px;
}

/* モバイル用 */
.department-wraper-mobile{
    display: none;
}

.department-content-mobile{
    width: 90%;
    aspect-ratio: 1920 / 1000;
    margin: 0 5%;
    position: block;
    border: 1px solid var(--color-gray-100);
    overflow: hidden;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
}

.department-text-mobile{
    width: calc(90% - 1rem);
    margin: 0 1rem;
    height: 140px;
    padding: 1rem 0 1rem 1rem;
    font-size: 14px;
}

.department-text-mobile p{
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 0.5rem;
}

/* 画面縮小時は一列に表示 */
@media(max-width:1281px){
    .department-wraper{
        margin-top: 0;
    }
    .department-left{
        margin-bottom: 0;
    }
    .department-right{
        margin-top: 0;
    }
    .department-content{
        width: 60%;
        margin: 50px 20%;
        height: auto;
    }
    .department-text{
        font-size: clamp(14px,2vw,18px);
        height: 150px;
        padding: 1rem;
    }
    .department-text p{
        font-size: clamp(18px,2.5vw,26px);
    }
}

/* 画面縮小時横幅を調整 */
@media(max-width:680px){
    .department-content{
        width: 90%;
        margin: 0 5% 50px;
    }
    .department-text{
        padding: 1rem;
        height: 40%;
    }
}


/* インタビュー */
.interview{
    padding-top: clamp(6rem, 20vw, 14rem);
    padding-bottom: 3rem;
}

/* インタビューの見出しと写真 */
.interview-wraper{
    width: 90%;
    height: 600px;
    margin: 0 5% 8rem;
    position: relative;
}

/* インタビューされた人の写真 */
.interview-image{
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 90%;
    object-fit: cover;
    border: 1px solid #CCCCCC;
}

.inverview-image-02{
    object-position: bottom;
}

/* インタビューの見出し文 */
.interview-content{
    position: absolute;
    width: 45%;
    height: 52%;
    left: 0;
    bottom: 0;
    background-color: #fff;
    border: 1px solid #CCCCCC;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    font-size: 1rem;
    font-weight: 500;
    line-height: 2;
}

/* インタビュー見出しのデザインの親要素（右上） */
.interview-line-1{
    width: 100%;
    height: 100%;
    position: relative;
}

/* インタビュー見出しのデザインの親要素（左下） */
.interview-line-2{
    width: calc(100% - 3.0rem);
    height: calc(100% - 3.0rem);
    position: relative;
    padding: 1.5rem 0 1.5rem 3.0rem;
    font-size: 1rem;
    overflow: hidden;
}

/* インタビュー見出しのデザイン */
.interview-line-1::after,
.interview-line-1::before,
.interview-line-2::after,
.interview-line-2::before,
.interview-line-3::after,
.interview-line-3::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    z-index: 2;
    pointer-events: none;
}

/* 右上水色線 */
.interview-line-1::after{
    top: 0;
    right: -19%;
    background-color: var(--fm-blue);
    transform: rotate(25deg);}

/* 右上緑色線 */
.interview-line-1::before{
    top: 0;
    right: -1%;
    background-color: var(--fm-green);
    transform: rotate(12deg);
}

/* 左下水色線 */
.interview-line-2::after{
    bottom: 0px;
    left: -60px;
    background-color: var(--fm-blue);
    transform: rotate(24deg);
}

/* 左下緑色線 */
.interview-line-2::before{
    bottom: 24px;
    left: -4px;
    background-color: var(--fm-green);
    transform: rotate(10deg);
}

/* インタビューされた人の名前 */
.interview-name{
    font-size: 2.4rem;
    font-weight: 700;
}

/* インタビューされた人の肩書 */
.interview-title{
    font-size: 0.9rem;
    padding: 0.5rem 0;
}

/* 「インタビューを読む」のリンク */
.interview-link{
    bottom: 0;
    right: 0;
    background-color: var(--fm-green);
    width: 100%;
    height: 45px;
    line-height: 40px;
    text-align: center;
    position: absolute;
    color: var(--fm-green);
    margin-top: 1.5rem;
    color: #fff;
    font-size: clamp(17px,2.0vw,1.3rem);
    z-index: 3;
    transition: scale 0.5s;
    cursor: pointer;
}

/* 「インタビューを読む」の隣の三角 */
.interview-link-arrow {
    display: inline-block;
    margin-left: 8px;
    animation: arrowMove 1.2s ease-in-out infinite;
}

@keyframes arrowMove {
    0%   { transform: translateX(0); }
    50%  { transform: translateX(6px); }
    100% { transform: translateX(0); }
}

/* 「インタビューを読む」ホバー時、三角を右に動かし固定 */
@media(min-width:680px){

.interview-link:hover .interview-link-arrow {
    animation: none;
    transform: translateX(20px);
    transition: transform .25s cubic-bezier(.4,1.4,.6,1);
}

}

/* テロップ風デザイン */
.interview-Telop{
    color: #FF7627;
    text-shadow: 0 0 10px #e6b422,0 0 15px;
    font-style: italic;
    font-weight: 700;
    position: absolute;
    left: 45%;
    top: 18%;
}

@media(max-width:900px){
    .interview-Telop{
        top: 8%;
        left: 45%;
    }
}

@media(max-width:800px) and (min-width:500px){
    .interview-Telop{
        position: static;
    }
}

@media(max-width:499px){
    .interview-Telop{
        top: 10%;
        left: 40%;
        font-size: 0.8rem;
    }
}

/* 縮小時名刺風デザインを消す */
@media(max-width:1100px){
    .interview-content{
        width: 50%;
        height: 50%;
    }

    .interview-line-1::before{
        display: none;
    }

    .interview-line-1::after{
        display: none;
    }

    .interview-line-2::before{
        display: none;
    }

    .interview-line-2::after{
        display: none;
    }

    .interview-line-3::before{
        display: none;
    }

    .interview-line-3::after{
        display: none;
    }

    .interview-line-2{
        width: calc(100% - 2.0rem);
        height: calc(100% - 2.0rem);
        padding: 1rem;
    }
}

/* さらに縮小時、レイアウトを左右に変更 */
@media(max-width:900px){
    .interview-wraper{
        margin-bottom: 0;
    }
    .interview-image{
        width: 60%;
    }
    .interview-content{
        bottom: auto;
        height: 90%;
    }
    .interview-link{
        height: 60px;
        line-height: 60px;
    }
}

/* モバイル用、レイアウトを上下に変更 */
@media(max-width:499px){

.interview-wraper{
    width: 90%;
    height: 660px;
    margin: 0 5% 5rem;
    position: static;
}

.interview-image{
    position: static;
    width: 100%;
    height: 48%;
    object-fit: cover;
}

.interview-content{
    position: static;
    width: 100%;
    height: 52%;
    font-size: 1rem;
}

.interview-line-2{
    padding: 0.5rem 1rem 0;
    font-size: 16px;
}

@media(max-width:499px){
    .interview-line-2{
        font-size: 15px;
    }
}

.interview-title{
    font-size: 14px;
    padding:0 0 0.5rem;
}

.interview-link{
    height: 40px;
    line-height: 40px;
    text-align: center;
    position: absolute;
    color: var(--fm-green);
    color: #fff;
    font-size: 16px;
    z-index: 3;
}

}

/* 小さいインタビューが横に3つ並んでる部分 */
.interview-flex-box{
    display: flex;
    width: 90%;
    gap: 1.8rem;
    margin: 5rem 5%;
}

/* 小さいインタビューの要素 */
.interview-wraper-s{
    width: 33%;
    height: 630px;
    position: relative;
}

/* 画面縮小時に文字の部分を伸ばす */
.interview-wraper-s{
    height: 680px;
}

/* 小さいインタビューの画像 */
.interview-image-s{
    position: absolute;
    width: 100%;
    height: 75%;
    object-fit: cover;
    border: 1px solid #CCCCCC;
}

/* 小さいインタビューの見出し */
.interview-content-s{
    position: absolute;
    width: 100%;
    height: 48%;
    bottom: 0;
    background-color: #fff;
    border: 1px solid #CCCCCC;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    font-size: 1rem;
    font-weight: 500;
}

/* 小さいインタビューの名前 */
.interview-name-s{
    font-size: 22px;
    font-weight: 700;
}

/* 小さいインタビューの肩書 */
.interview-title-s{
    font-size: 0.9rem;
    padding: 0 0 0.5rem;
}

.interview-nomal-text{
    margin: 0.8rem 0 0;
    padding-right: 0.3rem;
}

/* 小さいインタビュー見出しのデザインの親要素（左下） */
.interview-line-3{
    width: 90%;
    height: calc(100% - 1.2rem);
    position: relative;
    padding: 1.2rem 1rem;
    overflow: hidden;
}

/* 小さいインタビュー見出しの左下水色線 */
.interview-line-3::after{
    bottom: 30px;
    left: -50px;
    background-color: var(--fm-blue);
    transform: rotate(25deg);
}

/* 小さいインタビュー見出しの左下緑色線 */
.interview-line-3::before{
    bottom: 50px;
    left: -42px;
    background-color: var(--fm-green);
    transform: rotate(10deg);
}

/* 小さいインタビューのインタビューを読むボタン */
.interview-link-s{
    bottom: 0;
    right: 0;
    background-color: var(--fm-green);
    width: 100%;
    height: 35px;
    line-height: 35px;
    text-align: center;
    position: absolute;
    color: var(--fm-green);
    margin-top: 1.5rem;
    color: #fff;
    font-size: clamp(17px,2.0vw,1.3rem);
    z-index: 3;
    cursor: pointer;
}

/* インタビュー強調部分 */
.interview-text-decoration{
    color: orange;
    font-size: 20px;
}

@media(min-width:680px){

.interview-link-s:hover .interview-link-arrow {
    animation: none;
    transform: translateX(20px);
    transition: transform .25s cubic-bezier(.4,1.4,.6,1);
}

}
/* 画面縮小時は縦に配置 */
@media(max-width:800px){
    .interview-wraper{
        height: 485px;
    }

    .interview-flex-box{
        display: block;
        width: 90%;
        gap: 1.8rem;
        margin: 0 5%;
    }

    .interview-name{
        font-size: 24px;
        font-weight: 700;
    }

    .interview-wraper-s{
        width: 100%;
        height: 360px;
        position: relative;
        margin: 5rem 0;
    }

    .interview-image-s{
        position: absolute;
        width: 50%;
        height: 360px;
        object-fit: cover;
        object-position: 10%;
        right:0;
        top:0;
    }

    .interview-content-s{
        position: absolute;
        width: 50%;
        height: 360px;
        bottom: auto;
    }

    .interview-link-s{
        height: 50px;
        line-height: 50px;
    }

}

/* モバイル用、レイアウトを上下に変更 */
@media(max-width:499px){
    .interview-wraper{
        height: 550px;
    }

    .interview-wraper-s{
        height: 540px;
        margin: 0 0 5rem;
        position: static;
    }
    
    .interview-name-s{
        font-size: 1.5rem;
    }

    .interview-text-decoration{
        font-size: 18px;
    }

    .interview-link-s{
        font-size: 16px;
    }

    .interview-image-s{
        position: static;
        width: 100%;
        height: 48%;
        object-fit: cover;
        object-position: 0 20%;
    }

    .interview-content-s{
        position: static;
        width: 100%;
        height: 55%;
    }
}   

/* 職場環境 */

/* 職場環境の要素 */
.work-environment{
    padding-bottom: 3rem;
    /* display: block; */
    scroll-margin-top: 150px;
    width: 96%;
    margin: 2%;
}

.work-environment .container .work-environment {
    /* padding-bottom: 3rem; */
    /* display: flex;
    scroll-margin-top: 150px;
    justify-content: space-between;
    align-items: center; */
}

/* .work-environment-flex{ */
    /* display: flex; */
    /* margin-bottom: 5rem; */
    /* gap: 5%;
    width: 30%;
    align-items: center;
} */

/* 職場環境の画像 */
/* .work-environment-image-parent{
    width: 40%;
    position: relative;
} */

/* .work-environment-image{
    width: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
} */

/* 職場環境の右側の要素 */
.work-environment-text-parent{
    /* width: 55%; */
    display: block;
    width: 100%;
}

/* 職場環境の文字の部分 */
.work-environment-text{
    width: 90%;
    height: 40%;
    /* margin: 0.5% 5%; */
    margin: 2.5% 0;
    padding: 0.7rem;
    display: flex;
    align-items: center;
}

/* 職場環境の文章部分 */
.work-environment-textbox{
    font-size: clamp(14px, 1vw, 1.4rem);
    color: var(--fm-green);
    background-color: #fff;
    margin-right: 0.5rem;
    padding: 0 1rem;
    border-radius: 30px;
    width: calc(100% - 5.7rem);
    display: grid;
    align-items: center;
    font-weight: 500;
}

/* 職場環境のアイコン */
.work-environment-icon{
    width: 20%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    font-size: 1.5rem;
    color: var(--fm-green);
}

.work-environment-icon i{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.work-environment-under{
    height: 28%;
}

@media(max-width:800px){
    .work-environment-flex{
        width: 70%;
        /* margin: 0 15% 3rem; */
        display: block;
    }

    .work-environment-image-parent{
        width: 100%;
    }

    .work-environment-text-parent{
        width: 100%;
    }

    .work-environment-text{
        width: 100%;
        height: 3rem;
        margin: 0.5rem 0;
    }

    .work-environment-textbox{
        font-size: 14px;
    }
    .work-environment .container .work-environment {
        display: block;
        padding-bottom: 0;
    }

    .work-environment-text1{
        border-top: none;
    }

    .work-environment-icon{
        font-size: 1.5rem;
    }
}

@media(max-width:600px){
    .work-environment-flex{
        width: 90%;
        margin: 0 5% 0rem;
    }

    .work-environment-textbox{
        font-size: 16px;
    }

    .work-environment-icon{
        font-size: 1.2rem;
    }
}

@media(max-width:499px){

    .work-environment{
        margin-top: 0;
    }

    .work-environment-text{
        width: 100%;
    }

    .work-environment-textX{
        height: 4rem;
    }

}

/* 働く環境 */
.working-environment-section{
    padding-bottom: clamp(9rem, 17vw, 15rem);
}
.about-slider-area {
    position: relative; /* ボタンの配置基準 */
    width: 90%;
    max-width: 1100px;
    margin: 0 auto 7rem;
}
/* スライダー本体（Swiper標準のCSSを邪魔しない） */
.my-about-swiper {
    width: 100%;
    height: 300px;
}

/* ボタン：Swiper標準のクラス（.swiper-button-next）をあえて使わず、
   自分専用の名前にSwiperの見た目（font-family）を移植するのがコツ */
.about-prev, .about-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    width: 40px;
    height: 40px;
    color: #00b031;
    font-family: swiper-icons; 
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-prev { left: -50px; }
.about-next { right: -50px; }

/* アイコンを表示（Swiperのデフォルト文字コード） */
.about-prev::after { content: 'prev'; }
.about-next::after { content: 'next'; }

/* ページネーションの色変更（専用クラスで指定） */
.about-pagination {
    text-align: center;
    margin-top: 10px;
}
.about-pagination .swiper-pagination-bullet-active {
    background: #333 !important;
}

/* スライダーの外枠 */
.about-slider-area {
    position: relative;
    width: 90%;
    max-width: 1000px; /* ここで「3枚並んだ時の全体の横幅」を縛る */
    margin: 0 auto;
}

/* Swiper本体 */
.my-about-swiper {
    width: 100%;
    /* heightは指定しない！ */
    overflow: hidden;
}

/* スライド1枚ずつの設定 */
.my-about-swiper .swiper-slide {
  /* ここで「横3枚」の時の1枚あたりの比率を固定する */
  aspect-ratio: 4 / 3; /* 4:3の比率にする */
  width: 100%; /* JS側のslidesPerView: 3を優先させるため */
}

.my-about-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media(min-width:780px){
    .work-environment{
        display: grid;
        grid-template-columns:30% 30% 30%;
        grid-template-rows: 40% 40%;
        gap: 5%;
    }
}

@media(max-width:1000px){
    .work-environment{
        grid-template-columns:33% 33% 33%;
        gap: 1%;
    }
}

@media(max-width:780px){
    .about-prev { left: -35px; }
    .about-next { right: -35px; }
}

@media(max-width:499px){
    .about-slider-area{
        width: 88%;
    }
    .my-about-swiper{
        height: 220px;
    }
}

/* --- アニメーションの初期状態（隠れている状態） --- */
.reveal {
    opacity: 0;
    transform: translateY(40px); /* 40px下に下げておく */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* --- アニメーション実行後の状態（表示された状態） --- */
.reveal.active {
    opacity: 1;
    transform: translateY(0); /* 元の位置に戻る */
}

/* 画像とテキストに時間差（ディレイ）をつけたい場合 */
.active .strong-hero-image {
    transition-delay: 0.1s;
}
.active .strong-description {
    transition-delay: 0.8s; /* テキストを少し遅らせて表示 */
}

/* body{
    min-width: 1280px;
} */


