@charset "UTF-8";
/* ==========================================================
Name:
    base.css

Description:
    サイト全体に共通する設定を記述する
    基本的にタグ自体にスタイルを定義する

Contents:
    base settings
========================================================== */
/* ==========================================================
*
*   base settings
*
========================================================== */
/* ---------------------------------------------
*   Universal selector
--------------------------------------------- */
*, *::before, *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* ---------------------------------------------
*   html, body
--------------------------------------------- */
html,
body {
    color: #0b1e3b;
    font-size: 16px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", meiryo, "メイリオ", sans-serif;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

@media screen and (max-width: 750px) {
    html,
    body {
        font-size: 2.66667vw;
    }
}

body {
    overflow-x: hidden;
    line-height: 1.5;
}

.mfp-active body {
    overflow: hidden;
}

@media screen and (max-width: 1100px) {
    body {
        min-width: 751px;
    }
}

@media screen and (max-width: 750px) {
    body {
        min-width: 320px;
        line-height: 1.5;
    }
}

/* ---------------------------------------------
*   <a> tag
--------------------------------------------- */
a {
    color: inherit;
    text-decoration: none;
}

/* ---------------------------------------------
*   <img> tag
--------------------------------------------- */
img {
    max-width: 100%;
    vertical-align: bottom;
}

/* ---------------------------------------------
*   <hr> tag as anchor target
--------------------------------------------- */
hr[id^="anchor-"] {
    display: block;
    margin: -100px 0 0 0;
    padding: 100px 0 0 0;
    width: auto;
    height: 0;
    border: 0;
    background: 0;
    pointer-events: none;
}

@media screen and (max-width: 750px) {
    hr[id^="anchor-"] {
        margin-top: -11.46667vw;
        padding-top: 11.46667vw;
    }
}
/*-----------------------------*/
p.c-info__txt span {
    text-decoration: underline;
}
/*-----------------------------*/
/*ABC-MART 2023 RECRUIT*/
p.c-info__txt span.break {
    text-decoration: none;
    display: block;
    margin-top: 1em;
}

