@charset "UTF-8";
/* レイアウト */
/* ログイン */
@media screen and (max-width: 680px) {
  .login .wrapper {
    --header-height: 60px;
    -ms-grid-rows: 1fr auto auto;
    -ms-grid-columns: 100%;
    grid-template: "content   " 1fr "footer-top" auto "footer    " auto/100%;
  }
}
.login .content-wrapper {
  height: 100%;
  display: -ms-grid;
  display: grid;
  place-items: start start;
  -ms-grid-rows: auto 4px auto 29px 1fr;
  -ms-grid-columns: auto 980px auto;
  grid-template: ".     path  .    " auto ".     title .    " auto ".     .     .    " 40px ".     main  .    " 1fr ".     .     .    " 8px/auto 980px auto;
}

@media screen and (max-width: 680px) {
  .login .content-wrapper {
    height: 100%;
    -ms-grid-rows: auto 25px 1fr 35px auto;
    -ms-grid-columns: 1fr;
    grid-template: "title" auto ".    " 40px "main " 1fr ".    " 35px "path " auto/1fr;
    padding-bottom: 0;
  }
}
.login #all {
  height: 100%;
}

.login .main {
  height: 100%;
}

.login .topic-path {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: path;
  width: 100%;
  max-width: 100%;
}

.login .title {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
  grid-area: title;
  width: 100%;
}

.login .main {
  -ms-grid-row: 5;
  -ms-grid-column: 2;
  grid-area: main;
  width: 100%;
  height: 100%;
}

.login .address-text {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 980px;
}

@media screen and (max-width: 680px) {
  .login .address-text {
    width: 100%;
  }
}
.login .copyright {
  margin-left: auto;
  margin-right: auto;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

.mypage-form-title {
  font-size: 21px;
  color: var(--text-color-pink);
  margin-bottom: 0;
  /* padding: 0 0 7px 0; */
  /* border-bottom: 1px solid var(--ruledline-color); */
  font-weight: bold;
}

.form-box + .mypage-form-title {
  margin-top: 68px;
  margin-bottom: 18px;
}

@media screen and (max-width: 680px) {
  .mypage-form-title {
    font-size: 16px;
    margin-top: 40px!important;
    margin-bottom: 6px!important;
  }
}
/* その他 */
.content-wrapper {
  width: 100%; /***/
  height: 100%;
  display: -ms-grid;
  display: grid;
  place-items: start start;
  -ms-grid-rows: auto 4px auto 15px 1fr;
  -ms-grid-columns: auto 200px 50px 750px auto;
  grid-template: ". aside . path    ." auto ". aside . top-title   ." auto ". aside . .       ." 15px ". aside . main    ." 1fr/auto 200px 50px 750px auto;
}

@media screen and (max-width: 680px) {
  .content-wrapper {
    height: 100%;
    -ms-grid-rows: auto 22px 1fr 25px auto 25px auto;
    -ms-grid-columns: 6.5% 1fr 6.5%;
    grid-template: "top-title top-title top-title" auto ".     .       .    " 23px ".     main    .    " 1fr ".     .       .    " 20px "path  path    path " auto/20px 1fr 20px;
  }
}
.topic-path {
  -ms-grid-row: 1;
  -ms-grid-column: 4;
  grid-area: path;
  overflow: hidden;
  width: 100%;
}

.top-title {
  -ms-grid-row: 2;
  -ms-grid-column: 4;
  grid-area: top-title;
  overflow: hidden;
  width: 100%;
  min-height: 100%;
}

.main {
  -ms-grid-row: 4;
  -ms-grid-column: 4;
  grid-area: main;
  width: 100%;
  min-height: 100%;
}

.aside {
  -ms-grid-row: 1;
  -ms-grid-row-span: 4;
  -ms-grid-column: 2;
  grid-area: aside;
  overflow: hidden;
  width: 100%;
}

@media screen and (max-width: 680px) {
  .topic-path {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .top-title {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .main {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
  }
  .main.sp-mypage-top-middle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .aside {
    -ms-grid-row: 5;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
}
@media screen and (max-width: 680px) {
  .aside {
    width: 100%;
  }
}
/* マイページ */
.mypage {
  min-height: 100%;
  width: 100%;
  margin: 0 auto;
}

/* マイページログイン */
.mypage-login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mypage-login .form {
  width: 460px;
}

.mypage-login-title {
  font-size: 14px;
  color: var(--text-color-pink);
  margin-bottom: 30px;
  padding: 0 0 3px 0;
  border-bottom: 1px solid var(--ruledline-color);
  font-weight: bold;
}

.mypage-login-forget {
  display: block;
  text-align: center;
  margin-top: -5px;
}

@media screen and (max-width: 680px) {
  .mypage-login {
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
    margin-top: -2px;
  }
  .mypage-login .form {
    width: 100%;
  }
  .mypage-login-title {
    display: block;
    max-width: 285px;
    margin: 0 auto 12px;
    margin-top: 0;
    font-size: 12px;
  }
  .mypage-login-forget {
    margin-bottom: -4px;
  }
}
/* マイページトップ */
.mypage-link-list {
  display: grid;
  grid: auto-flow/repeat(1, 1fr);
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 10px;
  width: calc(100% - 10px);
  margin: 0 auto;
  padding-top: 30px;
}
.mypage-link-list.option li:not(:last-child){
  margin-bottom: 45px;
}
.mypage-link-list.wide {
  row-gap: 17px;
}

.mypage-link-list-item {
  font-size: 17px;
  /* font-size: 22px; */
  width: 100%;
  text-align: left;
}

@media screen and (max-width: 680px) {
  .mypage-link-list {
    grid: auto-flow/repeat(1, 1fr);
  }
  .mypage-link-list.sp-1col {
    grid: auto-flow/1fr;
  }
}
@media screen and (max-width: 539px) {
  .mypage-link-list {
    grid: auto-flow/1fr;
    row-gap: 10px;
  }
}
.mypage-top-article {
  display: block;
  margin-top: 80px;
  margin-bottom: 10px;
}

.mypage-top-article-title {
  font-size: 21px;
  color: var(--text-color-pink);
  margin-bottom: 14px;
  padding: 0 0 3px 0;
  border-bottom: 1px solid var(--ruledline-color);
  font-weight: bold;
}

@media screen and (max-width: 680px) {
  .mypage-top-article-title {
    font-size: 20px;
  }
}
.btn-area-article-bottom.mypage-login-bottom {
  margin-bottom: 20px;
  margin-top: 20px;
}

/* .submit-btn.btn--shadow {
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
} */

/* .under-link-table{
  width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.under-link-table a{
  width: 100%;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  display: inline-block;
  padding: 1.1rem 1rem 0.9rem ;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: none;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
  box-sizing: border-box;
}
.under-link-table a{
  color: #fff;
  background-color: #fb63b6;
  border-bottom: 5px solid #fd058d;
} */
/* .under-link-table a:hover {
  margin-top: 3px;
  color: #fff;
  background: #f879bf;
  border-bottom: 2px solid #f953ae;
} */

/* .btn-square-shadow{
  width: 540px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  display: block;
  padding: 1.1rem 1rem 0.9rem;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: none;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
  margin-top: 20px;
  box-sizing: border-box;
}
.btn-square-shadow{
  color: #fff;
  background-color: #fb63b6;
  border-bottom: 5px solid #fd058d;
} */
/* .btn-square-shadow:hover {
  margin-top: 3px;
  color: #fff;
  background: #f879bf;
  border-bottom: 2px solid #f953ae;
} */
.under-link-table{
  margin-top: 35px;
  /* margin-top: 28px; */
}
.under-link-table a{
  box-sizing: border-box;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 2px 3px;
  text-decoration: none;
  background: rgb(255, 13, 146);
  color: #fff;
  border-radius: 5px;
  font-size: 22px;
  font-weight: bold;
  width: 80%;
  text-align: left;
  margin: 0 auto;
  background-color: #fb63b6;
  border-bottom: 4px solid #fd058d;
}
/* .under-link-table a:hover {
  margin-top: 3px;
  color: #fff;
  background: #f879bf;
  border-bottom: 2px solid #f953ae;
} */
.under-link-table a span{
  font-size: 16px;
}
@media (max-width: 680px){
  .under-link-table{
    margin-top: 25px;
  }
  .under-link-table a{
    width: 100%;
    font-size: 16px;
    padding: 8px 12px 7px;
  }
  .under-link-table.menu a{
    display: block;
    text-align: center;
  }
  .under-link-table a span{
    font-size: 12px;
  }
}
.btn-square-shadow{
  box-sizing: border-box;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 2px 3px;
  text-decoration: none;
  color: #fff;
  border-radius: 5px;
  font-size: 22px;
  font-weight: bold;
  width: 80%;
  text-align: left;
  margin: 0 auto;
  background-color: #fb63b6;
  border-bottom: 5px solid #fd058d;
}
/* .btn-square-shadow:hover {
  margin-top: 3px;
  color: #fff;
  background: #f879bf;
  border-bottom: 2px solid #f953ae;
} */

/* マイページフォーム */
/* .mypage-form p, */
.mypage-form dt,
.mypage-form dd,
.mypage-form span
{
  font-size: 16px;
}
.mypage-form .mypage-lead {
  margin-bottom: 34px;
}

.mypage-lead {
  max-width: 750px;
  width: 100%;
  margin: -4px auto 46px;
  padding: 0 5px;
}

@media screen and (max-width: 680px) {
  .mypage-lead {
    margin-bottom: 42px;
  }
  .mypage-form dt,
  .mypage-form dd,
  .mypage-form span
  {
    font-size: 14px;
  }

}
/* マイページ貸会議室 */
/* .main > [class*=title]:first-child {
  margin-top: -5px;
} */

@media screen and (max-width: 680px) {
  .main > [class*=title]:first-child {
    margin-top: -4px;
  }
}
.meetingroom .section-list.plan:first-child {
  border-bottom: none;
}

.meeting_rule .section-list:first-of-type {
  border-top: 1px solid var(--ruledline-color);
}

.meeting_rule .section-list-title {
  border-top: none;
  border-bottom: none;
}

/* マイページページ下ボタンエリア */
.btn-area-mypage-bottom {
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid: auto-flow/repeat(auto-fit, 300px);
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  margin-top: 41px;
}

.mypage-btn-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 100px;
  min-height: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: 100%;
  padding: 0 10px;
  color: var(--button-text-color);
  background-color: var(--button-color);
  line-height: 1;
  text-align: center;
}

@media screen and (max-width: 680px) {
  .btn-area-mypage-bottom {
    grid: auto/auto-flow;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
  .mypage-btn-bottom {
    padding: 5px 10px;
    line-height: 1.2;
  }
}
@media screen and (max-width: 320px) {
  .btn-area-mypage-bottom {
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
  }
  .mypage-btn-bottom {
    padding: 5px;
    min-width: unset;
  }
}
/* ダウンロード */
.dl-text {
  margin-top: -4px;
  margin-bottom: 22px;
}

.list-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 24px 0 22px 3px;
  border-bottom: 1px solid var(--ruledline-color);
}

.list-dl:first-child {
  border-top: 1px solid var(--ruledline-color);
}

.list-dl-date {
  width: 103px;
  font-weight: 600;
  color: var(--logo-color);
}

.list-dl-title a {
  text-decoration: underline;
}

@media screen and (max-width: 680px) {
  .dl-text {
    margin-bottom: 18px;
  }
  .list-dl {
    padding: 18px 0 16px 0;
  }
  .list-dl-date {
    font-size: 10px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 80px;
    flex: 0 1 80px;
    margin-right: 9px;
  }
  .list-dl dd {
    font-size: 11px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 89px);
    flex: 0 0 calc(100% - 89px);
  }
}
/* 貸し会議室 予約状況 */
.yoyakujyoukyou-lead {
  margin-bottom: 30px;
}

/* マイページテーブル */
.yoyakujyoukyou-lead {
  margin-bottom: 30px;
}

/* シェアオフィス */
.share-fee .section-list-content {
  padding: 0;
}
.share-fee-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.share-fee-item-list {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.share-fee-item-btn {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-preferred-size: 140px;
      flex-basis: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.list-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: 1px dotted var(--ruledline-color);
}
.list-row-area {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  border-right: 1px dotted var(--ruledline-color);
}
.list-row-title {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 13px 25px 13px 32px;
}
.list-row-item {
  -webkit-box-flex: 200px;
      -ms-flex: 200px 0 0px;
          flex: 200px 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 13px 25px 13px 32px;
}
.list-row .auto {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
.list-row .m {
  -webkit-box-flex: 150px;
      -ms-flex: 150px 0 0px;
          flex: 150px 0 0;
}
.list-row .ml {
  -webkit-box-flex: 175px;
      -ms-flex: 175px 0 0px;
          flex: 175px 0 0;
}
.list-row .l {
  -webkit-box-flex: 200px;
      -ms-flex: 200px 0 0px;
          flex: 200px 0 0;
}
.list-row .bg1 {
  background-color: #f7f7f7;
}
.list-row .bg2 {
  background-color: #fafafa;
}

.list-row:first-child {
  border-top: none;
}

@media screen and (max-width: 680px) {
  .list-row-area {
    border-right: none;
    border-bottom: 1px dotted var(--ruledline-color);
  }
}
.btn-list {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-weight: bold;
  color: var(--button-text-color);
  background-color: var(--button-color);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  padding: 0 18px;
  line-height: 23px;
  margin: auto;
  transition: all 0.25s, -webkit-transform 0.25s;
  min-width: 76px;
  font-size: 10px;
}

@media screen and (max-width: 680px) {
  .share-fee-item {
    display: block;
  }
  .share-fee-item-btn {
    padding: 9px 18px 10px;
  }
  .share-fee-item-list .list-row-title {
    text-align: center;
  }
  .share-fee-item-list .list-row-item {
    text-align: center;
  }
  .list-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .list-row.rows-sp {
    display: block;
  }
  .list-row-area.rows-sp {
    display: block;
  }
  .list-row-title {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 7px 18px;
  }
  .list-row-item {
    -webkit-box-flex: 200px;
        -ms-flex: 200px 0 0px;
            flex: 200px 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 9px 18px 10px;
  }
}
.section-list.share-fee .section-list-title {
  border-top: none;
}

.flow-rightarrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-between;
      -ms-flex-pack: space-between;
          justify-content: space-between;
  padding: 0;
  margin-top: 28px;
}
.flow-rightarrow .flow-item {
  width: 22%;
  position: relative;
  /* -webkit-box-flex: 1;
      -ms-flex: 1 1 calc((100% - 45px) / 4);
          flex: 1 1 calc((100% - 45px) / 4); */
  display: block;
  text-align: center;
}
.flow-rightarrow .flow-item-img {
  position: relative;
  display: block;
  width: 100%;
  height: 123px;
}
.flow-rightarrow .flow-item-img img {
}
.flow-rightarrow .flow-item-txt {
  width: 100%;
  display: block;
  margin: 8px 0;
  text-align: center;
  line-height: 2;
  font-size: 15px;
}
.flow-rightarrow .flow-item-txt ul{
  padding-top: 10px;
  margin-left: 0;
}
.flow-rightarrow .flow-item-txt ul li{
  font-size: 14px;
}
.flow-rightarrow .flow-item-txt [class^=list] li {
  line-height: 1.5;
}
.flow-rightarrow .flow-item:not(:last-child)::after {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 24px;
  top: 48px;
  right: -22px;
  background-image: url("../img/post/icon-arrow.png");
  background-repeat: no-repeat;
  background-size: contain;
}
.flow-rightarrow .flow-item-txt a{
  text-decoration: underline;
}

@media screen and (max-width: 680px) {
  .flow-rightarrow {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    margin: 20px auto 0!important;
    padding: 0;
  }
  .article-main-detail.flow{
    margin-bottom: 5px!important;
  }
  .article-main-detail.flow.tai{
    margin-bottom: 15px!important;
  }
  .flow-rightarrow .flow-item {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: unset;
    text-align: left;
    max-width: 420px;
    width: 100%;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    gap: 4px;
  }
  .flow-rightarrow .flow-item-img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 84px;
            flex: 0 0 84px;
    position: relative;
    display: block;
    width: 84px;
    height: 84px;
    padding: 0;
    text-align: center;
  }
  .flow-rightarrow .flow-item-img img {
    max-width: 60px;
    width: 60%;
    height: auto;
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }
  .flow-rightarrow .flow-item-txt {
    /* -webkit-box-flex: 1;
        -ms-flex: 1 0 calc(100% - 120px);
            flex: 1 0 calc(100% - 120px); */
    /* display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; */
    margin: 20px 0 0;
    width: unset;
    font-size: 14px;
    text-align: left;
    line-height: 1.5;
  }
  .flow-rightarrow .flow-item-txt [class^=list] li {
    line-height: 1.5;
  }
  .flow-rightarrow .flow-item:not(:last-child) {
    margin-bottom: 10px;
  }
  .flow-rightarrow .flow-item:not(:last-child)::after {
    width: 10px;
    height: 16px;
    top: unset;
    right: unset;
    bottom: 14px;
    left: 33px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
  }
}
/* 利用規約 */
.rule .section-list:first-child {
  border-top: 1px solid var(--ruledline-color);
}

.rule .section-list-title {
  border-top: none;
  border-bottom: none;
}

/* 集客サポート */
.img_merumaga {
  width: 60%;
  margin: 0 auto;
}

@media screen and (max-width: 680px) {
  .img_merumaga {
    width: 100%;
  }
}