/* レイアウト */
.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 190px 30px 760px auto;
  grid-template:
    ". aside . path    ." auto
    /* ". aside . .       ." 4px */
    ". aside . title   ." auto
    ". aside . .       ." 29px
    ". aside . main    ." 1fr
    / auto 190px 30px 760px auto;
}
@media screen and (max-width: 680px) {
  .content-wrapper {
    height: 100%;
    -ms-grid-rows: auto 20px 1fr 25px auto 25px auto;
    -ms-grid-columns: 6.5% 1fr 6.5%;
    grid-template:
      "title  title   title" auto
      ".      .       .    " 23px
      ".      main    .    " 1fr
      ".     .       .    " 25px
      ".      aside   .    " auto
      ".      .       .    " 25px
      "path   path    path " auto
      / 6.5% 1fr 6.5%;
  }
}
/* .wrapper {
  height: 100%;
} */
.topic-path {
  -ms-grid-row: 1;
  -ms-grid-column: 4;
  grid-area: path;
  overflow: hidden;
  width: 100%;
}
.title {
  -ms-grid-row: 3;
  -ms-grid-column: 4;
  grid-area: title;
  overflow: hidden;
  width: 100%;
}
.main {
  -ms-grid-row: 5;
  -ms-grid-column: 4;
  grid-area: main;
  overflow: hidden;
  width: 100%;
}
.aside {
  -ms-grid-row: 1;
  -ms-grid-row-span: 5;
  -ms-grid-column: 2;
  grid-area: aside;
  overflow: hidden;
}
@media screen and (max-width: 680px) {
  .topic-path {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .title {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .main {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
  }
  .aside {
    -ms-grid-row: 5;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
  }
}
@media screen and (max-width: 680px) {
  .aside {
    width: 100%;
  }
}
@media screen and (max-width: 680px) {
  .inquiry {
    display: none;
  }
}

/* ページタイトル */
.list-title {
  font-size: 14px;
  font-weight: bold;
  color: var(--text-color-pink);
  padding: 0 0 7px 3px;
  border-bottom: none;
  margin-bottom: 0;
}
@media screen and (max-width: 680px) {
  .list-title {
    padding: 0;
    font-size: 12px;
  }
}
/* リード部 */
.article-lead p:first-child {
  padding-top: 0;
}
/* リストタイトル */
.list-subtitle {
  display: block;
  font-weight: bold;
  margin: 1em 0;
  border-bottom: 1px dotted var(--ruledline-color);
}
.list-subtitle2 {
  display: block;
  font-weight: bold;
  margin-top: 1em;
}
.textarea-mb1rem {
  margin-bottom: 1rem;
}
/* 文字＋アイコンリスト */
.list-obj {
  overflow: hidden;
  zoom: 1;
  border-bottom: 1px dotted var(--ruledline-color);
  display: table;
  width: 100%;
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.list-obj.top-line {
  border-top: 1px dotted var(--ruledline-color);
}
.list-obj.bottom-line {
  border-bottom: 1px dotted var(--ruledline-color) !important;
  padding-bottom: 20px !important;
}
@media screen and (max-width: 680px) {
  .list-obj {
    padding: 12px 0;
  }
  .list-obj.bottom-line {
    padding-bottom: 12px !important;
  }
}
.list-obj dt {
  /* display: table-cell; */
  padding: 0 60px 0 3px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media screen and (max-width: 680px) {
  .list-obj dt {
    width: auto;
    padding: 0 10px 0 0;
    width: 75%;
  }
}
.list-obj dd {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  /* display: table-cell; */
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
}
@media screen and (max-width: 680px) {
  .list-obj dd {
    width: auto;
  }
}
.list-obj img {
  max-width: 95px;
  height: auto;
  vertical-align: middle;
}
@media screen and (max-width: 680px) {
  .list-obj img {
    width: 100%;
    height: auto;
  }
}
.list-obj-title {
  font-weight: bold;
  color: var(--logo-color);
}
.list-obj-title-l {
  font-size: 14px;
  font-weight: bold;
  color: var(--logo-color);
}
a.list-obj-title-l {
  text-decoration: none !important;
}
.list-obj p {
  font-size: 12px;
  font-weight: normal;
  font-style: normal;
  color: var(--text-color);
  margin-bottom: 0;
}
.list-obj p + .url {
  margin-top: 16px;
}
.list-obj a {
  text-decoration: underline;
}
.list-obj .show-detail {
  margin-top: 15px;
}
@media screen and (max-width: 680px) {
  .list-obj .show-detail {
    margin-top: 7px;
  }
}
/* 申し込みの流れリスト */
.article-main-detail.list-flow {
  margin-bottom: -2px;
  padding-bottom: 0;
}
.list-flow .list-obj a {
  color: unset;
}
.list-flow .list-obj:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media screen and (max-width: 680px) {
  .article-main-detail.list-flow {
    margin-bottom: -7px;
  }
  .list-flow .list-obj {
    padding: 13px 0 11px 0;
  }
  .list-flow .list-obj-content {
    width: auto;
    padding: 0 10px 0 0;
    /* width: 100%; */
  }
  .list-flow .list-obj-img {
    -ms-flex-preferred-size: 63px;
    flex-basis: 63px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 63px;
  }
  .list-flow .list-obj img {
    /* width: 70%;
    height: auto; */
  }
}
/* 文字リスト */
.list-text-row {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  overflow: hidden;
  zoom: 1;
  border-bottom: 1px dotted var(--ruledline-color);
  width: 100%;
  padding: 20px 0 20px 3px;
}
@media screen and (max-width: 680px) {
  .list-text-row {
    padding: 12px 0;
  }
}
.list-text-row:first-of-type {
  border-top: 1px dotted var(--ruledline-color);
}
@media screen and (max-width: 979px) {
  .list-text-row dt {
    padding-right: 10px;
  }
}
.list-text-row .list-text-row-title {
  color: var(--text-color);
}
.list-text-row p {
  font-size: 12px;
  font-weight: normal;
  font-style: normal;
  color: var(--text-color);
  margin-bottom: 0;
}
@media screen and (max-width: 680px) {
  .list-text-row p {
    font-size: 10px;
  }
}
.list-text-row a {
  text-decoration: underline;
}
/* サイトマップ */
.list-sitemap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  zoom: 1;
  border-bottom: 1px dotted var(--ruledline-color);
  width: 100%;
  padding: 20px 0 20px 3px;
}
@media screen and (max-width: 680px) {
  .list-sitemap {
    padding: 12px 0;
    flex-wrap: wrap;
  }
}
.sitemap-col {
  width: 100%;
}
.sitemap-col1 {
  width: 30%;
  /* width: 250px; */
}
.sitemap-col1-2 {
  width: 25%;
  /* width: 250px; */
}
@media screen and (max-width: 680px) {
  .sitemap-col1 {
    flex-basis: 100%;
  }
  .sitemap-col1-2 {
    flex-basis: 100%;
  }
}
.sitemap-col2 {
  display: -ms-grid;
  display: grid;
  width: 70%;
  grid: auto-flow/ 50% 50%;
}
.sitemap-col3 {
  display: -ms-grid;
  display: grid;
  width: 70%;
  grid: auto-flow/ 35% 35% 30%;
}
.sitemap-col3-2 {
  display: -ms-grid;
  display: grid;
  width: 75%;
  grid: auto-flow/ 35% 35% 30%;
}
@media screen and (max-width: 680px) {
  .sitemap-col2 {
    flex-basis: 100%;
    grid: auto-flow/ 1fr;
  }
  .sitemap-col3 {
    flex-basis: 100%;
    grid: auto-flow/ 1fr;
  }
  .sitemap-col3-2 {
    flex-basis: 100%;
    grid: auto-flow/ 1fr;
  }
}
@media screen and (max-width: 400px) {
  .sitemap-col1 {
    -ms-flex-preferred-size: 70px;
    flex-basis: 70px;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .list-sitemap.col1-sp-s {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .list-sitemap.col1-sp-s .sitemap-col1 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  .list-sitemap.col1-sp-s .sitemap-col2,
  .list-sitemap.col1-sp-s .sitemap-col3,
  .list-sitemap.col1-sp-s .sitemap-col3-2 {
    flex-basis: 100%;
  }
  .sitemap-col2 {
    /* margin-left: auto; */
    /* grid: auto-flow/ 1fr; */
  }
  .sitemap-col3 {
    /* margin-left: auto; */
    /* grid: auto-flow/ 1fr; */
  }
}
/* お知らせ一覧 */
.list-news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  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-news:first-child {
  margin-top: -4px;
  padding-top: 0;
}
.list-news-date {
  width: 103px;
  font-weight: 600;
  color: var(--logo-color);
}
.list-news-title a {
  text-decoration: underline;
}
@media screen and (max-width: 680px) {
  .list-news {
    padding: 18px 0 16px 0;
  }
  .list-news:first-child {
    margin-top: 0;
    padding: 18px 0 16px 0;
    border-top: 1px solid var(--ruledline-color);
  }
  .list-news-date {
    font-size: 10px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 60px;
    flex: 0 1 80px;
    margin-right: 9px;
  }
  .list-news dd {
    font-size: 11px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 65px);
    flex: 0 0 calc(100% - 65px);
  }
}
/* お知らせ詳細 */
.article-main.content-news {
  margin-bottom: 0;
}
.content-news-title {
  margin-bottom: 24px;
  margin-top: -5px;
}
.news-title {
  margin-bottom: 18px;
  font-size: 13px;
  color: var(--text-color-pink);
  font-weight: 600;
}
.news-date {
  font-weight: 600;
  color: var(--logo-color);
}
.content-news p {
  margin-bottom: 24px;
  letter-spacing: normal;
}
.content-news p:last-child {
  margin-bottom: 0;
}
.content-news + .btn-area-article-bottom {
  margin-top: 39px;
  margin-bottom: 38px;
}
@media screen and (max-width: 680px) {
  .article-main.content-news {
    margin-bottom: 22px;
  }
  .content-news {
    padding-left: 0;
  }
  .news-title {
    margin-bottom: 11px;
    padding-bottom: 0;
    font-size: 13px;
  }
  .news-date {
    padding-bottom: 16px;
  }
  .content-news-title {
    margin-bottom: 14px;
  }
  .content-news p {
    margin-bottom: 19px;
  }
  .content-news p:last-child {
    margin-bottom: 0;
  }
  .content-news + .btn-area-article-bottom {
    margin-top: 21px;
    margin-bottom: 4px;
  }
}
.news-pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.news-pager a {
  font-size: 10px;
  font-weight: bold;
}
.news-pager li:first-child {
  text-align: right;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.news-pager li:nth-child(2) {
  margin-left: 20px;
  margin-right: 20px;
}
.news-pager li:last-child {
  text-align: left;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.news-pager-arrow {
  font-weight: normal;
}
/* 会社概要 */
.greeting {
  margin-top: 30px;
}
.manager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.manager-text {
  -ms-flex-negative: 1;
  flex-shrink: 1;
}
.manager-photo {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 10px 20px;
}
.manager-photo img {
  width: 157px;
  height: auto;
}
.manager-name {
  text-align: right;
}
@media screen and (max-width: 680px) {
  .greeting {
    margin-bottom: -2px;
    margin-top: 24px;
  }
  .manager-text {
    padding: 0;
  }
  .manager-photo {
    display: none;
  }
}
/* 貸会議室 */
.rentalroom-top-img {
  vertical-align: top;
  /* margin-top: 5px; */
  margin-bottom: 30px;
  width: 100%;
  height: auto;
}
.rentalroom .plan dt .text {
  display: inline-block;
  margin-left: 20px;
}
.rentalroom .plan dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  /* align-items: center; */
  font-size: 16px;
}
.rentalroom .plan-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.rentalroom .plan .time {
  margin-right: 20px;
}
.rentalroom .plan .charge {
  margin-right: auto;
}
.rentalroom .plan .btn a {
  min-width: 76px;
  font-size: 10px;
}
.rentalroom .note {
  text-align: left;
  margin-bottom: 0;
}
.rentalroom .list-rows + .note {
  /* margin-top: 9px; */
}
.rentalroom + .rentalroom {
  margin-top: 27px;
}
@media screen and (max-width: 680px) {
  .rentalroom-top-img {
    margin-top: 7px;
    margin-bottom: 25px;
  }
}
.payment-img {
  margin-top: 8px;
}
.facilities {
  padding: 30px 42px !important;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 10px auto;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template: auto auto / 1fr 1fr 1fr 1fr;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  row-gap: 10px;
}
.facilities .item {
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.facilities .text {
  text-align: center;
  font-size: 15px;
}
.facilities .item img {
  max-width: 100px;
  width: 100%;
  height: auto;
  margin-bottom: 5px;
}
.access-map {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-bottom: 75%;
  position: relative;
}
.access-map iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 680px) {
  .btn a {
    padding: 5px 32px;
  }
  .access-map {
    padding-bottom: 177%;
  }
}
@media screen and (max-width: 680px) {
  .rentalroom .plan dd {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .rentalroom .plan-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 15px;
  }
  .rentalroom .plan .time {
    margin-right: 0;
  }
  .rentalroom .plan .charge {
    margin-right: 0;
    margin-bottom: 5px;
  }
  .rentalroom .plan .btn a {
    padding: 0 18px;
  }
  .rentalroom .note {
    text-align: left;
  }
  .facilities {
    -ms-grid-rows: auto 20px auto 20px auto;
    -ms-grid-columns: auto 10px auto 10px auto;
    grid-template: auto auto auto / 1fr 1fr 1fr;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 15px;
    row-gap: 20px;
    padding: 20px !important;
  }
  .facilities .text {
    font-size: 13px;
    margin: 0 -3px;
  }
}

/* 格安バーチャルオフィス料金 */
.plan-introduction {
  padding: 0;
  margin-bottom: 40px;
}
.plan-introduction-title {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
.plan-introduction-note {
  margin-bottom: 22px;
}
@media screen and (max-width: 680px) {
  .plan-introduction {
    margin-bottom: 25px;
  }
}
.plan-lead-img {
  width: 100%;
  height: auto;
}
.plan-cost {
  display: -ms-grid;
  display: grid;
  grid: auto / 1fr 1fr;
}
.plan-cost .servicefee.commission .fee-text {
  font-size: 19px;
}
.servicefee-free {
  background-color: #fff;
  color: var(--text-color-b);
  padding: 20px;
}
.servicefee-free .free {
  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;
  width: 60px;
  height: 60px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #ff87a0;
  background-image: url(../img/zigzag-circle.png);
  background-position: center center;
  background-repeat: no-repeat;
}
.badge-free {
  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;
  width: 60px;
  height: 60px;
  font-size: 13px;
  font-weight: 700;
  padding-top: 3px;
  margin-top: -1px;
  line-height: 1.2;
  color: #ff3399;
  background-image: url(../img/zigzag-circle.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.badge-free-pink {
  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;
  width: 60px;
  height: 60px;
  font-size: 13px;
  font-weight: 700;
  padding-top: 3px;
  margin-top: -1px;
  line-height: 1.2;
  color: #fff;
  background-image: url(../img/zigzag-circle-pink.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 460px) {
  .badge-free {
    margin-top: -2px;
  }
  .plan-cost .servicefee.commission .fee-text {
    font-size: 16px;
  }
}
.servicefee-free .text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-color-b);
  text-align: center;
}
.servicefee-free .note {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  color: #fff;
}
.servicefee {
  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;
  padding: 20px;
  background-color: #fff;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
.servicefee-num {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 26px;
}
.servicefee .text {
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 10px;
}
.servicefee .fee {
  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;
}
.servicefee .fee-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
}
.servicefee .num {
  display: inline-block;
  font-family: "Lato", sans-serif;
  margin: -6px 5px 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  /* color: #fff; */
}
.servicefee .unit {
  font-size: 14px;
  font-weight: 700;
}
.servicefee .addition {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
  margin-top: 7px;
}
/* .servicefee .text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
} */
.servicefee .note {
  margin-top: 9px;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 680px) {
  .servicefee .text {
    margin-left: 0;
  }
}
@media screen and (max-width: 460px) {
  .servicefee.commission .fee {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .servicefee .fee-text.title {
    margin-bottom: 3px;
  }
  .servicefee.commission .fee-text {
    line-height: 1.4;
  }
  .servicefee.commission .unit {
    margin-top: 3px;
  }
  .servicefee .addition {
    margin-top: 2px;
  }
}

@media screen and (max-width: 400px) {
  .plan-cost .servicefee {
    font-size: 19px;
  }
  .servicefee .fee {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .servicefee .unit {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    line-height: 1;
  }
  .servicefee .addition {
    /* margin-top: 8px; */
  }
}
.monthly-cost {
  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;
  padding: 35px 20px;
  background-color: #ff3399;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  text-align: center;
}
.monthly-cost .text {
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 10px;
}
.monthly-cost .fee {
  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;
}
.monthly-cost .fee-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.monthly-cost .num {
  display: inline-block;
  font-family: "Lato", sans-serif;
  /* 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; */
  margin: -6px 5px 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  /* text-align: center; */
  color: #fff;
}
.monthly-cost .unit {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  /* font-size: 12px;
  font-weight: 500;
  color: #fff; */
}
.monthly-cost .addition {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  margin-top: 7px;
}

@media screen and (max-width: 680px) {
  .monthly-cost {
    border-bottom: unset;
    border-right: 1px solid #ccc;
    padding: 0 5px;
    min-height: 110px;
  }
}

@media screen and (max-width: 360px) {
  .monthly-cost .fee {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .monthly-cost .unit {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    line-height: 1;
  }
  .monthly-cost .addition {
    font-size: 12px;
  }
}
.plan-introduction .list-note {
  margin-left: 5px;
  margin-bottom: 22px;
}
.plan-introduction .buttons {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid: auto / repeat(2, min(calc(50% - 10px), 250px));
  gap: 15px;
  padding-bottom: 5px;
}
.plan-introduction .btn-l {
  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;
}
.btn-introduction {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  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;
  height: 44px;
}
/* バーチャルオフィス料金シュミレーション */
.cost-sim-item {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid: auto / 150px 20px 210px 20px 1fr;
  gap: 3px;
  /* padding: 5px 5px 0; */
}
.cost-sim-item .lato {
  display: inline-block;
  margin-top: -4px;
  margin-right: 3px;
}
.cost-sim-content + .cost-sim-content {
  margin-top: 30px;
}
.cost-sim-item-content .col {
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.cost-sim-item-content .title {
  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;
  height: 28px;
  padding: 5px;
  font-size: 12px;
  font-weight: 700;
  background-color: var(--text-color-pink);
  color: #fff;
}
.cost-sim-item-content .num {
  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;
  height: 60px;
  padding: 6px 5px 4px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  background-color: #f9f0f5;
  color: var(--text-color-pink);
  margin-bottom: 3px;
}
.cost-sim-item-content.cost-fee-year .num {
  padding: 10px 5px 0;
}
.cost-sim-item-content .num-yen {
  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;
}
.cost-sim-item-content .num.total {
  font-size: 30px;
}
.cost-sim-item-content .num-img-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.cost-sim-item-content .num-img-text {
  /* position: absolute;
  top: 15px;
  left: -142px; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  width: 121px;
  height: 42px;
  padding-top: 9px;
  padding-right: 5px;
  margin-top: 9px;
  margin-right: -15px;
  margin-left: 7px;
  background-image: url(../img/plan/cost-sim_text.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  color: var(--text-color-pink);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
}
.cost-sim-item-content .num-img {
  margin-top: -20px;
  margin-left: 10px;
  font-size: 10px;
  font-weight: 500;
}
.cost-sim-item-content .unit {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-color-pink);
}
.cost-sim-item-content .note {
  font-size: 10px;
  line-height: 1;
}
.cost-sim-item-content .description {
  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;
  height: 25px;
  padding: 5px;
  font-size: 10px;
  line-height: 1.2;
  background-color: #efece9;
}
.cost-sim-item-operator {
  justify-self: center;
  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;
  height: 20px;
  width: 20px;
  border-radius: 50%;
}
.cost-sim-item-operator.p {
  background-color: #999;
}
.cost-sim-item-operator.m {
  background-color: #aa6297;
}
.cost-sim-item-operator .img {
  display: block;
  width: 14px;
  height: 14px;
}
.cost-sim-note .list-kome {
  margin-top: 16px;
}
@media screen and (max-width: 680px) {
  .cost-sim-content .article-title-line-left {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .cost-sim-item {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    grid: auto-flow / 1fr;
    gap: 3px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    padding: 5px 0 0;
  }
  .cost-sim-item-operator.m {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .cost-sim-content + .cost-sim-content {
    margin-top: 15px;
  }
  .cost-sim-item-content .num {
    padding: 4px 5px 0;
  }
  .cost-sim-item-content .num-yen {
    margin-bottom: 2px;
  }
  .cost-sim-item-content .num.small-total {
    padding: 1px 5px 0;
  }
  .cost-sim-item-content .num.total {
    padding: 3px 5px 0;
  }
}
/* @media screen and (max-width: 400px) {
  .cost-sim-item-content .num.total {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    position: relative;
    padding-left: 5%;
    font-size: 7.5vw;
  }
  .cost-sim-item-content .num-img-text {
    position: absolute;
    bottom: 5px;
    right: 80px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 8px 10px 5px 5px;
    background-size: 100% 100%;
  }
  .cost-sim-item-content .num-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 68px;
    height: 80px;
  }
  .cost-sim-item-content .unit {
    font-size: 12px;
  }
  .cost-sim-item-content .note {
    font-size: 10px;
  }
  .cost-sim-item-content .description {
    font-size: 10px;
  }
} */
/* バーチャルオフィス料金比較 */
.cost-compare {
  display: -ms-grid;
  display: grid;
  grid: auto / 1fr 83px;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 45px;
  /* padding: 20px 0 20px 30px; */
  /* background: linear-gradient(0deg, transparent 0%, rgba(204, 20, 90, 0.24) 100%); */
}
.cost-compare-content {
  /* display: grid;
  grid: 1fr auto / 1fr;
  gap: 15px;
  padding-bottom: 20px; */
}
.cost-compare-scroll {
  display: block;
  width: 667px;
  height: 194px;
}
.cost-compare-list {
  display: -ms-grid;
  display: grid;
  grid: auto / repeat(5, 1fr);
  gap: 2px;
  width: 667px;
  height: 189px;
  background-color: #fff;
}
.cost-compare-list-item {
  display: -ms-grid;
  display: grid;
  grid: 30px repeat(4, 40px) / 1fr;
  gap: 2px;
}
.cost-compare-list-item dt {
  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;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}
.cost-compare-list-item dd {
  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;
  color: var(--text-color-b);
  font-size: 12px;
  line-height: 1.2;
}
.cost-compare-list-item.row-title dt {
  background-color: #ccc;
}
.cost-compare-list-item.row-title dd {
  background-color: #666;
  text-align: center;
  color: #fff;
  font-weight: 700;
}
.cost-compare-list-item.row-tapioca {
  position: relative;
}
.cost-compare-list-item.row-tapioca::before {
  content: "";
  position: absolute;
  display: block;
  top: -4px;
  left: -5px;
  bottom: -5px;
  right: -5px;
  border: 2px solid var(--text-color-pink);
}
.cost-compare-list-item.row-tapioca dt {
  background-color: var(--text-color-pink);
  text-align: center;
}
.cost-compare-list-item.row-tapioca dd {
  background-color: #ffdff0;
  text-align: center;
  color: var(--text-color-b);
  font-size: 12px;
  font-weight: 700;
}
.cost-compare-list-item.row-tapioca dd:nth-of-type(even) {
  background-color: #ffc5e4;
}
.cost-compare-list-item.row-other dt {
  background-color: #ba79b0;
  text-align: center;
  color: #fff;
  font-weight: 700;
  letter-spacing: 3px;
}
.cost-compare-list-item.row-other dd {
  background-color: #e8d1e4;
}
.cost-compare-list-item.row-other dd:nth-of-type(even) {
  background-color: #f8eff6;
}
.cost-compare .img {
  display: block;
  position: relative;
  overflow: visible;
  /* grid-area: 1 / 1 / 2 / 2; */
}
.cost-compare .img-bubble {
  position: absolute;
  top: 0;
  left: -142px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  width: 159px;
  height: 64px;
  padding-top: 9px;
  background-image: url(../img/plan/cost-comp_text.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  color: var(--text-color-pink);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 680px) {
  .cost-compare {
    grid: auto / 1fr 86px;
    gap: 10px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-bottom: 14px;
  }
  .cost-compare-scroll {
    width: calc(87vw - 40px - 83px);
    /* width: 87vw; */
    overflow-x: scroll;
    height: 225px;
    padding-top: 5px;
    background-color: unset;
  }
  .cost-compare {
    /* display: block; */
  }
  .cost-compare .img {
    -ms-flex-item-align: end;
    align-self: flex-end;
    /* grid-area: unset; */
  }
  .cost-compare .img-bubble {
    top: -25px;
    left: unset;
    right: 15px;
  }
  .cost-compare .img img {
    /* width: 100%;
    height: auto; */
  }
  .cost-compare .text {
    width: calc(87vw - 40px - 160px - 10px);
  }
}
@media screen and (max-width: 500px) {
  .cost-compare {
    position: relative;
    grid: auto / 1fr;
    padding-right: 30px;
    padding-top: 70px;
  }
  .cost-compare-scroll {
    width: 87vw;
  }
  .cost-compare {
    /* display: block; */
  }
  .cost-compare .img {
    position: absolute;
    top: -20px;
    right: 0;
    height: calc(100% - 193px - 5px);
    -ms-flex-item-align: unset;
    -ms-grid-row-align: unset;
    align-self: unset;
    padding-top: 62px;
    /* grid-area: unset; */
  }
  .cost-compare .img-bubble {
    top: 30px;
    left: unset;
    right: 15px;
  }
  .cost-compare .img img {
    width: auto;
    height: 195px;
  }
  .cost-compare .text {
    width: calc(87vw - 40px);
  }
  .cost-compare .text h2 {
    padding-right: 55px;
  }
  .cost-compare .text p {
    padding-right: 55px;
  }
}
.cost-sim-detail {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid: auto / auto-flow;
  gap: 15px;
}
.sim-ditail-item {
  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;
}
.sim-ditail-calc {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid: auto / auto-flow;
  gap: 15px;
}
.sim-ditail-sum {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid: auto / auto-flow;
  gap: 15px;
}
.sim-ditail-item .detail-title {
  background-color: #ffedf0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 700;
}
.sim-ditail-item .detail-num {
  font-size: 20px;
  font-weight: 700;
}
.sim-ditail-item .detail-num.term {
  color: var(--text-color-pink);
}
.sim-ditail-symbol {
  -ms-flex-item-align: end;
  align-self: flex-end;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (max-width: 680px) {
  .plan-introduction-title {
    font-size: 14px;
  }
  .plan-cost {
    display: -ms-grid;
    display: grid;
    grid: auto auto / 1fr;
  }
  .servicefee {
    padding: 0 20px;
    min-height: 110px;
    border-top: unset;
    border-left: 1px solid #ccc;
  }
  .servicefee-free {
    border-top: unset;
    border-left: 1px solid #ccc;
  }
  .servicefee-free .free {
    width: 50px;
    height: 50px;
    font-size: 14px;
  }
  .servicefee-free .note {
    font-size: 10px;
  }
  .plan-introduction .buttons {
    gap: 10px;
  }
  .plan-introduction .btn-l {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    line-height: 1.2;
    padding: 3px 0;
    min-width: unset;
    width: 100%;
  }
  .plan-introduction .btn2-l {
    min-width: unset;
    width: 100%;
  }
  .cost-sim-detail {
    display: -ms-grid;
    display: grid;
    gap: 5px;
  }
  .sim-ditail-calc {
    gap: 5px;
  }
  .sim-ditail-sum {
    gap: 5px;
  }
  .sim-ditail-item .detail-title {
    padding: 5px;
    font-size: 12px;
  }
}
@media screen and (max-width: 540px) {
  .sim-ditail-item .detail-num {
    font-size: 14px;
  }
}
@media screen and (max-width: 450px) {
  .cost-sim-detail {
    grid: auto-flow / 170px;
  }
  .sim-ditail-item {
    -ms-grid-column-align: stretch;
    justify-self: stretch;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 170px;
  }
  .sim-ditail-calc {
    -ms-grid-column-align: stretch;
    justify-self: stretch;
    grid: auto-flow / auto;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .sim-ditail-sum {
    grid: auto-flow / 170px;
  }
  .sim-ditail-item .detail-title {
    width: 100px;
    text-align: center;
  }
  .sim-ditail-symbol {
    -ms-flex-item-align: unset;
    -ms-grid-row-align: unset;
    align-self: unset;
    -ms-grid-column-align: center;
    justify-self: center;
    margin-bottom: 0;
    line-height: 1;
  }
  .sim-ditail-symbol.sum {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

@media screen and (max-width: 400px) {
  .monthly-cost .num {
    -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;
    line-height: 1.2;
  }
  .plan-introduction .btn-l {
    font-size: 11px;
  }
  .plan-introduction .btn2-l {
    font-size: 11px;
  }
}

/* 転送電話プラン */
.top_content {
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  grid: auto 1fr / auto 240px;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  /* margin-bottom: 30px; */
}

.top_content .top_content_text {
  margin-top: 0 !important;
}

.top_content_notitle {
  display: -ms-grid;
  display: grid;
  grid: auto / auto 240px;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}

.top_text {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 2 / 1 / 3 / 2;
}

.top_content_img {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 2;
  grid-area: 1 / 2 / 3 / 2;
  max-width: 240px;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 680px) {
  .top_content {
    grid: auto-flow / 1fr;
    margin-bottom: 23px;
  }
  .top_content .article-top-title {
    margin-bottom: 14px;
  }

  .top_content-title {
    margin-bottom: 12px;
    line-height: 1.7;
  }

  .top_content_text {
    grid-area: unset;
    order: 3;
  }

  .top_content_img {
    max-width: unset;
    width: 100%;
    height: auto;
    grid-area: unset;
    order: 2;
    margin: 0 auto 14px;
  }

  .top_content_notitle {
    grid: auto / auto 30%;
  }

  .top_table-of-contents_list {
    grid: auto-flow / 1fr;
    padding: 0 45px 20px;
  }

  .top_article_title_text .item-title {
    font-size: 12px;
  }

  .top_article_title_text .item-caption {
    font-size: 12px;
  }

  .top_article_title_noimg .item-title {
    font-size: 12px;
  }

  .top_article_title_noimg .item-caption {
    font-size: 12px;
  }
}
/* ----------------------- */
.zerothree-lead {
}
.zerothree-lead img {
  height: auto;
}
.zerothree-lead .lead-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-color-pink);
}
.zerothree-about {
  display: -ms-grid;
  display: grid;
  grid: auto / auto 1fr;
  gap: 80px;
  padding: 40px;
  margin-bottom: 40px;
  background-image: url(../img/03tensoudenwa/pbx_bg_img_aboutService.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-size: 40%;
  background-position: bottom right -70px;
}
.zerothree-about img {
  width: 290px;
  height: auto;
}
.zerothree-feature {
  padding: 19px 30px 36px;
  background-color: #ffedf0;
}
.zerothree-feature .article-top-title {
  margin-bottom: 11px;
}
.zerothree-feature-title {
  margin-bottom: 20px;
}
.zerothree-feature .list {
  display: -ms-grid;
  display: grid;
  grid: auto / 1fr 1fr 1fr;
  gap: 2px;
}
.zerothree-feature .title {
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-color-pink);
  margin: 10px 0 5px;
}
.zerothree-feature .note {
  margin-left: -5px;
  margin-right: -15px;
}
.zerothree-feature .description-item {
  padding: 31px 20px 22px;
  background-color: #fff;
}
.zerothree-cost {
  margin-top: -5px;
}
.zerothree-cost .lead-title {
  color: var(--text-color-pink);
}
.zerothree-cost .lead-title {
  color: var(--text-color-pink);
}
.zerothree-cost .catch {
  color: var(--text-color-pink);
  margin-bottom: 0;
  margin-bottom: 10px;
}
.zerothree-cost .text {
  text-align: center;
  color: var(--text-color);
  margin-left: 10px;
}
.servicefee .text {
  margin-left: 0px;
}

.zerothree-cost .plan-cost {
  padding: 0;
}
.zerothree-cost .monthly-cost {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-right: none;
  border-left: 1px solid #ccc;
  background-color: unset;
}
.zerothree-cost .monthly-cost .fee-text {
  color: var(--text-color);
}
.zerothree-cost .monthly-cost .unit {
  color: var(--text-color);
}
.zerothree-cost .monthly-cost .num {
  color: var(--text-color);
}
.zerothree-cost .addition {
  color: var(--text-color);
}
.zerothree-cost .servicefee {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-left: none;
  background-color: #ff3399;
  color: #fff;
}
.zerothree-cost .plan-introduction-title {
  color: #fff;
}
/* .zerothree-cost .servicefee-free {
  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;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
.zerothree-cost .servicefee-free .text {
  color: var(--text-color);
} */
@media screen and (max-width: 680px) {
  .zerothree-cost {
    margin-top: -4px;
  }
  .zerothree-cost .plan-cost {
    padding: 0;
  }
  .zerothree-cost .monthly-cost {
    border-bottom: none;
    border-right: 1px solid #ccc;
  }
  .zerothree-cost .servicefee {
    border-bottom: none;
    border-left: 1px solid #ccc;
  }
}
.zerothree-function {
  padding: 0;
}
.zerothree-function .catch {
  margin-bottom: 10px;
}
.zerothree-function .list {
  display: -ms-grid;
  display: grid;
  grid: auto-flow / 1fr 1fr;
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
  row-gap: 20px;
}
.zerothree-function .list-item {
  padding: 20px;
  border: 1px solid var(--ruledline-color);
}
.zerothree-function .list-item .title {
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-color-pink);
  padding: 0 0 3px 3px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--ruledline-color);
}
.zerothree-function .list-item .text {
  display: block;
  padding: 0 3px;
  margin: 0;
  text-align: unset;
}
.zerothree-option-commission .list-table dd.table2col .table-cell:nth-child(even) {
  background-color: #fafafa;
}
@media screen and (max-width: 680px) {
  .zerothree-option-commission .list-table dd.table2col .table-cell:nth-child(odd) {
    padding-bottom: 7px;
  }
  .zerothree-option-commission .list-table dd.table2col .table-cell:nth-child(even) {
    padding-top: 7px;
  }
}
.zerothree-basic-price .list-table dt,
.zerothree-option-commission .list-table dt,
.zerothree-basic-function .list-table dt,
.zerothree-pbx-option .list-table dt {
  width: 216px;
}
.zerothree-option-commission .list-table.original dt {
  width: 150px;
}
.zerothree-basic-price .list-table dt,
.zerothree-option-commission .list-table dt,
.zerothree-basic-function .list-table dt,
.zerothree-pbx-option .list-table dt {
  vertical-align: top;
}
.zerothree-basic-price .list-table .table2col,
.zerothree-basic-function .list-table .table2col,
.zerothree-pbx-option .list-table .table2col {
  grid: auto-flow / 250px 1fr;
}
.zerothree-option-commission .list-table .table2col {
  grid: auto-flow / 1fr 354px;
}
.zerothree-option-commission .list-table.option-list-table .table2col {
  grid: auto-flow / 1fr 200px;
}
.zerothree-option-commission.ginko .list-table .table2col {
  grid: auto-flow / 1fr 250px;
}
.zerothree-option-commission .list-table.original .table2col {
  grid: auto-flow / 1fr 235px;
}
.zerothree-auto-announcement th:first-child {
  padding: 13px 5px;
  text-align: center;
  width: 30px;
}
.zerothree-auto-announcement .text-vettival {
  padding: 13px 5px;
  vertical-align: middle;
  letter-spacing: 3px;
  width: 30px;
}
.zerothree.note-right {
  margin-top: 5px;
}
.zerothree-number {
  display: -ms-grid;
  display: grid;
  grid: auto / auto-flow;
  gap: 40px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 40px;
  background-color: var(--list-title-color);
  border: 1px solid var(--ruledline-color);
}
.zerothree-number-item {
  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;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.zerothree-number-item .number {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.2;
  color: var(--text-color-pink);
}
.zerothree-available-number .list-table dt {
  width: 15%;
}
@media screen and (max-width: 680px) {
  .zerothree-available-number .list-table dt {
    width: 100%;
  }
  .zerothree-auto-announcement th {
    padding: 7px 18px;
  }
  .zerothree-auto-announcement th:first-child {
    padding: 7px 5px;
  }
}
.zerothree-step {
  margin-bottom: 33px !important;
}
@media screen and (max-width: 680px) {
  .zerothree-step {
    margin-bottom: 20px !important;
  }
}
.zerothree-after-apply th {
  width: 80px;
}
.zerothree-after-apply td:nth-child(2) {
  width: 45px;
  text-align: center;
}
.zerothree-after-apply td:nth-child(3) {
  background-color: #fafafa;
}
@media screen and (max-width: 680px) {
  .zerothree-lead .lead-title {
    font-size: 12px;
  }
  .zerothree-about {
    display: -ms-grid;
    display: grid;
    grid: auto / 40% 1fr;
    gap: 20px;
    padding: 20px 0;
  }
  .zerothree-about img {
    width: 100%;
  }
  .zerothree-feature {
    padding: 20px;
  }
  .zerothree-feature .catch {
    /* margin-bottom: 20px; */
  }
  .zerothree-feature .list {
    grid: auto-flow / 1fr;
  }
  .zerothree-feature .description-item {
    display: -ms-grid;
    display: grid;
    grid: auto auto / 30% 1fr;
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
    padding: 20px;
  }
  .zerothree-feature .description-item:last-child {
    display: -ms-grid;
    display: grid;
    grid: auto auto auto / 30% 1fr;
    padding: 20px;
  }
  .zerothree-feature img {
    grid-row: 1 / -1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
    margin-top: 6px;
  }
  .zerothree-feature .title {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / 2;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
    font-size: 12px;
    margin: 0 0 5px 10px;
  }
  .zerothree-feature .text {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2 / 3;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
    margin: 0 0 0 10px;
  }
  .zerothree-feature .note {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3 / 4;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
    margin-left: 10px;
    margin-right: 0;
  }
  .zerothree-cost .lead-title {
    text-align: center;
    color: #fff;
    margin: 0 20px 5px 20px;
    /* margin-bottom: 5px; */
  }
  .zerothree-cost .description {
    padding: 0 20px;
  }
  .zerothree-cost .note-right {
    font-size: 10px;
    margin-left: -10px;
  }

  .zerothree-function .lead-title {
    margin-bottom: 5px;
  }
  .zerothree-function .catch {
    margin-bottom: 10px;
    margin-left: -3px;
  }
  .zerothree-function .list {
    grid: auto-flow / 1fr;
    row-gap: 15px;
  }
  .zerothree-function .list-item {
    padding: 15px 20px;
    border: 1px solid var(--ruledline-color);
  }
  .zerothree-function .list-item .title {
    font-size: 12px;
  }

  .zerothree-basic-price .list-table dt,
  .zerothree-option-commission .list-table dt,
  .zerothree-basic-function .list-table dt,
  .zerothree-pbx-option .list-table dt {
    width: 100%;
  }

  .zerothree-basic-price .list-table:last-of-type dt,
  .zerothree-option-commission .list-table:last-of-type dt,
  .zerothree-basic-function .list-table:last-of-type dt,
  .zerothree-pbx-option .list-table:last-of-type dt {
    border-bottom: none;
  }
  .zerothree-basic-price .list-table .table2col,
  .zerothree-basic-function .list-table .table2col,
  .zerothree-pbx-option .list-table .table2col {
    grid: auto-flow / 230px 1fr;
  }
  .zerothree-option-commission .list-table .table2col {
    grid: auto-flow / 1fr 250px;
  }
  .zerothree-number {
    gap: 20px;
    padding: 20px;
  }
  .zerothree-number-item {
    font-size: 10px;
  }

  .table-scroll table.zerothree-auto-announcement {
    white-space: unset;
  }

  .zerothree-auto-announcement {
    table-layout: fixed;
    width: 100%; /***/
  }

  .zerothree-auto-announcement th,
  .zerothree-auto-announcement td {
    word-break: break-all;
  }

  .zerothree-auto-announcement tr th:last-child,
  .zerothree-auto-announcement tr td:last-child {
    word-break: break-word;
  }

  .step .step-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px 3px;
  }
  .step-item + .step-item {
    border-top: 1px dotted var(--ruledline-color);
  }
  .zerothree-after-apply th {
    width: unset;
    border-right: 1px solid var(--ruledline-color);
  }
  .zerothree-after-apply td:nth-child(2) {
    width: unset;
    border-right: 1px solid var(--ruledline-color);
    text-align: left;
  }
  .zerothree-after-apply td:nth-child(3) {
    padding: 9px 18px 10px;
  }
}
@media screen and (max-width: 420px) {
  .zerothree-feature .description-item {
    padding: 10px;
  }
  .zerothree-feature .description-item:last-child {
    padding: 10px;
  }
  .zerothree-feature .title {
    font-size: 12px;
  }
  .zerothree-feature .note {
    font-size: 10px;
  }

  .zerothree-basic-price .list-table .table2col,
  .zerothree-option-commission .list-table .table2col,
  .zerothree-basic-function .list-table .table2col,
  .zerothree-pbx-option .list-table .table2col {
    grid: auto-flow / 1fr;
  }

  .zerothree-basic-price .list-table .table2col .table-cell:nth-child(odd),
  .zerothree-option-commission .list-table .table2col .table-cell:nth-child(odd),
  .zerothree-basic-function .list-table .table2col .table-cell:nth-child(odd),
  .zerothree-pbx-option .list-table .table2col .table-cell:nth-child(odd) {
    border-bottom: unset;
    padding-bottom: 0;
  }

  .zerothree-basic-price .list-table .table2col .table-cell:nth-child(even),
  .zerothree-option-commission .list-table .table2col .table-cell:nth-child(even),
  .zerothree-basic-function .list-table .table2col .table-cell:nth-child(even),
  .zerothree-pbx-option .list-table .table2col .table-cell:nth-child(even) {
    padding-top: 0;
  }

  .zerothree-number {
    grid: auto auto / 1fr 1fr;
    gap: 10px;
  }
}
@media screen and (max-width: 330px) {
  .zerothree-feature .description-item {
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    grid: auto-flow / 1fr;
  }
  .zerothree-feature .description-item:last-child {
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    grid: auto-flow / 1fr;
  }
  .zerothree-feature img {
    grid-row: unset;
    grid-column: unset;
    width: 70%;
    margin: 0 auto 10px;
  }
  .zerothree-feature .title {
    grid-row: unset;
    grid-column: unset;
  }
  .zerothree-feature .text {
    grid-row: unset;
    grid-column: unset;
  }
  .zerothree-feature .note {
    grid-row: unset;
    grid-column: unset;
  }
}

/* 秘書電話代行プラン */
.denwadaikou-lead {
  display: -ms-grid;
  display: grid;
  grid: auto / 1fr 150px;
  gap: 60px;
  padding-bottom: 45px;
}
.denwadaikou-lead img {
  width: 100%;
  height: auto;
}
.denwadaikou-reason {
  display: -ms-grid;
  display: grid;
  grid: auto / repeat(3, 1fr);
  gap: 10px;
}
.denwadaikou-reason-item {
  padding: 33px;
  text-align: center;
}
.denwadaikou-reason-item:nth-child(1) {
  background-color: #ffadde;
}
.denwadaikou-reason-item:nth-child(2) {
  background-color: #ff799c;
}
.denwadaikou-reason-item:nth-child(3) {
  background-color: #fe56b7;
}
.denwadaikou-reason-item .title {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 10px;
  background-color: #fff;
  font-weight: 700;
  color: #ff0d92;
}
.denwadaikou-reason-item .text {
  text-align: left;
  line-height: 1.7;
  color: #fff;
}
.table-denwadaikou-service tr th:nth-child(1) {
  width: 20%;
}
.table-denwadaikou-service tr th:nth-child(2) {
  width: 15.8%;
  text-align: center;
}
.table-denwadaikou-service tr th:nth-child(3) {
  width: 20%;
  text-align: center;
}
.table-denwadaikou-service tr th:nth-child(4) {
  width: 20%;
  text-align: center;
}
.table-denwadaikou-service tr th:nth-child(5) {
  width: auto;
}
.table-denwadaikou-service tr td:nth-child(2) {
  width: 15.8%;
  text-align: center;
}
.table-denwadaikou-service tr td:nth-child(3) {
  width: 20%;
  text-align: center;
}
.table-denwadaikou-service tr td:nth-child(4) {
  width: 20%;
  text-align: center;
}
.table-denwadaikou-other th {
  width: 30%;
  padding: 13px 15px 13px 32px;
}
.table-denwadaikou-other tr td:nth-child(2) {
  /* width: 15.8%; */
  width: 10%;
  text-align: center;
  padding: 13px 10px;
}
.table-denwadaikou-other tr td:nth-child(3) {
  width: auto;
  background-color: #fafafa;
  padding: 13px 15px;
}
@media screen and (max-width: 680px) {
  .denwadaikou-lead {
    gap: 20px;
  }
  .denwadaikou-service {
    padding-bottom: 5px;
  }
  .table-denwadaikou-service {
    margin-bottom: 9px;
  }
  .table-denwadaikou-service tr th:nth-child(1) {
    width: unset;
  }
  .table-denwadaikou-service tr th:nth-child(2) {
    width: unset;
  }
  .table-denwadaikou-service tr th:nth-child(3) {
    width: unset;
  }
  .table-denwadaikou-service tr th:nth-child(4) {
    width: unset;
  }
  .table-denwadaikou-other th {
    text-align: center;
    padding: 13px 15px;
    width: unset;
  }
  .table-denwadaikou-other tr td:nth-child(2) {
    width: unset;
    border-right: 1px solid var(--ruledline-color);
  }
  .border-bottom-sp {
    border-bottom: 1px solid var(--ruledline-color);
  }
}
@media screen and (max-width: 420px) {
  .denwadaikou-lead {
    grid: auto auto / 1fr;
    gap: 10px;
  }
  .denwadaikou-reason {
    grid: auto auto auto / 1fr;
  }
}

/* COST PERFORMANCE */
.cost-performance-content {
  position: relative;
  max-width: 760px;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-bottom: 31px;
  background-image: url(../img/imgtop/cost-performance_00.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}
.cost-performance-top {
  -webkit-transform: scale(0.85);
  transform: scale(0.85);
  -webkit-transform-origin: top center;
  transform-origin: top center;
}
.cost-performance .title-image1 .text {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.2;
  font-size: 26px;
  font-weight: 700;
  color: var(--text-color-pink);
  text-align: center;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
}
.cost-performance .title-image1 .strong {
  display: inline-block;
  line-height: 1;
  letter-spacing: 2px;
  font-size: 45px;
  font-weight: 700;
  -webkit-transform: scaleY(1.25) translateY(3px);
  transform: scaleY(1.25) translateY(3px);
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right;
  z-index: 1;
}
.cost-performance .title-image1 .unit {
  line-height: 1;
  font-size: 30px;
  font-weight: 500;
  -webkit-transform: scaleY(1.75) translateY(2px);
  transform: scaleY(1.75) translateY(2px);
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
}
.cost-performance-average {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 37px;
  text-align: center;
}
.cost-performance-average .title {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 5px;
  font-size: 20px;
  font-weight: 700;
  color: #9b9b9b;
  line-height: 1;
}
.cost-performance-average .num {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 27px;
  color: #c59a6b;
  line-height: 1;
  -webkit-transform: scaleY(1.25);
  transform: scaleY(1.25);
}
.cost-performance-average .unit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 26px;
  line-height: 1;
  color: #9b9b9b;
}
.cost-performance-average .strong {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 33px;
  font-weight: 500;
  line-height: 1;
}
.cost-performance-average .star {
  align-self: center;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 33px;
  width: auto;
  margin-top: -10px;
  margin-left: 30px;
}

.cost-performance-google {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 10px;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #989898;
  line-height: 1;
  background-image: url(../img/imgtop/cost-performance_underline.png);
  background-repeat: no-repeat;
  background-position: bottom;
}
.cost-performance-google .title {
  font-size: 20px;
  font-weight: 500;
  color: #989898;
  line-height: 1;
}
.cost-performance-google .num {
  font-size: 34px;
  color: var(--text-color-pink);
  line-height: 1;
}
.cost-performance-google .unit {
  font-size: 22px;
  color: var(--text-color-pink);
  line-height: 1;
}
.cost-performance-google .unit2 {
  font-size: 20px;
  color: var(--text-color-pink);
  line-height: 1;
}
.cost-performance-google .strong {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}
.cost-performance-graph {
  display: block;
  max-width: 554px;
  width: 100%;
  margin: -10px auto;
}
.cost-performance-graph img {
  width: 100%;
  height: auto;
}
.cost-performance-review {
  position: relative;
  display: block;
  max-width: 670px;
  width: 100%;
  padding: 55px 45px 35px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.8);
}
.cost-performance-review-title {
  position: absolute;
  top: -26px;
  left: 50%;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.cost-performance-review-title img {
  max-width: 100%;
  height: auto;
}
.cost-performance-review-content {
  position: relative;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  grid: auto / 1fr 1fr;
  gap: 80px;
  margin: 0 auto;
}
.cost-performance-review-content::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: calc(50% - 2px);
  width: 4px;
  height: 228px;
  background-image: url(../img/imgtop/line-dot.png);
  background-repeat: repeat-y;
}
.cost-performance-review .title img {
  max-width: 100%;
  height: auto;
  margin-bottom: 9px;
}
.cost-performance-review .name {
  margin-bottom: 4px;
  font-weight: 700;
  color: var(--text-color-pink);
}
.cost-performance-review .star {
  vertical-align: middle;
  height: 18px;
  width: auto;
  margin-top: -4px;
}
.cost-performance-review .text {
  color: #9e9c9d;
}

@media screen and (max-width: 680px) {
  .cost-performance-content {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    background-size: cover;
  }
  .cost-performance .title-image1 .text {
    font-size: max(3.8vw, 14px);
  }
  .cost-performance .title-image1 .strong {
    font-size: max(6.6vw, 18px);
  }
  .cost-performance .title-image1 .unit {
    font-size: max(4.4vw, 14px);
  }
  .cost-performance-average .title {
    font-size: max(2.9vw, 12px);
  }
  .cost-performance-average .num {
    font-size: max(5.2vw, 16px);
  }
  .cost-performance-average .unit {
    font-size: max(3.8vw, 14px);
  }
  .cost-performance-average .strong {
    font-size: max(5vw, 16px);
  }
  .cost-performance-average .star {
    font-size: max(5vw, 16px);
    width: 27vw;
    height: auto;
    margin-left: max(4.4vw, 14px);
  }

  .cost-performance-google {
    font-size: max(2.6vw, 12px);
  }
  .cost-performance-google .title {
    font-size: max(2.9vw, 12px);
  }
  .cost-performance-google .num {
    font-size: max(5vw, 16px);
  }
  .cost-performance-google .unit {
    font-size: max(2.9vw, 12px);
  }
  .cost-performance-google .unit2 {
    font-size: max(2.9vw, 12px);
  }
  .cost-performance-google .strong {
    font-size: max(5.2vw, 16px);
  }
  .cost-performance-graph {
    display: block;
    max-width: 554px;
    width: 100%;
    margin: 35px auto;
  }
  .cost-performance-graph img {
    width: 100%;
    height: auto;
  }
  .cost-performance-review {
    position: relative;
    display: block;
    max-width: 600px;
    width: 100%;
    padding: 60px 45px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.8);
  }
  .cost-performance-review-title {
    position: absolute;
    top: -26px;
    left: 50%;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .cost-performance-review-title img {
    max-width: 100%;
    height: auto;
  }
  .cost-performance-review-content {
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    grid: auto auto / 1fr;
    gap: 50px;
    margin: 0 auto;
  }
  .cost-performance-review-content::before {
    top: calc(50% - 4px);
    left: 0;
    width: 100%;
    height: 4px;
    background-image: url(../img/imgtop/line-dot-h.png);
    background-repeat: repeat-x;
  }
  .cost-performance-review .name {
    font-size: 12px;
  }
  .cost-performance-review .star {
    height: 18px;
    width: auto;
  }
  .cost-performance-review .text {
    font-size: 10px;
    color: #9e9c9d;
  }
}

/* 格安バーチャルオフィス料金 コスパ */
.plan-cost-performance .cost-performance-content {
  padding-bottom: 0;
}

@media screen and (max-width: 680px) {
  .plan-cost-performance .cost-performance-content {
    padding-bottom: 0;
  }
}

/* faq */
.faq-top {
  position: relative;
  margin-top: 50px;
}
.faq-top-img {
  position: absolute;
  top: -59px;
  right: 0;
}
.faq-top-img img {
  display: inline-block;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
.faq-top .list-title {
  position: relative;
  text-shadow: 1px 1px 2px #fff, -1px 1px 2px #fff, 1px -1px 2px #fff, -1px -1px 2px #fff;
  z-index: 1;
}

@media screen and (max-width: 680px) {
  .faq-top {
    margin-top: 0;
  }
  .faq-top-img {
    display: none;
  }
}

/* 漫画で見るバーチャルオフィス */
.cartoon_img {
  display: block;
  margin: 0 auto;
  max-width: 606px;
  height: auto;
}
