@charset "utf-8";
/*------------------------------------------------------------------

  プラン・料金

------------------------------------------------------------------*/

/* PC以下共通サイズ------------------------------- */
.flow {
  background: var(--c-lightblue);
}
.flow .ttl1 {
  margin-bottom: 80px;
}
.flow_list ol {
  display: grid;
  grid-gap: 15px 4%;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas:
    "item01 item02 item03 item04"
    "kikan01 kikan0203 kikan0203 .";
}
.flow_list .item {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column-reverse;
  flex-wrap: wrap;
  gap: 25px 15px;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: solid 3px var(--c-blue);
  border-radius: 30px;
  padding: 55px 8% 30px;
}
.flow_list .img_area {
  width: 104px;
  aspect-ratio: 1 / 1;
}
.flow_list .en_font {
  position: absolute;
  top: -32px;
  left: 50%;
  margin-left: -32px;
  background: var(--c-blue);
  color: #fff;
  font-size: 24px;
  width: 64px;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 1;
}
.flow_list .en_font span {
  font-size: 55%;
  line-height: 1.2;
}
.flow_list h3 {
  text-align: center;
  line-height: 1.5;
  font-size: 18px;
  margin-bottom: 10px;
}
.flow_list h3 span {
  font-size: 60%;
  vertical-align: top;
}
.flow_list p {
  text-align: center;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0;
}
.flow_list .kikan span {
  background: #c9f1e8;
  color: var(--c-txtblue);
  font-weight: 700;
  font-family: var(--ff-maru);
  line-height: 2;
  padding: 3px 0;
  text-align: center;
  position: relative;
  width: calc(100% - 15px);
  display: block;
  border-radius: 3px 0 0 3px;
}
.flow_list .kikan span:before {
  content: "";
  position: absolute;
  width: 15px;
  height: 100%;
  background-color: #c9f1e8;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  right: -14.5px;
  top: 0;
}
.flow_list .item.--01 {
  grid-area: item01;
}
.flow_list .item.--02 {
  grid-area: item02;
}
.flow_list .item.--03 {
  grid-area: item03;
}
.flow_list .item.--04 {
  grid-area: item04;
}
.flow_list .item.--04 .img_area {
  width: 100%;
  aspect-ratio: 18 / 13;
}
.flow_list .item.--05 {
  grid-area: item05;
}
.flow_list .kikan.--01 {
  grid-area: kikan01;
}
.flow_list .kikan.--0203 {
  grid-area: kikan0203;
}
.flow_list .kikan.--04 {
  grid-area: kikan04;
}
.flow_list .arrow {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  right: -16%;
  display: inline-block;
  width: 16%;
  height: 3px;
  margin: 8.5px 0;
  border-radius: 9999px;
  background-color: var(--c-blue);
}
.flow_list .arrow::before,
.flow_list .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1.5px);
  right: 0;
  width: 15.3px;
  height: 3px;
  border-radius: 9999px;
  background-color: var(--c-blue);
  transform-origin: calc(100% - 1.5px) 50%;
}
.flow_list .arrow::before {
  transform: rotate(45deg);
}
.flow_list .arrow::after {
  transform: rotate(-45deg);
}
.flow .kome,
.plan_detail .kome {
  margin-top: 40px;
}

.plan_detail {
  background: #fff;
  padding-bottom: 0 !important;
}
.plan_detail .ttl1 {
  margin-bottom: 60px;
}
.accordion_open {
  background: #fff;
  border-top: solid 1px var(--c-darkgray);
  border-bottom: solid 1px var(--c-darkgray);
  display: flex;
  align-items: center;
  padding: 23px 30px 23px 20px;
  font-size: 16px;
  font-weight: var(--fw-mid);
  gap: 0 10px;
  cursor: pointer;
  margin-top: -1px;
  position: relative;
}
.accordion_open span {
  flex: 1;
}
.accordion_open:after {
  font-family: var(--ff-icon);
  content: "\f078";
}
.accordion_close:after {
  content: "\f077";
}
.plan_list_cont {
  display: none;
}
.plan_list_cont dl {
  display: flex;
}
.plan_list_cont dt {
  width: 145px;
  background: var(--c-gray);
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
  font-weight: var(--fw-mid);
  line-height: 1.4;
  font-size: 15px;
  padding: 15px 0 15px 20px;
  display: flex;
  align-items: center;
}
.plan_list_cont dd {
  flex: 1;
}
.plan_table {
  width: 100%;
  table-layout: fixed;
  height: 100%;
}
.plan_table th {
  width: 240px;
  font-size: 15px;
  font-weight: var(--fw-normal);
  line-height: 1.5;
  padding: 13px 0 13px 20px;
  border-right: solid 1px var(--c-gray);
  border-bottom: solid 1px var(--c-gray);
  align-content: center;
}
.plan_table td {
  font-weight: var(--fw-bold);
  padding: 13px 10px;
  border-right: solid 1px var(--c-gray);
  border-bottom: solid 1px var(--c-gray);
  text-align: center;
  color: var(--c-txtorange);
  align-content: center;
  word-break: break-all;
}
.plan_table i {
  font-size: 28px;
  color: var(--c-orange);
}
.plan_table .txt_small {
  font-weight: var(--fw-normal);
  margin-top: 5px;
}
.plan_list_cont dl:last-child dt,
.plan_table tr:last-child th,
.plan_table tr:last-child td {
  border-bottom: none;
}
.plan_table td:last-child {
  color: var(--c-txtgreen);
}
.plan_table td:last-child i {
  color: var(--c-green);
}
.plan_table tr:nth-child(even) th,
.plan_table tr:nth-child(even) td {
  background: var(--c-lightgray);
}
.plan_table.--gray tr:nth-child(even) th,
.plan_table.--gray tr:nth-child(even) td {
  background: #fff;
}
.plan_table.--gray tr:nth-child(odd) th,
.plan_table.--gray tr:nth-child(odd) td {
  background: var(--c-lightgray);
}
.thead_area .thead {
  display: flex;
  padding-left: 380px;
}
.thead_area .maru_font {
  flex: 1;
  background: var(--c-orange);
  color: #fff;
  font-size: 20px;
  text-align: center;
  line-height: 70px;
  border-radius: 30px 30px 0 0;
}
.thead_area .maru_font:last-child {
  background: var(--c-green);
  border-left: solid 1px #fff;
}
.thead_area th {
  width: 380px;
  background: var(--c-gray);
  font-weight: var(--fw-bold);
  font-size: 16px;
}
.thead_area .price_num {
  font-size: 24px;
}
.thead_area .--paid .price_num {
  font-size: 22px;
}
.thead_area .--paid .price_num .num_font span {
  font-size: 160%;
}
.thead_area .--paid .--kome {
  font-size: 60%;
  font-weight: var(--fw-normal);
  padding-bottom: 10px;
}

@media (hover: hover) and (pointer: fine) {
}

/* PCのみサイズ------------------------------- */
@media screen and (min-width: 1051px) {
}

/* タブレット（iPad Pro）以下サイズ------------------------------- */
@media screen and (max-width: 1050px) {
}

/* タブレット（iPad）以下サイズ------------------------------- */
@media screen and (max-width: 1023px) {
  .flow .ttl1 {
    margin-bottom: 70px;
  }
  .flow_list ol {
    grid-gap: 45px 2.7%;
    grid-template-columns: 1fr 30px;
    grid-template-areas:
      "item01 kikan01"
      "item02 kikan0203"
      "item03 kikan0203"
      "item04 .";
  }
  .flow_list .pc {
    display: none !important;
  }
  .flow_list .sp {
    display: block !important;
  }
  .flow_list .item {
    align-items: flex-start;
    flex-direction: row;
    padding: 30px 5% 25px;
  }
  .flow_list .img_area {
    width: 120px;
  }
  .flow_list .txt_area {
    flex: 1;
  }
  .flow_list h3 {
    text-align: left;
    font-size: 20px;
  }
  .flow_list .en_font {
    top: -15px;
    font-size: 14px;
    width: 30px;
  }
  .flow_list .kikan {
    position: relative;
  }
  .flow_list .kikan span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100% - 15px);
    line-height: 1.2;
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
  @supports (-webkit-touch-callout: none) {
    .flow_list .kikan span {
      padding-right: 15px;
    }
  }
  @supports (-webkit-hyphens: none) and (not (-ms-ime-align: auto)) {
    .flow_list .kikan span {
      padding-right: 15px;
    }
  }
  .flow_list .kikan span:before {
    width: 100%;
    height: 15px;
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
    right: 0;
    top: auto;
    bottom: -14.5px;
  }
  .flow_list .img_area {
    width: 80px !important;
    aspect-ratio: 1 / 1 !important;
  }
  .flow_list p {
    text-align: left;
  }
  .flow_list .arrow {
    top: auto;
    bottom: -23px;
    right: 50%;
    margin: 0 -1px 0 0;
    width: 2px;
    height: 22px;
  }
  .flow_list .arrow::before,
  .flow_list .arrow::after {
    top: auto;
    bottom: 0px;
    right: -0.5px;
    width: 15px;
    height: 2px;
  }
  .flow_list .arrow::after {
    transform: rotate(135deg);
  }
  .flow_list .en_font {
    top: -16px;
    font-size: 22px;
    width: 95px;
    height: 30px;
    aspect-ratio: 0;
    border-radius: 50px;
    flex-direction: row;
    align-items: center;
    gap: 0 4px;
    margin-left: -47px;
  }
  .flow .kome,
  .plan_detail .kome {
    margin-top: 30px;
  }
  .plan_list_cont dl {
    flex-direction: column;
  }
  .plan_list_cont dl + dl {
    margin-top: 15px;
  }
  .plan_list_cont dt {
    width: 100%;
    font-size: 14px;
    padding: 12px 13px;
    border-right: solid 1px var(--c-gray);
  }
  .plan_list_cont dt br {
    display: none;
  }
  .plan_table {
    border-bottom: solid 1px var(--c-gray);
    border-left: solid 1px var(--c-gray);
  }
  .plan_table th {
    width: 220px;
    font-size: 14px;
    padding: 12px 13px;
  }
  .plan_table td {
    font-size: 15px;
  }
  .thead_area .thead {
    padding-left: 220px;
  }
  .thead_area .maru_font {
    font-size: 18px;
  }
}

/* スマホサイズ------------------------------- */
@media screen and (max-width: 767px) {
  .flow .ttl1 {
    margin-bottom: 55px;
  }
  .flow_list .item {
    border-radius: 25px;
  }
  .flow_list .img_area {
    width: min(27%, 70px) !important;
  }
  .flow_list h3 {
    font-size: 17px;
    margin-bottom: 6px;
  }
  .flow_list p {
    font-size: 12px;
  }
  .accordion_open {
    padding: 23px 5%;
  }
  .plan_table th {
    width: 40%;
    font-size: 13px;
    padding: 12px 10px;
  }
  .plan_table td {
    font-size: 14px;
    padding: 12px 10px;
  }
  .plan_table i {
    font-size: 26px;
  }
  .thead_area .thead {
    padding-left: 40%;
  }
  .thead_area .maru_font {
    line-height: 1.3;
    font-size: 14px;
    padding: 12px 0 10px;
    border-radius: 15px 15px 0 0;
  }
  .thead_area .price_num .num_font span {
    font-size: 170%;
  }
  .thead_area .--paid .price_num {
    font-size: 11px;
    flex-wrap: wrap;
    font-weight: var(--fw-normal);
  }
  .thead_area .--paid .num_font {
    width: 100%;
    font-size: 160%;
    margin-bottom: 5px;
  }
  .thead_area .--paid .price_num .num_font span {
    font-size: 135%;
  }
  .thead_area .price_num .tax,
  .thead_area .price_num .--kome {
    font-size: 100%;
    padding: 0;
  }
}
