@charset "utf-8";


/*メディクリ:
    'screen and (max-width: 550px)', //550px以下（スマホ）用の表示
    'screen and (max-width: 767px)', //767px以下（スマホ）用の表示
    'screen and (max-width: 1024px)', //1024px以下（タブレット・スマホ）用の表示
    'screen and (max-width: 1279px)', //（タブレット・PC）用の表示
    'screen and (max-width: 1649px)', //（PC）用の表示
    'screen and (min-width: 1650px)' //（PC）用の表示 */



/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
    border: 0;
    font: inherit;
    font-size: 100%;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    
}

html {
    line-height: 1;
    background-color: #fff;
}

ol,
ul {
    list-style: none;
}

li,
dd {
    list-style-type: none;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
    display: block;
}

header {
    z-index: 15;
}

img {
    border: none;
    vertical-align: bottom;
}

a {
    cursor: pointer;
    text-decoration: none;
}


/*===============================================
# common
=================================================*/
body {
    font-size: 16px;
    color: #333333;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.875;
    letter-spacing: 0.05em;
    overflow-x: hidden;
    background-color: #fff;
}

img {
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
}

@media screen and (max-width: 1279px) {
  .container {
        padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .container {
        margin: 0 auto;
        padding: 0 15px;
  }
}

.container2 {
    max-width: 1000px;
    margin: 0 auto;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    padding: 0 20px;
}

.container3 {
    max-width: 950px;
    margin: 0 auto;
    -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@media screen and (max-width: 1279px) {
  .container3 {
        padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .container3 {
        margin: 0 auto;
        padding: 0 15px;
  }
}

.container4 {
    max-width: 510px;
    margin: 0 0 auto auto;
    -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@media screen and (max-width: 1279px) {
  .container4 {
        margin: 0 auto;
        padding: 0 20px;
        max-width: 950px;
  }
}

a:hover {
    opacity: 0.7;
}

/*===============================================
# c-title
=================================================*/
.c-title {
    margin: 0 auto 70px;
    text-align: center;
    color: #364f6b;
    letter-spacing: 0.1em;
}

.c-title .en {
    font-size: 12px;
    font-weight: 100;
    margin-bottom:3px;
}

.c-title .ja {
    font-size: 30px;
    position: relative; 
    display: inline-block;
}

.c-title .ja::after {
    content: "";
    display: block;
    width: 120px; 
    height: 2px; 
    background-color: #f7567c;
    margin: 16px auto 0;
    border-radius: 2px;
}

/* スマホ */
@media screen and (max-width: 767px) {
    .c-title {
        margin: 0 auto 35px;
        text-align: center;
        color: #364f6b;
        letter-spacing: 0.1em;
    }

    .c-title .en {
        font-size: 9px;
        margin-bottom:0px;
    }

    .c-title .ja {
        font-size: 19px;
        line-height: 1.5;
    }

    .c-title .ja::after {
        width: 60px; 
        margin: 8px auto 0;
    }
}

/*===============================================
# c-btn
=================================================*/
.c-btn {
    margin: 50px auto 0;
    position: relative;   /* 中の絶対配置用 */
    display: block;
    background-color: #f7567c;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    padding: 20px 180px 25px 40px; /* 左にロゴ分の余白を確保 */
    width: 400px;
    box-sizing: border-box;
    font-size: 20px;
}

/* 矢印画像（右下） */
.c-btn .btn-arrow {
    position: absolute;
    right: 30px;
    bottom: 40px;
    width: 52px; /* 必要に応じて調整 */
    height: auto;
}

.c-btn a:hover {
    opacity: 0.8;
}

/* スマホ */
@media screen and (max-width: 767px) {
    .c-btn {
        margin: 30px auto 0;
        border-radius: 4px;
        padding: 10px 60px 11px 22px; /* 左にロゴ分の余白を確保 */
        width: 200px;
        font-size: 14px;
    }

    /* 矢印画像（右下） */
    .c-btn .btn-arrow {
        position: absolute;
        right: 15px;
        bottom: 21px;
        width: 26px; /* 必要に応じて調整 */
    }
}


/*===============================================
# フェードイン
=================================================*/
/*下から上にフェードイン*/
.down-to-top {
    opacity: 0.1;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    -webkit-transition: all 0.9s;
    transition: all 0.9s;
}

.down-to-top.scrollin {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
}


/*===============================================
# header
=================================================*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 20;
    background-color: transparent;
}

.header-inner.container {
    max-width: 1600px;
    padding: 20px 20px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
}
@media screen and (max-width: 767px) {
    .header-inner.container {
        padding: 15px;
    }
}

/* ----------------
  ページタイトル
------------------*/
@media screen and (max-width: 767px) {
    .header-logo {
        font-size: 11px;
    }
}

/* ----------------
  ハンバーガー
------------------*/
.burger-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #f7567c;
    position: relative;
    z-index: 30;
    cursor: pointer;
    transition: background-color 0.3s; 
}

.bar {
    width: 36px;
    height: 2px;
    background-color: #fff; 
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s, background-color 0.3s; 
}

.bar_top { top: 28px; }
.bar_mid { top: 50%; transform: translate(-50%, -50%); }
.bar_bottom { bottom: 28px; }

/* ×に変形 */
.burger-btn.close .bar_top {
    transform: translate(-50%, 6px) rotate(30deg);
}
.burger-btn.close .bar_mid {
     opacity: 0;
}
.burger-btn.close .bar_bottom {
     transform: translate(-50%, -6px) rotate(-30deg);
}

/* スマホ */
@media screen and (max-width: 767px) {
    .burger-btn {
        width: 45px;
        height: 45px;
    }

    .bar {
        width: 23px;
        height: 1px;
    }

    .bar_top { top: 18px; }
    .bar_mid { top: 50%; transform: translate(-50%, -50%); }
    .bar_bottom { bottom: 18px; }

        /* ×に変形 */
    .burger-btn.close .bar_top {
        transform: translate(-50%, 4px) rotate(30deg);
    }
    .burger-btn.close .bar_mid {
        opacity: 0;
    }
    .burger-btn.close .bar_bottom {
        transform: translate(-50%, -4px) rotate(-30deg);
    }
}

/* navオープン時の色切替 */
.burger-btn.nav-open {
    background-color: #fff; /* 丸を白に */
}

.burger-btn.nav-open .bar {
     background-color: #f7567c; /* 線をピンクに */
}

/* ----------------
  ナビ全体
------------------ */
.header-nav {
    position: fixed;
    top: 0;
    right: -500px;      /* 初期は画面外 */
    width: 500px;
    max-width: 100%;
    height: 100vh;
    background: rgba(247, 86, 124, 0.9);
    z-index: 25;
    transition: right 0.5s ease; /* スライドアニメ */
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: none; /* 初期は影なし */
    overflow-y: auto; /* 高さオーバーでもスクロール */
    overflow-x: hidden;       /* 横スクロールを無効化 */
    letter-spacing: 0.1em;
}

.header-nav.open {
    right: 0;  /* open で右にスライドイン */
    box-shadow: -10px 0 20px rgba(0,0,0,0.2); /* 左側に影 */
}

/* スマホ */
@media screen and (max-width: 767px) {
    .header-nav {
        width: 100%;
        right: -100%;
        padding: 20px;
    }
    .header-nav.open {
        right: 0;
    }
}

/* ----------------
  メインメニュー
------------------ */
.header-nav-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 100px 0 54px 0;
    padding-left: 40px;
    width: 100%;
}

.header-nav-item {
    margin: 10px 0;
}

.header-nav-item a {
    font-size: 20px;
    color: #fff;
    padding: 5px 20px;
    display: block;
    text-decoration: none;
}

/* スマホ */
@media screen and (max-width: 767px) {
    .header-nav-list {
        margin: 45px 0;
        padding-left: 0px;
    }

    .header-nav-item {
        margin: 6px 0;
    }

    .header-nav-item a {
        color: #fff;
        padding: 5px 10px;
        display: block;
        text-decoration: none;
    }
}


/* ----------------
  サブメニュー（求人）
------------------ */
.header-sub-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 40px;
    width: 100%;
}

.sub-nav-title {
    font-size: 18px;
    margin: 0 0 18px 20px;
    padding: 2px 24px;
    background-color: #fff;
    border-radius: 5px;
    color: #f7567c;
}

.header-sub-nav-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
    margin-left: 10px;
    width: 100%;
}

.header-sub-nav-list .header-nav-item {
    margin: 0;
}

.header-sub-nav-list .header-nav-item a {
    font-size: 18px;
    color: #fff;
    padding: 5px 20px;
    display: block;
    text-decoration: none;
    font-weight: 300;
}

.header-sub-nav-item-link:hover {
    opacity: 0.7;
}

/* スマホ */
@media screen and (max-width: 767px) {
    .header-sub-nav {
        padding-left: 0px;
    }

    .sub-nav-title {
        margin: 0 0 15px 10px;
        border-radius: 2.5px;
    }

    .header-sub-nav-list {
        margin-bottom: 20px;
    }

    .header-sub-nav-list .header-nav-item a {
        padding: 2px 10px;
    } 
}

/* ----------------
  男性用メニュー
------------------ */
.header-man-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 50px;
    width: 100%;
    padding-left: 60px;
}

.man-nav-title {
    font-size: 18px;
    margin-bottom: 8px;
    color: #364f6b;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 左右の線 */
.man-nav-title::before,
.man-nav-title::after {
    content: "";
    display: block;
    width: 68px;
    height: 1px;
    background-color: #364f6b; /* タイトルと同じ紺色 */
}

.man-nav-title::before {
    margin-right: 10px; /* タイトルとの間隔 */
}

.man-nav-title::after {
    margin-left: 10px; /* タイトルとの間隔 */
}

.man-login-btn {
    position: relative;   /* 中の絶対配置用 */
    display: block;
    background-color: #364f6b;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    padding: 15px 15px 21px 132px; /* 左にロゴ分の余白を確保 */
    width: 315px;
    box-sizing: border-box;
}

/* ロゴ画像（左側） */
.man-login-btn .btn-logo {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 109px;
    height: auto;
}

/* テキスト中央寄せ（左ロゴの横） */
.man-login-btn .btn-text {
    display: inline-block;
    font-size: 16px;
    vertical-align: middle;
}

/* 矢印画像（右下） */
.man-login-btn .btn-arrow {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 35px; /* 必要に応じて調整 */
    height: auto;
}

.man-login-btn a:hover {
    opacity: 0.8;
}

/* スマホ */
@media screen and (max-width: 767px) {
    .header-man-nav {
        padding-left: 10px;
    }

    .man-nav-title::before,
    .man-nav-title::after {
        width: 65px;
    }

    .man-login-btn {
        padding: 15px 15px 21px 132px; /* 左にロゴ分の余白を確保 */
        width: 310px;
        border-radius: 4px;
    }
}

/*===============================================
# sec-kv
=================================================*/
.sec-kv {
    display: flex;
    justify-content: center; /* 全体を中央寄せ */
    align-items: center;
    background: url(../img/login/kv.jpg) 46% center / cover no-repeat;
    height: 660px;
    padding: 80px 5% 40px; /* サイド余白（中央寄せと併用） */
    position: relative;
}

.kv-inner {
    display: flex;
    justify-content: flex-start; /* 左寄せ */
    align-items: center;
    width: 100%;
    max-width: 1450px; /* ★ 最大幅を制限 */
}

/* 左の白いボックス */
.kv-container {
    background: #fff;
    border-radius: 10px;
    width: 600px;
    height: 560px;
    padding: 30px 40px;
    box-sizing: border-box;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.kv-container::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 1px dashed #364f6b;
    border-radius: 10px;
    pointer-events: none;
    box-sizing: border-box;
}

/* 見出し */
.title-block h1 {
    font-size: 26px;
    color: #364f6b;
    text-align: center;
    font-family: "BIZ UDMincho", serif;
    font-weight: 400;
    letter-spacing: 0.3em;
    margin-bottom: 6px;
    border-top: #364f6b 2px solid;
    border-bottom: #364f6b 2px solid;
    line-height: 1.7;
}

.kv-content-wrap p {
    color: #364f6b;
    letter-spacing: 0.1em;
    margin-bottom: 7px;
}

/* ボタン */
.login-btn {
    position: relative;   /* 中の絶対配置用 */
    display: block;
    background-color: #f7567c;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    padding: 15px 15px 20px 270px; /* 左にロゴ分の余白を確保 */
    width: 100%;
    box-sizing: border-box;
    height: 100px;
    text-align: left;
    margin-bottom: 10px;
}

/* ロゴ画像（左側） */
.login-btn .btn-logo {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 240px;
    height: auto;
}

.login-btn .btn-text {
    display: inline-block;
    font-size: 20px;
    vertical-align: middle;
    line-height: 1.2;
    padding-bottom: 13px;
}

.login-btn .login {
    display: block;
    width: 100px;
    font-size: 16px;
    border-radius: 50px;
    padding: 4px 10px 6px 16px;
    line-height: 1.2;
    background-color: #fff;
    color: #f7567c;
    border: 1px #fff solid;
}

.login-btn .btn-arrow {
    position: absolute;
    right: 15px;
    bottom: 20px;
    width: 52px; /* 必要に応じて調整 */
    height: auto;
}

.login-btn a:hover {
    opacity: 0.8;
}


.kv-content-wrap .note {
    text-align: left;
}

.kv-content-wrap .note p {
    font-size: 10px;
    margin-bottom: 4px;
    margin-top: -2px;
    padding-left: 1px;
    letter-spacing: 0.05em;
}

.btn-wrap-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.sub-btn {
    width: 254px;
    height: 60px;
    background-color: #364f6b;
    color: #fff;
    border-radius: 8px;
    font-size: 20px;
    padding-top: 10px;
}


/* タブレット */
@media screen and (max-width: 1024px) {
    .sec-kv {
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        height: 100vh;
        padding: 0 15px;
        background: url(../img/login/kv_sp.jpg) center top / cover no-repeat;
        position: relative;
        overflow: visible; /* ← はみ出しを許可 */
    }

    .kv-inner {
        width: 100%;
        display: flex;
        justify-content: center;
        position: relative;
    }

    .kv-container {
        position: relative;
        transform: translateY(-5%);
    }
}

/* スマホ */
@media screen and (max-width: 767px) {
   .kv-container {
        position: relative;
        transform: translateY(13%);
        width: 345px;
        min-width: 345px;
        height: 440px;
        padding: 25px 23px;
    }

   .kv-container::before {
        top: 5px;
        left: 5px;
        width: calc(100% - 10px);
        height: calc(100% - 10px);
        border-radius: 5px;
    }

    /* 見出し */
    .title-block h1 {
        font-size: 20px;
        margin-bottom: 3px;
        border-top: #364f6b 1px solid;
        border-bottom: #364f6b 1px solid;
        line-height: 1.9;
        margin-bottom: 10px;
    }

    .kv-content-wrap p {
        text-align: left;
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    /* ボタン */
    .login-btn {
        border-radius: 4px;
        padding: 7px 7px 10px 153px; /* 左にロゴ分の余白を確保 */
        height: 62px;
        margin-bottom: 9px;
        line-height: 1;
    }

    /* ロゴ画像（左側） */
    .login-btn .btn-logo {
        left: 8px;
        width: 137px;
    }

    /* テキスト中央寄せ（左ロゴの横） */
    .login-btn .btn-text {
        font-size: 14px;
        padding-bottom: 7px;
    }

    .login-btn .login {
        width: 70px;
        font-size: 12px;
        padding: 2px 5px 3px 8px;
    }

    /* 矢印画像（右下） */
    .login-btn .btn-arrow {
        position: absolute;
        right: 8px;
        bottom: 10px;
        width: 30px; /* 必要に応じて調整 */
    }

    .kv-content-wrap .note p {
        font-size: 12px;
        margin-top: 1px;
        margin-bottom: 5px;
    }

    .sub-btn {
        width: 145px;
        height: 45px;
        background-color: #364f6b;
        color: #fff;
        border-radius: 4px;
        font-size: 14px;
        padding-top: 8px;
    }

}

/*===============================================
# イベントバナー
=================================================*/
.event-block {
    padding: 40px 0 ;
}

.event-block .container {
    display: flex;
    justify-content: center; /* 水平方向中央揃え */
}

.event-container {
    overflow-x: auto !important;
    min-width: 0 !important; /* inherit ではなく0にしてflexで中央 */
}

/* スマホ */
@media screen and (max-width: 767px) {
    .event-block {
        padding: 82px 0 25px;
    }
}

/*===============================================
# sec-notice
=================================================*/
.sec-notice {
    padding: 50px 0 90px;
}

.sec-notice-text {
    margin-bottom: 36px;
}

.notice-list li {
    display: flex;
    align-items: flex-start; /* アイコンは1行目に揃える */
    gap: 15px;               /* アイコンとテキストの間隔 */
    margin-bottom: 10px;
    padding: 23px;
    border-radius: 10px;
    background-color: rgba(247, 86, 124, 0.08);
}

.notice-list li .icon {
    width: 34px;
    height: 30px;
    background-image: url('../img/login/caution_icon.png');
    background-size: cover;
    background-repeat: no-repeat;
    flex-shrink: 0; /* アイコンのサイズを固定 */
}

.notice-list li p {
    margin: 0;
    line-height: 1.6;
    color: #f7567c;
    font-size: 18px;
    font-weight: 700;
}

/* 補足文（span） */
.notice-list li .note {
    color: #f7567c;
    font-size: 14px;
    display: flex;          /* アイコン（※）を左に並べるためflex化 */
    align-items: flex-start;    /* 1行目中央に揃える */
    font-weight: 400;
    line-height: 1.6;
    margin-top: 6px;
}

/* 補足文の左に「※」を追加 */
.notice-list li .note::before {
    content: "※";
    display: inline-block;
    margin-right: 2px;
    font-size: 14px;
}

/* スマホ */
@media screen and (max-width: 767px) {
    .sec-notice {
        padding: 35px 0 63px;
    }

    .sec-notice-text {
        font-size: 14px;
        line-height: 2;
        margin-bottom: 18px;
    }

    .notice-list li {
        gap: 8px;               /* アイコンとテキストの間隔 */
        margin-bottom: 7px;
        padding: 15px;
        border-radius: 5px;
    }

    .notice-list li .icon {
        width: 22px;
        height: 20px;
        margin-top: 2px;
    }

    .notice-list li p {
        font-size: 14px;
    }

    /* 補足分 */
    .notice-list li .note {
        font-size: 11px;
        margin-top: 2px;
    }

    /* 補足文の左に「※」を追加 */
    .notice-list li .note::before {
        font-size: 11px;
    }
}


/*===============================================
# sec-account
=================================================*/
.sec-account {
    position: relative;
    overflow: visible;
    padding: 100px 0 50px;
}

/* 背景 */
.sec-account::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%; 
    background: url(../img/login/sec_accont_img.png) 85% center/cover no-repeat;
    z-index: 0; 
}

.sec-account-wrapper {
  position: relative;
  background: rgba(241, 241, 241, 0.85);
  padding: 100px 140px;
  border-radius: 10px;
  z-index: 1;
}

/* スマホ */
@media screen and (max-width: 767px) {
  .sec-account {
       padding: 70px 0 35px;
    }

  .sec-account::before {
        height: 45%; 
        background: url(../img/login/sec_account_img_sp.png) 85% 10%/cover no-repeat;
    }

  .sec-account-wrapper {
        padding: 50px 10px;
        border-radius: 5px;
    }

  .sec-account-text p {
        font-size: 14px;
        line-height: 2;
        margin: 0;
    }
}


/*===============================================
# sec-compensation
=================================================*/
.sec-compensation {
     padding: 50px 0;
}

.sec-compensation-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.sec-compensation .img-wrap {
    flex: 0 0 41%;
    max-width: 41%;
}

.sec-compensation .img-wrap picture,
.sec-compensation .img-wrap img {
    display: block;
    width: 100%;
    height: auto;
}

.sec-compensation .text-wrap {
    flex: 0 0 53%;
    max-width: 53%;
}

.sec-compensation .img-wrap img {
    object-fit: cover;
    width: 100%;
    height: auto;
}

/* h3 tit */
.h3-title {
    color: #364f6b;
    letter-spacing: 0.1em;
    margin-bottom: 26px;
}
    
.h3-title .en {
    font-size: 12px;
    font-weight: 100;
    padding-left: 30px; 
    margin-top: -6px;
}

.h3-title .ja {
    font-size: 24px;
    position: relative;
    display: inline-block;
    padding-left: 28px; 
}

.h3-title .ja::before {
    content: "⚫︎";
    position: absolute;
    left: 0;
    top: 45%;
    transform: translateY(-50%); /* 縦位置を中央に */
    color: #f7567c;
    font-size: 20px;
    line-height: 1;
}

.sec-compensation-text p {
    line-height: 2;
}

/* 計算式 */
.sec-compensation .cal {
    text-align: center;
    padding: 22px 20px 22px 20px;
    background-color: #dedede;
    border-radius: 10px;
    margin: 22px 0 12px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.6;
}

.sec-compensation .cal .br {
    display: inline-block ; 
    text-align: center;
    vertical-align: top;
    line-height: 1.8;
}

.sec-compensation .cal .br .note {
    display: block; 
    font-size: 10px;
    padding-left: 30px;
}

.sec-compensation .cal strong {
    color: #f7567c;
    padding: 0 6px;
}

.sec-compensation .cal .num {
    font-size: 20px;
}

.sec-compensation .cal .num2 {
    font-size: 20px;
    padding-left: 3px;
}

.sec-compensation .cal .mini {
    font-size: 14px;
}

.sec-compensation .note02 {
    position: relative;
    font-size: 12px;
    padding-left: 16px; 
    line-height: 1.6;
}

.sec-compensation .note02::before {
    content: "※";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 12px;
}

/* ボタン */
.sec-compensation .c-btn {
    padding: 20px 100px 25px 40px;
    margin: 50px auto 0 0;
}

.sec-compensation .c-btn .cal-icon {
    width: 36px;
    position: absolute;
    right: 30px;
    bottom: 20px;
    height: auto;
}


/* スマホ */
@media screen and (max-width: 767px) {
    .sec-compensation {
        padding: 35px 0;
    }

    .sec-compensation-wrapper {
        display: block;
    }

    .sec-compensation .img-wrap {
        width: 57%;
        max-width: none;
        margin: auto;
    }

    .sec-compensation .img-wrap picture,
    .sec-compensation .img-wrap img {
        display: block;
        width: 100%;
        height: auto;
    }

    .sec-compensation .img-wrap img {
        object-fit: cover;
        width: 100%;
        height: auto;
    }

    .h3-title {
        margin-bottom: 14px;
        margin-top: 25px;
    }

    .h3-title .en {
        font-size: 9px !important;
        padding-left: 21px;
    }

    .h3-title .ja {
        font-size: 17px;
        padding-left: 20px;
    }

    .h3-title .ja::before {
        font-size: 16px;
    }

    .sec-compensation .text-wrap  {
        width: 100%;
        max-width: none;
    }

    .sec-compensation .text-wrap  p {
        font-size: 14px;
    }

    /* 計算式 */
    .sec-compensation .cal {
        padding: 18px 12px;
        border-radius: 5px;
        margin: 16px 0 10px;
        font-size: 14px;
        text-align: center;
    }

    .sec-compensation .cal .br {
        display: block;
    }

    .sec-compensation .cal .br .note {
        display: inline-block; /* 下に改行して配置 */
        font-size: 10px;
        padding-left: 0px;
    }

    .sec-compensation .cal strong {
        color: #f7567c;
        padding: 0 4px;
    }

    .sec-compensation .cal .num {
        font-size: 15px;
    }

    .sec-compensation .cal .num2 {
        font-size: 15px;
        padding-left: 2px;
    }

    .sec-compensation .cal .mini {
        font-size: 10px;
    }

    .sec-compensation .note02 {
        font-size: 12px !important;
        padding-left: 16px; /* ※の分だけ左に余白 */
    }

    .sec-compensation .note02::before {
        content: "※";
        position: absolute;
        left: 0;
        top: 0;
        font-size: 12px;
    }

    /* ボタン */
    .sec-compensation .c-btn {
        padding: 10px 30px 11px 22px;
        margin: 30px auto 0;
        width: 255px;
        font-size: 14px;
    }

    .sec-compensation .c-btn .cal-icon {
        width: 22px;
        position: absolute;
        right: 15px;
        bottom: 10px;
        height: auto;
    }   
}

/* simulation
================================*/
.reward_cal_area {
    display: inline-block;
    margin: 0;
    padding: 10px 0 0;
    width: 100%;
    position: relative; /* 擬似要素を絶対位置で表示するため */
    text-align: center;
}

.reward_cal_area.top::after {
    content: "";
    display: block;
    width: 340px;
    height: 0.5px;              
    margin: 30px auto 0 auto;
    background: repeating-linear-gradient(
        to right,
        #fff 0px,
        #fff 4px,          /* 線の長さ */
        transparent 4px,
        transparent 8px    /* 線の長さ + 間隔（4px線 + 6px空白） */
    );
}

form.point-simulation {
    margin: 30px auto;
    width: 100%;
    max-width: 490px;
    box-sizing: border-box;
    padding: 30px 45px 45px;
    background-color: #364f6b;    
    border-radius: 10px;
    box-shadow: 6.1px 5.1px 10px rgba(0, 0, 0, 0.3);
    color: #fff;
    text-align: center;
}
form.point-simulation p {
    font-size: 14px;
}

::placeholder {
    color: #c3c3c3;
    font-size: 14px;
}

::-ms-input-placeholder {
    color: #c3c3c3;
    font-size: 14px;
}

.reward_cal_area span {
    font-size: 16px;
}

.reward_cal_area span.rate {
    font-size: 24px;
    color: #f7567c;
    padding: 0 5px;
}

.reward_cal_area input[type="text"], .reward_cal_area input[type="number"] {
    position: relative;
    width: 180px;
    height: 56px;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 0 36px 0 12px;
    display: inline-block;
    background: #fff;
    outline: none !important;
    -webkit-appearance: none;
    border-style: none;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    margin-right: 5px;
}

.reward_cal_area input[type="button"] {
    font-size: 16px;
    color: #333333;
    background-color: #c3c3c3;
    border-radius: 5px;
    height: 56px;
    width: 100px;
    border-style: none;
    margin-left: 5px;
    box-sizing: border-box;
}

.reward_cal_area.bottom .br {
    font-size: 14px;
}

h4.reward_cal_invoice {
    font-size: 20px;
    letter-spacing: 0.1em;
    margin: 20px auto 0;
    color: #ffffff;
    font-weight: 500;
    display: flex;             
    align-items: center;        
    justify-content: center;    
    gap: 5px;                   
    text-align: center;
    line-height: 1.4;         
}
  
h4.reward_cal_invoice::before {
    content: "⚫︎";
    color: #f7567c;
    font-size: 16px;
    line-height: 1;
    margin-bottom: 6px;
}

.reward_cal_area p {
    font-size: 14px;
    padding-bottom: 3px;
}

.reward_cal_area.bottom input[type="text"], .reward_cal_area.bottom input[type="number"] {
    width: 293px;
    margin-right: 14px;
}

/* 報酬額＋円 を下揃えで横並びに */
.reward_cal_area input[type="text"] {
    vertical-align: bottom; 
}

.reward_cal_area input[type="text"] + span,
.reward_cal_area input[type="text"] + .yen {
    display: inline-block;
    vertical-align: bottom;
    font-size: 16px;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

/* number入力欄の矢印（▲▼）を非表示にする */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox対応 */
input[type="number"] {
    -moz-appearance: textfield;
}

.simulation-overlay {
    display: none;                /* 最初は非表示 */
    position: fixed;              /* 画面に固定 */
    top: 0;
    left: 0;
    width: 100vw;                 /* 横幅100% */
    height: 100vh;                /* 高さ100%（画面いっぱい） */
    background: rgba(0, 0, 0, 0.6); /* 半透明の黒 */
    z-index: 998;                 /* モーダルより下 */
}

.simulation-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    width: 90%;
    max-width: 600px;
}

.simulation-modal .close-btn {
    color: #333333;
    background-color: #c3c3c3;
    border: none;
    border-radius: 5px;
    width: 100px;
    height: 56px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 38px;
}

/* スマホ */
@media screen and (max-width: 767px) {
    .reward_cal_area {
        padding: 6px 0 0;
    }

    .reward_cal_area.top::after {
        width: 270px;             
        margin: 20px auto 0 auto;
        background: repeating-linear-gradient(
        to right,
        #fff 0px,
        #fff 2px,          /* 線の長さ */
        transparent 2px,
        transparent 4px    /* 線の長さ + 間隔（4px線 + 6px空白） */
        );
    }

    .simulation-inner p {
        font-size: 13px !important;
    }

    form.point-simulation {
        max-width: 325px;
        padding: 28px 20px 32px;   
        border-radius: 5px;
        box-shadow: 6.1px 5.1px 5px rgba(0, 0, 0, 0.3);
    }

    form.point-simulation p {
        font-size: 13px;
    }

    ::placeholder {
        color: #c3c3c3;
        font-size: 13px;
    }

    ::-ms-input-placeholder {
        color: #c3c3c3;
        font-size: 13px;
    }

    .reward_cal_area span {
        font-size: 13px;
    }

    .reward_cal_area span.rate {
        font-size: 16px;
        padding: 0 2px;
    }

    .reward_cal_area input[type="text"], .reward_cal_area input[type="number"] {
        position: relative;
        width: 145px;
        height: 40px;
        border-radius: 3px;
        box-sizing: border-box;
        padding: 0 18px 0 6px;
        font-size: 13px;
        margin-right: 3px;
    }

    .reward_cal_area input[type="button"] {
        font-size: 13px;
        color: #333333;
        border-radius: 3px;
        height: 40px;
        width: 75px;
        margin-left: 3px;
    }

    h4.reward_cal_invoice {
        font-size: 14px;
        margin: 20px auto 0;  
        gap: 3px;                         
    }
    
    h4.reward_cal_invoice::before {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .reward_cal_area.bottom p {
        font-size: 12px !important;
        padding-bottom: 4px;
    }

    .reward_cal_area.bottom input[type="text"], .reward_cal_area.bottom input[type="number"] {
        width: 207px;
        margin-right: 10px;
    }

    .reward_cal_area.bottom .br {
        display: block;
        font-size: 12px;
        margin-top: -4px;
    }


    .reward_cal_area input[type="text"] + span,
    .reward_cal_area input[type="text"] + .yen {
        font-size: 13px;
        margin-bottom: 2px;
    }


    .simulation-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.6);
        z-index: 998;
    }

    .simulation-modal .close-btn {
        color: #333333;
        background-color: #c3c3c3;
        border: none;
        border-radius: 3px;
        width: 70px;
        height: 40px;
        font-size: 12px;
        margin-top: 25px;
    }
}


/*===============================================
# sec-payment
=================================================*/
.sec-payment {
    padding: 50px 0;
}

.information {
    color: #364f6b;
    margin: 37px auto 0;
    display: block;
    width: 550px;
    border-radius: 10px;
    padding: 20px 54px 28px;
    border: #364f6b 2px solid;
}

.sec-payment-text {
    margin-bottom: 36px;
}

.information strong {
   font-size: 26px;
   font-weight: 600;
   margin-bottom: 4px;
   display: block;
}

.information p {
   font-size: 18px;
   line-height: 1.6;
}

.payment-table {
    width: 100%;
    margin: auto;
    border-collapse: separate;
    border-spacing: 0;
    text-align: center;
    border-radius: 10px;
    overflow: hidden; 
    letter-spacing: 0.1em;
}

.payment-table th,
.payment-table td {
    width: 50%;
    padding: 20px 10px;
    vertical-align: middle; 
}

.payment-table th {
    background-color: #f7567c; 
    color: #fff;
    border-right: 2px solid #fff; /* 縦線 */
}

.payment-table th:last-child {
    border-right: none; /* 最後の列は線を消す */
}

.payment-table td {
    background-color: #f1f1f1;
    border-top: 2px solid #fff; /* 横線 */
    border-right: 2px solid #fff; /* 縦線 */
}

.payment-table td:last-child {
    border-right: none; /* 最後の列は線を消す */
}

/* スマホ */
@media screen and (max-width: 767px) {
    .sec-payment {
        padding: 35px 0;
    }

    .sec-payment-text {
        font-size: 14px;
        line-height: 2;
        margin-bottom: 18px;
    }

    .information {
        margin: 18px auto 0;
        width: 100%;
        max-width: 345px;
        border-radius: 5px;
        padding: 12px 20px 14px;
        border: #364f6b 1px solid;
    }

    .information strong {
        font-size: 17px;
        margin-bottom: 2px;
        line-height: 1.5;
    }

    .information p {
        font-size: 12px;
    }

    .payment-table {
        border-radius: 5px;
        font-size: 14px;
        line-height: 1.5;
    }

    .payment-table span {
      display: block;
    }

    .payment-table th,
    .payment-table td {
        width: 50%;
        padding: 10px 5px;
    }

    .payment-table th {
        border-right: 1px solid #fff; /* 縦線 */
    }

    .payment-table th:last-child {
        border-right: none; /* 最後の列は線を消す */
    }

    .payment-table td {
        border-top: 1px solid #fff; /* 横線 */
        border-right: 1px solid #fff; /* 縦線 */
    }
}


/*===============================================
# sec-wrapper
=================================================*/
.sec-wrapper {
    display: flex;
    gap: 0px; /* カラム間の余白 */
    padding: 50px 0 0;
}

/* PC：2カラム */
.sec-dailypayment,
.sec-contact {
    flex: 1; /* 均等幅 */
}

/* SP：1カラム */
@media (max-width: 1279px) {
    .sec-wrapper {
        flex-direction: column; /* 縦並びにする */
    }
}

@media (max-width: 767px) {
    .sec-wrapper {
        padding: 35px 0 0;
    }
}

/*===============================================
# sec-dailypayment
=================================================*/
.sec-dailypayment {
    position: relative;
    padding: 100px 90px 100px 0;
    text-align: left;
}

.sec-dailypayment .c-title {
    text-align: left;
    color: #fff;
    position: relative;
    z-index: 1;
}

.sec-dailypayment .c-title .en {
    text-align: left;
    color: #fff;
    padding-left: 3px;
}

.sec-dailypayment .c-title .ja::after {
    margin: 16px auto 0 0;
}

.sec-dailypayment-text {
    position: relative;
    z-index: 1;
    color: #fff;
}

.sec-dailypayment .c-btn {
    margin: 50px auto 0 0;
}

/* 背景 */
.sec-dailypayment::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    background: url(../img/login/sec_dailypayment_img.png) center center/cover no-repeat;
    z-index: 0; 
}

@media screen and (max-width: 1279px) {
    .sec-dailypayment {
        padding: 100px 0px;
  }

    .sec-dailypayment .c-title {
        text-align: center;
    }


    .sec-dailypayment .c-title .en {
        text-align: center;
        padding-left: 0;
    }

    .sec-dailypayment .c-title .ja::after {
        margin: 16px auto 0;
    }

    .sec-dailypayment .c-btn {
        margin: 50px auto 0;
    }
}

/* スマホ */
@media screen and (max-width: 767px) {
    .sec-dailypayment {
        padding: 70px 0px;
    }

    .sec-dailypayment .c-title .ja::after {
        margin: 8px auto 0;
    }

    .sec-dailypayment .c-btn {
        margin: 30px auto 0;
    }

    .sec-dailypayment-text {
        font-size: 14px;
        line-height: 2;
    }
}

/*===============================================
# sec-contact
=================================================*/
.sec-contact {
    padding: 100px 0 100px 90px;
    text-align: left;
    background-color: #dedede;
}

.sec-contact .container4 {
    margin: 0 auto 0 0;
}

.sec-contact .c-title {
    text-align: left;
}


.sec-contact .c-title .en {
    text-align: left;
    padding-left: 3px;
}

.sec-contact .c-title .ja::after {
    margin: 16px auto 0 0;
}

.sec-contact .c-btn {
    margin: 109px auto 0 0;
}

@media screen and (max-width: 1279px) {
    .sec-contact {
        padding: 100px 0px;
    }

    .sec-contact .container4 {
        margin: 0 auto;
    }

    .sec-contact .c-title {
        text-align: center;
    }

    .sec-contact .c-title .en {
        text-align: center;
        padding-left: 0px;
    }

    .sec-contact .c-title .ja::after {
        margin: 16px auto 0 auto;
    }

    .sec-contact .c-btn {
        margin: 50px auto 0 auto;
    }

    .sec-contact-text {
        text-align: center;
    }
    
}

/* スマホ */
@media screen and (max-width: 767px) {
    .sec-contact {
        padding: 70px 0px;
    }

    .sec-contact .c-title .ja::after {
        margin: 8px auto 0;
    }

    .sec-contact .c-btn {
        margin: 30px auto 0;
    }

    .sec-contact-text {
        font-size: 14px;
        line-height: 2;
    }
}

/*===============================================
# sec-highlights
=================================================*/
.sec-highlights {
    padding: 100px 0;
    position: relative;
}

/* 背景 */
.sec-highlights::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    background: url(../img/login/sec-highlights_img.png) 70% center/cover no-repeat;
    z-index: 0; 
}

.sec-highlights .c-title {
    position: relative;
    z-index: 1;
    text-align: left;
}

.sec-highlights .c-title .en {
    padding-left: 4px;
}

.sec-highlights .c-title .ja::after {
    content: "";
    margin: 16px auto 0 0;
}

.sec-highlights-text {
    position: relative;
    z-index: 1;
    line-height: 1.875;
}

.sec-highlights-text p {
    margin-bottom: 20px;
}

.sec-highlights-text span {
    display: block;
}


.sec-highlights .c-btn {
    margin: 50px auto 0 0;
}

/* スマホ */
@media screen and (max-width: 767px) {
    .sec-highlights {
        padding: 70px 0 400px;
        position: relative;
    }

    /* 背景 */
    .sec-highlights::before {
        background: url(../img/login/sec-highlights_img_sp.png) 90% 100%/cover no-repeat;
    }

    .sec-highlights .c-title {
        text-align: center;
    }

    .sec-highlights .c-title .en {
        padding-left: 0px;
    }

    .sec-highlights .c-title .ja::after {
        content: "";
        margin: 16px auto 0;
    }

    .sec-highlights-text {
        line-height: 2;
        font-size: 14px;
    }

    .sec-highlights-text p {
        margin-bottom: 10px;
    }

    .sec-highlights-text span {
        display: inline;
    }

    .sec-highlights .c-btn {
        margin: 30px auto 0;
    }
}

@media screen and (max-width: 550px) {
    .sec-highlights {
        padding: 70px 0 250px;
        position: relative;
    }

    .sec-highlights .c-title .ja span {
        display: block;
    }

}


/*===============================================
# sec-prohibited
=================================================*/
.sec-prohibited {
    padding: 100px 0;
}

.sec-prohibited-text {
    margin-bottom: 36px;
}

.prohibited-table {
    width: 100%;
    margin: auto;
    border-collapse: separate;
    border-spacing: 0;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
}

.prohibited-table th,
.prohibited-table td {
    padding: 10px;
    vertical-align: middle;
    width: 25%;
    height: 80px;
}

.prohibited-table thead th {
    background-color: #f7567c;
    color: #fff;
    border-right: 2px solid #fff;
}

.prohibited-table thead th:last-child {
    border-right: none;
}

.prohibited-table tbody th {
    background-color: #f7567c;
    color: #fff;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    text-align: center;
}

.prohibited-table td {
    background-color: #f1f1f1;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    font-size: 30px;
    color: #f7567c;
    font-weight: 700;
}

.prohibited-table td:last-child {
    border-right: none;
}


/* スマホ対応 */
@media screen and (max-width: 767px) {
    .sec-prohibited {
        padding: 70px 0;
    }

    .sec-prohibited-text {
        margin-bottom: 18px;
        font-size: 14px;
        line-height: 2;
    }

    .prohibited-table {
        border-radius: 5px;
        font-size: 12px;
        line-height: 1.5;
    }

    .prohibited-table th,
    .prohibited-table td {
        padding: 6px 2px;
        height: 50px;
    }

    /* 1列目だけ幅を固定 */
    .prohibited-table th:first-child,
    .prohibited-table tbody th {
        width: 30%;
    }

    /* 残り3列を均等に */
    .prohibited-table thead th:nth-child(n+2):nth-child(-n+4),
    .prohibited-table tbody td {
        width: calc((100% - 30%) / 3);
    }

    .prohibited-table span {
        display: block;
    }

    .prohibited-table td {
        font-size: 16px;
    }

    .prohibited-table thead th,
    .prohibited-table tbody th {
        border-right: 1px solid #fff;
    }

   .prohibited-table td {
        border-right: 1px solid #fff;
        border-top: 1px solid #fff;
    }

    .prohibited-table tbody th {
        border-top: 1px solid #fff;
        border-right: 1px solid #fff;
    }
 }

 /*===============================================
# footer
=================================================*/
footer {
    background-color: #464646;
    height: 150px;
    display: flex; /* ← footer自体をflexに */
    align-items: center; /* ← 上下中央揃え */
}

footer .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .copyright {
    font-size: 12px;
    color: #fff;
}

footer a {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center; 
    justify-content: center;
}

footer a img {
    width: 100%;
    height: auto;
}

/* スマホ対応 */
@media screen and (max-width: 767px) {
    footer {
        height: 70px;
        padding: 20px 0;
    }

    footer .container {
        justify-content: center; 
        padding: 0 15px; 
    }

    footer .copyright {
        text-align: center;
        width: 100%;
        font-size: 10px;
    }

    footer a {
        margin: 0 0 0 auto;
        width: 45px;
        height: 45px;
    }

    footer a img {
        width: 100%;
        height: auto;
    }
}


	









/*パスワード制限ページ*/
form.form.post-password-form{padding: 40px;min-height: 500px;}
form.post-password-form p:first-child{font-size:12px;}
form.post-password-form p {text-align:center;font-size:14px;color:#666;margin:0 auto 15px;}
form.post-password-form p label input[type="password"]{display:block;margin:15px auto;line-height: 35px; width: 200px;}
form.post-password-form p input[type="submit"]{background-color: #ff416e; color: white; line-height: 35px; padding: 0 15px; width: 150px; border: 1px solid #0001;  border-bottom-width: 1px; border-bottom-width: 3px; box-sizing: border-box; border-radius: 18px;margin:10px auto;cursor:pointer;}
form.post-password-form p input[type="submit"]:hover{opacity:0.8;}
@media screen and (min-width: 769px) {
form.post-password-form{padding: 70px;min-height: 500px;}
}


/* お仕事ログインページ */
#js-slider-1 {
    width: 100%;
    margin: 0 auto !important;
}
#js-slider-1 img {
    width: 100%;
    height: auto;
}

#js-slider-1 li {
	margin: 0;
}

#js-slider-1 .slick-prev {
	left: 10px;
	top: 50%;
	z-index: 1;
}

#js-slider-1 .slick-next {
	right: 10px;
	top: 50%;
	z-index: 1;
}

#js-slider-1 .slick-dots {
	bottom: 10px;
}



#campaign_box,#campaign_box01 {    position: fixed;    bottom: 3.2vw;    left: calc(3.2vw);    box-sizing: border-box;    z-index: 100;}
#campaign_box p.btn-link-fukidashi,#campaign_box01 p.btn-link-fukidashi {text-align: center;margin: 0;}
#campaign_box p.btn-link-fukidashi a,#campaign_box01 p.btn-link-fukidashi a {    position: relative;    width: 150px;    height: auto;    display: block;    color: #fd7a9f;    text-decoration: none;}
#campaign_box p.btn-link-fukidashi a:before {    display: block;    content: "只今キャンペーン中!";    font-size: 70%;    background: white;    padding: 0px 5px;    line-height: 25px;    width: 90%;    position: absolute;    height: 25px;    overflow: hidden;    top: -27px;    right: 5px;    border-radius: 16px;    animation: float 3s ease-in-out infinite;    border: 1px solid #e071a2;}
#campaign_box01 p.btn-link-fukidashi a:before {    display: block;    content: "現在申請受付中！";    font-size: 70%;    background: white;    padding: 0px 5px;    line-height: 25px;    width: auto;    position: absolute;    height: 25px;    overflow: hidden;    top: -27px;    right: 5px;    border-radius: 16px;    animation: float 3s ease-in-out infinite;    border: 1px solid #e071a2;}
@keyframes float {0% {transform: translateY(0);}50% {transform: translateY(-10px);}100% {transform: translateY(0);}
}
#campaign_box p.btn-link-fukidashi a:after,#campaign_box01 p.btn-link-fukidashi a:after {    display: block;    content: "";    position: absolute;    top: -2px;    right: 20px;    width: 0;    height: 0;    border-style: solid;    border-width: 8px 6px 0 6px;    border-color: #e06f9f transparent transparent transparent;    animation: float 3s ease-in-out infinite;    z-index: 100;}
#campaign_box p.btn-link-fukidashi a img,#campaign_box01 p.btn-link-fukidashi a img {width: 100%;height: auto;border-radius: 8px;border: 6px solid #333333;}
@media (min-width: 769px) {
#campaign_box,#campaign_box01 {position: fixed;box-sizing: border-box;z-index: 100;bottom: 3.2vw;left: 350px;}
#campaign_box p.btn-link-fukidashi,#campaign_box01 p.btn-link-fukidashi {text-align: center;margin: 0;}
#campaign_box p.btn-link-fukidashi a,#campaign_box01 p.btn-link-fukidashi a {position: relative;width: 240px;height: auto;display: block;color: #e45e80;}
#campaign_box p.btn-link-fukidashi a:before {display: block;content: "只今キャンペーン中!";font-size: 80%;background: white;padding: 0px 5px;line-height: 30px;width: 80%;position: absolute;height: 30px;overflow: hidden;        top: -27px;        right: 15px;        border-radius: 16px;        animation: float 3s ease-in-out infinite;        border: 2px solid #e45e80;        text-decoration: none;    }
#campaign_box01 p.btn-link-fukidashi a:before {display: block;content: "現在申請受付中！";font-size: 80%;background: white;padding: 0px 5px;line-height: 30px;width: 80%;position: absolute;height: 30px;overflow: hidden;        top: -27px;        right: 15px;        border-radius: 16px;        animation: float 3s ease-in-out infinite;        border: 2px solid #e45e80;        text-decoration: none;    }
@keyframes float {
	0% {transform: translateY(0);  }  
	50% {transform: translateY(-10px);  }  
	100% {transform: translateY(0);}
	}
#campaign_box p.btn-link-fukidashi a:after,#campaign_box01 p.btn-link-fukidashi a:after {        display: block;        content: "";        position: absolute;        top: 2px;        right: 30px;        width: 0;        height: 0;        border-style: solid;        border-width: 8px 6px 0 6px;        border-color: #e45e80 transparent transparent transparent;        animation: float 3s ease-in-out infinite;        z-index: 100; }
#campaign_box p.btn-link-fukidashi a img,#campaign_box01 p.btn-link-fukidashi a img {  width: 100%;  height: auto;}
}
