@charset "utf-8";

:root{
    --main-color: #0096ff;
    --text-color: #333333;
    --border-color: #DDDDDD;
    --content-shadow: 2px 2px 6px rgb(0 0 0 /20%);
}

/*共通パーツ*/
main {
    padding: 16px;
    background: #ECECEC;
    line-height: 1;
}
.content {
    background: #FFFFFF;
    box-shadow: var(--content-shadow);
}
.content+.content {
    margin-top: 24px;
}
.card+.content {
    margin-top: 24px;
}

.shop-search {
    padding: 8px;
}
.shop-search-inner {
    position: relative;
}
.shop-search-select {
    width: 100%;
    padding: 0.5em;
    border: 1px solid var(--border-color);
}
.shop-search-select:has(option[value=""]:checked) {
    color: #999;
}
.shop-search-select>option[value=""]{
    color: #999;
}
.shop-search-select>option{
    color: #333;
}
.shop-search-inner>._arrow-down {
    width: 8px;
    height: 8px;
    display: block;
    right: 16px;
    position: absolute;
    top: 50%;
    transform: translateY(calc(-50% - 2px));
}

.card-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.content+.card-list {
    margin-top: 16px;
}
.card {
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--main-color);
    border-radius: 3px;
    padding: 8px 0;
    width: 100%;
    background: #FFF;
    box-sizing: border-box;
    box-shadow: var(--content-shadow);
}
.card._unread {
    border: 1px solid var(--main-color);
    border-left: 3px solid var(--main-color);
}

.cmp_message {
    border-bottom: 2px solid #bfbfbf;
    margin-bottom: 18px;
}
.cmp_message_text {
    padding: 18px 9px;
    color: #0096ff;
    font-weight: bold;
    font-size: 16px;
}

.content+.buttons {
    margin-top: 24px;
}
.buttons {
    display: flex;
    gap: 8px;
}
.button {
    width: 100%;
    box-sizing: border-box;
    padding: 1.25em 0;
    text-align: center;
    background: var(--main-color);
    border-radius: 5px;
    color: #FFF;
    font-weight: bold;
    box-shadow: var(--content-shadow);
}
.button._red {
    background: #DD0000;
}



.pager {
    margin-top: 24px;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.pager-info {
    color: var(--text-color);
    font-size: 14px;
}
.pager-links {
    display: flex;
    margin-top: 8px;
    gap: 8px;
}
.pager-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background: #FFF;
    color: var(--text-color);
    font-weight: bold;
    font-size: 14px;
}
.pager-link._current {
    color: #FFFFFF;
    background: var(--main-color);
}


.float-wrap {
    position: fixed;
    bottom: 32px;
    width: 100%;
    padding: 0 32px;
    box-sizing: border-box;
    z-index: 1;
}
.float-button {
    width: 100%;
    box-sizing: border-box;
    background: #FFFFFF;
    border: 2px solid;
    color: var(--main-color);
    padding: 0.75em;
    border-radius: 5px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0 0 0/20%);
}

.mypage-link {
    background: #F5F5F5;
    border-top: 1px solid var(--border-color);
    padding: 0 0;
}
.maypage-link-text {
    display: inline-block;
    padding: 0.75em 1em;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    background: #FFFFFF;
    border-radius: 5px;
    color: var(--main-color);
    font-size: 14px;
    font-weight: bold;
}

._arrow-right:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-top: 2px solid;
    border-right: 2px solid;
    color: var(--main-color);
    transform: rotate(45deg);
}
._arrow-down:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-top: 2px solid;
    border-right: 2px solid;
    color: var(--main-color);
    transform: rotate(135deg);
}

.myjob-edit-text {
    padding: 0px 0px 8px;
    font-size: 14px;
    font-weight: bold;
    color: var(--text-color);
}
.edit-checkbox-inner {
    font-size: 14px;
    display: inline-block;
    padding: 1px 0px 0px 8px;
    color: var(--text-color);
}
.sub-text{
    font-size: 14px;
    color: var(--text-color);
    margin-top: 8px;
    line-height: 1.25em;
}
/*エディットタイトル*/
.myjob-edit-title {
    color: var(--main-color);
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.12em;
    border-bottom: 2px solid;
    padding: 0px 0px 0.5em;
}
.myjob-edit-title._nomember{
    background-color: none;
    border-bottom: 1px solid var(--border-color);
    padding: 16px;
    background-color: #fafafa;
}
/*select-box-inner矢印*/
.select-box-inner ._arrow-down.is-active{
    width: 6px;
    height: 6px;
    right: 10px;
    top: 50%;
    transform: translateY(calc(-50% - 2px));
    position: absolute;
    transition: all ease .3s;
}
.select-box-inner ._arrow-down:after{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-top: 2px solid;
    border-right: 2px solid;
    color: var(--main-color);
    transform: rotate(135deg);
}
/*写真初期アイコン*/
.photo_registration{
    position: relative;
}
.photo_registration .user-icon {
    font-size: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #777;
}

/* プロフィールパーツ */

.data-container {
    position: relative;
    border-bottom: 1px solid #bfbfbf;
    padding: 0 0 12px;
}
.data-container:last-child {
    border-bottom: initial;
}
.data-container+.data-container {
    padding-top: 12px;
    position: relative;
}
.data-head {
    font-size: 14px;
    font-weight: bold;
    border-left: 3px solid #08aaef;
    padding-left: 3px;
    padding: 4px 0 2px 5px;
}
.data-box._text {
    /* padding: 6px; */
    font-size: 14px;
    margin-top: 12px;
    padding-left: 8px;
}
#birthday-year,
#birthday-year-kanji,
#birthday-day {
    padding: 0 10px 0 0;
}
.data-box>img {
    width: 100%;
    height: 100%;
    object-fit: none;
    object-fit: scale-down;
}
.data-box._image {
    display: flex;
    flex-flow: wrap;
    gap: 12px;
    padding: 12px 0 0;
}
.image-contents {
    width: 80px;
    height: 80px;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    background-color: #ebedf0;
}
.image-contents>img {
    width: 100%;
    height: 100%;
    border-radius: 13px;
    object-fit: scale-down;
}

/* 共通ボタン */
.on-button {
    margin: 24px 24px 0px;
}
.on-button-inner{
    width: 100%;
    box-sizing: border-box;
    padding: 1.25em 0;
    text-align: center;
    background: var(--main-color);
    border-radius: 5px;
    color: #FFF;
    font-weight: bold;
    box-shadow: var(--content-shadow);
    font-size: 16px;
}
.on-button-inner._gradient,.button._gradient{
    background: radial-gradient(#0096ff, #7ccfff);
}
.on-button-inner._gradientGray,.button._gradientGray{
    background: radial-gradient(#898989, #9A9A9A);
}
.on-button-inner._attention,.button._attention{
    background: #ffc6c6;
    color: #555555;
}
/* ↓ 2026/01/29 */
.on-button-inner._gradientOrange,.button._gradientOrange{
    background: radial-gradient(#ff8c00, #ffa60085);
}
/* ↑ 2026/01/29 */

/* 切り替えメニューパーツ */

.card-list.menu-parts-in {
    display: block;
}
.select-menu-button {
    border: initial;
    width: 100%;
    background: #fff;
    box-sizing: border-box;
    display: flex;
    align-items: baseline;
    align-items: center;
}
.select-menu-button-inner {
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    width: 33.3%;
    color: #8b8b8b;
    background-color: #f5f5f5;
    font-size: 12px;
    font-weight: bold;
    padding: 6px;
    align-self: normal;
}

.select-menu-button-inner:first-child {
    padding: 0px 8px;
}
.select-menu-button-inner:last-child {
    border-right: initial;
}
.select-menu-button-inner.select-this {
    background-color: #fff;
    border-bottom: initial;
}
.buttons-text {
    text-align: center;
    padding: 8px;
}
.buttons-text.text-flex {
    display: flex;
    flex-direction: column;
}
.select-buttons-link {
    display: inline-block;
    width: 100%;
    height: 100%;
    color: #8b8b8b;
}
.select-buttons-link:last-child {
    border: initial;
}
.select-this>.select-buttons-link {
    color: #2eb8f1;
}
.data-profile {
    border: 1px solid var(--border-color);
    border-radius: 3px;
    width: 100%;
    background: #FFF;
    box-sizing: border-box;
    box-shadow: var(--content-shadow);
}
.data-profile-inner {
    padding: 20px 16px;
    background: #FFF;
}
@media screen and (max-width:320px) {
    .select-menu-button-inner:first-child {
        padding: 0px 4px;
    }
    .select-menu-button-inner {
        font-size: 10px;
        padding: 4px;
    }
}

/*チェックボックスモーダル*/
body.modal-open{
    overflow: hidden;
}
.js-checkboxModalOpen.is-selected{
    color: var(--text-color);
}
.checkbox-modal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
}
.checkbox-modal.is-active{
    display: block;
}
.checkbox-modal-back{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.checkbox-modal-body{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 32px);
}
.checkbox-modal-content{
    background-color: #fff;
    border-radius: 3px;
}
.checkbox-modal-head{
    border-bottom: 1px solid var(--border-color);
    padding: 16px;
}
.checkbox-modal-headtext{
    color: var(--main-color);
    font-weight: bold;
}
.checkbox-modal-list{
    max-height: 50vh;
    overflow-y: auto;
}
.checkbox-modal-item+.checkbox-modal-item{
    border-top:1px solid var(--border-color);
}
.modal-checkbox-label{
    display: flex;
    align-items: center;
    padding: 16px;
    gap:8px;
}


/* テキストモーダル */
.text-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
}

.text-modal.is-active {
    display: block;
}

.text-modal-back {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.text-modal-body {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 32px);
}

.text-modal-content {
    background-color: #fff;
    border-radius: 3px;
}

.text-modal-head {
    border-bottom: 1px solid var(--border-color);
    padding: 16px;
    line-height: 1;
}

.text-modal-headtext {
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    color: var(--main-color);
}

.text-modal-main {
    max-height: 50vh;
    padding: 16px;
    font-size: 14px;
    overflow-y: auto;
}

.text-modal-footer {
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
}

/* マイページ 共通プロフィール部品 */
.login-user-profile {
    display: flex;
    padding: 8px 16px;
    border-bottom: 1px solid #bfbfbf;
}

.login-user-icon {
    width: 64px;
    height: 64px;
    margin: 0 10px 0 0;
}

img.login-user-icon {
    border: 2px solid #33d5a7;
    border-radius: 40px;
    box-sizing: border-box;
    object-fit: contain;
}

.login-user-status {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    line-height: 20px;
    color: var(--text-color);
}

.login-user-names {
    font-size: 16px;
    font-weight: bold;
}

.login-user-id {
    padding: 0 0 0 5px;
    font-size: 12px;
    font-weight: initial;
}

.login-user-other-data {
    font-size: 12px;
}

/* ↓ 2025/12/08 */
/* 見出しパーツ */
div.hdg-02-container h2.hdg-02-11 {
    font-size: 15px;
    font-weight: bold;
}
/* ↑ 2025/12/08 */
