@charset "UTF-8";

.page__communitySingle__inner {
  padding: 2.5rem 0 7rem;
}
@media screen and (max-width: 480px) {
  .page__communitySingle__inner {
    padding: 2rem 0 6rem;
  }
}

.page__communitySingle__wrap {
  max-width: calc(810px + 8%);
  width: 100%;
  padding: 0 4%;
  margin: 0 auto;
}

.return {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .return {
    margin-bottom: 2.7rem;
  }
}
.fa-arrow-left {
  color: #4B4B4B;
  margin-right: 0.3rem;
  font-weight: bold;
  font-size: 1.5rem;
}

/* flex_wrap */
.page__communitySingle__flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .page__communitySingle__flex {
    flex-direction: column;
  }
}
/*------------------------------------
申込セクション
------------------------------------*/
.communitySingle__flexItem1 {
  width: 59%;

}
@media screen and (max-width: 767px) {
  .communitySingle__flexItem1 {
    width: 100%;
  
  }
}
/* インフォ */
.communitySingle__info {
  font-family: auto;
  width: 100%;
  padding: 2rem 2rem 4rem;
  margin-bottom: 2.5rem;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 480px) {
  .communitySingle__info {
    padding: 2rem 1.5rem 4rem;
    margin-bottom: 2rem;
  }
}

.communitySingle__info__img {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 480px) {
  .communitySingle__info__img {
    width: 8rem;
    margin-bottom: 1.2rem;
  }
}

.communitySingle__info__title1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 4.7rem;
}
@media screen and (max-width: 480px) {
  .communitySingle__info__title1 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
}

/* リンクボタン */
.communitySingle__info__linkFlex {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 480px) {
  .communitySingle__info__linkFlex {
    margin-bottom: 4rem;
  }
}

.communitySingle__info__link1 {
  width: 100%;
  height: 5.5rem;
  background-color: #2077BA;
  color: #fff;
  border-radius: 5px;
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 480px) {
  .communitySingle__info__link1 {
    width: 100%;
  }
}
.communitySingle__info__link1::before {
  content: "";
  width: 1.2em;
  height: 1.09em;
  display: inline-block;
  background: url(/assets/img/heart_white_icon.svg) no-repeat;
  background-size: contain;
  margin-right: 0.75rem;
  background-position: center;
}
.communitySingle__info__link1:hover {
  color: #fff;
  background-color: #18598A;
  transition: all .5s;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
}

.communitySingle__info__link2 {
  width: 100%;
  height: 5.5rem;
  background-color: #E2E6EA;
  border-radius: 5px;
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 480px) {
  .communitySingle__info__link2 {
    width: 100%;
  }
}
.communitySingle__info__link2::before {
  content: "";
  width: 1.08em;
  height: 0.9em;
  display: inline-block;
  background: url(/assets/img/mail_icon_2.svg) no-repeat;
  background-size: contain;
  margin-right: 1rem;
  /* margin-top: 0.2rem; */
  background-position: center;
}
.communitySingle__info__link2:hover{
  background: #cbcfd4;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}
.communitySingle__info__link3 {
  width: 8%;
  /* height: 3.5rem; */
  height: 5.5rem;
  background-color: #E2E6EA;
  border-radius: 5px;
  position: relative;
}
@media screen and (max-width: 480px) {
  .communitySingle__info__link3 {
    width: 11.2%;
  }
}
.communitySingle__info__link3 img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
/* リンクボタン end */

.communitySingle__info__title2 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.communitySingle__info__text {
  font-size: 1.2rem;
  line-height: 1.75;
  margin-bottom: 4rem;
}

/* ハッシュタグ部分 */
.hashTag__flex {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 25px;
  padding: 0 0.4rem;
  margin-bottom: 2.3rem;
}

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

.hashTag:last-of-type {
  margin-right: 0;
}
/* ハッシュタグ部分 end */
/*  */
.communitySingle__infoList {
  list-style: none;
  font-size: 1.4rem;
  margin-bottom: 0;
  padding: 0;
}

/* /withtalk */

.communitySingle__infoList__address {
  margin-bottom: 1.26rem;
}
@media screen and (max-width: 480px) {
  .communitySingle__infoList__address {
    margin-bottom: 1.36rem;
  }
}
.communitySingle__infoList__address::before {
  content: "";
  width: 1.1em;
  height: 1.7em;
  display: inline-block;
  background: url(/assets/img/map-pin_icon.svg) no-repeat;
  background-size: contain;
  margin-right: 1.4rem;
  margin-left: 0.3rem;
  vertical-align: middle;
  background-position: center;
}

/* .communitySingle__infoList__link a {
  margin-top: 1rem;
  display: inline-block;
} */
.communitySingle__infoList__link::before {
  content: "";
  width: 1.4em;
  height: 1.4em;
  display: inline-block;
  background: url(/assets/img/link_icon.svg) no-repeat;
  background-size: contain;
  margin-right: 1.25rem;
  /* vertical-align: bottom; */
  vertical-align: -5px;
  background-position: center;
}


/* 参加予定 */
.participation__wrap {
  margin-bottom: 0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  padding: 1.5rem 2.3rem 2.7rem;
}
@media screen and (max-width: 767px) {
  .participation__wrap {
    margin-bottom: 2rem;
  }
}

.participation__title__flex {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.participation__title {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0;
}

.number {
  display: inline-block;
  font-size: 1.2rem;
  margin-left: 2rem;
}

.participation__item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.participation__img {
  width: 4rem;
  height: 4rem;
  margin: 0;
}
.participation__img img {
  width: 100%;
  height: 100%;
}

.participation__text {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: bold;
  margin: 0 0 0 1rem;
  margin-top: 1rem;
}

.more {
  font-size: 1.4rem;
  text-align: center;
  margin-top: 2.5rem;
  display: block;
}
/*------------------------------------
申込セクション end
------------------------------------*/

/*------------------------------------
イベントセクション
------------------------------------*/
.communitySingle__flexItem2 {
  width: 39%;
  border-radius: 14px;
  background: #fff;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  padding: 2.3rem 2.3rem 3rem;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .communitySingle__flexItem2 {
    width: 100%;
    padding: 2.4rem 1.5rem 4rem;
  }
}

.communitySingle__flexItem2__list1, .communitySingle__flexItem2__list2{
  margin-bottom: 3.7rem;
}

.communitySingle__flexItem2__title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width: 480px) {
  .communitySingle__flexItem2__title {
    margin-bottom: 2rem;
  }
}

.community__card {
  border-radius: 4px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
  font-size: 1rem;
  margin-bottom: 2.4rem;
}
.communitySingle__adjust1 .community__card {
padding: 0!important;
  }

.community__card:last-of-type {
  margin-bottom: 0;
}
.community__card::before {
  content: "";
  width: 5.5em;
  height: 5.5em;
  display: inline-block;
  background: url(/assets/img/decoration_icon.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
}

.community__img {
  width: 100%;
  /* height: 86px; */
  border-radius: 4px 4px 0px 0px;
  margin-bottom: 2rem;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);

}

.community__img img {
  width: 100%;
}

.community__textBox {
  padding: 0 12px 20px;
}

.community__title {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.community__information {
  list-style: none;
  padding: 0;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.community__date {
  margin-bottom: 0.5rem;
  font-weight: 600;
  
}
.community__date::before {
  content: "";
  width: 1.5em;
  height: 1.7em;
  display: inline-block;
  background: url(/assets/img/calendar_icon.svg) no-repeat;
  background-size: contain;
  margin-right: 0.46rem;
  /* vertical-align: bottom; */
  vertical-align: -5px;
  background-position: center;
}

.community__address {
  margin-bottom: 0.5rem;
}
.community__address::before {
  content: "";
  width: 1.5em;
  height: 1.7em;
  display: inline-block;
  background: url(/assets/img/map-pin_icon.svg) no-repeat;
  background-size: contain;
  margin-right: 0.65rem;
   /* vertical-align: bottom; */
  vertical-align: -5px;
  background-position: center;
}
.community__community {

}
.community__community::before {
  content: "";
  width: 1.5em;
  height: 1.7em;
  display: inline-block;
  background: url(/assets/img/person_icon_1.svg) no-repeat;
  background-size: contain;
  margin-right: 0.5rem;
   /* vertical-align: bottom; */
  vertical-align: -5px;
  background-position: center;
}

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

.community__button__interest {
  width: 83%;
  /* height: 31px; */
  border-radius: 5px;
  background: #e2e6ea;
  display: block;
  margin-right: 6px;
  font-size: 1.2rem;
  text-align: center;
  font-weight: bold;
  padding: 9px 0;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .community__button__interest {
    width: 86%;
  }
}
.community__button__interest::before {
  content: "";
  width: 1.25em;
  height: 1.22em;
  display: inline-block;
  background: url(/assets/img/star_icon.svg) no-repeat;
  background-size: contain;
  margin-right: 1.2rem;
  /* vertical-align: bottom; */
  vertical-align: -3px;
  background-position: center;
}
.community__button__interest::after {
  content: "";
  width: 1.25em;
  height: 1.22em;
  display: inline-block;
  background: url(/assets/img/black_lower\ Triangle_icon.svg) no-repeat;
  background-size: contain;
  margin-left: 7.5px;
   /* vertical-align: bottom; */
  vertical-align: -4px;
  background-position: center;
}

.community__button__interest span {
margin-top: 1rem;
display: inline-block;
}

.community__button__rightArrow {
  width: 14.2%;
  border-radius: 5px;
  background: #e2e6ea;
  display: block;
  position: relative;
}
@media screen and (max-width: 480px) {
  .community__button__rightArrow {
    width: 12.75%;
  }
}

.rightArrow__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  padding: 8px 0;
}


/*------------------------------------
セクション end
------------------------------------*/
.communitySingle__info__link1 span {
  padding-top: 1rem;
}
.communitySingle__info__link2 span {
  padding-top: 1rem;
}

/* ---- OS（Windows）ごとスタイル変更 ---- */
.win .communitySingle__info__link1 span {
  padding-top: 0.2rem;
}
.win .communitySingle__info__link2 span {
  padding-top: 0.2rem;
}
.win .community__button__interest span {
  margin-top: 0rem;
  display: inline-block;
  }

.win .participation__text {
  margin-top: 0rem;
}

.footerSp__bottom {
  display: none;
  
  }
  @media screen and (max-width: 480px) {
      .footer  {
          padding-bottom:100px;
        }
      .footerSp__bottom {
          position: fixed;
          /* border-top: 1px solid #000000; */
          background: #ffffff;
          width: 100%;
          height: 53px;
          z-index: 1000;
          /* top: 0; */
          bottom: 0;
          left: 0;
          display: flex;
          justify-content: center;
          padding: 1rem 0;
          padding: 0.5rem 0;
      }
      .footerSp__bottomBox {
          width: 100px;
          height: auto;
      }
      .footerSp__bottomLinkImg {
          width: 39px;
          margin: 0 auto;
          margin-bottom: 0.5rem;
      }
      .footerSp__bottomLink {
          text-align: center;
          font-size: 10px;
          /* padding: 10rem 0; */
          /* background: red; */
          display: flex;
          flex-direction: column;
      }
  }

 /* safariのみ */
@media screen and (max-width: 480px) {
  ::-webkit-full-page-media, :future, :root .communitySingle__info__link1 span  {
    padding-top: 0;
  }
}
@media screen and (max-width: 480px) {
  ::-webkit-full-page-media, :future, :root .communitySingle__info__link2 span {
    padding-top: 0;
  }
}

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

.buttom__select .select-styled {
  background: #e2e6ea;
    color: #222222;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 1rem 0 0rem 4rem;
    margin-right: 1rem;
}

.buttom__select .select-styled::before {
  content: "";
  width: 1.25em;
    height: 1.22em;
  display: inline-block;
  background: url(/assets/img/star_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: 480px) {
  .buttom__select .select-styled::before {
    top: 20px;
    left: 1.2rem;
    width: 1.25em;
    height: 1.22em;
  }
}

.buttom__select .select-styled:after {
  content: "";
  width: 1.07em;
  height: 0.8em;
  display: inline-block;
  background: url(/assets/img/black_lower\ Triangle_icon.svg) no-repeat;
  background-size: contain;
  /* margin-right: 0.5rem; */
  vertical-align: bottom;
  background-position: center;
  position: absolute;
  top: 50%;
  /* right: 10px; */
  right: 10%;
  transform: translateY(-50%);
}
@media screen and (max-width: 480px) {
  .buttom__select .select-styled:after {
    width: 1.2em;
    height: 0.8em;
    right: 2rem;
  }
}

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

.buttom__select .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;
}

.buttom__select .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;
  font-size: 1.2rem;
}

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

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

/* 興味あり */
@media screen and (max-width: 480px) {
  ::-webkit-full-page-media, :future, :root .buttom__select .select-styled {
    padding-top: 0.2rem;
  }
}

/* セレクトボックス */
.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 {
  /* position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; */
  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; */
  padding: 2.8rem 4rem 1.8rem 4rem;
  line-height: 1;
}
@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: 480px) {
  .select-styled::before {
    top: 23px;
    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: 480px) {
  .select-styled:after {
    width: 1.2em;
    height: 0.8em;
    right: 12px;
  }
}

.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;
}


/* sorich 追加 */

/* コミュニティ詳細は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: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  margin: 0 auto;
  z-index: 2;
  padding: .4rem 2rem;
  color: #2177BB;
  background: #fff;
  border: 1px solid #2177BB;
}
.readmore-label:hover {
  color: #2177BB;
}
.readmore-label:before{
  content: 'もっと読む';
  display: block;
  margin: 0;
  font-size: 1.2rem;
  font-weight: bold;
  height: 20px;
  line-height: 20px;
}
.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: 20px;
  line-height: 20px;
}
.readmore-check:checked ~ .readmore-content{
  height: auto;
}
.readmore-check:checked ~ .readmore-content::before {
  display: none;
}

/* detail */
.open-box {
  position: relative;
}

input[type="checkbox"].on-off {
  position: absolute;
  top: 50%;
  display: block;
  opacity: 0;
}

.open-label {
  font-size: .8rem;
  display: block;
  color: #333;
  font-weight: bold;
  text-align: center;
  background: #fff;
  position: relative;
  bottom: 0;
  padding: 1rem 0;
  width: 100%;
}

.open-label:active {
  box-shadow: 0 0 0 0;
}

.open-label::after {
  content: 'もっと見る';
}

.on-off:checked~.open-label::after {
  content: '閉じる';
}

.open {
  border-radius: 8px;
  height: 290px;
  overflow: hidden;
  transition: .5s;
  position: relative;
}

.on-off:checked~.open {
  height: auto;
}

.open::before {
  content: '';
  position: absolute;
  top: 290px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}

.on-off:checked~.open::before {
  background: none;
  z-index: -1;
}