@charset "UTF-8";
@media screen and (min-width: 961px) {
  .page-mv--cost {
    background: url("../img/cost/mv-bg.webp") center/cover no-repeat;
  }
}

.cost-lead {
  padding-top: 60px;
  padding-bottom: 0px;
}
@media screen and (max-width: 960px) {
  .cost-lead {
    padding-top: 20px;
  }
}

.cost-lead__title {
  font-size: 32px;
  color: var(--color-primary);
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .cost-lead__title {
    font-size: 24px;
  }
}

.cost-lead__title-keyword {
  background: radial-gradient(50% 50% at 50% 50%, #0A58B8 0%, #72C7CF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cost-lead__text {
  font-size: 20px;
  line-height: 1.8;
  color: var(--color-text);
  text-align: center;
  margin-top: 24px;
}
@media screen and (max-width: 960px) {
  .cost-lead__text {
    font-size: 16px;
    text-align: left;
    margin-top: 24px;
  }
}

.cost-lead__features {
  display: flex;
  gap: 48px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin-top: 48px;
}
@media screen and (max-width: 960px) {
  .cost-lead__features {
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
  }
}

.cost-lead__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 280px;
  height: 248px;
  background: linear-gradient(154deg, rgba(87, 168, 221, 0.2) 0%, rgba(114, 199, 207, 0.2) 100%);
  border-radius: 20px;
  padding: 32px 0 0;
}
@media screen and (max-width: 960px) {
  .cost-lead__feature {
    flex-direction: row;
    width: 100%;
    height: 114px;
    padding: 24px;
    gap: 12px;
  }
}

.cost-lead__feature-icon {
  order: 2;
  flex: 1;
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
.cost-lead__feature-icon img {
  width: 114px;
  height: 108px;
}
@media screen and (max-width: 960px) {
  .cost-lead__feature-icon {
    order: 0;
    flex: 0 0 70px;
    align-items: center;
  }
  .cost-lead__feature-icon img {
    width: 70px;
    height: 66px;
  }
}

.cost-lead__feature-text {
  order: 1;
  font-size: 24px;
  color: var(--color-primary);
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .cost-lead__feature-text {
    order: 0;
    font-size: 20px;
    text-align: left;
  }
}

.cost-plans {
  padding-top: 80px;
  padding-bottom: 0px;
}
@media screen and (max-width: 960px) {
  .cost-plans {
    padding-top: 56px;
  }
}

.cost-plans__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(20px, 1.3888888889vw);
  list-style: none;
  padding: 0;
  margin-top: 48px;
}
@media screen and (max-width: 960px) {
  .cost-plans__list {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 24px;
  }
}

.cost-plans__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cost-plans__badge {
  width: 100%;
  height: 60px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1.8;
  color: var(--color-white);
  text-align: center;
  padding: 0 16px;
}
@media screen and (max-width: 960px) {
  .cost-plans__badge {
    font-size: 16px;
    line-height: 1.8;
  }
}

.cost-plans__item--light .cost-plans__badge {
  background: #57A8DD;
}

.cost-plans__item--standard .cost-plans__badge {
  background: #DF772E;
}

.cost-plans__item--basic .cost-plans__badge {
  background: #72C7CF;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .cost-plans__item--basic .cost-plans__badge {
    font-size: 14px;
  }
}

.cost-plans__arrow {
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #57A8DD;
  margin-top: -1px;
}

.cost-plans__item--standard .cost-plans__arrow {
  border-top-color: #DF772E;
}

.cost-plans__item--basic .cost-plans__arrow {
  border-top-color: #72C7CF;
}

.cost-plans__card {
  width: 100%;
  flex: 1;
  box-shadow: 1px 1px 40px 0px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  margin-top: 10px;
}

.cost-plans__card-header {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cost-plans__item--light .cost-plans__card-header {
  background: #57A8DD;
  border: 1px solid #57A8DD;
}

.cost-plans__item--standard .cost-plans__card-header {
  background: #DF772E;
  border: 1px solid #DF772E;
}

.cost-plans__item--basic .cost-plans__card-header {
  background: #72C7CF;
  border: 1px solid #72C7CF;
}

.cost-plans__card-title {
  font-size: 24px;
  color: var(--color-white);
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .cost-plans__card-title {
    font-size: 20px;
  }
}

.cost-plans__card-body {
  background: var(--color-white);
  padding: 16px 24px 40px;
}
@media screen and (max-width: 960px) {
  .cost-plans__card-body {
    padding: 16px 24px 32px;
  }
}

.cost-plans__card-price {
  font-size: 32px;
  line-height: 1.5;
  text-align: center;
}

.cost-plans__item--light .cost-plans__card-price {
  color: #57A8DD;
}

.cost-plans__item--standard .cost-plans__card-price {
  color: #DF772E;
}

.cost-plans__item--basic .cost-plans__card-price {
  color: #72C7CF;
}

.cost-plans__card-unit {
  font-size: 20px;
}

.cost-plans__card-desc {
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  text-align: center;
  margin-top: 20px;
}
.cost-plans__item--basic .cost-plans__card-desc {
  margin-top: 10px;
}
@media screen and (max-width: 960px) {
  .cost-plans__item--basic .cost-plans__card-desc {
    margin-top: 16px;
  }
}

.cost-plans__card-divider {
  width: 100%;
  height: 2px;
  background: #A5A5A5;
  opacity: 0.2;
  margin-top: 24px;
}
@media screen and (max-width: 960px) {
  .cost-plans__card-divider {
    margin-top: 14px;
  }
}
.cost-plans__item--basic .cost-plans__card-divider {
  margin-top: 10px;
}

.cost-plans__card-label {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  margin-top: 16px;
}

.cost-plans__item--light .cost-plans__card-label {
  color: #57A8DD;
}

.cost-plans__item--standard .cost-plans__card-label {
  color: #DF772E;
}

.cost-plans__item--basic .cost-plans__card-label {
  color: #72C7CF;
}

.cost-plans__card-included {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
}

.cost-plans__card-included-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 45px;
  font-size: 20px;
  color: var(--color-white);
  line-height: 1.5;
}

.cost-plans__card-included-badge--light {
  background: #57A8DD;
  border: 2px solid #57A8DD;
}

.cost-plans__card-included-badge--standard {
  background: #DF772E;
  border: 2px solid #DF772E;
}

.cost-plans__card-plus {
  display: block;
}

.cost-plans__card-content {
  margin-top: 8px;
}
.cost-plans__card-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
  text-align: left;
  padding-left: 8px;
}
@media screen and (max-width: 960px) {
  .cost-plans__card-content p {
    padding-left: 0px;
  }
}

@media screen and (max-width: 960px) {
  .cost-plans__card-note {
    font-size: 14px;
  }
}

.cost-advisory {
  padding-top: 80px;
  padding-bottom: 100px;
}
@media screen and (max-width: 960px) {
  .cost-advisory {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

.cost-advisory__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(20px, 1.3888888889vw);
  list-style: none;
  padding: 0;
  margin-top: 48px;
}
@media screen and (max-width: 960px) {
  .cost-advisory__list {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 24px;
  }
}

.cost-advisory__card {
  box-shadow: 1px 1px 40px 0px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  background: var(--color-white);
}

.cost-advisory__card-header {
  height: 60px;
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cost-advisory__card-title {
  font-size: 24px;
  color: var(--color-white);
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .cost-advisory__card-title {
    font-size: 20px;
  }
}

.cost-advisory__card-body {
  padding: 16px 24px 40px;
}
@media screen and (max-width: 960px) {
  .cost-advisory__card-body {
    padding: 24px;
  }
}

.cost-advisory__card-lead {
  font-size: 20px;
  color: var(--color-primary);
  line-height: 1.5;
  text-align: center;
}
.cost-advisory__card:first-child .cost-advisory__card-lead {
  margin-top: 16px;
}
@media screen and (max-width: 960px) {
  .cost-advisory__card-lead {
    font-size: 16px;
  }
}

.cost-advisory__card-divider {
  width: 100%;
  height: 2px;
  background: #A5A5A5;
  opacity: 0.2;
  margin-top: 16px;
}
.cost-advisory__card:first-child .cost-advisory__card-divider {
  margin-top: 32px;
}

.cost-advisory__card-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
  margin-top: 16px;
}

.cost-advisory__card-support {
  margin-top: 32px;
}
@media screen and (max-width: 960px) {
  .cost-advisory__card-support {
    overflow: hidden;
    max-height: 0;
    margin-top: 0;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
  }
}

@media screen and (max-width: 960px) {
  .cost-advisory__card.is-open .cost-advisory__card-support {
    margin-top: 16px;
  }
}

.cost-advisory__card-support-title {
  font-size: 16px;
  color: var(--color-primary);
  line-height: 1.5;
  text-align: center;
}

.cost-advisory__card-support-list {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}
.cost-advisory__card-support-list li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
  padding-left: 24px;
  position: relative;
}
@media screen and (max-width: 960px) {
  .cost-advisory__card-support-list li {
    padding-left: 20px;
  }
}
.cost-advisory__card-support-list li::before {
  content: "・";
  position: absolute;
  left: 8px;
  top: 0;
  font-size: 16px;
}

.cost-advisory__card-toggle {
  display: none;
  background: var(--color-white);
  border: none;
  cursor: pointer;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.3;
  color: var(--color-primary);
  margin-top: 40px;
  margin-inline: auto;
  padding: 0;
}
@media screen and (max-width: 960px) {
  .cost-advisory__card-toggle {
    display: flex;
  }
}
.cost-advisory__card-toggle svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.cost-advisory__card.is-open .cost-advisory__card-toggle svg {
  transform: rotate(180deg);
}