@charset "utf-8";


/*==============================================================================
	mv style
============================================================================= */

.about_mv {
    position: relative;
    height: 350px;
}

.about_mv img{
    object-fit: cover;
}

.about_mv .ttl_flex {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    opacity: 0.3;
    margin: 0 !important;
    border: none !important;
}

@media screen and (min-width: 1280px) {
    .about_mv {
    height: 450px;
}

}


/* .about_mv .ttl_flex h2{
    color: transparent;
    text-shadow: 1px 0 0 #ffffff, 0 1px 0 #ffffff, -1px 0 0 #ffffff, 0 -1px 0 #ffffff;
} */

/* @media only screen and (max-width: 1920px) and (min-width: 1440px) {
    .about_mv {
        height: calc(100vh - 80px);
    }

    .about_mv img {
        object-fit: cover;
    }
} */


/*==============================================================================
	vision style
============================================================================= */
.vision {
    margin: 70px 20px 0;
}

.vision .inner {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    /* 中の背景色 */
    z-index: 1;
    padding: 50px 50px 30px;
}

.vision .inner::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    /* 枠の太さ */
    background: linear-gradient(to right, #0083ED, #02BBFE);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
    border-radius: 10px;
}

.vision .inner::after {
    content: "MAIKEN";
    color: #E5E5E5;
    opacity: 0.3;
    display: inline-block;
    font-size: clamp(60px, 20vw, 200px);
    width: 100%;
    text-align: center;
    /* height: auto; */
    font-weight: bold;
    position: absolute;
    top: 30px;
    left: 0;
    z-index: -1;
}

.vision h3 {
    font-size: clamp(28px, 5vw, 47px);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.vision h3 span {
    font-size: clamp(20px, 3vw, 32px);
    background: linear-gradient(to left, #0083ED 0%, #02BBFE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: fit-content;
    margin: 0 auto;
}

.vision_txt {
    max-width: 836px;
    margin: 20px auto;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    /* 200% */
}

/*==============================================================================
	body style
============================================================================= */

/*追従設定*/
.about_body {
    display: grid;
    grid-template-columns: 180px 1fr;
    -moz-column-gap: clamp(48px, (100 * var(--vw) - 1024px) * 52 / 256 + 48px, 100px);
    column-gap: clamp(48px, (100 * var(--vw) - 1024px) * 52 / 256 + 48px, 100px);
    max-width: 1200px;
    margin-top: 100px;
    padding-inline: clamp(0px, (100 * var(--vw) - 1024px) * 40 / 256 + 0px, 40px);
    margin-inline: auto;
    padding: 0 20px;
}

.about_body_right {
    padding-left: 20px;
}


/****************************
 共通
*****************************/


/*共通タイトル*/
.about_body_ttl {
    display: flex;
    flex-direction: column;
}

.about_body_ttl .en {
    color: #343434;
    font-family: "Oswald", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Osaka, sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 400;
    letter-spacing: 4.48px;
    margin-bottom: 30px;
}

.about_body_ttl .jp {
    font-size: clamp(16px, 2vw, 24px);
    background: linear-gradient(to left, #0083ED 0%, #02BBFE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    margin-bottom: -10px;
    width: fit-content;
}

/*余白調整*/
.about_body_right>section:not(:last-child) {
    margin-bottom: 80px;
}

/*スクロール調整*/
.message,
.company,
.welfare,
.vision {
    scroll-margin-top: 100px;
}

/****************************
 代表メッセージ
*****************************/

.about_body_right .message p:not(.ceo)>span {
    background: linear-gradient(to left, #0083ED 0%, #02BBFE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.about_body_right .message p {
    margin: 0;
    line-height: 40px;
}


.ceo {
    font-size: 20px;
    text-align: right;
    font-weight: 400;
}

.ceo span {
    font-size: 14px;
    margin-right: 10px;
}


/****************************
 会社概要
*****************************/

.company table {
    width: 100%;
}

.company th {
    width: 150px;
    border-bottom: 1px solid#0083ED;
    padding: 20px 10px;
}

.company td {
    padding: 20px 10px;
    width: calc(100% - 150px);
    border-bottom: 1px solid #E6E6E6;
}

/****************************
 福利厚生
*****************************/
.welfare_main>div:not(.welfare_others) {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.welfare_content {
    width: calc(50% - 20px);
    display: flex;
    align-items: center;
    gap: 15px;
    align-items: center;
}

.welfare_content p {
    margin: 0;
    font-size:14px;
}

.welfare_content p:first-child {
    background: linear-gradient(to left, #0083ED 0%, #02BBFE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 20px;
    width: fit-content;
}

.welfare_content::before {
    content: "";
    background-image: url(/themes/custom/maiken/images/about/welfare_img01.webp);
    display: inline-block;
    width: 70px;
    height: 70px;
    background-size: contain;
    background-repeat: no-repeat;
}

/*その他*/
.welfare_others {
    background-color: #F2F4F4;
    margin: 30px 0;
    justify-content: space-evenly;
    padding: 20px;
    display: flex;
    gap: 20px;
}

.list01__item {
    position: relative;
    font-weight: bold;
    line-height: 1.5;
    padding-left: 20px;
    margin-bottom: 10px;
}

.list01__item::before {
    position: absolute;
    content: "";
    left: 0;
    top: 6px;
    width: 12px;
    height: 12px;
    background: linear-gradient(to left, #0083ED 0%, #02BBFE 100%);
    border-radius: 50%;
}

.list01__item::after {
    position: absolute;
    content: "";
    top: 9px;
    left: 3px;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
}

.welfare_others>ul {
    padding-inline-start: 0px;
}

.welfare_others__box-txt {
    margin: 0;
    font-weight: normal;
    line-height: 2.1;
    margin-top: 5px;
}

 .welfare_others>ul:first-child{
    width: 240px;
 }

/****************************
左側リンク
*****************************/
.about_body_left {
    position: sticky;
    top: 100px;
    align-self: start;
    margin-bottom: 30px;
}

.header__list {
    margin: 0;
}

.about_body_left nav a {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-left: 17px;
    color: #808080;
    text-decoration: none !important;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    width: 100%;
    font-weight: 400;
    font-size:14px;
}

/* 左の丸ポチ（アクティブ用） */
.about_body_left nav a::before {
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 10px;
    background-color: #02BBFE;
    opacity: 0;
    transition: 0.2s opacity;
    content: "";
}

/* グラデーション用テキスト重ね */
.about_body_left nav a::after {
    content: attr(data-text);
    position: absolute;
    left: 17px;
    top: 0;
    height: 100%;
    background: linear-gradient(to left, #0083ED 0%, #02BBFE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* is-active状態（グラデ表示＋元文字消す） */
.about_body_left nav a.is-active {
    color: transparent;
    /* font-weight: 700; */
}

.about_body_left nav a.is-active::before {
    opacity: 1;
}

.about_body_left nav a.is-active::after {
    opacity: 1;
}


/****************************
レスポンシブ
*****************************/
@media screen and (max-width: 828px) {
    .welfare_others {
        justify-content: space-between;
    }

    .welfare_others>ul,
        .welfare_others>ul:first-child {
        width: calc(50% - 20px);
    }

}

@media screen and (max-width: 768px) {

    .about_body_ttl .jp {
        margin-bottom: -5px;
    }

    .about_body {
        display: block;
        margin-top: 50px;
    }

    .about_body_left {
        position: static;
    }

    .about_body_left nav a::before,
    .about_body_left nav a.is-active::after {
        content: none;
    }

    .about_body_left nav a {
        color: #343434;
        padding-left: 0;
    }

    .about_body_left nav a.is-active {
        color: #343434;
        font-weight: normal;
    }


    /* .header__list {
        display: flex;
        justify-content: center;
    }

    .header__item {
        width: 33.33%;
        padding-bottom: 50px;
        position: relative;
        margin-bottom: 20px;
    }

    .about_body_left nav a {
        width: fit-content;
        padding-left: 0;
        margin: 0 auto;
    }

    .header__item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        width: 1px;
        height: 100%;
        background: linear-gradient(to top, #0083ED 0%, #02BBFE 100%);
    }

    .header__item::before {
        content: "";
        background-image: url(/themes/custom/maiken/images/icons/yazirusi.svg);
        display: inline-block;
        width: 50px;
        height: 50px;
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    } */
    .header__list {
        display: flex;
        justify-content: center;
    }

    .header__link {
        display: block;
        width: 33.33%;
        text-align: center;
        position: relative;
        color: #343434;
        text-decoration: none;
        margin-bottom: 20px;
        padding-bottom: 50px;
        /* font-weight: 400; */
        /* transition: transform 0.3s ease; */
    }

    .header__link.is-active {
        color: #343434;
        font-weight: normal;
    }

    /* 矢印アイコン */
    .header__item {
        /* position: relative; */
        margin: 0 auto;
    }

    .header__item::before {
        content: "";
        background-image: url(/themes/custom/maiken/images/icons/yazirusi.svg);
        display: inline-block;
        width: 50px;
        height: 50px;
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        transition: transform 0.3s ease;
    }

    /* 縦の区切り線（最後以外） */
    .header__link:not(:last-child) .header__item::after {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        width: 1px;
        height: 100%;
        background: linear-gradient(to top, #0083ED 0%, #02BBFE 100%);
    }

    .about_body_right {
        padding-left: 0px;
    }

    .vision {
        margin: 40px 20px 0;
    }

    .vision .inner {
        padding: 50px 20px 30px;
    }

    .vision_txt {
        font-size: 16px;
    }

    .welfare_main>div:not(.welfare_others) {
        flex-direction: column;
    }

    .welfare_content {
        width: 100%;
    }

    .welfare_content > div{
    width: calc(100% - 70px);
}

    /* .welfare_others>ul {
        width: 33.33%;
    } */


}

@media screen and (max-width: 550px) {

    /*スクロール調整*/
    .message,
    .company,
    .welfare {
        scroll-margin-top: 70px;
    }

    .about_mv {
        height: 250px;
    }

    .about_mv img {
        object-fit: cover;
        object-position: -30px center;
    }

    .header__list {
        flex-direction: column;
    }

    .about_body_left nav a::after {
        content: none;
    }

    .header__item::before {
        position: relative;
        left: 0;
        transform: none;
    }

    .header__link {
        padding: 10px;
        margin-bottom: 0 !important;
    }

    .header__item {
        width: 100%;
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: space-between;
        padding: 0 10px;
    }

    .header__link:not(:last-child) .header__item::after {
        top: auto;
        bottom: 0;
        right: auto;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(to left, #0083ED 0%, #02BBFE 100%);
    }

    .about_body {
        margin-top: 10px;
    }

    .welfare_others {
        flex-wrap: wrap;
    }

    /* .welfare_others>ul {
        width: calc(50% - 20px);
    } */

    .welfare_others>ul:last-child {
        width: 100%;
    }

    .company th {
        width: 120px;
    }
}


/****************************
ホバー
*****************************/

@media (hover: hover) {
    @media screen and (min-width: 768px) {
        .about_body_left nav a:hover::after {
            opacity: 1;
        }

        .about_body_left nav a:hover {
            color: transparent;
        }
    }

    @media screen and (max-width: 768px) {

        .header__link:hover {
            color: #01A0F6 !important;
        }

        .header__link:hover .header__item::before {
            transform: translateX(-50%) translateY(5px);
            /* 下に5px動かす */
        }
    }

    @media screen and (max-width: 550px) {
        .header__link:hover .header__item::before {
            transform: translateY(3px);
        }
    }
}