@charset "UTF-8";

.reg-step-content .upper {
    padding: 4px 8px;
    border-top: 1px solid rgba(0, 0, 0, .125);
    font-weight: bold;
}

.reg-steps {
    display: flex;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, .125);
}

.reg-steps>div {
    margin: 0;
    text-align: center;
    width: calc(100%/7);
    border: 0;
    border-right: 1px solid rgba(0, 0, 0, .125);
}

.reg-steps button {
    color: #337ab7;
    background: rgb(13 110 253 / 0);
    font-size: 14px;
    font-weight: bold;
    padding: 8px;
    border: none;
}

@media screen and (max-width: 768px) {
    .reg-steps button {
        font-size: 10px;
        font-family: Noto Serif Myanmar;
        height: 50px;
        padding: 4px;
    }
}

.reg-steps button::after {
    width: 12px;
    height: 12px;
    background-size: 12px;
}

.step-number {
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, .125);
}

.step-number p {
    background: #fff;
    font-size: 14px;
    text-align: center;
    padding: 4px;
    border-right: 1px solid rgba(0, 0, 0, .125);
    margin-bottom: 0;
}

.step-number p:last-child {
    border-right: none;
}

.button-disabled {
    color: rgba(0, 0, 0, .125) !important;
}

.org-picture-file {
    display: block !important;
    font-size: 1.6rem;
    line-height: 30px;
    height: 30px;
    margin: 3rem 0;
}

/* 興味タグ */
.interesting-flex {
    display: flex;
    flex-wrap: wrap;
}

.interesting:after {
    clear: both;
    content: '';
    display: block;
}

.interesting-item {
    display: inline-block;
    width: auto;
    color: #707070;
    font-size: 10px !important;
    font-weight: 400;
    font-family: Noto Serif Myanmar;
    background-color: #F3F3F3;
    border-radius: 4px;
    padding: 7px 5px;
    margin-bottom: 8px;
    text-align: center;
    padding-bottom: 0;
    cursor: pointer;
    margin-right: 2px;
}

.interesting-active {
    border: 1px solid red;
    color: red;
}

.interesting-item-text {
    font-size: 10px;
    cursor: pointer;
}

/* sorich追加 */
.org-detail {
    position: inherit !important;
    background: none !important;
    height: fit-content !important;
    padding: 1rem !important;
    font-size: 14px !important;
}

.org-start-date {}

.switch-org {
    height: 22px;
    line-height: 22px;
}

.edit-org {
    font-size: 1.2rem;
    display: block;
    margin: 3rem auto;
    padding: 1rem 0;
}

.org-search-box:focus {
    outline: none;
}

.org-search-box {
    cursor: pointer;
    border: none;
    width: 100%;
    height: 100%;
}

.org-search-keyword:focus {
    outline: none;
}

.org-search-keyword {
    padding: 1rem;
}

/* コミュニティ詳細は3行まで表示して、ボタンで表示/非表示切り替え */
.readmore {
    position: relative;
    box-sizing: border-box;
    margin: 1rem 0 2rem;
}

.readmore-content {
    position: relative;
    overflow: hidden;
    height: 90px;
    padding: 1rem 0;
}

.readmore-content p {
    margin: 0;
    font-size: 1.2rem;
}

.readmore-content::before {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    content: "";
    height: 40px;
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.8) 50%, #fff 100%);
    background: linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.8) 50%, #fff 100%);
}

.readmore-label {
    display: table;
    position: absolute;
    bottom: 5px;
    left: 42%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    margin: 0 auto;
    z-index: 2;
    padding: 0.4rem 2rem;
    background-color: rgba(255,255,255,0.8);
    color: #333;
}

.readmore-label:hover {
    color: #666;
}

.readmore-label:before {
    content: 'もっと読む';
    display: block;
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
    height: 18px;
    line-height: 24px;
}

.readmore-check {
    display: none;
}

.readmore-check:checked~.readmore-label {
    position: static;
    transform: translateX(0);
    -webkit-transform: translateX(0);
}

.readmore-check:checked~.readmore-label:before {
    content: '閉じる';
    display: block;
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
    height: 18px;
    line-height: 24px;
}

.readmore-check:checked~.readmore-content {
    height: auto;
}

.readmore-check:checked~.readmore-content::before {
    display: none;
}

.organization-tag {
    width: 30%;
    text-align: center;
    line-height: 20px;
    height: 20px;
    cursor: pointer;
    display: block;
    font-size: 10px;
    font-weight: bold;
    background-color: #2077BA;
    border: 1px solid #2077BA;
    color: #ffffff;
    padding: 0.4rem;
    border-radius: 15px;
    margin-right: 10px;
    margin-bottom: 5px;
}
p.organization-tag:hover {
    background-color: #2077BA;
    color: #ffffff;
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
}
.organization-tag:hover {
    background-color: #fff;
    color: #2077BA;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
}

.org-interest-icon {
    width: 24px;
    height: 24px;
}

.org-interest-icon:focus, .org-interest-icon:focus-visible {
    outline: none;
}
.org-interest-icon.on-click {
    background: url(/assets/img/mail_icon_2.svg) no-repeat;
    background-size: 100% 100%;
}

/* 不足分 */
.page__community {
    max-width: calc(1120px + 8%);
    margin: 0 auto 7rem;
    padding: 0 4%;
}

@media screen and (max-width: 1120px) {
    .page__community {
        max-width: calc(700px + 8%);
        margin: 0 auto 6rem;
        padding: 0 4%;
    }
}

@media screen and (max-width: 768px) {
    .page__community {
        max-width: calc(700px + 8%);
        margin: 0 auto 6rem;
        padding: 0 4%;
    }
}

@media screen and (max-width: 480px) {
    .page__community {
        max-width: calc(345px + 8%);
        margin: 0 auto;
        padding: 0 4%;
    }
}

.page__inner {
    padding: 5.5rem 0 4rem;
}

@media screen and (max-width: 768px) {
    .page__inner {
        padding: 5.5rem 0 4rem;
    }
}

@media screen and (max-width: 480px) {
    .page__inner {
        padding: 1.6rem 0 9rem;
        padding-top: 5rem;
    }
}

.top__communityTitle {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

@media screen and (max-width: 1120px) {
    .top__communityTitle {
        font-size: 2rem;
        margin: 1.6rem 0 1rem;
    }
}

/* 検索バー */
.community__searchBox {
    font-family: auto;
    display: flex;
    width: 100%;
    height: 50px;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    list-style: none;
    padding: 0;
    margin-bottom: 4rem;
}

@media screen and (max-width: 1120px) {
    .community__searchBox {
        padding: 2rem;
        height: auto;
        flex-direction: column;
    }
}

.community__searchItem {
    width: 20%;
    position: relative;
}

@media screen and (max-width: 1120px) {
    .community__searchItem {
        width: 100%;
        height: 40px;
        margin-bottom: 1rem;
    }
}

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

@media screen and (max-width: 1120px) {
    .pin {
        left: 12px;
    }
}


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

@media screen and (max-width: 1120px) {
    .forward {
        right: 12px;
    }
}

.area {
    width: 16px;
}
.person {
    width: 20px;
}
.area, .person {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* left: 23px; */
    left: 12px;
    
    z-index: 999;
}

@media screen and (max-width: 1120px) {
    .area, .person {
        left: 8px;
        /* padding-bottom: 3px; */
        padding-bottom: 0px;
    }
}

.community__searchItem.-ber::after {
    position: absolute;
    top: 3px;
    right: 0;
    height: 44px;
    width: 1px;
    content: "";
    background-color: #BFBFBF;
    /* border-right: 1px solid #BFBFBF; */
}

@media screen and (max-width: 1120px) {
    .community__searchItem.-ber::after {
        content: none;
    }
}

.community__searchItem input {
    width: 100%;
    height: 100%;
    border: 0;
}

@media screen and (max-width: 1120px) {
    .community__searchItem input {
        background-color: #F0F2F5;
        border-radius: 6px;
    }
}

.community__searchItem.-window {
    width: 51%;
}

@media screen and (max-width: 1120px) {
    .community__searchItem.-window {
        width: 100%;
    }
}

::placeholder {
    color: #050505;
    font-size: 1.6rem;
    position: relative;
    top: 0.2em;
    padding-left: 2rem;
}

@media screen and (max-width: 1120px) {
    ::placeholder {
        font-size: 1.4rem;
        padding-left: 1rem;
    }
}

@media screen and (max-width: 480px) {
    ::placeholder {
        font-size: 1.4rem;
        padding-left: 1rem;
        top: 0;
    }
}

.s1::placeholder {
    padding-left: 4rem;
}

@media screen and (max-width: 1120px) {
    .s1::placeholder {
        padding-left: 3.3rem;
    }
}

.s2::placeholder {
    padding-left: 5rem;
}

@media screen and (max-width: 1120px) {
    .s2::placeholder {
        padding-left: 3rem;
    }
}

.community__search__button {
    border-radius: 6px;
    background: #2077ba;
    border: none;
    color: #FFFFFF;
    width: 9%;
    font-size: 1.6rem;
}

@media screen and (max-width: 1120px) {
    .community__search__button {
        width: 100%;
        height: 40px;
    }
}

.community__search__button img {
    margin-bottom: 2px;
    margin-right: 5px;
}

/* 検索バー end */
/*------------------------------------
コミュニティセクション
------------------------------------*/
.community {
    max-width: calc(1120px + 8%);
    margin: 0 auto;
    padding: 0 4%;
}

@media screen and (max-width: 1120px) {
    .community {
        max-width: calc(700px + 8%);
        margin: 0 auto;
        padding: 0 4%;
    }
}

@media screen and (max-width: 768px) {
    .community {
        max-width: calc(700px + 8%);
        margin: 0 auto;
        padding: 0 4%;
    }
}

@media screen and (max-width: 480px) {
    .community {
        max-width: calc(345px + 8%);
        margin: 0 auto;
        padding: 0 4%;
    }
}

.community__layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
}

@media screen and (max-width: 1120px) {
    .community__layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
}

@media screen and (max-width: 768px) {
    .community__layout {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media screen and (max-width: 480px) {
    .community__layout {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

.community__card {
    width: 355px;
    background: #fff;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    border-radius: 4px;
    padding: 3rem 1rem 1.5rem 9rem;
    position: relative;
}

@media screen and (max-width: 480px) {
    .community__card {
        /* padding: 0.8rem 1rem 1.5rem 9rem; */
        padding: 2rem 1rem 1rem 23%;
        position: relative;
    }
}

.community__person {
    width: 6rem;
    height: 6rem;
    position: absolute;
    top: 1.8rem;
    left: 1.5rem;
    margin: 0;
}

@media screen and (max-width: 480px) {
    .community__person {
        width: 5.5rem;
    }
}

@media screen and (max-width: 369px) {
    .community__person {
        width: 5rem;
    }
}

.community__person img {
    width: 100%;
}


.community__heart {
    width: 2.8rem;
    position: absolute;
    top: 2.5rem;
    right: 1.5rem;
    margin: 0;
}

.community__heart img {
    width: 100%;
}

.community__card__textBox {}

.community__card__title {
    width: 20rem;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.community__card__title a:hover {
    color: inherit;
}

@media screen and (max-width: 320px) {
    .community__card__title {
        width: 16rem;
    }
}

.community__card__text {
    word-wrap: break-word;
    font-size: 1rem;
    margin-bottom: 2.2rem;
}

.community__count__flex {
    display: flex;
    align-items: flex-end;
    margin: 0 0 10px 0;
}

.community__count__icon {
    margin: 0 7px 0 0;
}

.community__count__number {
    font-size: 1rem;
    line-height: 1.05;
    margin: 0;
}

/* ---- コミュニティセクション end ---- */

/* セレクトボックス */
.select-hidden {
    display: none;
    visibility: hidden;
    padding-right: 10px;
}

.select {
    cursor: pointer;
    display: inline-block;
    position: relative;
    font-size: 16px;
    color: #212529;
    width: 100%;
    height: 5rem;
}

@media screen and (max-width: 1120px) {
    .select {
        height: 4rem;
    }
}

.select-styled {
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    padding: 8px 15px 8px 4rem;
    transition: all 0.2s ease-in;
    border-radius: 6px;
    height: 100%;
    padding: 1.8rem 4rem;
    line-height: 1;
    padding: 2.8rem 4rem 1.8rem 4rem;
}

@media screen and (max-width: 1120px) {
    .select-styled {
        background-color: #F0F2F5;
    }
}

@media screen and (max-width: 480px) {
    .select-styled {
        background-color: #F0F2F5;
        font-size: 1.4rem;
        /* padding: 1.8rem 3.3rem; */
    }
}

.select-styled::before {
    content: "";
    width: 0.7em;
    height: 1.1em;
    display: inline-block;
    background: url(/assets/img/map-pin_icon.svg) no-repeat;
    background-size: contain;
    margin-right: 0.5rem;
    vertical-align: bottom;
    background-position: center;
    position: absolute;
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
}

@media screen and (max-width: 1120px) {
    .select-styled::before {
        top: 57%;
    }
}

@media screen and (max-width: 480px) {
    .select-styled::before {
        top: 24px;
        left: 1.2rem;
        width: 0.8em;
        height: 1.1em;
    }
}

.select-styled:after {
    content: "";
    width: 1.07em;
    height: 0.8em;
    display: inline-block;
    background: url(/assets/img/arrow-forward_icon.svg) no-repeat;
    background-size: contain;
    /* margin-right: 0.5rem; */
    vertical-align: bottom;
    background-position: center;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

@media screen and (max-width: 1120px) {
    .select-styled:after {
        top: 60%;
    }
}

.select-styled:active:after,
.select-styled.active:after {
    transform: rotate(-180deg);
    top: 16px;
    /* border-color: transparent transparent #fff transparent; */
}

.select-options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: #F0F2F5;
}

.select-options li {
    margin: 0;
    /* padding: 12px 0; */
    padding: 1.3rem 2rem;
    text-indent: 15px;
    border-top: 1px solid #F0F2F5;
    transition: all 0.15s ease-in;
}

.select-options li:hover,
.select-options li.is-selected {
    color: #2077BA;
    background: #fff;
}

.select-options li[rel="hide"] {
    display: none;
}

/* ハッシュタグ部分 */
.hashTag__flex {
    display: flex;
    /* justify-content: space-between; */
    padding: 0 0.4rem;
}

.hashTag {
    font-size: 1rem;
    font-weight: bold;
    margin-right: 0.4rem;
}

.hashTag:last-of-type {
    margin-right: 0;
}

/* @media screen and (max-width: 480px) {
    .hashTag__flex {
        display: none;
    }
} */

/* tag */
.tag__flex {
    display: none;
}

@media screen and (max-width: 480px) {
    .tag__flex {
        display: flex;
        margin-bottom: 0;
    }
}

.tag {
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background-color: #2077BA;
    width: fit-content;
    border-radius: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px 6px;
}

@media screen and (max-width: 480px) {
    .tag {
        padding-top: 7.5px;
    }
}

.tag:last-of-type {
    margin-right: 0;
}

/* @media screen and (max-width: 480px) {
    .pagination__flex {
        display: none;
    }
} */

.pagination__item span {
    padding-top: 0.8rem;
}

/* ---- OS（Windows）ごとスタイル変更 ---- */
.win .select-styled {
    padding: 1.8rem 4rem;
}

.win .community__searchItem input {
    padding-top: 0rem;
}

@media screen and (max-width: 480px) {
    .win .community__searchItem input {
        padding-top: 0.5rem;
    }
}

.win .community__search__button {
    padding-top: 0rem;
}

.win .pagination__item span {
    padding-top: 0rem;
}

@media screen and (max-width: 480px) {
    .win .select-styled::before {
        top: 52%;
    }
}

@media screen and (max-width: 480px) {
    .win .tag {
        padding-top: 3px;
    }
}

/*------------------------------------
invite_community.html
------------------------------------*/
.page__invite-community__inner {
    padding: 5.5rem 0 33rem;
}

@media screen and (max-width: 480px) {
    .page__invite-community__inner {
        padding: 3.6rem 0 24rem;
    }
}

.page__invite-community {
    max-width: calc(1120px + 8%);
    margin: 0 auto;
    padding: 0 4%;
}

@media screen and (max-width: 1180px) {
    .page__invite-community {
        max-width: calc(700px + 8%);
        margin: 0 auto 6rem;
        padding: 0 4%;
    }
}

.page__invite-community__mainTitle {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 4rem;
}

@media screen and (max-width: 480px) {
    .page__invite-community__mainTitle {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

.sp-only {
    display: none;
}

@media screen and (max-width: 480px) {
    .sp-only {
        display: block;
    }
}

.page__invite-community__layout {
    padding: 0 2.6rem;
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

@media screen and (max-width: 1180px) {
    .page__invite-community__layout {
        justify-content: space-between;
        padding: 0;
    }
}

@media screen and (max-width: 480px) {
    .page__invite-community__layout {
        flex-direction: column;
        padding: 0;
    }
}

/* カード部分 */
.page__invite-community__card {
    width: 32.3%;
    height: fit-content;
    padding: 1rem;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

@media screen and (max-width: 1180px) {
    .page__invite-community__card {
        width: 48%;
    }

    .page__invite-community__card:last-of-type {}
}

@media screen and (max-width: 480px) {
    .page__invite-community__card {
        width: 100%;
    }
}

.page__invite-community__link {
    display: flex;
    justify-content: space-between;
}

.page__invite-community__person {
    width: 5.4rem;
    height: 5.4rem;
    margin-right: 1.2rem;
    margin-bottom: 0;
}

.page__invite-community__person>img {
    width: 100%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.page__invite-community__textBox {
    width: 26rem;
}

.page__invite-community__title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 0.5rem;
    margin-bottom: 0.7rem;
}

.page__invite-community__text {
    font-size: 1rem;
    text-align: justify;
    margin-bottom: 0;
}

/* コミュニティに招待 */
.invite-organization div {
    font-family: auto;
}