
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url(https://fonts.googleapis.com/css?family=Material+Icons|Material+Icons+Outlined|Material+Icons+Round|Material+Icons+Sharp|Material+Icons+Two+Tone);
@import url(https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20,100,0,0);

@charset "UTF-8";

:root {
	--main: #313745;
	--main-contrast: #ffffff;
	--accent: #C5F122;
	--accent-contrast: #434343;

    --cText: #313745; /* BASEテキスト、ヘッダ背景 */

    --cWh: #FFFFFF;
    --cBk: #000000;

    --cGyD: #555F61;
    --cGy: #8C979A;
    --cGyL: #C1C7C9;
    --cGyLL: #F2F3F4;

    --cRed: #E52020; /* 赤 */
    --cBlu: #003092; /* ブルー */
    --cPkD: #E50046; /* 濃いピンク */
    --cLm: #C5F122; /* ライム */
    --cLmD: #B3E10F; /* 濃いライム */
    --cEg: #37B7C3; /* エメラルド*/
}

*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

html {
    font-size: 62.5%;
    line-height: 1.4;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    margin: 0;
    color: var(--cText);
    font-size: min(1.6rem, 4vw);
    font-family: 'Noto Sans JP', 'Noto Sans', sans-serif;
    background: #f6f7f8;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
    margin: 0;
}
pre {
    font-family: 'Noto Sans JP', 'Noto Sans', sans-serif!important;
    font-weight: 400!important;
}

h1,h2,h3,h4,h5,h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
    border: none;
    max-width: 100%!important;
    vertical-align: middle;
}
ul ,
table {
    border-collapse:collapse;
    border-spacing: 0;
}
a {
	-webkit-transition: 0.5s;
	transition: 0.5s;
    outline: none;
    color: #0118D8;
    text-decoration: underline;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
}


input,
select,
textarea,
button {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: 'Noto Sans JP', 'Noto Sans', sans-serif;
    font-size: min(1.6rem, 4vw);
}
button {
    background: transparent;
    cursor: pointer;
}
button:focus {
	outline: 0;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

::placeholder {
    color: var(--cGyL);
}

@media screen and (min-width: 639px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}







/* --------------------------------------------- */
.container {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
}

@media screen and (max-width: 1024px) {
    .container {
        padding-bottom: 52px;
    }
}





/* --------------------------------------------- */
.loginWrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 100%;
    background: var(--main);
}
.login {
    padding: 10% 16px;
    width: clamp(360px, 50vw, 450px);
    min-height: 100vh;
}
.login .app-logo {
    display: block;
    margin: 0 auto clamp(32px, 5vw, 64px) auto;
    width: clamp(200px, 30vw, 300px);
}
.login__input {
    margin: 0;
    padding: 24px 24px;
    background: #f6f7f8;
    border-radius: 24px;
}



/* --------------------------------------------- */
/* ナビ menu */
.gMenuWrap {
    position: sticky;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    background: var(--main);
    z-index: 9999999;
}
.gMenu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0 24px;
    height: min(62px, 13vw);
    color: var(--cWh);
}
.gMenu h1 ,
.gMenu h1 a ,
.gMenu h1 a img {
    margin: 0;
    padding: 0;
    height: 30px;
}
.gMenu__btnCp {
    display: flex;
    flex-direction: column;
    align-content: space-between;
    margin: 0;
    padding: 5px 12px;
    background: #00000066;
    border-radius: 5px;
}
.gMenu__btnCp--name {
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.gMenu__btnCp--manager {
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
}
.gMenu__btnCp--manager > span {
    margin: 0 8px 0 0;
    padding: 0 5px 1px 5px;
    font-size: .75em;
    background: #37B7C3;
    border-radius: 2px;
}
.gMenu > button {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    color: var(--cWh);
    line-height: 1;
    font-size: min(1.4rem, 2.5vw);
    white-space: nowrap;
}
.gMenu > button::before {
    margin-right: 3px;
    font-family: "Material Icons";
    font-size: min(2rem, 10vw);
}
.gMenu__logo::before {
}
.gMenu__dash::before {
    content: "\e871";
}
.gMenu__cp::before {
    content: "\e0af";
}
.check_circle_icon::before {
    content: "\e86c";
}
.confirmation_number_icon::before {
    content: "\e638";
}
.verified_off_icon::before {
    content: "\f30e";
}
.add_reaction_icon::before {
    content: "\e1d3";
}
.add_icon::before {
    content: "\e145";
}
.add_circle_icon::before {
    content: "\e147";
}
.article_icon::before {
    content: "\ef42";
}
.groups_icon::before {
    content: "\f233";
}
.table_view_icon::before {
    content: "\f1be";
}
.more_vert_icon::before {
    content: "\e5d4";
}
.profile_icon::before {
    content: "\e7fd";
}
.profile_img_icon::before {
    content: "\e851";
}
.contact_icon::before {
    content: "\e158";
}
.verified_icon::before {
    content: "\ef76";
}
.calendar_icon::before {
    content: "\ebcc";
}
.piggy_bank_icon::before {
    content: "\e2eb";
}
.book_icon::before {
    content: "\e0e0";
}
.menu_icon::before {
    content: "\ea20";
}
.video_icon::before {
    content: "\e064";
}
.video_shop_icon::before {
    content: "\e8ca";
}
.event_available_icon::before {
    content: "\e614";
}
/* .massage_icon::before {
    content: "\f2c2";
} */
/* .massage_icon::before {
    content: "\f2c2";
} */
/* .massage_icon::before {
    content: "\f2c2";
} */
/* .massage_icon::before {
    content: "\f2c2";
} */
/* .massage_icon::before {
    content: "\f2c2";
} */
/* .massage_icon::before {
    content: "\f2c2";
} */
.gMenu__nortice::before {
    content: "\ef49";
}
.gMenu__inquiry::before {
    content: "\e163";
}
.gMenu__entry::before {
    content: "\e168";
}
.gMenu__account::before {
    content: "\e7fd";
}
.gMenu__others::before {
    content: "\e5d3";
}
.gMenu__logout::before {
    content: "\e9ba";
}
@media screen and (max-width: 1024px) {
    .gMenuWrap {
        position: fixed;
        top: auto;
        bottom: 0;
    }
    .gMenu {
        margin: 0;
        padding: 0;
    }
    .gMenu > button {
        display: block;
        flex-wrap: nowrap;
        justify-content: center;
        margin: 0;
        padding: 0;
        color: var(--cWh);
        width: 16.66666667%;
        line-height: 1;
    }
    .gMenu > button::before {
        display: block;
        margin-bottom: 4px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        font-family: "Material Icons";
    }
    .gMenu__logo::before {
        display: block!important;
        content: url(../images/icon-logo.svg);
        margin: 0 5px;
        padding: 0;
        width: 13px!important;
    }
}



/* -------------------- */
.oMenuWrap {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
	height: 100%;
    background: var(--main);
    transition: right 0.5s ease-in-out;
    z-index: 999999;
}
.oMenuWrap.active {
    right: 0 !important;
}
.oMenu {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    margin-top: 50px;
    height: 100%;
    color: var(--cWh);
    gap: 16px;
}

.oMenu > button {
    position: relative;
    display: flex;
    align-items: center;
    padding: 12px 16px;
    width: 100%;
    color: var(--cWh);
    font-size: 1.4rem;
    white-space: nowrap;
    background: transparent;
    text-align: left;
    gap: 5px;
}

.oMenu > button::before {
    font-family: "Material Icons";
    font-size: 2rem;
    line-height: 1;
    margin-left: 10px;
}

.oMenu__inquiry::before {
    content: "\e163";
}
.oMenu__cp::before {
    content: "\e0af";
}
.logout_icon::before {
    content: "\e9ba";
}
.oMenu__close {
    position: absolute;
	color: white;
    top: 10px;
    left: 18px;
}
.oMenu__close::after {
    color: var(--cWh);
    content: "\e5cc";
    font-family: "Material Icons";
    font-size: 3rem;
    pointer-events: none;
}






/* ----------------------------- */
@media screen and (max-width: 1024px) {
.hiddenSp { display: none !important; }
}
@media screen and (min-width: 1024px) {
.hiddenPc { display: none !important; }
}






/* ----------------------------- */
/* メーン */
main {
    margin: 0;
    padding: 0;
    width: 100%;
}
/* @media screen and (max-width: 1024px) { */
/*     main { */
/*         padding-bottom: 52px; */
/*     } */
/* } */





/* タイトル */
.pTitle {
    margin: 0;
    padding: 0;
}
.pTitle {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.pTitle__title--title {
    margin: 0;
    padding: 0;
    font-size: clamp(2.0rem, 3.0vw, 4.0rem);
    font-weight: 600;
}
.pTitle__title--eng {
    display: block;
    margin: 8px 0 0 0;
    font-size: clamp(1.1rem, 2.2vw, 2.475rem);
    padding: 0;
    font-weight: 600;
}
.pTitle__title--text {
    display: block;
    margin: 8px 0 0 0;
    padding: 0;
    font-weight: 600;
}
.pTitle .btn {
    margin-top: -5px;
    width: 200px;
	height: 40px !important;
}
@media screen and (max-width: 639px) {
    .pTitle .btn {
        width: 125px;
        height: 16px;
    }
}

/* サブタイトル */
.sTitle {
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: left;
}
.sTitle.borderBottom {
    border-bottom: solid 1px var(--cGyL);
}

.sTitle__title {
    display: block;
    margin: 0;
    padding: 0 0 0 8px;
    color: var(--cBk);
    font-size: min(1.8rem, 4.5vw);
    font-weight: 600;
    border-left: solid 3px var(--cBk);
}
.sTitle__lead {
    margin: 0;
    padding: 0;
    font-size: min(1.4rem, 3.5vw);
}






/* ----------------------------- */
.upperArea {
    margin: 0;
    padding: 0;
    width: 100%;
    background: #FFFFFF;
    position: relative;
}

.ua {
    margin: 0 auto;
    padding: clamp(11px, 2vw, 40px) clamp(16px, 4vw, 40px);
    max-width: 1000px;
    background: #FFFFFF;
}

.ua .sTitle {
    margin-top: clamp(24px, 4vw, 32px);
}

.ua__close {
    display: block;
    margin: -8px -8px 0 auto;
    line-height: 1;
}
.ua__close::after {
    content: "\e5cd";
    font-family: "Material Symbols Outlined";
    font-size: 3em;
}



/* ----------------------------- */
.contents {
    margin: 0 auto;
    padding: clamp(10px, 2vw, 56px) clamp(16px, 4vw, 40px);
    max-width: 1000px;
}















/* --------------------------------------------- */
.dashbord {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    margin: 0;
    padding: 0;
}
.dashbord__item {
    position: relative;
    margin: 0;
    padding: 24px;
    width: calc(50% - 8px);
    background: var(--cWh);
    border-radius: 16px;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 639px) {
    .dashbord__item {
        width: 100%;
    }
}
.dashbord__item a {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.dashbord__item--title {
    margin: 0;
    padding: 0;
    font-size: 1.8rem;
    font-weight: 600;
}
.dashbord__item--title span {
    display: block;
    margin: 0 0 4px 0;
    padding: 0;
    color: var(--cEg);
    font-size: .75em;
    font-weight: 600;
}
.dashbord__item--msg {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: flex-end;
    margin: 8px 0 0 0;
    padding: 0;
    gap: 16px;
    text-align: right;
    font-weight: 300;
}
.dashbord__item--msg > p {
    display: inline-block;
    color: var(--cGyD);
    font-size: 1.4rem;
    font-weight: 400;
}
.dashbord__item--msg > p.unread {
    margin: 0;
}
.dashbord__item--msg > p.unread::before {
    position: relative;
    top: 3px;
    left: 0px;
    content: "\e061";
    color: var(--cRed);
    font-family: "Material Icons";
    font-size: 1.2em;
    animation: blink 1.5s linear infinite;
}
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}
.dashbord__item--msg p .num {
    margin: 0 4px;
    color: var(--main);
    font-size: 2.5rem;
    font-weight: 400;
}
.dashbord__item--msg p .num2 {
    font-size: 2rem;
    font-weight: 600;
}
.dashbord__item--msg p .name {
    margin: 0 4px;
    color: var(--main);
    font-size: 2.5rem;
    font-weight: 400;
}








/* ----------------------------- */
/* 絞り込み */
.narrowDown {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 12px;
    margin: 0 0 24px 0;
    padding: 0 0 24px 0;
    border-bottom: solid 1px var(--cGyL);
}
.narrowDown > div ,
.narrowDown > button {
    margin: 0;
    padding: 0;
    width: calc(33.3333% - 8px);
}
@media screen and (max-width: 480px) {
    .narrowDown > div {
        margin: 0;
        padding: 0;
        width: calc(50% - 8px);
    }
    .narrowDown > button {
        margin: 0;
        padding: 0;
        width: 100%;
    }
}
.narrowDown__clear{
    display: block;
    width: 100%!important;
    color: #0118D8;
    text-align: center;
    font-size: 1.4rem;
}


.noNarrowDownFound {
    display: block;
    position: relative;
    margin: 64px auto 64px auto;
    padding: 24px 0;
    max-width: 500px;
    text-align: center;
    background: var(--cWh);
    border-radius: 16px;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
}
.noNarrowDownFound b {
    display: block;
    margin: 0 0 8px 0;
    font-size: 2.5rem;
}
.noNarrowDownFound button {
    display: block;
    margin: 12px auto 0 auto;
    color: #0118D8;
}



/* ----------------------------- */
/* datepickerのarrow */
.numInputWrapper span {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 9999;
}
.numInputWrapper {
    position: relative;
    top: -1px;;
    margin-right: 12px;
}
.numInputWrapper .arrowUp,
.numInputWrapper .arrowDown {
    position: absolute;
    right: -7px;
}
.flatpickr-time input {
  user-select: text !important;
}




/* ----------------------------- */
/* お知らせ一覧 */
.noticeList {
    margin: 0;
    padding: 0 0 16px 0;
    overflow: auto;
}
.noticeList ul {
    margin: 0;
    padding: 0;
    width: 100%;
    font-size: clamp(1.4rem, 1.5vw, 1.6rem);
}
.noticeList ul li {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 0 0 16px 0;
    padding: 0 0 16px 0;
    width: 100%;
    border-bottom: solid 1px var(--cGyL);
}
.noticeList ul li a {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.nl__important {
    margin: 0 2em 0 0;
    padding: 1px 8px 2px 8px;
    width: 8em;
    text-align: center;
    font-size: 1.4rem;
    white-space: nowrap;
    color: var(--cRed);
    border: solid 1px var(--cRed);
    border-radius: 2px;
}
.nl__important.read {
    background: var(--cWh);
    opacity: .2;
}
.nl__date {
    position: relative;
    margin: 0 2em 0 0;
    width: 5em;
    text-align: right;
    font-size: 1.4rem;
}
.nl__date span {
    display: block;
    color: var(--cGy);
    font-size: 1.4rem;
    font-weight: 600;
}
@media screen and (max-width: 1023px) {
    .nl__date span {
        display: inline;
        margin-left: 8px;
    }
}
.nl__title {
    margin: 0;
    padding: 0;
    width: calc(100% - 19em);
}
@media screen and (max-width: 1023px) {
    .nl__title {
        margin-top: 8px;
        width: 100%;
    }
}


/* ----------------------------- */
/* お知らせ アイテム */
.noticeItem {
    margin: 0;
    padding: 0;
}
.noticeItem__img {
    margin: 0 0 16px 0;
    padding: 0;
    max-width: 750px;
}
.noticeItem__lead {
    margin: 0 0 8px 0;
    padding: 0;
    font-size: 1.6rem;
    font-weight: 600;
}
.noticeItem__text {
    margin: 0 0 8px 0;
    padding: 0;
    font-size: 1.4rem;
    white-space: pre-wrap;
}






/* ----------------------------- */
/* 表示件数 */
.dispNum {
    display: flex;
    margin: 0 0 10px 0;
    padding: 0 0 0 8px;
}
.dispNum__all {
    margin: 0;
    padding: 0;
}
.dispNum__all::before {
    content: '全';
    margin-right: 3px;
    font-size: .75em;
    font-weight: 600;
}
.dispNum__all::after {
    content: '件';
    margin-left: 3px;
    font-size: .75em;
    font-weight: 600;
}
.dispNum__to {
    margin: 0 0 0 12px;
    padding: 0;
}
.dispNum__to span:first-child {
    margin: 0;
    padding: 0;
}
.dispNum__to span:first-child::after {
    position: relative;
    top: -1px;
    margin-left: 4px;
    content: '〜';
    font-size: .75em;
    font-weight: 600;
}

.dispNum__to span:last-child {
    margin: 0;
    padding: 0;
}
.dispNum__to span:last-child::after {
    content: '件を表示';
    margin-left: 3px;
    font-size: .75em;
    font-weight: 600;
}



/* ----------------------------- */
/* 求人一覧 */
.jobList {
    margin: 0;
    padding: 0 0 16px 0;
    overflow: auto;
}
.jobList table {
    margin: 0;
    padding: 0;
    width: 100%;
    font-size: clamp(1.4rem, 1.5vw, 1.6rem);
}
@media screen and (max-width: 1024px) {
    .jobList table {
        width: 150%;
    }
}
@media screen and (max-width: 639px) {
    .jobList table {
        width: 225%;
    }
}
.jobList table tr {
    margin: 0;
    padding: 0;
    border: solid 1px var(--cGyLL);
}
.jobList table tr:nth-child(even) {
    background: var(--cWh);
}
.jobList table tr:nth-child(odd) {
    background: var(--cGyLL);
}
.jobList table tr th {
    position: relative;
    margin: 0;
    padding: 12px;
    gap: 4px;
    text-align: center;
    white-space: nowrap;
    background: var(--cGyL);
}
.jobList table tr th::after {
    position: absolute;
    right: 0;
    top: 15%;
    content: '';
    background: #8C979ACC;
    width: 1px;
    height: 70%;
}
.jobList table tr th:last-child::after {
    width: 0;
}
.jobList table tr th p {
}
.jobList table tr th button {
    position: relative;
    padding: 0 8px;
    color: #0118D8;
    font-size: 1.2rem;
}
.jobList table tr th button::after {
    position: absolute;
    right: 0;
    top: 15%;
    content: '';
    background: #8C979ACC;
    width: 1px;
    height: 70%;
}
.jobList table tr th button:last-child::after {
    width: 0;
}

.jobList table tr td {
    margin: 0;
    padding: 24px 12px;
}
.jobList table tr td:first-child > a {
    text-decoration: none;
}
.jobList table tr td:first-child > a:after {
    position: relative;
    top:2px;
    content: "\e89e";
    font-family: "Material Icons";
}
.jobList table tr td:first-child {
    text-align: center;
    white-space: nowrap;
}
.jobList table tr td:nth-child(4) {
    width: 35%
}
.jobList table tr td:nth-child(2) > p:first-child ,
.jobList table tr td:nth-child(3) > p:first-child ,
.jobList table tr td:nth-child(5) > p:first-child {
    font-size: 1.4rem;
}
.jobList table tr td:nth-child(2) > p:last-child ,
.jobList table tr td:nth-child(3) > p:last-child ,
.jobList table tr td:nth-child(5) > p:last-child {
    color: var(--cGy);
    font-size: 1.2rem;
    font-weight: 600;
}
.jobList table tr td:nth-child(6) {
    text-align: center;
    white-space: nowrap;
}


/* ----------------------------- */
/* 応募一覧 */
/* reception */
.rspList {
    margin: 0;
    padding: 0 0 16px 0;
    overflow: auto;
}
.rspList table {
    margin: 0;
    padding: 0;
    width: 100%;
    font-size: clamp(1.4rem, 1.5vw, 1.6rem);
}
@media screen and (max-width: 639px) {
    .rspList table {
        /* width: 160%; */
    }
}
.rspList table tr {
    margin: 0;
    padding: 0;
    border: solid 1px var(--cGyLL);
}
.rspList table tr:nth-child(even) {
    background: var(--cWh);
}
.rspList table tr:nth-child(odd) {
    background: var(--cGyLL);
}
.rspList table tr th {
    position: relative;
    margin: 0;
    padding: 12px;
    white-space: nowrap;
    background: var(--cGyL);
}
.rspList table tr th::after {
    position: absolute;
    right: 0;
    top: 15%;
    content: '';
    background: #8C979ACC;
    width: 1px;
    height: 70%;
}
.rspList table tr th:last-child::after {
    width: 0;
}
.rspList table tr th p {
}
.rspList table tr th button {
    position: relative;
    padding: 0 8px;
    color: #0118D8;
    font-size: 1.2rem;
}
.rspList table tr th button::after {
    position: absolute;
    right: 0;
    top: 15%;
    content: '';
    background: #8C979ACC;
    width: 1px;
    height: 70%;
}
.rspList table tr th button:last-child::after {
    width: 0;
}

.rspList table tr td {
    margin: 0;
    padding: 24px 12px;
}
.rspList table tr th:first-child ,
.rspList table tr td:first-child ,
.rspList table tr th:nth-child(2) ,
.rspList table tr td:nth-child(2) ,
.rspList table tr th:last-child ,
.rspList table tr td:last-child {
    width: 120px;
}

.rspList table tr td:first-child > p:first-child {
    font-size: 1.4rem;
}
.rspList table tr td:first-child > p:last-child {
    color: var(--cGy);
    font-size: 1.2rem;
    font-weight: 600;
}
.rspList table tr th:last-child ,
.rspList table tr td:last-child {
    width: 125px;
    text-align: center;
}




/* ----------------------------- */
/* 動画一覧 */
.movList {
    margin: 0;
    padding: 0 0 16px 0;
    overflow: auto;
}
.movList__delete {
    position: sticky!important;
    top: 75px!important;
    display: block!important;
    margin: 0 0 24px auto!important;
    padding: 0;
    width: auto!important;
    z-index: 999;
}
@media screen and (max-width: 639px) {
    .movList__delete {
        top: 16px!important;
    }
}
.movList ul {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 0;
    padding: 0;
    width: 100%;
}
@media screen and (max-width: 639px) {
    .movList ul {
        gap: 24px 16px;
    }
}
.movList ul li {
    position: relative;
    margin: 0;
    padding: 0;
    width: calc(25% - 18px);
    border-radius: 16px;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
}
@media screen and (min-width: 640px) and ( max-width: 1023px) {
    .movList ul li {
        width: calc(33.3333% - 18px);
    }
}
@media screen and (max-width: 639px) {
    .movList ul li {
        width: calc(50% - 8px);
    }
}

.movList ul li.registering {
}
.movList ul li.registering::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 100%;
    text-align: center;
    content: '登録中';
    color: var(--cEg);
    font-size: 2.5rem;
    letter-spacing: .2em;
    z-index: 9999;
    animation: blink 2s linear infinite;
}
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}
.movList ul li.registering > img ,
.movList ul li.registering > .movList__desc {
    opacity: .2;
    pointer-events: none;
}
.movList ul li.private {
}
.movList ul li.private::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 100%;
    text-align: center;
    content: '非公開';
    color: var(--cEg);
    font-size: 2.5rem;
    letter-spacing: .2em;
    z-index: 9999;
}
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}
.movList ul li.private > img {
    opacity: .2;
}
.movList ul li .cbTypeB {
    position: absolute;
    top: 12px;
    right: 12px;
    border: solid 1px var(--cWh);
    border-radius: 2px;
}
.movList ul li img {
    margin: 0 0 0 0;
    padding: 0;
    border-radius: 16px
}
.movList__desc {
    position: absolute;
    left: 0;
    bottom: 0;
    margin: 0;
    padding: 8px;
    width: 100%;
    background: #FFFFFFB3;
    border-radius: 0 0 16px 16px;
}
@media screen and (max-width: 639px) {
    .movList__desc {
        padding: 8px;
    }
}
.movList__desc--no {
    margin: 0 0 4px 0;
    padding: 0;
    font-size: 1.4rem;
    font-weight: 600;
}
.movList__desc--title {
    margin: 0 0 min(8px, 12px) 0;
    padding: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}





/* ----------------------------- */
/* 動画詳細 */
.movDetail {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0;
    padding: 0;
}
.movDetail__item {
    margin: 0 0 24px 0;
    padding: 0;
    width: calc(50% - 16px);
    text-align: center;
}
@media screen and (max-width: 639px) {
    .movDetail__item {
        margin: 0 0 24px 0;
        width: 100%;
    }
}
.movDetail__item video {
    margin: 0;
    padding: 0;
    width: 100%;
    border-radius: min(24px, 2vw);
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
}







/* ----------------------------- */
/* 動画を選ぶボタン */
.movSelectBtn {
    position: relative;
    margin: 0 auto;
    padding: 0;
}
.movSelectBtn button {
    position: relative;
    text-align: center;
    font-size: 1.8rem;
}
.movSelectBtn button::before {
    display: block;
    content: "\e02c";
    font-family: "Material Icons";
    margin: 0 0 12px 0;
    padding: 16px;
    color: #000000;
    font-size: 7rem;
    line-height: 1;
    background: var(--cLm);
    border-radius: 50%;
}






.selectedMov {
    position: relative;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    text-align: center;
}
@media screen and (max-width: 639px) {
    .selectedMov .sTitle__lead {
        margin-top: 32px;
    }
}

.selectedMov video {
    margin: 24px 0 0 0;
    max-width: 250px;
    border-radius: min(24px, 2vw);
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
}
.selectedMov > button {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
}











/* ----------------------------- */
/* ページネーション */
.pagination {
}
.pagination ol {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 4px;
    padding: 0;
}
.pagination ol li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2em;
    height: 2em;
    border-radius: 5px;
    background: var(--cGyLL);
    color: var(--main);
}
.pagination ol li a:not(:hover) {
    text-decoration: none;
}
.pagination ol li.current a {
    background: var(--main);
    color: #FFFFFF;
    pointer-events: none;
}
.pagination ol li.omission {
}
.pagination ol li.omission::after {
    content: "\e5d3";
    font-family: "Material Icons";
}





/* -------------------- */
/* モーダル */
.modal00 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999999;
}
.modal00-bg {
    position: absolute;
    height: 100vh;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
}
body.mdlFixed {
    position: fixed;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: scroll!important;
}
.modal00-content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 16px;
    max-width: 3000px;
    height: 100%;
    overflow: auto;
}
/* modal00-content__desc */
.mdlctt__desc {
    margin: 0 auto 0 auto;
    padding: 16px 16px;
    width: 100%;
    max-height: 80vh;
    max-width: 3000px;
    background: var(--cWh);
    border-radius:32px;
    overflow: auto;
    z-index: 9;
}
@media screen and (max-width: 768px) {
	.modal00-content {
		padding-top: 0px;
		padding-bottom: 100px;
	}
}

@media screen and (min-width: 639px) {
    .mdlctt__desc {
        padding: 32px 32px;
        max-width: 550px;
    }
}
.mdlctt__desc--closeInUR { /* closeBtn inner upper right */
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 1.5rem;
}
.mdlctt__desc--closeInUR::before {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: "Material Icons";
    content: "\e5cd";
    font-size: min(2.5rem, 8vw);
}
.mdlctt__desc--closeInBC { /* closeBtn inner bottom center */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0 auto;
    font-size: 1.5rem;
}
.mdlctt__desc--closeInBC::before {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: "Material Icons";
    content: "\e5cd";
    font-size: min(2.5rem, 8vw);
}
.mdlctt__desc--mov {
    display: block;
    margin: 0 auto;
    width: 80%;
}
.mdlctt__desc--img {
    display: block;
}
.mdlctt__desc--title {
    text-align: left;
    font-size: 1.8rem;
    font-weight: 700;
}
.mdlctt__desc--lead {
    text-align: left;
    font-size: 1.6rem;
}
.mdlctt__desc--text {
    text-align: left;
    font-size: 1.4rem;
}
.mdlctt__desc--title.center ,
.mdlctt__desc--lead.center ,
.mdlctt__desc--text.center {
    text-align: center;
}











/* -------------------- */
/* 別枠 separateFrame */
.spfmWrap {
    width: 100%;
}
.spfm {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 0 0;
    padding: clamp(16px, 2.75vw, 24px);
    gap: 24px;
    width: 100%;
    background: #EEEEEE;
    border-radius: 16px;
    z-index: 1;
}
.spfm.half {
    width: calc(50% - 12px);
}
.spfm.oneThird {
    width: calc(33.3333% - 18px);
}
@media screen and (max-width: 639px) {
    .spfm.half {
        width: 100%;
    }
    .spfm.oneThird {
        width: 100%;
    }
}












/* -------------------- */
/* アップローダー */
.post__uploader {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 0 0 0;
    padding: 16px;
    width: 100%;
    color: var(--cBk);
    text-align: left;
    background: #FFFFFF;
    border-radius: 8px;
}
#fileLabel {
    display: inline-block;
    margin: 0 8px 0 0;
    padding: 6px 16px 8px 16px;
    width: 120px;
    color: #FFFFFF;
    font-size: 1.2rem;
    background: var(--cBk);
    border: 0;
    border-radius: 50px;
    text-align: center;
}
#fileName {
    width: calc(100% - 128px);
    pointer-events: none;
    font-size: 1.4rem;
}
#fileInput {
    display: none;
}
#dropArea {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 16px 0 0 0;
    padding: 0;
    width: 100%;
    min-height: 250px;
    background: #F5F5F5;
    border: solid 1px #EEEEEE;
    border-radius: 8px;
    cursor: pointer;
}
#dropArea.hover {
    background: #9982F21A;
}
#dropArea span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 100%;
    text-align: center;
}
#dropArea span::before {
    display: block;
    font-family: "Material Icons";
    content: "\e9fc";
    color: var(--cBk);
    margin-bottom: 12px;
    line-height: .75;
    font-size: 5rem;
}
#filePreview {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 8px;
    height: 100%;
    width: 100%;
    text-align: center;
    display: none;
}
#filePreview img {
    margin: 0 auto;
    border-radius: 8px;
}
.post__uploader--suppl {
    margin: 12px 0 0 0;
    padding: 0;
    color: #000000;
    text-align: left;
    font-size: 1.2rem;
}

/* 複数アップロード */
.drop-area {
    position: relative;
    padding: 24px;
    cursor: pointer;
}
.drop-message {
    font-size: 1.4rem;
}
.file-preview {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: min(16px, 3vw);
    padding: 8px;
    width: 100%;
}

.preview-item {
    position: relative;
    display: inline-block;
    width: 100%;
}
.preview-item.max1file {
    padding: min(24px, 2vw);
    width: 100%;
}
.preview-item.max5file {
    width: calc(20% - 20px);
}
@media screen and (max-width: 639px) {
    .preview-item.max1file {
        padding: 16px;
        width: 80%;
    }
    .preview-item.max5file {
        width: calc(33.3333% - min(16px, 2vw));
    }
}
.preview-item img ,
.preview-item video {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: min(16px, 2vw);
}

.preview-deleteFile {
    position: absolute;
    cursor: pointer;
    z-index: 9999;
}
.preview-deleteFile.file1 {
    top: 8px;
    right: 8px;
}
.preview-deleteFile.file5 {
    top: min(8px, 1vw);
    right: min(8px, 1vw);
}
.preview-deleteFile::after {
    content: "\e5c9";
    font-family: "Material Icons";
    color: var(--cEg);
    font-size: 2.5rem;
    background: var(--cWh);
    border-radius: 50px;
}
.preview-deleteFile.file1::after {
    font-size: 3.5rem;
}
.preview-deleteFile.file5::after {
    font-size: min(2.5rem, 5.5vw);
}
















/* -------------------- */
.inputFieldWrap {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    gap: 10px;
    width: 100%;
}

/* 入力エリア */
.inputField {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
}
.inputField.half {
    width: calc(50% - 12px);
}
.inputField.oneThird {
    width: calc(33.3333% - 18px);
}
@media screen and (max-width: 639px) {
    .inputField.half {
        width: 100%;
    }
    .inputField.oneThird {
        width: 100%;
    }
}

/* 入力エリア */
.inputField.innerHalf {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.inputField.innerHalf > * {
    width: calc(50% - 8px);
}




.inputField.center   {
    margin: 0 auto;
}
.inputField.unitKara::after {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translateY(-70%) translateX(-50%);
    content: "〜";
    font-size: 1.2rem;
}

    /* 入力チェック */
    .inputField__check {
        position: relative;
        display: block;
        margin: 0 0 8px 0;
        padding: 8px 16px 16px 16px;
        width: 100%;
        text-align: left;
        font-size: min(1.6rem, 4vw);
        border-bottom: solid 1px var(--cGyL);
    }
    .inputField__check > p {
        margin: 0 0 8px 0;
    }
    .inputField__check > p:last-child {
        margin: 0 0 0 0;
    }
    .inputField__check img {
        display: inline-block;
        margin: 0 4px 8px 0;
        width: 135px;
        border-radius: 4px;
    }



/* テキスト */
.textInput {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
}
.textInput input {
    position: relative;
    margin: 0;
    padding: 0 1em;
    width: 100%;
    height: 40px;
    font-size: 1.4rem;
    background: #FFFFFF;
    border: solid 1px var(--cWh);
    border-radius: 12px;
    transition: 0.5s;
}
.textInput input:focus {
    outline: none;
    border: solid 1px var(--cGy);
}
.textInput input:disabled {
    background: var(--cGyLL);
    border: solid 1px var(--cPri);
    cursor: not-allowed;
}
.textInput .unit {
    position: absolute;
    top: 45%;
    right: 12px;
    transform: translateY(-45%);
    font-size: min(1.4rem, 3.5vw);
}


/* セレクト */
.selectboxInput {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
}
.selectboxInput::after {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    -webkit- transform: translateY(-50%);
    font-family: "Material Icons";
    content: "\e5c5";
    font-size: 2rem;
    pointer-events: none;
}
.selectboxInput select {
    margin: 0;
    padding: 0 2em 0 1em;
    width: 100%;
    height: 40px;
    background: var(--cWh);
    font-size: 1.4rem;
    border-radius: 12px;
}






/* -------------------- */
/* チェックボックス テキスト付き */
.cbTypeA {
    border: none;
    margin-inline: 0;
    padding-block: 0 0;
    padding-inline: 0;
    width: auto;
}
    .cbTypeA.vertical { /* 縦並び */
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .cbTypeA.horizontal { /* 横並び */
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
    }
.cbTypeA label {
    position: relative;
    display: flex;
    align-items: center;
    white-space: nowrap;
    position: relative;
    gap: 8px;
    width: auto;
    cursor: pointer;
}
.cbTypeA label::before {
    content: '';
    display: block;
    transition: 0.5s;
    min-width: 20px;
    height: 20px;
    border-radius: 8px;
    background: var(--cGyL);
}
.cbTypeA label::before {
    background: var(--custom-color, var(--cGyL));
}
.cbTypeA label:has(:checked)::before {
    background: var(--custom-color, var(--cEg));
}
.cbTypeA label:has(:checked)::after {
    position: absolute;
    top: calc(50% - 7px);
    left: 7px;
    transform: rotate(40deg);
    width: 6px;
    height: 11px;
    border: solid var(--cWh);
    border-width: 0 2px 2px 0;
    content: '';
    transition: 0.5s;
}
.cbTypeA label:has(:disabled)::before {
    cursor: not-allowed!important;
    opacity: .3;
}
.cbTypeA span {
    white-space: normal!important;
}
.cbTypeA input {
    display: none;
}








/* -------------------- */
/* チェックボックスのみ */
.cbTypeB {
    display: inline-block;
    margin-inline: 0;
    padding-block: 0 0;
    padding-inline: 0;
    gap: .5em 2em;
    margin: 0 auto;
    border: none;
}
.cbTypeB label {
    display: flex;
    align-items: center;
    gap: 0 .5em;
    white-space: nowrap;
    position: relative;
    cursor: pointer;
}
.cbTypeB label::before,
.cbTypeB label:has(:checked)::after {
    content: '';
    transition: 0.5s;
}
.cbTypeB label::before {
    width: 20px;
    height: 20px;
    border-radius: 2px;
    background: var(--cGyL);
}
.cbTypeB label:has(:checked)::before {
    background: var(--cEg);
}
.cbTypeB label:has(:checked)::after {
    position: absolute;
    top: 3px;
    left: 7px;
    transform: rotate(40deg);
    width: 6px;
    height: 11px;
    border: solid var(--cWh);
    border-width: 0 2px 2px 0;
}
.cbTypeB label:has(:disabled)::before {
    background: var(--cEg);
    cursor: default!important;
}
.cbTypeB label:has(:disabled)::after {
    position: absolute;
    top: 3px;
    left: 7px;
    transform: rotate(40deg);
    width: 6px;
    height: 11px;
    border-width: 0 2px 2px 0;
    cursor: default!important;
}
.cbTypeB input {
    display: none;
}


/* -------------------- */
/* ラジオボタン */
.radioTypeA {
    border: none;
    margin-inline: 0;
    padding-block: 0 0;
    padding-inline: 0;
    width: auto;
}
    .radioTypeA.vertical { /* 縦並び */
        display: flex;
        flex-direction: column;
        gap: 1em 2em;
    }
    .radioTypeA.horizontal { /* 横並び */
        display: flex;
        flex-wrap: wrap;
        gap: .5em 1.25em;
    }

.radioTypeA label {
    display: flex;
    align-items: center;
    gap: 0 .5em;
    position: relative;
    height: 40px;
    cursor: pointer;
}
.radioTypeA label::before,
.radioTypeA label:has(:checked)::after {
    border-radius: 50%;
    content: '';
}
.radioTypeA label::before {
    width: 22px;
    height: 22px;
    background: var(--cGyLL);
}
.radioTypeA label:has(:checked)::after {
    position: absolute;
    top: 50%;
    left: 11px;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--cPri);
    animation: anim-radio-1 .3s linear;
}
.radioTypeA label:has(:disabled)::before {
    background: var(--color-inputBgDisabled);
    border: solid 1px var(--color-disabledBorder);
    cursor: not-allowed;
}
.radioTypeA label:has(:disabled)::after {
    position: absolute;
    top: 50%;
    left: 11px;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--color-inputColorDisabled);
    animation: anim-radio-1 .3s linear;
    cursor: not-allowed;
}
@keyframes anim-radio-1 {
    0% {
        box-shadow: 0 0 0 1px transparent;
    }
    50% {
        box-shadow: 0 0 0 10px  var(--cGyL);
    }
    100% {
        box-shadow: 0 0 0 10px transparent;
    }
}
.radioTypeA input {
    display: none;
}


/* テキスト(文章)入力エリア */
.textareaInput {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
}
.textareaInput textarea {
    display: block;
    margin: 0;
    padding: .5em;
    width: 100%;
    height: 100px;
    background: #FFFFFF;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.5;
    border: solid 1px var(--cWh);
    border-radius: 12px;
    transition: 0.5s;
}
.textareaInput textarea:focus {
    outline: none;
    border: solid 1px var(--cGy);
}



/* アップローダー */
.ddUploader {
    margin: 0;
    padding: 0;
    background: var(--cGyLL);
    border-radius: 4px;
}
.ddUploader label {
    display: inline-block;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
}
.ddUploader label::after {
    display: block;
    content: 'こちらをクリック、タップまたはドラッグ＆ドロップにて\A顔写真（画像ファイル）を添付してください。';
    white-space: pre;
    line-height: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    margin: 0 auto;
    width: 100%;
    font-size: min(16px, 3.33333333333333vw);
}
.ddUploader label::before {
    display: block;
    white-space: pre;
    line-height: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    content: "\e2c3";
    font-family: "Material Icons";
    margin: 0 auto;
    width: 100%;
    color: var(--cGyL);
    font-size: 7.5rem;
}
.ddUploader label:hover {
    cursor: pointer;
}
.ddUploader label input {
    display: none;
}
.ddUploader__previewArea {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 150px;
    text-align: center;
}
.ddUploader__previewArea img {
    height: 100px;
    z-index: 9;
    border-radius: 4px;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
}


/* インプット・セレクト・テキストエリアのアッパーとローワー テキスト */
.inputField__upper {
    position: relative;
    display: block;
    margin: 0 0 12px 0;
    padding: 0;
    color: var(--cGyD);
    width: 100%;
    text-align: left;
    font-size: 1.5rem;
    font-weight: 600;
}
.inputField__upper_btm {
	font-size: 12px;
    font-weight: 400;
}
.inputField__upper.center { /*センター*/
    text-align: center;
}
.inputField__upper.error { /*エラーMSG*/
    color: var(--cRed);
}
.inputField__upper .text { /*必須*/
    position: relative;
    margin: 0 0 0 8px;
    font-size: 1.3rem;
    font-weight: 400;
}
.inputField__upper .req { /*必須*/
    position: relative;
    top: -1px;
    margin: 0 0 0 8px;
    padding: 1px 4px 2px 4px;
    color: var(--cWh);
    font-size: min(1rem, 2.5vw);
    background: var(--cRed);
    border-radius: 2px
}
.inputField__upper .any { /*任意*/
    position: relative;
    top: -1px;
    margin: 0 0 0 8px;
    padding: 1px 4px 2px 4px;
    color: var(--cWh);
    font-size: 1rem;
    background: var(--cBlu);
    border-radius: 2px
}
.inputField__upper .expl { /*補足*/
    display: block;
    position: relative;
    top: -1px;
    margin: 8px 0 0 0;
    padding: 0;
    font-size: min(1.2rem, 3vw);
    font-weight: 300;
}

.inputField__lower {
    display: block;
    margin: 6px 0 0 2px;
    padding: 0;
    width: 100%;
    color: var(--cGy);
    text-align: left;
    font-size: min(1.2rem, 2.5vw);
}
.inputField__lower.center { /*センター*/
    text-align: center;
}
.inputField__lower.error { /*エラーMSG*/
    color: var(--cRed);
}
.inputField__lower.error::before {
    position: relative;
    top: 2.5px;
    content: "\e001";
    font-family: "Material Icons";
    font-size: 1.2em;
    animation: blink .75s ease-in-out infinite alternate;
}
@keyframes blink{
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.inputField__lower.link {
    margin: 16px 0 0 0;
    text-align: center;
}
.inputField__lower.link a {
    margin: 0 8px;
    font-size: min(1.5rem, 4vw);
}



/* -------------------- */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 52px;
    transition: 0.5s;
    cursor: pointer;
    filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.1));
}
.btn:hover {
    filter: none;
}
.btn.thin {
    height: 38px;
    height: 38px;
}
.btn.thinner {
    height: 30px;
}
.btn.thinnest {
    height: 26px;
}
.btn.round {
    border-radius: 12px;
}
.btn .btnText {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0 1em 1px 1em;
    line-height: 1;
    white-space: nowrap;
}
.btn .btnText.fwB {
    font-weight: 600;
}
.btn:disabled {
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
    opacity: .3;
    pointer-events: none;
}


.btn .arrowBack {
    position: relative;
}
.btn .arrowBack::before {
    position: absolute;
    top: 0;
    left: -8px;
    content: "\e5cb";
    font-family: "Material Icons";
    font-size: 2rem;
}


/* --------- */
#loading ,
#loading2 ,
#loading3 ,
#loading-logout {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    display: none;
    background: #FFFFFFE6;
    z-index: 99999999;
}
.loading__inner {
    justify-content: center;
    align-items: center;
    height: 100%;
    display: flex;
}
.loading__inner--spinner {
    width: 100px;
    height: 100px;
    border: 5px #ddd solid;
    border-top: 5px solid  var(--cGy);
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}
@keyframes sp-anime {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(359deg);
    }
}
/* --------- */
.loadingCompleteMsg ,
.loadingCompleteMsg2 ,
.loadingCompleteMsg3 {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 100%;
    text-align: center;
    z-index: 99999999999999999999;
}
.loadingCompleteMsg__msg {
    display: inline-block;
    margin: 0 24px;
    padding: 32px;
    width: auto;
    text-align: center;
    background: #00000080;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    color: #FFFFFF;
    font-size: 1.75rem;
}





/* -------------------- */
.material-icons {
  vertical-align: middle;
}

/* -------------------- */

.cMain   { color: var(--main); }
.cMainC   { color: var(--main-contrast)}
.cAccent   { color: var(--accent); }
.cAccentC { color: var(--accent-contrast); } 

.cText { color: var(--cText); } /* BASE TEXT */

.cWh { color: var(--cWh); } /* 白 */
.cBk { color: var(--cBk); } /* 黒 */

.cGyD { color: var(--cGyD); }
.cGy { color: var(--cGy); }
.cGyL { color: var(--cGyL); }
.cGyLL { color: var(--cGyLL); }

.cRd { color: var(--cRed); } /* レッド */
.cBlu { color: var(--cBlu); } /* ブルー */
.cPkD { color: var(--cPkD); } /* 濃いピンク */
.cLm { color: var(--cLm); } /* ライム */
.cLmD { color: var(--cLmD); } /* 濃いライム */

/* -------------------- */

.bgMain { background: var(--main); }
.bgMainC { background: var(--main-contrast); }
.bgAccent { background: var(--accent); }
.bgAccentC { background: var(--accent-contrast); }

.bgText { background: var(--cText); } /* BASE TEXT */

.bgWh { background: var(--cWh); } /* 白 */
.bgBk { background: var(--cBk); } /* 黒 */

.bgGyD { background: var(--cGyD); }
.bgGy { background: var(--cGy); }
.bgGyL { background: var(--cGyL); }
.bgGyLL { background: var(--cGyLL); }

.bgRd { background: var(--cRed); } /* レッド */
.bgBlu { background: var(--cBlu); } /* ブルー */
.bgPk { background: var(--cPkD); } /* 濃いピンク */
.bgLm { background: var(--cLm); } /* ライム */
.bgLmD { background: var(--cLmD); } /* 濃いライム */


/* -------------------- */

.bdLm { border: solid 1px var(--cLm); } /* ライム */
.bdLmD { border: solid 1px var(--cLmD); } /* 濃いライム */


/* -------------------- */

.fwb { font-weight: 600; }

/* -------------------- */

.txt3XS { font-size: min(.8rem, 2vw); }
.txt2XS { font-size: min(1rem, 2.5vw); }
.txtXS { font-size: min(1.2rem, 3vw); }
.txtS { font-size: min(1.4rem, 3.5vw); }
.txtBASE { font-size: min(1.6rem, 4vw); }
.txtL { font-size: min(1.8rem, 4.5vw); }
.txtXL { font-size: min(2rem, 5vw); }
.txt2XL { font-size: min(2.2rem, 5.5vw); }
.txt3XL { font-size: min(2.4rem, 6vw); }
.txt4XL { font-size: min(2.6rem, 6.5vw); }
.txt5XL { font-size: min(2.8rem, 7vw); }

/* -------------------- */

.mgT0  { margin-top: 0!important; }
.mgT8  { margin-top: 8px!important; }
.mgT16 { margin-top: 16px!important; }
.mgT24 { margin-top: 24px!important; }
.mgT32 { margin-top: 32px!important; }
.mgT40 { margin-top: 40px!important; }
.mgT48 { margin-top: 48px!important; }

.mgB0  { margin-bottom: 0!important; }
.mgB8  { margin-bottom: 8px!important; }
.mgB16 { margin-bottom: 16px!important; }
.mgB24 { margin-bottom: 24px!important; }
.mgB32 { margin-bottom: 32px!important; }
.mgB40 { margin-bottom: 40px!important; }
.mgB48 { margin-bottom: 48px!important; }

.mgL0  { margin-left: 0!important; }
.mgL8  { margin-left: 8px!important; }
.mgL16 { margin-left: 16px!important; }
.mgL24 { margin-left: 24px!important; }
.mgL32 { margin-left: 32px!important; }
.mgL40 { margin-left: 40px!important; }
.mgL48 { margin-left: 48px!important; }

.mgR0  { margin-right: 0!important; }
.mgR8  { margin-right: 8px!important; }
.mgR16 { margin-right: 16px!important; }
.mgR24 { margin-right: 24px!important; }
.mgR32 { margin-right: 32px!important; }
.mgR40 { margin-right: 40px!important; }
.mgR48 { margin-right: 48px!important; }

/* -------------------- */

.pdT0 { padding-top: 0!important; }
.pdT8 { padding-top: 8px!important; }
.pdT16 { padding-top: 16px!important; }
.pdT24 { padding-top: 24px!important; }

.pdR0 { padding-right: 0!important; }
.pdR8 { padding-right: 8px!important; }
.pdR16 { padding-right: 16px!important; }
.pdR24 { padding-right: 24px!important; }

.pdL0 { padding-left: 0!important; }
.pdL8 { padding-left: 8px!important; }
.pdL16 { padding-left: 16px!important; }
.pdL24 { padding-left: 24px!important; }

.pdB0 { padding-bottom: 0!important; }
.pdB8 { padding-bottom: 8px!important; }
.pdB16 { padding-bottom: 16px!important; }
.pdB24 { padding-bottom: 24px!important; }

/* -------------------- */

.w5pr { width: 5%!important; }
.w10pr { width: 10%!important; }
.w15pr { width: 15%!important; }
.w20pr { width: 20%!important; }
.w25pr { width: 25%!important; }
.w30pr { width: 30%!important; }
.w35pr { width: 35%!important; }
.w40pr { width: 40%!important; }
.w45pr { width: 45%!important; }
.w50pr { width: 50%!important; }
.w55pr { width: 55%!important; }
.w60pr { width: 60%!important; }
.w65pr { width: 65%!important; }
.w70pr { width: 70%!important; }
.w75pr { width: 75%!important; }
.w80pr { width: 80%!important; }
.w85pr { width: 85%!important; }
.w90pr { width: 90%!important; }
.w95pr { width: 95%!important; }
.w100pr { width: 100%!important; }

/* -------------------- */

.mw500 { max-width: 500px!important; }
/* -------------------- */

.w150 { width: 150px!important; }


/* misaki hara */
.initial-blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.markdown {
    font-family: system-ui, sans-serif;
    line-height: 1.6;
    color:#333;
    text-align: left;
}
/* 見出し */
.markdown h1 {
    font-size: 1.8em;
    margin-top: 1em;
    margin-bottom: 0.5em;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.3em;
    padding-left: 0.5em;
}
.markdown h2 {
    font-size: 1.6em;
    margin-top: 1em;
    margin-bottom: 0.5em;
    font-weight: bold;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.2em;
}
.markdown h3 {
    font-size: 1.4em;
    margin-top: 1em;
    margin-bottom: 0.4em;
    font-weight: bold;
}
.markdown h4,
.markdown h5,
.markdown h6 {
    font-size: 1.2em;
    margin-top: 1em;
    margin-bottom: 0.4em;
    font-weight: bold;
}
/* 段落 */
.markdown p {
    margin: 0.5em 0;
}
/* 強調 */
.markdown strong {
    font-weight: bold;
}
.markdown em {
    font-style: italic;
}
/* リスト */
.markdown ul {
    padding-left: 1.5em;
    list-style-type: disc;
}
.markdown ol {
    padding-left: 1.5em;
    list-style-type: decimal;
}
.markdown li {
    margin: 0.25em 0;
    padding-left: 0;
}
.markdown pre {
    background-color: #f6f8fa;
    padding: 0.8em;
    overflow-x: auto;
    border-radius: 4px;
    font-family: Consolas, Menlo, monospace;
    font-size: 0.9em;
}
.markdown code {
    background-color: #f0f0f0;
    padding: 0.2em 0.4em;
    border-radius: 4px;
    font-family: Consolas, Menlo, monospace;
    font-size: 0.9em;
}
.markdown blockquote {
    border-left: 4px solid #ccc;
    padding-left: 1em;
    color: #666;
    margin: 1em 0;
    background-color: #f9f9f9;
}
.markdown table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
    font-size: 0.9em;
}
.markdown th,
.markdown td {
    border: 1px solid #ccc;
    padding: 0.5em;
    text-align: left;
    vertical-align: top;
}
.markdown thead {
    background-color: #f0f0f0;
}


.fab-button {
    position: fixed;
    bottom: 100px;
    right: 10px;
    width: 110px;
    height: 50px;
    border-radius: 8px;
    color: white;
    font-size: 15px;
    line-height: 50px;
    text-align: center;
    border: none;
    cursor: pointer;
    z-index: 999999999;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}

.fab-button:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.text-white {
	color: white;
}

.menu-icon {
	margin-right: 3px;
	font-family: "Material Icons";
	width: min(2rem, 10vw);
	height: min(2rem, 10vw);
}

.blink-dot-wrapper {
    position: relative;
}

.blink-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: red;
    border-radius: 50%;
    animation: blink 2s infinite;
}

/* 点滅アニメーション */
@keyframes blink {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0;
    }
}

/* モバイルでは通常位置 */
.support-card-wrapper {
  position: static;
  margin-top: 1rem;
}

/* PC時は右側に固定表示 */
@media (min-width: 768px) {
  .support-card-wrapper {
    position: fixed;
    right: 4rem;
    bottom: 4rem; /* 画面右下にする場合 */
    z-index: 50;
	width: 300px;
  }
}

