@charset "utf-8";
/* ------------------

base

------------------ */
html {
    font-size: 62.5%;
}
body,
p,
a,
h1,h2,h3,h4,h5,h6 {
    /* 文字設定 */
    font-size: 1.4rem;
    line-height: 1.75;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #2b2b2b;
}

body {
    /* 背景色 */
    background-color: #FAFAFA;
}

img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

button {
    cursor: pointer;
}

/* ------------------

extension

------------------ */
.font_lato { font-family: 'Lato', sans-serif;}

.fw_400 { font-weight: 400;}
.fw_500 { font-weight: 500;}
.fw_700 { font-weight: 700;}

.fs_12 { font-size: 1.2rem;}
.fs_14 { font-size: 1.4rem;}
.fs_16 { font-size: 1.6rem;}
.fs_18 { font-size: 1.8rem;}
.fs_20 { font-size: 2.0rem;}
.fs_24 { font-size: 2.4rem;}
.fs_28 { font-size: 2.8rem;}
.fs_32 { font-size: 3.2rem;}
.fs_36 { font-size: 3.6rem;}
.fs_40 { font-size: 4.0rem;}

.mb5 { margin-bottom: 5px;}
.mb10 { margin-bottom: 10px;}
.mb15 { margin-bottom: 15px;}
.mb20 { margin-bottom: 20px;}
.mb30 { margin-bottom: 30px;}
.mb40 { margin-bottom: 40px;}
.mb50 { margin-bottom: 50px;}
.mb60 { margin-bottom: 60px;}

.mt20 { margin-top: 20px;}
.mt30 { margin-top: 30px;}

.mr5 { margin-right: 5px;}
.mr10 { margin-right: 10px;}
.mr20 { margin-right: 20px;}

.pt10 { padding-top: 10px;}
.pt20 { padding-top: 20px;}
.pt30 { padding-top: 30px;}
.pt40 { padding-top: 40px;}
.pt50 { padding-top: 50px;}

.pb10 { padding-bottom: 10px;}
.pb20 { padding-bottom: 20px;}
.pb30 { padding-bottom: 30px;}
.pb40 { padding-bottom: 40px;}
.pb50 { padding-bottom: 50px;}

.align-l { text-align: left;}
.align-c { text-align: center;}
.align-r { text-align: right;}



.flex {
    display: flex;
    justify-content: space-between;
}
.flex_start {
    display: flex;
    justify-content: flex-start;
}
.flex_end {
    display: flex;
    justify-content: flex-end;
}
.ai_center {
    align-items: center;
}
.ai_end {
    align-items: flex-end;
}
.reverse {
    flex-direction: row-reverse;
}


.red {
    color: red;
}

.d_block { display: block;}
.d_none { display: none;}
@media (max-width: 1024px) {
    .d_sp_none {
        display: none!important;
    }
    .d_sp_block {
        display: block!important;
    }
}

.po_r { position: relative;}
.po_a { position: absolute;}



/* ---------------------------

header

--------------------------- */
header {
    height: 60px;
    background-color: #02B199;
    padding-left: 40px;
    z-index: 9999;

    position: fixed;
    width: 100%;
}
header .logo {
    height: 60px;
    width: auto;
    padding: 5px 0;
}
header .logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}
header .user-name {
    font-size: 1.5rem;
    color: #fff;
    margin-right: 30px;
    line-height: 1;
    vertical-align: middle;
}
header .user-name .fa-solid {
    padding-right: 4px;
    font-size: 2rem;
    vertical-align: middle;
    position: relative;
    top: -1px;
}
header div.flex_end {
    align-items: center;
}
/* ---------------------------

hamburger

--------------------------- */
/*　---ハンバーガーボタン---　*/
.hamburger {
    display : block;
    z-index : 4;
    width : 60px;
    height: 60px;
    cursor: pointer;
    background: #02B199;
    position: relative;
    transition: all .5s;
}
.hamburger span {
    display : block;
    width   : 35px;
    height  : 3px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background : #fff;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition   : 0.3s ease-in-out;
    transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
    top: 18px;
}
.hamburger span:nth-child(2) {
    top: 28px;
}
.hamburger span:nth-child(3) {
    top: 38px;
}
/* -----ナビ開いてる時のボタン----- */
.hamburger.active {
    /* transform: translateX(-350px); */
    z-index: 10000;
}
.hamburger.active span:nth-child(1) {
    top : 50%;
    left: 12px;
    background :#fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform   : rotate(-45deg);
    transform        : rotate(-45deg);
}
.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
    top: 50%;
    left: 12px;
    background :#fff;
    -webkit-transform: rotate(45deg);
    -moz-transform   : rotate(45deg);
    transform        : rotate(45deg);
}
.hamburger.active::after {
    content: '';
}


.globalMenuSp {
    width: 350px;/* 横幅設定 */
    height: 100%;
    background-color: #fff;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
    transform: translate(350px);/* 横幅設定 */
    transition: all .5s;
    padding-top: 60px;
    overflow: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.globalMenuSp.active {
    transform: translateZ(0);
}
.globalMenuSp ul {
    min-height: 710px;
    overflow: scroll;
    position: relative;
    height: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.globalMenuSp::-webkit-scrollbar,
.globalMenuSp ul::-webkit-scrollbar {
    display:none;
}
.globalMenuSp li a,
.globalMenuSp li p {
    display: block;
    height: 50px;
    line-height: 50px;
    border-top: 1px solid #E0E0E0;
    padding-left: 10px;
    font-weight: 500;
    /* color: #72777A; */
    letter-spacing: 0em;
}
.globalMenuSp li.nav_item2 a {
    padding-left: 20px;
    background-color: #F5F5F5;
}
.globalMenuSp li.nav_item2 a::before {
    content: '';
    width: 8px;
    display: inline-block;
    height: 1px;
    background-color: #72777A;
    vertical-align: middle;
    margin-right: 10px;
}

.globalMenuSp li a:hover {
    background-color: #E8F4FF;
    color: #43474A;
}

.globalMenuSp li:nth-last-of-type(2) a {
    border-bottom: 1px solid #E0E0E0;
}

.globalMenuSp li.admin {
    border-bottom: 1px solid #E0E0E0;
}
.globalMenuSp li.stop {
    position: absolute;
    bottom: 60px;
    width: 100%;
}
.globalMenuSp li.paid_change {
    position: absolute;
    bottom: 110px;
    width: 100%;
}
.globalMenuSp li.plan_change {
    position: absolute;
    bottom: 160px;
    width: 100%;
}
.globalMenuSp li.stop,
.globalMenuSp li.paid_change,
.globalMenuSp li.plan_change {
   background-color: #FAFAFA;
}
/* .globalMenuSp li.stop a,
.globalMenuSp li.paid_change a,
.globalMenuSp li.plan_change a {
    color: #fff;
} */


.globalMenuSp li.logout a {
    height: 60px;
    line-height: 60px;
    color: #fff;
    background-color: #141414;
    position: absolute;
    bottom: 0;
    width: 100%;
    border-top: none;
}
.globalMenuSp li.logout a:hover {
    opacity: 0.75;
}
.globalMenuSp .fas,
.globalMenuSp .fa-solid  {
    width: 40px;
    font-size: 1.1em;
    text-align: left;
    padding-right: 5px;
    padding-left: 5px;
}


.overlay {
    content: "";
    display: block;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
    transition: opacity .5s;
}
.overlay.active {
    width: 100%;
    height: 100vh;
    opacity: 1;
}
/* ---------------------------

btn

--------------------------- */
button,
.button {
    height: 34px;
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
    line-height: 34px;
    padding: 0 15px 0 10px;
    background-color: #7BC425;
    margin-bottom: 5px;
    border-radius: 3px;
    display: inline-block;
    letter-spacing: 0em;
    vertical-align: middle;
}
button:hover,
.button:hover {
    opacity: 0.8;
}

button::before,
.button::before {
    display: inline-block;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f055";
    padding-right: 15px;
}


/* 色違いボタン */
button.green,
.button.green {
    background-color: #489B55;
}
button.green::before,
.button.green::before {
    content: "\f019";
}
button.red,
.button.red {
    background-color: red;
}
button.red::before,
.button.red::before {
    content: "\f2ed";
}
button.lightblue,
.button.lightblue {
    background-color: #48BEE2;
}

/* 変更適用/戻るボタン */
button.blue,
.button.blue {
    background-color: #217ccc;
    height: 34px;
    line-height: 34px;
    margin-top: 10px;
    margin-bottom: 0;
}
button.blue::before,
.button.blue::before {
    content: "\f00c";
}
button.blue.clear,
.button.blue.clear  {
    background-color: transparent;
    color: #888888;
    border: 1px solid #888888;
}
button.clear::before,
.button.clear::before {
    content: "\f104";
}

/* クリア/絞り込むボタン */
button.filter,
.button.filter {
    margin: 0;
    height: 30px;
    line-height: 30px;
    background-color: #217ccc;
    padding: 0 8px 0 8px;
    font-weight: 400;
}
button.filter::before,
.button.filter::before {
    content: "\f0b0";
    padding-right: 10px;
    content: none;
}
button.filter.clear,
.button.filter.clear {
    background-color: transparent;
    color: #888888;
    border: 1px solid #888888;
}
button.filter.clear::before,
.button.filter.clear::before {
    content: none;
}
button.filter.clear.red,
.button.filter.clear.red {
    background-color: #FF0000;
    color: #fff;
    border: none;
    border: 1px solid #FF0000;
}
button.filter.clear.blue,
.button.filter.clear.blue {
    background-color: #217CCC;
    color: #fff;
    border: none;
    border: 1px solid #217CCC;
}


/* 編集/削除ボタン */
button.edit,
.button.edit {
    height: 24px;
    line-height: 24px;
    color: #2b2b2b;
    padding: 0 10px;
    background-color: #F5F5F5;
    border: 1px solid #E0E0E0;
    font-weight: 400;
    margin: 0;
}
button.edit::before,
.button.edit::before {
    content: none;
}
button.edit.red,
.button.edit.red {
    color: red;
}

/* プレビューボタン */
.button.edit.pre {
    letter-spacing: -0.05em;
    padding-right: 2px;
    padding-left: 2px;
    height: 32px;
    line-height: 32px;
    vertical-align: middle;
    color: #72777A;
}
button.yes {
    padding: 0 15px;
}
button.no {
    background-color: transparent;
    color: #95999B;
    border: 1px solid #95999B;
}
button.no::before {
    content: none;
}

button.blue.clear.back {
    margin-top: 0;
    border: none;
    margin-right: 50px;
    font-weight: 500;
    color: #0045FF;
    font-size: 1.6rem;
    padding: 0;
    position: relative;
}
button.blue.clear.back::before {
    font-size:2.6rem;  
    padding-right: 12px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

/* -------------- 登録ボタン -------------- */
button.blue.register {
    background-color: #217ccc;
    height: 45px;
    line-height: 45px;
    margin-bottom: 0;
    font-size: 2rem;
    padding: 0;
    width: 240px;
    text-align: center;
    display: inline-block;
    margin-top: 40px;
}
button.blue.register::before {
    content: none;
}
button.blue.register.green {
    background-color: #7BC425;
}



.paid {
    background-color: #FF9F1C;
    margin-bottom: 0;
    margin-right: 40px;
    font-size: 1.6rem;
    line-height: 40px;
    height: 40px;
    padding: 0 12px;
    display: block;
    color: #fff;
    border-radius: 5px;
}
.paid::before {
    content: none;
}
.paid_sp {
    margin-bottom: 0;
    margin-right: 0;
    display: none;
}

/* ---------------------------

style_sp.css

--------------------------- */
@media (max-width: 1024px) {
    header {
        padding-left: 5px;
    }
    header .logo,
    header .logo img {
        height: 45px;  
    }
    header .logo {
        padding: 0px;
    }
    header .user-name {
        font-size: 1.2rem;
        margin-right: 10px;
        padding-top: 0px;
        padding-left: 15px;
    }
    header .user-name .fa-solid {
        font-size: 1.6rem;
        padding-right: 2px;
    }
    .globalMenuSp {
        width: 280px;
    }
    .globalMenuSp ul {
        min-height: 800px;
    }



    button,
    .button {
        height: 30px;
        line-height: 30px;
        padding: 0 10px 0 5px;
        margin-bottom: 5px;
        border-radius: 3px;
    }
    button::before,
    .button::before {
        padding-right: 8px;
    }


    /* 変更適用/戻るボタン */
    button.blue,
    .button.blue {
        height: 30px;
        line-height: 30px;
        /* margin-top: 15px; */
        margin-bottom: 0;
    }

    /* クリア/絞り込むボタン */
    button.filter,
    .button.filter {
        margin: 0;
        /* height: 20px;
        line-height: 18px; */
        padding: 0 8px 0 8px;
    }

    /* 編集/削除ボタン */
    button.edit,
    .button.edit {
        height: 20px;
        line-height: 18px;
        padding: 0 5px;
        margin: 0;
    }

    /* プレビューボタン */
    .button.edit.pre {
        letter-spacing: -0.05em;
        padding-right: 2px;
        padding-left: 2px;
        height: 32px;
        line-height: 32px;
        vertical-align: middle;
        color: #72777A;
    }
    button.yes {
        padding: 0 15px;
    }



    button.blue.clear.back {
        margin-right: 20px;
        font-size: 1.4rem;
    }
    button.blue.clear.back::before {
        font-size:2.2rem;  
        padding-right: 8px;
        position: relative;
        top: -1px;
    }

    button.filter.clear,
    .button.filter.clear {
        font-size: 1.2rem;
        height: 26px;
        line-height: 26px;
    }


    button.blue.register {
        margin-top: 20px;
    }






    .paid_pc {
        display: none;
    }

    .globalMenuSp li.paid_sp {
        display: block;
        position: absolute;
        bottom: 210px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        margin-bottom: 10px;
        height: auto;
        background-color: transparent;
    }
    .globalMenuSp li.paid_sp a {
        border-top: none;
        padding-left: 10px;
        color: #fff;
        font-weight: 700;
        width: 100%;
        height: 50px;
        line-height: 50px;
        border-radius: 0;
        border: none;
        text-align: center;
        border-radius: 5px;
        background-color: #FF9F1C;
    }
    .globalMenuSp li.paid_sp a:hover {
        /* background-color: #FF9F1C; */
        opacity: 0.8;
    }
}

@media (max-width: 768px) {
    header .logo,
    header .logo img {
        height: 33px;  
    }
    header .user-name {
        margin-right: 5px;
    }

}