@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");

/* A Modern CSS Reset */

/* 下から上のアニメーション */

.slideinBottom {
    opacity: 0; /* 要素の不透明度を設定.0は透明 */
    animation: slideinBottom; /* @keyframesと同じ名前の必要あり */
    animation-duration: 1s; /* アニメーション周期が完了するまで */
    animation-delay: 0.5s; /* アニメーションが起動するまでの時間 */
    animation-iteration-count: 1; /* アニメーションが再生される回数 */
    animation-fill-mode: forwards; /* こちらは、再生後、最後のキーフレーム（100%）のスタイルが適用される。*/
}
@keyframes slideinBottom {
    0% {
        opacity: 0;
        transform: translateY(480px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ダッシュボード */

.ibox_graph {
    padding: 1.5em 0;
    margin: 1em;
    color: #000;
    background: white;
    border-radius: 10px;
    font-size: 1.4rem;
}

.graph_title1 {
    display: block;
    background: white;
    padding: 1em 0;
}

.graph_title2 {
    display: block;
    background: white;
    padding: 1em 0;
}

.graph_title3 {
    display: block;
    background: white;
    padding: 1em 0;
}

.dashboard_graph {
    display: flex;
    justify-content: space-between;
    padding: 0 2em;
    color: #ff1493;
    font-weight: bold;
}

.point_center {
    display: flex;
    justify-content: center;
    padding: 0.5em 1em;
    gap: 6px;
}

/* #FFDB00 #DD980A */

.ranking1 {
    padding: 1em 1.5em;
    margin: 0.5em 0;
    color: #333333;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    font-size: 1.4rem;
    background-image: linear-gradient(
        90deg,
        rgba(255, 219, 0, 1),
        rgba(221, 152, 10, 1)
    );
}

/* #E1E1E1 #9F9DBC */

.ranking2 {
    padding: 1em 1.5em;
    margin: 0.5em 0;
    color: #333333;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    font-size: 1.4rem;
    background-image: linear-gradient(
        90deg,
        rgba(225, 225, 225, 1),
        rgba(159, 157, 188, 1)
    );
}

/* #F4AA6B #C07226 */
.ranking3 {
    padding: 1em 1.5em;
    margin: 0.5em 0;
    color: #333333;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    font-size: 1.4rem;
    background-image: linear-gradient(
        90deg,
        rgba(244, 170, 107, 1),
        rgba(192, 114, 98, 1)
    );
}

.ranking_base {
    padding: 1em 1.5em;
    margin: 0.5em 0;
    color: #333333;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    font-size: 1.4rem;
    background: white;
}

.ranking_name {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ranking_circle1 {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    color: #333333;
    font-weight: bold;
    background-image: linear-gradient(
        90deg,
        rgba(255, 219, 0, 1),
        rgba(221, 152, 10, 1)
    );
}

.ranking_circle2 {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    color: #333333;
    font-weight: bold;
    background-image: linear-gradient(
        90deg,
        rgba(225, 225, 225, 1),
        rgba(159, 157, 188, 1)
    );
}

.ranking_circle3 {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    color: #333333;
    font-weight: bold;
    background-image: linear-gradient(
        90deg,
        rgba(244, 170, 107, 1),
        rgba(192, 114, 98, 1)
    );
}

.ranking_circle_base {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    color: #333333;
    font-weight: bold;
    background: white;
}

.ranking_init {
    display: flex;
    align-items: center;
    padding: 0.5em 1em;
    gap: 0 10px;
}

.flex-item1 {
    flex-basis: 100%;
}

.switching1 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 0.5em;
    padding-right: 1.5em;
    padding-left: 1.5em;
}
.switching2 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 0.5em;
    padding-right: 1.5em;
    padding-left: 1.5em;
}

.graph_square {
    background: #cef197;
    width: 100px;
    height: 30px;
    border-radius: 0 5px 5px 0;
    transition: all 0.6s ease-out;
}

.graph_square2 {
    background: #f9e28c;
    width: 100px;
    height: 20px;
    border-radius: 0 5px 5px 0;
    transition: all 0.6s ease-out;
}

.sw_monthly_on {
    width: 100px;
    padding: 0.5em 1em;
    background-color: white;
    border: 1px solid #333333;
    color: #333333;
    border-radius: 10px 0 0 10px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
}
.sw_monthly_off {
    width: 100px;
    padding: 0.5em 1em;
    background-color: #f1f1f1;
    border: 1px solid #333333;
    color: #afafaf;
    border-radius: 10px 0 0 10px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
}
.sw_total_on {
    width: 100px;
    padding: 0.5em 1em;
    background-color: white;
    border: 1px solid #333333;
    color: #333333;
    border-radius: 0 10px 10px 0;
    text-align: center;
    font-weight: bold;
    margin-left: -1px;
    font-size: 14px;
}
.sw_total_off {
    width: 100px;
    padding: 0.5em 1em;
    background-color: #f1f1f1;
    border: 1px solid #333333;
    color: #afafaf;
    border-radius: 0 10px 10px 0;
    text-align: center;
    font-weight: bold;
    margin-left: -1px;
    font-size: 14px;
}

.text-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.contents_all {
    display: block;
}

.bc_w {
    background-color: #fff;
}

.fwn {
    font-weight: normal;
}

/*.page_title {
    border-bottom: 1px solid #AFAFAF;
    background-color: rgba(0, 0, 0, .1);
    border: none;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 1);
    height: 1px;
}
*/

.all_wrap {
    display: block;
}

html {
    font-size: 62.5%;
    overscroll-behavior-y: none;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

ul,
ol,
li {
    list-style: none;
}

html:focus-within {
    scroll-behavior: smooth;
}

a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto;
}

body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    width: 100%;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
    font-family: "Noto Sans JP", sans-serif;
    overscroll-behavior-y: none;
}

img,
picture {
    max-width: 100%;
    display: block;
    height: auto;
}

button {
    appearance: none;
    -webkit-appearance: none;
    border: none;
}

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

figure {
    margin: 0;
}

p {
    font-size: 1.4rem;
}

.fs8{
    font-size: 0.8rem;
}

.fs12 {
    font-size: 1.2rem;
}

.fs10 {
    font-size: 1rem;
}

.fs14 {
    font-size: 1.4rem;
}

.fs16 {
    font-size: 1.6rem;
}

.fs18 {
    font-size: 1.8rem;
}

.fs20 {
    font-size: 2rem;
}

.fs22 {
    font-size: 2.2rem;
}

.fs30 {
    font-size: 3rem;
}

/* マイページ */

/* お気に入り */
.favorite_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.favorite_title_count {
    font-size: 1.4rem;
    text-align: right;
    color: #333;
    padding-right: 10px;
}
.favorite_delete {
    text-align: right;
    white-space: nowrap;
}

/* アクティビティー一覧 */
.activities_comment_count_init {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0.5em;
}

.ibox_activities_comment {
    background: #ffefff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 15px 15px;
    margin-bottom: 0.5em;
}

.ibox_card {
    width: 100%;
    background: #f90094;
    padding: 4em 24px;
}

.ibox_card_challenge {
    width: 100%;
    background: #f90094;
    padding: 4em 2em;
    background-image: url(../images/my_w_back_challenges.svg);
    background-position: right;
    background-repeat: no-repeat;
}

.ibox_card_support {
    width: 100%;
    background: #f90094;
    padding: 4em 2em;
    background-image: url(../images/my_w_back_flag.svg);
    background-position: right;
    background-repeat: no-repeat;
}

.ibox_kage {
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.ibox_kage {
    padding: 1em 1.5em;
    margin: 2em 0;
    color: #000;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    font-size: 1.6em;
}

.img_s10 {
    width: 10%;
}

.ibox {
    padding: 2em;
    background-color: #f90094;
    /*border: 1px solid grey;*/
    color: #333333;
    text-align: center;
}

.ibox_fff {
    padding: 1em;
    background-color: #ffffff;
    text-align: left;
}

.ibox_transparent {
    padding: 1.5rem;
}

.tbl_set {
    width: 100%;
}

.tbl_set_th {
    text-align: left;
}

.tbl_set_td {
    padding: 4px;
    text-align: left;
}

.tbl_set_check {
    width: 100%;
}

.tbl_set_check th {
    text-align: left;
}

.tbl_set_check td {
    padding: 1em 0px 4px 4px;
    text-align: left;
}

.tbl_set_check {
    border-collapse: collapse;
}

.tbl_set_check tr {
    border-bottom: solid 1px #ccc;
}

.tbl_set_member {
    height: 100%;
    width: 100%;
}

.tbl_set_member td a {
    display: block;
    height: 100%;
    width: 100%;
    display: block;
    position: relative;
    padding: 10px 25px 10px 10px;
    border-bottom: 1px solid #d9d9d6;
    color: #333;
    font-size: 1.4rem;
    text-decoration: none;
    width: 100%;
}

.tbl_set_member td a:after {
    display: block;
    content: "";
    position: absolute;
    right: 10px;
    width: 6px;
    height: 6px;
    margin: -8px 0 0 0;
    border-top: solid 2px #093;
    border-right: solid 2px #093;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.member1 {
    display: block;
}
.member2 {
    display: block;
}
.member3 {
    display: block;
}
.member4 {
    display: block;
}

.tbl_init_member {
    height: 100%;
    width: 100%;
    /*    position: relative;*/
}

.tbl_set_member tr {
    border-bottom: solid 1px #ccc;
}

.tbl_set_member td {
    /*    padding: 1em 0px 4px 4px;*/
    text-align: left;
}

.s_init {
    display: flex;
    align-items: center;
}

.s_init2 {
    display: inline-block;
}

.s_name {
    font-size: 1.4rem;
    text-align: left;
    color: #333;
    padding: 10px 5px 0px 0px;
}

.s_name2 {
    font-size: 1.4rem;
    text-align: left;
    color: #333;
    padding: 10px 5px 0px 0px;
}

.s_jinji {
    font-size: 1.2rem;
    text-align: left;
    color: #999999;
    padding: 5px 5px 10px 0px;
}

.s_name_report {
    font-size: 1.4rem;
    text-align: left;
    color: #333;
    padding-left: 5px;
}

.s_jinji_report {
    font-size: 1.2rem;
    text-align: left;
    color: #999999;
    padding: 5px 0px 0px 0px;
    padding-left: 5px;
}

.s_re_challenge {
    text-align: left;
    padding: 0px 5px 10px 0px;
    padding-left: 5px;
}

.s_jinji2 {
    font-size: 1.2rem;
    text-align: left;
    color: #999999;
    padding: 5px 0px 0px 0px;
}

.s_category {
    font-size: 1.4rem;
    text-align: left;
    color: #777777;
}

.tbl_set_check_category1 {
    width: 100%;
}

.tbl_set_check_category2 {
    width: 100%;
}

.tbl_set_check_category3 {
    width: 100%;
}

.tbl_set_check_category1 td {
    padding: 1em 0px 4px 4px;
    text-align: left;
}

.modal-container1_1a {
    padding: 1em;
    display: block;
}

.div_set_check_category1 {
    width: 100%;
}

.div_set_check_category2 {
    width: 100%;
}

.div_set_check_category3 {
    width: 100%;
}

.div_set_check_category4 {
    width: 100%;
}

.div_set_check_category1a {
    padding: 1em 0px 4px;
    text-align: left;
}

.div_set_check_category2a {
    padding: 1em 0px 4px 4px;
    text-align: left;
}

.div_set_check_category3a {
    padding: 1em 0px 4px 4px;
    text-align: left;
}

.div_set_check_category4a {
    padding: 1em 0px 4px 4px;
    text-align: left;
}

.tbl_set_check_category2 td {
    padding: 1em 0px 4px 4px;
    text-align: left;
}

.tbl_set_check_category3 td {
    padding: 1em 0px 4px 4px;
    text-align: left;
}

.p_center {
    width: 100%;
    text-align: center;
}

.tbl_set td {
    font-size: 1.4rem;
}

.ckb_category,
.ckb_department,
.chk_all,
.ckb_status {
    margin: 1px 8px 0px 1px;
    transform: scale(1.1);
}
input[type="checkbox"].ckb_comment {
    margin: 19px 13px 0px 1px;
}

input[type="checkbox"].ckb_favorite {
    margin: 19px 13px 0px 1px;
}

.modal-inner-item {
    padding: 1em 0px 4px;
}

/* 右上制御ボタン類 */

/* 状態 */

.ibtnMiddle_icon {
    width: fit-content;
    display: inline-flex;
    padding: 0.25em 0.5em;
    color: #f90094;
    font-weight: bold;
    border-radius: 4px;
    background-color: #ffffff;
    font-size: small;
    border: 2px solid #f90094;
    align-items: center;
}

.ibtnCompletion {
    width: fit-content;
    display: inline-flex;
    padding: 0.25em 0.5em;
    color: #ffffff;
    font-weight: bold;
    border-radius: 4px;
    background-color: #f90094;
    font-size: small;
    border: 2px solid #f90094;
    align-items: center;
}

.ibtnParticipation_icon {
    width: fit-content;
    display: inline-flex;
    padding: 0.25em 0.5em;
    color: #f90094;
    font-weight: bold;
    border-radius: 4px;
    background-color: #ffefff;
    font-size: small;
    border: 2px solid #ffefff;
    align-items: center;
}

icon_set_s {
    display: flex;
    align-items: center;
}

.icon_set_Middle_p {
    display: block;
}
.icon_set_Middle_g {
    display: none;
}

.icon_set_Completion_p {
    display: block;
}
.icon_set_Completion_g {
    display: none;
}

.icon_set_Participation_p {
    display: block;
}
.icon_set_Participation_g {
    display: none;
}

.icon_set {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.icon_set_home1 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
/*.icon_set_home1>div:nth-of-type(3){
    margin-left: auto;
}*/

.icon_set_home2 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.ibtnDraft_icon {
    width: fit-content;
    display: inline-flex;
    padding: 0.25em 0.5em;
    color: #333;
    font-weight: bold;
    border-radius: 4px;
    background-color: #f1f1f1;
    font-size: small;
    border: 2px solid #f1f1f1;
    align-items: center;
}

.ibtnDraft a {
    width: fit-content;
    display: inline-flex;
    padding: 0.25em 0.5em;
    color: #333;
    font-weight: bold;
    border-radius: 4px;
    background-color: #f1f1f1;
    font-size: small;
}

.ibtnSave a {
    width: fit-content;
    display: block;
    padding: 0.25em 0.5em;
    color: #d0103a;
    font-weight: bold;
    border-radius: 4px;
    background-color: #ffffff;
    font-size: small;
}

.ibtnSave a {
    width: fit-content;
    display: block;
    padding: 0.25em 0.5em;
    color: #d0103a;
    font-weight: bold;
    border-radius: 4px;
    background-color: #ffffff;
    font-size: small;
}

.ibtnPost a {
    width: fit-content;
    display: block;
    padding: 0.25em 0.5em;
    color: #ffffff;
    font-weight: bold;
    border-radius: 4px;
    background-color: #d0103a;
    border: 2px solid #d0103a;
    font-size: small;
}

.ibtnChoice a {
    width: fit-content;
    display: block;
    padding: 0.25em 0.5em;
    color: #d0103a;
    font-weight: bold;
    border-radius: 4px;
    background-color: #ffffff;
    font-size: small;
}

.ibtnChoiceMax a {
    width: fit-content;
    display: block;
    padding: 0.25em 0.5em;
    color: #afafaf;
    border-radius: 4px;
    background-color: #ffffff;
    font-size: small;
}

.btnIcon {
    display: block;
    text-align: center;
    text-decoration: none;
}
.btnIconWaku {
    display: block;
    text-align: center;
    text-decoration: none;
    border: 2px solid #d0103a;
}
.btnIconWakuMax {
    display: block;
    text-align: center;
    text-decoration: none;
    border: 2px solid #afafaf;
}

.ibtnS10 {
    max-width: 10%;
}

.right {
    margin: 0 0 0 auto;
}

.left {
    margin-left: 0px;
}

.fixed_pt40px {
    padding-top: 40px !important;
}

.fixed_pt50px {
    padding-top: 50px !important;
}

.fixed_pt60px {
    padding-top: 60px !important;
}

.fixed_pt70px {
    padding-top: 70px !important;
}

.fixed_pt80px {
    padding-top: 80px !important;
}

.fixed_pt85px {
    padding-top: 85px !important;
}

.fixed_pt90px {
    padding-top: 90px !important;
}

.fixed_pt100px {
    padding-top: 100px !important;
}

.fixed_pt110px {
    padding-top: 110px !important;
}

.fixed_pt120px {
    padding-top: 120px !important;
}

.fixed_pt130px {
    padding-top: 130px !important;
}

.fixed_pt190px {
    padding-top: 190px !important;
}

header {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-sizing: border-box;
}

.global-header {
    border-bottom: 1px solid #e1e1e1;
}

sub_header {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    /*  background-color:#F1F1F1;*/
    box-sizing: border-box;
}

.page_title_modal {
    width: 100%;
    padding: 0px 1em;
    background-color: #ffffff;
}

/*フォーム全体を中央へ*/

#form1 {
    /* display: flex;
    justify-content: center;
    height: 50px;
    padding: 10px 1em 0em 1em; */
}

/*入力フォーム*/

#sbox1 {
    width: 100%;
    padding: 0 15px;
    border-radius: 4px 0 0 4px;
    background: #fff;
    border: none;
    outline: 0;
}

.sbox1 {
    /* width: 100%;
    padding: 0 15px;
    border-radius: 4px 0 0 4px;
    background: #fff;
    border: none;
    outline: 0;
    font-size: 13px; */
}

.search-box {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    height: 45px;
    width: 100%;
    border: 1px solid #afafaf;
    padding: 12px 16px;
    border-radius: 8px;
}

.search-box__input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    line-height: 1.5;
    padding: 0;
    margin: 0;
}

.search-box__btn {
    padding: 2px;
    margin: 0;
}

/*検索ボタン*/

#sbtn3 {
    border-radius: 0 4px 4px 0;
    background: #fff;
    border: none;
    color: #666;
    font-size: 1.8rem;
    cursor: pointer;
    width: auto;
}

#sbtn3:hover {
    background: #7fbfff;
    color: #fff;
}

.sub_header_search {
    background: #f1f1f1;
}

.sub_header_search2 {
    background: #fff;
    border: 1px solid #afafaf;
    border-radius: 10px;
}

.header_search2 {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 6px 16px 5px;
    gap: 16px;
}

.header-search {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 6px 16px 5px;
    gap: 16px;
}

.sub-header-search {
    display: flex;
    align-items: center;
    background-color: #f1f1f1;
    padding: 16px;
}

.the_bottom {
    position: absolute;
    bottom: 20px;
    right: 0;
    left: 0;
    margin: 0 auto;
}

.the_bottom2 {
    position: absolute;
    bottom: 80px;
    right: 0;
    left: 0;
    margin: 0 auto;
}

/* 画像選択 */

#file_01,
#mask_file_01 {
    display: none;
}

.file_mask span {
    display: block;
    background-image: url(../images/icon_img.svg);
    background-position: left top;
    height: 72px;
    width: 56px;
    cursor: pointer;
}

.fc_gray {
    color: #999999;
}

.fc_bk {
    color: #333;
}

.fc_blue {
    color: blue !important;
}

.fc_white {
    color: white !important;
}

.fc_red {
    color: #d70936;
}

.data_set input[type="text"] {
    color: #333;
}

.ibox1a {
    padding: 24px 16px;
    color: #000;
    background: white;
    border-radius: 12px;
    box-shadow: 4px 4px 4px rgba(217, 217, 217, 0.5);
    font-size: 1.4rem;
}

input::placeholder {
    color: #afafaf;
}

textarea::placeholder {
    color: #afafaf;
}

.img_set {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    gap: 4px;
    align-content: space-evenly;
    align-items: start;
    justify-items: center;
    justify-content: center;
}

.del_img_relative {
    position: relative;
}

.del_img_absolute {
    position: absolute;
    top: 10px;
    right: 10px;
}

.link_u {
    text-decoration: none;
}
.link_ {
    text-decoration: underline;
}

.search_set {
    max-width: 100%;
    height: auto;
}

.bell_relative {
    position: relative;
}
.bell_absolute {
    position: absolute;
    left: 20px;
    bottom: 0;
    color: #ffffff;
    border-radius: 10px;
    background-color: #e93333;
    padding: 1px 8px 2px;
    font-size: 10px;
    letter-spacing: 0.04em;
}

.tbl_init_top {
    width: 100%;
    height: 40px;
    padding-right: 24px;
    padding-left: 24px;
    background-color: #f1f1f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.gnav-wrap {
    padding: 0 16px;
    display: flex;
}
/* 投稿関係 */

.tbl_sub_div {
    width: 100%;
    display: inline-flex;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

.div_data {
    max-width: 100%;
    padding: 10px 0px;
}

.div_init {
    max-width: 100%;
}

.txtR_del {
    text-align: right;
    width: 60px;
}

.div_delete {
    width: 60px;
    text-align: right;
    white-space: nowrap;
}

.tbl_right {
    text-align: right;
}

/* チャレンジ関係 */

.title_c {
    color: #f846ad;
    padding-bottom: 0.5em;
}

.ibox_kage_c {
    padding: 1em 1.5em;
    margin: 0.5em 0;
    color: #000;
    background: white;
    border-radius: 10px;
    font-size: 1.2rem;
}

.ibox_display {
    padding: 1em 1.5em;
    margin: 0.5em 0;
    color: #000;
    background: #f9f9f9;
    border-radius: 10px;
    font-size: 1.2rem;
}

.sns_set {
    display: grid;
    grid-template-columns: repeat(3, 33%);
    gap: 4px;
    align-content: space-evenly;
    align-items: start;
    justify-items: center;
    justify-content: center;
    margin-top: 1em;
}

.sns_init {
    width: fit-content;
    display: inline-flex;
    color: #333;
    /*    color: #F90094;*/
    font-weight: bold;
    border-radius: 4px;
    background-color: #ffffff;
    font-size: small;
    align-items: center;
}

.sns_nice {
    display: block;
}
.sns_nice_on {
    display: block;
}
.sns_comment {
    display: block;
}
.sns_comment_on {
    display: block;
}
.sns_favorite {
    display: block;
}
.sns_favorite_on {
    display: block;
}

.chg_please {
    width: fit-content;
    display: inline-flex;
    padding: 0.25em 0.5em;
    color: #333;
    font-weight: bold;
    font-size: small;
    align-items: center;
}

.stamp_set {
    width: fit-content;
    display: inline-flex;
    padding: 0.25em 0.5em;
    color: #f90094;
    font-weight: bold;
    font-size: small;
    align-items: center;
}

.stamp_set img {
    padding: 5px 10px;
}

.stamp_init {
    position: relative;
    width: 300px;
    height: 200px;
    box-shadow: 1px 1px 1px #ccc;
    z-index: auto;
}
.stamp_init img {
    width: 100%;
    height: 100%;
}
.stamp_init .ibox_stamp {
    position: absolute;
    top: -30px;
    left: 0;
    display: none;
}

.stamp_init:hover .ibox_stamp {
    z-index: 2;
    display: block;
}

.name_init {
    width: fit-content;
    display: inline-flex;
    color: #f90094;
    font-weight: bold;
    font-size: small;
    align-items: center;
    font-size: 1.2rem;
}

.final_report {
    display: block;
}

.img_title {
    display: block;
    padding: 1.5rem;
}

.final_report_init {
    display: block;
    padding: 1em 1em;
}

.challenge_occupation {
    display: block;
}
.challenge_member {
    display: block;
}

.ibox_stamp {
    width: fit-content;
    background: #000;
    border-radius: 30px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 0 10px;
}

.ibox_comment {
    background: #ffefff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 15px 15px;
    margin-bottom: 0.5em;
}

/* 返信用 */
.comment_reply {
    padding: 10px 0px;
    margin-left: 3em;
}

.comment {
    padding: 24px 0 0 0;
}

.comment_msg {
    color: #f90094;
    padding: 10px 0px;
}

.div_data_detail {
    max-width: 100%;
    padding: 10px 0px;
}

.p_init {
    padding: 5px 0px;
}

.translation {
    /* padding-top: 10px;*/
}

.comment_title {
    padding-top: 20px;
}

.nice_list {
    padding: 10px;
}

.ccomment_sns {
    display: inline-flex;
}

.nice_set {
    display: block;
}

/* 完了報告 */

/* コメント */

.checkbox_set {
}

.c_init {
    display: flex;
    align-items: flex-start;
    padding: 16px;
    border-bottom: 1px solid #e1e1e1;
}

.c_init--no-border {
    border-bottom: none;
}

.base_header {
    background: #fff;
}

.base_hr100 {
    padding: 1.5rem 0px;
    background: #fff;
    /*    overflow-y: auto;*/
    width: 100%;
    /*    height: auto*/
}

.basic-container {
    padding-left: 16px;
    padding-right: 16px;
}

.full-height {
    min-height: 100vh;
}

.full-height--has-header {
    min-height: 100vh;
    padding-top: 56px;
}

.full-height--has-bottom {
    min-height: 100vh;
    padding-bottom: 100px;
}

.full-height--has-bottom-large {
    min-height: 100vh;
    padding-bottom: 169px;
}

.base_w {
    padding: 16px;
    background: #fff;
    /* overflow-y: scroll; */
    width: 100%;
}

.base_w_h100 {
    padding: 1.5rem;
    background: #fff;
    /*    overflow-y: auto;*/
    width: 100%;
    /*    height: 100%;*/
    min-height: calc(100vh - 50px);
}

.base_g {
    padding: 1.5rem 1rem 0px 0px;
    background: #f1f1f1;
    /*    overflow-y: auto;*/
    width: 100%;
    /*    height: 100%*/
}

.base_g2 {
    padding: 1rem;
    background: #f1f1f1;
    /*    overflow-y: auto;*/
    width: 100%;
    /*    height: 100%*/
}

.base_g_w100 {
    background: #f1f1f1;
    width: 100%;
    /*    height: 100%;*/
    min-height: calc(100vh - 50px);
}

.badge_grant_search {
    height: 100vh !important;
}

.search_title__wrap {
    flex: 1 1 100%;
    width: 100%;
    display: flex;
    align-items: center;
}

.search_title {
    font-size: 1.3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 24px 0;
}

.badge_grant_search a {
    text-decoration: none;
    color: #333;
}

.badge_grant_search a:after {
    display: block;
    content: "";
    position: absolute;
    right: 30px;
    width: 6px;
    height: 6px;
    margin: -26px 0 0 0;
    border-top: solid 2px #093;
    border-right: solid 2px #093;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.search-header__subtitle {
    padding-top: 24px;
    padding-bottom: 14px;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #e1e1e1;
}

.search-header__subtitle--no-border {
    border-bottom: none;
}

.s_init_search {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e1e1e1;
    align-items: stretch;
}

.s_init_search2 {
    text-align: right;
    display: flex;
    flex-direction: column;
    flex: 0 0 0;
    align-items: flex-end;
    gap: 16px;
}

.selected-item-text {
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    line-height: 1.6;
    max-width: 100%;
}

.selected-item-text span:empty {
    display: none;
}

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.s_init_search2.has-child {
    flex: 1 0 50%;
    padding: 24px 0;
    width: 50%;
}

.s_del_search2 {
    width: 50px;
    display: block;
}

.sns_init3 {
    width: fit-content;
    display: inline-flex;
    color: #333;
    font-weight: bold;
    border-radius: 4px;
    font-size: small;
    align-items: center;
}

.s_init_search > div:nth-of-type(3) {
    margin-left: auto;
}

.badge_grant_search2 a {
    text-decoration: none;
    color: #333;
    width: 100%;
}

.icon_set_search {
    display: flex;
    align-items: center;
    padding-top: 0.5em;
    padding-bottom: 1em;
}

.icon_set_search > div:nth-of-type(3) {
    margin-left: auto;
}

.icon_set_search_sub_menu {
    display: flex;
    align-items: center;
}
.icon_set_search_sub_menu > div:nth-of-type(2) {
    margin-left: auto;
}

/* 検索 */

.search_data1 {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    color: #999;
    max-width: 100%;
}
.search_data2 {
    display: flex;
    align-items: center;
}
.search_data3 {
    display: flex;
    align-items: center;
}

/* お知らせ　*/
.news_init {
}
.news_check {
    color: red;
    display: block;
    padding-top: 16px;
    font-size: 1rem;
}

.news_set {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5em; /* 余白 */
    width: 100%;
}
/*.news_set>div:last-of-type{
    margin-left: auto;
}*/
.news_set > div:nth-of-type(3) {
    margin-left: auto;
}
.news_m_auto {
    display: contents;
    margin: auto;
}
.news_title {
    padding: 1em 0px;
    font-size: 1.4rem;
}
.news_date {
    padding: 1em;
    font-size: 1.4rem;
    color: #afafaf;
    /*	margin-right: 10px;*/
}

.news_init a {
    text-decoration: none;
    color: #333;
}

.news_outside {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.news_outside > div:nth-of-type(2) {
    margin-left: auto;
}

.news_title2 {
    padding: 1em 0px;
    font-size: 1.6rem;
    font-weight: bold;
}
.news_date2 {
    padding-top: 2em;
    font-size: 1.2rem;
}

/* ダッシュボード */

.dashboard_init {
}

.ibox_dashboard_title {
    padding: 1.5em 1em;
    margin: 0.5em 0;
    color: #000;
    background: #f1f1f1;
    font-size: 1.2rem;
}
.fc_pink {
    color: #f90094;
}
.fc_pink_numbers {
    color: #ff1493;
}

.dashboard_init a {
    text-decoration: none;
    color: #333;
}

.dashboard_set {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5em;
    width: 100%;
}

.new_order {
    display: block;
}

.nice_order {
    display: block;
}

.comment_order {
    display: block;
}

/* マイページ */

.iboxMypage {
    padding: 1em 1.5em;
    margin: 1em 0px;
    color: #000;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    font-size: 1.4rem;
}

.grid_2i {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-rows: repeat(1, 1fr);
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5em 1.5em;
}

.system_init {
    padding: 5em 2em;
}

/* タブ処理 */

.div_tab_comment_init {
    display: block;
    width: 100%;
    padding: 1.5em 1em;
    background-color: #fff;
}

.div_tab_stamp_init {
    display: block;
    width: 100%;
    padding: 1.5em 1em;
    background-color: #fff;
}

.page_next_back {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding-top: 1em;
}

.page_back {
    display: block;
}

.page_next {
    display: block;
}

.div_tab1 {
    border-top: 1px solid #e1e1e1;
    color: #999;
    width: 100%;
    display: block;
    padding: 1.5em 1em;
    background-color: #fff;
    text-align: center;
}

.div_tab2 {
    border-top: 1px solid #e1e1e1;
    color: #999;
    width: 100%;
    display: block;
    padding: 1.5em 1em;
    background-color: #fff;
    text-align: center;
}

.div_tab1_on {
    display: block;
    border-bottom: 4px solid #f90094;
    margin-bottom: -3px;
}
.div_tab2_on {
    display: block;
    border-bottom: 4px solid #f90094;
    margin-bottom: -3px;
}

/*.div_tab1a{
	font-size: 1em;
    padding: 15px 10px 10px;
    border: 1px solid #cecece;
    background: #ffffff;
    color: #333;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    display: inline-block;
}
.div_tab2a{
	font-size: 1em;
    padding: 15px 10px 10px;
    border: 1px solid #cecece;
    background: #ffffff;
    color: #333;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    display: inline-block;
}*/

/* ダイアログ 関係　*/

.modal-container {
    width: 100%;
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    z-index: 999;
}

.modal-container.active {
    opacity: 1;
    visibility: visible;
}

.modal-body {
    /*  position: relative; */
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    width: 90%;

    position: fixed;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.modal-close {
    position: absolute;
    top: -30px;
    right: 0;
    font-size: 14px;
    color: #fff;
    background: rgba(0, 0, 0, 60%);
    padding: 4px 15px;
    cursor: pointer;
    border-radius: 5px 5px 0 0;
}

.modal-content {
    border-radius: 10px;
    background: #fff;
    text-align: left;
    padding: 30px;
    font-weight: bold;
}

.bottom-fixed-area {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 16px 16px 30px 16px;
    background: #fff;
}

/* モーダル 投稿用 */

/* コンテンツ全体を囲うタグ */
.currency-wrapper {
    margin: 24px;
}

/* コンテンツのタイトル */
.currency__h2 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 24px;
}

/* ulのスタイル */
.currency-item__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* liのスタイル */
.currency__item {
    max-width: 200px;
    width: 100%;
    margin: 8px;
    padding: 8px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.3em;
    font-weight: 200;
    border: 1px solid black;
    cursor: pointer;
}

/* liのhover設定 */
@media (hover: hover) {
    .currency__item:hover {
        background-color: rgb(238, 238, 238);
    }
}

.modalp01 {
    display: block;
    width: 100% !important;
    height: 100vh !important;
}

.modal {
    width: 100% !important;
    height: 100vh !important;
}

.modal-container1 p:last-child {
    margin-bottom: 0;
}
.modal-content1 {
    background: #fff;
    overflow-y: auto;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    animation: show 0.6s linear 0s;
}

.modal-container2 p:last-child {
    margin-bottom: 0;
}
.modal-content2 {
    background: #fff;
    overflow-y: auto;
    width: 100%;
    /*    position: absolute;*/
    top: 0;
    left: 0;
    height: 100%;
    animation: show 0.6s linear 0s;
}
.modal-top {
}

/* いいね一覧 */
.modal-content3 {
    background: #fff;
    overflow-y: auto;
    width: 50%;
    top: 0;
    left: 0;
    height: 100%;
    animation: show 0.6s linear 0s;
}

.modal-container1_1 {
    padding: 1em;
    padding-top: 50px;
    display: block;
}

.modal-container1_2 {
    padding: 1em;
    display: block;
    /*padding-top:50px*/
}

.modal-container1_3 {
    padding: 1em;
    display: block;
    /*padding-top:50px*/
}

.modal-container2 {
    padding: 1em;
    /*display: none;*/
    /*padding-top:50px*/
}

.modal-close1 {
}
.modal-close1:hover,
.modal-close1:focus {
    text-decoration: none;
    cursor: pointer;
}

.modal-close2 {
}
.modal-close2:hover,
.modal-close2:focus {
    text-decoration: none;
    cursor: pointer;
}
.modal-title {
    color: #fff;
}
@keyframes show {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

li a {
    display: block;
    height: 100%;
    width: 100%;
}

li {
    list-style-type: none;
    font-size: 18px;
    padding: 1em;
    width: 100%;
}

/* 複数選択 */
.tbl_set_check_category3 label {
    margin-right: 5px; /* ボタン同士の間隔 */
    width: 100%;
}
.tbl_set_check_category3 label input {
    display: none; /* デフォルトのinputは非表示にする */
}
.tbl_set_check_category3 label span {
    color: #333;
    font-size: 12px; /* 文字サイズを14pxに */
    border-radius: 8px; /* 角丸を入れて、左右が丸いボタンにする */
    padding: 5px 20px; /* 上下左右に余白をトル */
    background: #f9f9f9;
    display: block;
    width: 100%;
}
.tbl_set_check_category3 label input:checked + span {
    color: #f935ab;
    background: #fdbcef;
}

.radio-group {
    display: block;
    margin-bottom: 0.5rem;
    padding: 1rem 0.5rem;
}

.radio-area input[type="radio"] {
    /*    position: absolute;*/
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.radio-area label {
    cursor: pointer;
    padding: 1rem;
    color: #333;
    background-color: #f9f9f9;
    transition: 0.5s;
    border-radius: 0.5rem;
}

.radio-area:first-child label {
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    border-radius: 0.5rem;
}

.radio-area:last-child label {
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    border-radius: 0.5rem;
}

.wide-radio-btn {
    width: 100%;
}

.radio-area input[type="radio"]:checked + label {
    color: F935AB;
    background-color: #fdbcef;
}

header_mo {
    /*  position: fixed;
  z-index: 999;*/
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-sizing: border-box;
}

.header_nice {
    width: 50%;
}

.chg_title_link {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    display: block;
}

.set_modal {
    position: absolute !important;
    display: block;
    height: 100% !important;
    width: 100% !important;
    top: 0px !important;
    left: 0px !important;
}
.set_modal_contents {
    z-index: 9999 !important;
    position: absolute !important;
    width: 100% !important;
    top: 0px !important;
}

a:hover {
    opacity: 0.6;
}

.modal_curious {
    width: 100% !important;
    height: 100vh !important;
    overflow-y: scroll !important;
    width: 100% !important;
    background: #f1f1f1;
}

.modal_curious_white {
    width: 100% !important;
    height: 100vh !important;
    overflow-y: scroll !important;
    width: 100% !important;
    background: #ffffff;
}

.modal_search {
    padding: 1.5rem !important;
    background: #fff !important;
    width: 100% !important;
    height: 100vh !important;
    overflow-y: auto !important;
}
.base_w_search {
    padding: 1.5rem;
    background: #fff;
    overflow-y: auto;
    width: 100%;
    height: 100%;
}

.badge_granted_search {
    padding: 1.5rem !important;
    background: #fff !important;
    overflow-y: auto !important;
    width: 100% !important;
    height: 100% !important;
    position: fixed !important;
    top: 0 !important;
}

.business_selection {
    padding: 1.5rem !important;
    background: #fff !important;
    overflow-y: auto !important;
    width: 100% !important;
    height: 100% !important;
    position: fixed !important;
    top: 50px !important;
}

.m_bak_init_setting {
    height: 100vh !important;
}

.header {
}

.header__back {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
}

.header__close {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
}

.header__title {
    font-weight: 500;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: #333333;
}

/*search2 page*/
.search2-header {
}

.search2-header__back {
    width: 24px;
    flex: 1 0 24px;
}
.search2-body {
    position: fixed;
    height: 100%;
    overflow-y: scroll;
    padding-top: 62px;
    padding-bottom: 100px;
    width: 100%;
    background: #fff;
}

/*modal*/
.full-modal-wrap {
}

.full-modal-header {
}

.header-title-area {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 56px;
    border-bottom: 1px solid #e1e1e1;
    position: relative;
}

.full-modal-header__back {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
}

.full-modal-header__close {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
}

.full-modal-header__title {
    font-weight: 500;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: #333333;
}

.full-modal-body {
    height: calc(100% - 56px);
    width: 100%;
    top: 56px;
    position: fixed;
    padding-top: 0;
    background: #fff;
    overflow-y: auto;
    overscroll-behavior-y: none;
}

.full-modal-body__message {
    padding-top: 24px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.04em;
}

.full-modal-body--has-search-header {
    top: 133px;
    height: calc(100% - 133px);
}

.full-modal-body--has-btn {
    padding-bottom: 100px;
}

.full-modal-body__inner-item {
    border-bottom: 1px solid #e1e1e1;
    display: block;
}

.full-modal-body__inner-item--small {
    padding: 6px 0px 10px;
}

.bg-gray {
    background-color: #f1f1f1;
}

.bg-white {
    background-color: #fff;
}

.has-button-header {
    padding-top: 111px;
}

.post-card-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 24px;
}

.header-notice-wrap {
    padding-right: 30px;
}

.header-search-icon {
    flex: 1 1 60%;
}

.fav-comment-icon-group {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.last-update-text {
    font-size: 1.2rem;
    color: #808080;
    padding: 0 10px 10px;
    text-align: right;
}
