@charset "UTF-8";
/* ===========================================
 * パーツ
 * ======================================== */
/* 　ボタン
------------------------------------------ */
.c-btn {
  width: 343px;
  max-width: 100%;
  height: 48px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  border-radius: 9999px;
  box-sizing: border-box;
  text-decoration: none;
}

.c-btn > span {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.14;
  letter-spacing: 1.25px;
  color: #FFFFFF;
}

.c-btn.c-btn--disable {
  opacity: 0.3;
  pointer-events: none;
}

/* いいねボタン */
.c-btn.c-btn--likes {
  background: #FFB337;
}

.c-btn.c-btn--likes:hover {
  background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), #FFB337;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), #FFB337;
}

.c-btn.c-btn--likesActive {
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #FFB337;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #FFB337;
}

.c-btn.c-btn--likes > span {
  position: relative;
  padding-left: 22px;
}

.c-btn.c-btn--likes > span::before {
  content: "";
  position: absolute;
  top: 1px;
  bottom: 0;
  left: 1px;
  margin: auto 0;
  width: 16px;
  height: 14px;
  background: url(./../img/common/icon_likes.svg) center center/contain no-repeat;
}

/*　ごめんなさいボタン */
.c-btn.c-btn--sorry {
  border: 1px solid #5F625F;
}

.c-btn.c-btn--sorry:hover {
  background: #EDF3ED;
}

.c-btn.c-btn--sorryActive {
  background: -webkit-linear-gradient(bottom, rgba(79, 133, 77, 0.2), rgba(79, 133, 77, 0.2)), #EDF3ED;
  background: linear-gradient(0deg, rgba(79, 133, 77, 0.2), rgba(79, 133, 77, 0.2)), #EDF3ED;
}

.c-btn.c-btn--sorry > span {
  position: relative;
  padding-left: 22px;
  color: #5F625F;
}

.c-btn.c-btn--sorry > span::before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 0;
  left: 1px;
  margin: auto 0;
  width: 16px;
  height: 14px;
  background: url(./../img/common/icon_sorry.svg) center center/contain no-repeat;
}

.c-btn.c-btn--sorry.c-btn--disable {
  opacity: 1;
  background: #E8E9E8;
  border: 1px solid #A4A5A4;
}

.c-btn.c-btn--sorry.c-btn--disable span {
  color: #A4A5A4;
}

/* 再いいねボタン */
.c-btn.c-btn--relikes {
  background: #59B54D;
}

.c-btn.c-btn--relikes:hover {
  background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), #59B54D;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), #59B54D;
}

.c-btn.c-btn--relikesActive {
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #59B54D;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #59B54D;
}

.c-btn.c-btn--relikes > span {
  position: relative;
  padding-left: 22px;
}

.c-btn.c-btn--relikes > span::before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 0;
  left: 1px;
  margin: auto 0;
  width: 18px;
  height: 16px;
  background: url(./../img/common/icon_message.svg) center center/contain no-repeat;
}

/* メッセージ付きいいね */
.c-btn.c-btn--likesMessage {
  background: #FF8484;
}

.c-btn.c-btn--likesMessage:hover {
  background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), #FF8484;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), #FF8484;
}

.c-btn.c-btn--likesMessageActive {
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #FF8484;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #FF8484;
}

.c-btn.c-btn--likesMessage > span {
  position: relative;
  padding-left: 22px;
}

.c-btn.c-btn--likesMessage > span::before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 0;
  left: 1px;
  margin: auto 0;
  width: 18px;
  height: 16px;
  background: url(./../img/common/icon_message.svg) center center/contain no-repeat;
}

/* プレミアムメッセージ */
.c-btn.c-btn--premiumMessage {
  background: #DFBB60;
}

.c-btn.c-btn--premiumMessage:hover {
  background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), #DFBB60;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), #DFBB60;
}

.c-btn.c-btn--premiumMessageActive {
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #DFBB60;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #DFBB60;
}

.c-btn.c-btn--premiumMessage > span {
  position: relative;
  padding-left: 22px;
}

.c-btn.c-btn--premiumMessage > span::before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 0;
  left: 1px;
  margin: auto 0;
  width: 18px;
  height: 16px;
  background: url(./../img/common/icon_message.svg) center center/contain no-repeat;
}

/* Primary */
.c-btn.c-btn--primary {
  background: #4F854D;
}

.c-btn.c-btn--primary:hover {
  background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), #4F854D;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), #4F854D;
}

.c-btn.c-btn--primaryActive {
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #4F854D;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #4F854D;
}

/* Secondary */
.c-btn.c-btn--secondary {
  background: #FFFFFF;
  border: 1px solid #4F854D;
}

.c-btn.c-btn--secondary span {
  color: #4F854D;
}

.c-btn.c-btn--secondary:hover {
  background-color: #EDF3ED;
}

.c-btn.c-btn--secondaryActive {
  background: -webkit-linear-gradient(bottom, rgba(79, 133, 77, 0.2), rgba(79, 133, 77, 0.2)), #EDF3ED;
  background: linear-gradient(0deg, rgba(79, 133, 77, 0.2), rgba(79, 133, 77, 0.2)), #EDF3ED;
}

.c-btn.c-btn--secondary.c-btn--disable {
  opacity: 1;
  background: #E8E9E8;
  border: 1px solid #A4A5A4;
}

.c-btn.c-btn--secondary.c-btn--disable span {
  color: #A4A5A4;
}

/* Tertialy */
.c-btn.c-btn--tertialy {
  background: #FFFFFF;
}

.c-btn.c-btn--tertialy span {
  color: #4F854D;
}

.c-btn.c-btn--tertialy:hover {
  background: #EDF3ED;
}

.c-btn.c-btn--tertialyActive {
  background: -webkit-linear-gradient(bottom, rgba(79, 133, 77, 0.2), rgba(79, 133, 77, 0.2)), #EDF3ED;
  background: linear-gradient(0deg, rgba(79, 133, 77, 0.2), rgba(79, 133, 77, 0.2)), #EDF3ED;
}

.c-btn.c-btn--tertialy.c-btn--disable {
  opacity: 1;
}

.c-btn.c-btn--tertialy.c-btn--disable span {
  color: #A4A5A4;
}

.c-btn.c-btn--remove {
  background: #E04040;
}
.c-btn.c-btn--remove:hover {
  background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), #E04040;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), #E04040;
}

/* ===========================================
 * 会員検索結果　ギャラリービュー
 * ======================================== */
/* 
------------------------------------------ */
.LyContainer .lyContainerInner {
  background: none;
  width: 950px;
}

.planContents {
  padding: 16px 0;
  background: #F9F8F5;
}

.planContents__titleWrap {
  padding: 16px 16px 32px;
}

.planContents__title {
  color: rgba(27, 30, 27, 0.96);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.4;
}

/* デザインリニューアル2022年12月 */
/* Color & Font */
.plan2022-mv,
.plan2022-buy,
.plan2022-paid,
.plan2022-paid-other,
.plan2024-comp,
.plan2022-about {
  font-family: "Noto Sans JP", sans-serif;
  color: #1B1E1B;
}

/* 調整用 */
/*=====================*/
.plan2022-mt32p {
  margin-top: 32px !important;
}

.plan2022-mb0 {
  margin-bottom: 0 !important;
}

/* 見出し */
/*=====================*/
.plan2022-lv2-heading {
  font-weight: 400;
  font-size: 26px;
  line-height: 32px;
  letter-spacing: 0.2px;
  text-align: center;
  margin: 0 0 8px 0;
}

.plan2022-lv3-heading {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.2px;
  margin: 0 0 16px 0;
}

/* 見出し下説明文 */
/*=====================*/
.plan2022-desc {
  font-size: 15px;
  line-height: 16px;
  letter-spacing: 0.25px;
}

/* 注意事項 */
/*=====================*/
.plan2022-note {
  color: #5F625F;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.4px;
  position: relative;
  padding-left: 17px;
  margin: 8px 0 0 0;
}

.plan2022-note::before {
  content: "※";
  position: absolute;
  left: 0;
}

/* ボタン */
/*=====================*/
.plan2022-btn {
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.plan2022-btn {
  display: inline-block;
  color: #4F854D !important;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 1.25px;
  text-align: center;
  border: 1px solid #4F854D;
  background: #FFFFFF;
  border-radius: 90px;
  padding: 15px 16px;
  max-width: 343px;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.plan2022-btn:hover {
  background: #ecf4ec;
  text-decoration: none;
}

/* リンク */
/*=====================*/
.plan2022-link {
  color: #4F854D !important;
}

/* MV */
/*=====================*/
.plan2022-mv {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.plan2022-mv-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  max-width: 1120px;
  width: 100%;
  margin-left: auto;
}

.plan2022-mv__img {
  width: 52.9%;
  -o-object-fit: cover;
     object-fit: cover;
}

.plan2022-mv__cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}

.plan2022-mv__ttl {
  color: #FF8484;
  font-weight: 700;
  font-size: 38px;
  line-height: 48px;
}

.plan2022-mv__note {
  margin: 48px 0 0 0;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.4px;
  color: #5F625F;
}

@media (max-width: 1279px) {
  .plan2022-mv-wrapper {
    max-width: 1060px;
    margin: 0 auto;
    padding-left: 50px;
  }
  .plan2022-mv__ttl.plan2022-mv__ttl--b {
    font-size: 32px; /*フォールバック*/
    font-size: clamp(28px, 3.64vw, 32px);
    line-height: 1.26;
  }
}
@media (max-width: 959px) {
  .plan2022-mv__ttl {
    font-size: 28px; /*フォールバック*/
    font-size: clamp(28px, 3.64vw, 38px);
    line-height: 1.26;
  }
}

/* プラン購入 */
/*=====================*/
.plan2022-buy .plan2022__inner {
  padding-top: 64px;
}

.plan2022-buy__item-label input {
  display: none !important;
}

.plan2022-buy__item-label {
  display: block;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.plan2022-buy__item-label:hover {
  opacity: 0.65;
}

/* そのほか便利な機能 */
/*=====================*/
.plan2022-paid-other {
  background: #FF8484;
}

.plan2022-paid-other .plan2022-lv2-heading {
  color: #FFFFFF;
  margin-bottom: 32px;
}

.plan2022-paid-other__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 0 0 -24px;
}

.plan2022-paid-other__item {
  background: #FFFFFF;
  box-shadow: 0px 1px 1px rgba(27, 30, 27, 0.04), 0px 1px 1px rgba(27, 30, 27, 0.1);
  border-radius: 16px;
  width: calc(33.3333333333% - 24px);
  margin: 0 0 0 24px;
}

.plan2022-paid-other__item .plan2022-note {
  font-size: 12px;
}

.plan2022-paid-other__item-head {
  padding: 16px 12px 0;
}

.plan2022-paid-other__item-tag-wrapper {
  text-align: center;
  margin: 0 0 8px 0;
}

.plan2022-paid-other__item-tag {
  display: inline-block;
  padding: 4px 16px;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.25px;
  color: #FFFFFF;
  background: -webkit-linear-gradient(4.76deg, #54917B -1.75%, #4F854D 51.76%, #4F854D 51.77%, #65A434 98%);
  background: linear-gradient(85.24deg, #54917B -1.75%, #4F854D 51.76%, #4F854D 51.77%, #65A434 98%);
  border-radius: 90px;
}

.plan2022-paid-other__item-ttl {
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0.12px;
  text-align: center;
  margin: 0 0 8px 0;
  min-height: 48px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
}

.plan2022-paid-other__item-thumb img {
  width: 100%;
}

.plan2022-paid-other__item-txt {
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.25px;
}

.plan2022-paid-other__item-body .plan2022-note + .plan2022-note {
  margin-top: 4px;
}

.plan2022-paid-other__item-body {
  padding: 15px 13px 24px;
}

/* プランについて */
/*=====================*/
.plan2022-about .plan2022__inner {
  padding-bottom: 80px;
  padding-top: 40px;
}

.plan2022-about .plan2022-lv2-heading {
  text-align: left;
}

.plan2022-about__head {
  margin-bottom: 64px;
}

.plan2022-about__table {
  width: 100%;
  table-layout: fixed;
  margin: 16px 0 24px;
}

.plan2022-about__table th,
.plan2022-about__table td {
  border: 1px solid #ACAEB1;
  padding: 16px 8px;
  font-weight: 300;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.25px;
  color: #1B1E1B;
}

.plan2022-about__table th {
  text-align: center;
  padding: 8px;
}

.plan2022-about__table .plan2022-about__table-head-premium {
  background: #DFBB60;
  color: #fff;
}

.plan2022-about__table-head-func {
  background: #DDDFE0;
}

.plan2022-about__table td:last-child {
  background: #FFF0CA;
  text-align: center;
}

.plan2022-about__btn-wrapper {
  margin-bottom: 40px;
}

.plan2022-about__desc {
  font-size: 15px;
  line-height: 16px;
  letter-spacing: 0.25px;
  margin: 0 0 8px 0;
}

.plan2022-about p + .plan2022-lv3-heading {
  margin-top: 32px;
}

.plan2022-buy__item + .plan2022-buy__item {
  margin-top: 16px;
}

.plan2022-buy__item:nth-child(4) {
  margin-top: 24px;
}

.planBlock01 {
  background: #fff;
  padding: 16px;
}

.planSec01__title {
  color: rgba(27, 30, 27, 0.96);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.planSec01__table {
  margin-top: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  border: 1px solid rgba(27, 30, 27, 0.08);
}

.planSec01__term {
  width: 88px;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  background: #F9F8F5;
  border-right: 1px solid rgba(27, 30, 27, 0.08);
  padding: 0 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  color: rgba(27, 30, 27, 0.96);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.12px;
}

.planSec01__description {
  width: calc(100% - 88px);
  padding: 8px;
}

.planSec01__term:not(:first-of-type),
.planSec01__description:not(:first-of-type) {
  border-top: 1px solid rgba(27, 30, 27, 0.08);
}

.planSec01__ddTitle {
  color: #4F854D;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.5;
}

.planSec01__ddLabel {
  margin-top: 8px;
  border-radius: 4px;
  background: #FF8484;
  padding: 4px 8px;
  color: #FFF;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.planSec01__ddTable {
  margin-top: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}

.planSec01__ddTerm {
  width: 56px;
  color: rgba(27, 30, 27, 0.6);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
}

.planSec01__ddDescription {
  width: calc(100% - 56px);
  color: rgba(27, 30, 27, 0.96);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
}

.planSec01__ddTerm:not(:first-of-type),
.planSec01__ddDescription:not(:first-of-type) {
  margin-top: 4px;
}

.planSec01__ddNotes {
  margin-top: 8px;
  color: #F44741;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.12px;
}

.planBlock02 {
  margin-top: 16px;
  background: #fff;
  padding: 8px 16px 32px;
  border-radius: 12px;
  box-shadow: 0px 1px 1px 0px rgba(27, 30, 27, 0.1), 0px 1px 1px 0px rgba(27, 30, 27, 0.04);
}

.planSec02 {
  padding-top: 10px;
}

.planSec02__title {
  color: #1B1E1B;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
}

.planSec02__headText {
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  text-align: left;
  padding-top: 12px;
}

.planSec02__headText a {
  color: #4F854D;
  border-bottom: 1px solid #4F854D;
}

.planSec02__notes {
  font-size: 12px;
  font-weight: 400;
  line-height: 19.2px;
  text-align: left;
  color: #727472;
}

.planBlock02__desc {
  background: #FFFFFF;
  margin-top: 16px;
}

.planBlock03 {
  background: #FFFFFF;
  padding: 4px 16px;
}

.planBlock03__container {
  margin: 32px auto 0;
}

.planSec03 {
  padding: 16px 0;
}

.planSec03__title {
  text-align: center;
  padding: 16px 0;
  color: rgba(27, 30, 27, 0.96);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.planSec03__blockWrap {
  margin-top: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.planSec03__block {
  padding: 16px;
  background: #FFFFFF;
  overflow: hidden;
  border: 1px solid #E8E9E8;
  border-radius: 8px;
}

.planSec03__blockTitle {
  color: rgba(27, 30, 27, 0.96);
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.44;
  margin-top: 8px;
}

.planSec03__blockImage {
  margin-top: 16px;
  width: 100%;
}
.planSec03__blockImage img {
  width: 100%;
}

.planSec03__blockText01 {
  margin-top: 16px;
  color: rgba(27, 30, 27, 0.96);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

.planSec03__blockText02 {
  margin-top: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: 4px;
  font-size: 12px;
  line-height: 1.33;
  letter-spacing: 0.4px;
  color: #5F625F;
}
.planSec03__blockText02::before {
  content: "※";
  font-size: 12px;
  line-height: 1.33;
  letter-spacing: 0.4px;
  color: #5F625F;
}

.planSec03__blockText02 + .planSec03__blockText02 {
  margin-top: 8px;
}

.planSec03__blockBtn {
  margin-top: 16px;
  margin-right: auto;
  margin-left: auto;
  height: 40px;
}

.wait02contents01Wrap {
  width: 624px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: 48px;
  padding: 32px 0;
}

.wait02contents01 {
  padding: 24px;
}

.wait02contents01__title {
  margin-top: 16px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
  color: rgba(27, 30, 27, 0.96);
}

.wait02contents02 {
  margin-top: 32px;
  padding-bottom: 32px;
}

.wait02contents02__title {
  padding: 16px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.33;
  text-align: center;
  letter-spacing: 0.2px;
  color: #1B1E1B;
}

.wait02contents02__blockWrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 32px;
  width: 870px;
  margin: 12px auto 0;
}

.wait02contents02__block {
  padding: 16px;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid #E8E9E8;
  border-radius: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
}

.wait02contents02__blockTitle {
  margin-top: 16px;
  min-height: 32px;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.3;
  text-align: center;
  color: #1B1E1B;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}

.wait02contents02__blockText01 {
  margin-top: 16px;
  font-weight: 400;
  font-size: 11px;
  line-height: 1.48;
  color: #1B1E1B;
  margin-bottom: 16px;
}

.wait02contents02__blockText02Wrap {
  margin-top: 16px;
  margin-bottom: 16px;
}

.wait02contents02__blockText02 {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: 4px;
  font-size: 11px;
  line-height: 1.48;
  color: rgba(27, 30, 27, 0.6);
  width: calc(100% + 12px);
  max-width: calc(100% + 12px);
}
.wait02contents02__blockText02::before {
  content: "※";
  font-size: 11px;
  line-height: 1.48;
  color: rgba(27, 30, 27, 0.6);
}

.wait02contents02__blockText02 + .wait02contents02__blockText02 {
  margin-top: 4px;
}

.wait02contents02__blockBtn {
  margin-top: auto;
  margin-right: auto;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 32px;
  padding: 4px 16px;
}
.wait02contents02__blockBtn span {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.7;
  color: #4F854D;
  letter-spacing: 0;
}

.planSec04 {
  padding: 48px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.planSec04__title {
  text-align: center;
  color: rgba(27, 30, 27, 0.96);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.planSec04__text01 {
  text-align: center;
  margin-top: 8px;
  color: rgba(27, 30, 27, 0.96);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}

.planSec04__tableWrap {
  margin: 32px 16px 0 16px;
}

.planSec04__table {
  width: 100%;
}
.planSec04__table th,
.planSec04__table td {
  border: 1px solid #ACAEB1;
  vertical-align: middle;
}
.planSec04__table td:nth-child(2) {
  background: #fff;
}
.planSec04__table td:nth-child(3) {
  background: #ECF4EC;
}
.planSec04__table th {
  width: 34.985%;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.12px;
  color: #1B1E1B;
  background: #DDDFE0;
}
.planSec04__table td {
  width: 32.5075%;
  text-align: center;
}
.planSec04__table td span {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.2px;
  font-weight: 700;
}
.planSec04__table td span.green {
  color: #2D562D;
}
.planSec04__table thead th,
.planSec04__table thead td {
  height: 56px;
}
.planSec04__table thead td {
  font-size: 13px;
  line-height: 1.23;
  letter-spacing: 0.25px;
  color: #1B1E1B;
}
.planSec04__table tbody th {
  padding: 17px 8px 16px;
}
.planSec04__table tbody td {
  padding: 14px 0;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.4px;
  color: #1B1E1B;
}

.planSec04__captionBlock {
  padding: 16px;
  margin-top: 24px;
  background: #F9F8F5;
}

.planSec04__captionText01 {
  color: rgba(27, 30, 27, 0.96);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.3;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: 4px;
}

.planSec04__captionText01 + .planSec04__captionText01 {
  margin-top: 8px;
}

.planSec04__text02 {
  font-size: 12px;
  line-height: 1.33;
  margin-top: 8px;
  letter-spacing: 0.4px;
  color: #5F625F;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: 4px;
}

.planSec05 {
  padding: 24px 0 0;
}

.planSec05__title {
  color: rgba(27, 30, 27, 0.96);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.planSec05__blockWrap {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 16px;
  margin: 24px auto 0;
}

.planSec05__blockTitle {
  color: rgba(27, 30, 27, 0.96);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  margin-top: 2px;
}

.planSec05__blockImage img {
  width: 100%;
}

.planSec06 {
  padding: 36px 24px 16px;
}

.planSec06_notes {
  margin-top: 10px;
}

.planSec06__text01 {
  color: rgba(27, 30, 27, 0.96);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 10px;
}

.planSec06__text02 {
  color: rgba(27, 30, 27, 0.96);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
}

.planSec06__text02_link {
  margin-bottom: 10px;
}

.planSec06__text02 a {
  color: #4F854D;
  border-bottom: 1px solid #4F854D;
}
.planSec06__text02 a:link, .planSec06__text01 a:visited {
  color: #4F854D;
}

.planSec06__text03 {
  margin-top: 2px;
  color: rgba(27, 30, 27, 0.96);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: 4px;
}
.planSec06__text03::before {
  content: "※";
}

.planSec06__text03 + .planSec06__text03 {
  margin-top: 4px;
}

.planSec06__text03 + .planSec06__text02 {
  margin-top: 16px;
}

.planSec07 {
  padding: 16px 0 0;
}

.planSec07__container {
  border-radius: 8px;
  background: #F9F8F5;
  padding: 24px;
}

.planSec07__text01 {
  color: rgba(27, 30, 27, 0.96);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.planSec07__text02 {
  margin-top: 10px;
  color: rgba(27, 30, 27, 0.96);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
}

.planSec07__text03 {
  margin-top: 8px;
  color: rgba(27, 30, 27, 0.6);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: 4px;
}
.planSec07__text03::before {
  content: "※";
}

.planSec07__text03 + .planSec07__text03 {
  margin-top: 4px;
}

.planSec07__text03 + .planSec07__text01 {
  margin-top: 24px;
}/*# sourceMappingURL=add202309.css.map */


:root {
  /* Figmaの定義に合わせてCSS変数をセット */
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-l: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 32px;
}

/* プランテーブル2026 */
.plan2026-comp {
  padding: 48px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #FFF5F7;
}

.plan2026-heading {
  font-size: var(--font-size-xl);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #FF6762;
}

/* 2026 スタンダード比較（plan-compare-table 構成） */
.plan2026-comp--compare .plan-compare-online {
  padding: 24px 0 40px;
  max-width: 100%;
}

.plan2026-comp--compare .plan-compare-table {
  display: flex;
  flex-direction: row;
  align-items: end;
  justify-content: space-between;
  text-align: center;
  margin: 0 12px;
  box-sizing: border-box;
  border-radius: 12px;
  gap: 4px;
}

.plan2026-comp--compare .plan-compare-table__group {
  width: 32%;
  flex:100;
  border: 1px solid #CCC;
  background: #fff;
  border-radius: 12px;
}

.plan2026-comp--compare .plan-compare-table__group.is-border-none {
  border: none;
  border-right: 1px solid #ececec;
}

.plan2026-comp--compare .plan-compare-table__group.current {
  flex: 135;
  min-width: 0;
  border: 2px solid #ff6762;
  border-radius: 12px;
  z-index: 1;
  position: relative;
  box-shadow: 0 4px 16px rgba(255, 103, 98, 0.18);
}

.plan2026-comp--compare .plan-compare-table__heading--none {
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background: #efeef0;
  border-radius: 12px 12px 0 0;
  font-size: var(--font-size-xs);
}

.plan2026-comp--compare .plan-compare-table__heading--gradient {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: var(--font-size-sm);
  font-weight: 700;
  line-height: 1.35;
  padding: 10px 6px;
  box-sizing: border-box;
  background: #D5D6D5;
  color: #727472;
}

.plan2026-comp--compare .plan-compare-table__heading--gradient em {
  font-style: normal;
  font-weight: 800;
}

.plan2026-comp--compare
  .plan-compare-table__group:last-child
  .plan-compare-table__heading--gradient {
  border-radius: 12px 12px 0 0;
}

.plan2026-comp--compare .plan-compare-table__group.current .plan-compare-table__heading--gradient {
  background: #ff6762;
  color: #fff;
  border-radius: 10px 10px 0 0;
  min-height: 56px;
}

.plan2026-comp--compare .plan-compare-table__group.current .plan-compare-table__heading--gradient em {
  color: #fff;
}

.plan2026-comp--compare .plan-compare-table__item {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 48px;
  padding: 12px 8px;
  box-sizing: border-box;
  font-size: var(--font-size-xs);
  font-weight: 400;
  line-height: 140%;
  overflow-wrap: break-word;
  word-break: break-word;
}

.plan2026-comp--compare
  .plan-compare-table__group
  > .plan-compare-table__item:last-child {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

/* temp */
.nowrap {
  white-space: nowrap;
}

@media only screen and (min-width: 48em) {
  .plan2026-comp--compare .plan-compare-table__br-mobile {
    display: none;
  }
}

.plan2026-comp--compare .plan-compare-table__group.is-border-none .plan-compare-table__item {
  font-family: 'Noto Sans JP', sans-serif;
  flex-direction: column;
  justify-content: center;
  font-weight: 400;
  font-size: var(--font-size-xs);
}

/* guest reset の `* { font-size: 16px }` が span に効き、セル内でサイズだけズレるのを防ぐ（リードは除外） */
.plan2026-comp--compare .plan-compare-table__item span:not(.plan-compare-table__lead) {
  font-size: inherit;
}

.plan2026-comp--compare .plan-compare-table__item > p {
  margin: 0;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2px;
  max-width: 100%;
}

.plan2026-comp--compare .plan-compare-table__lead {
  font-size: var(--font-size-base);
  font-weight: 700;
}

.plan2026-comp--compare .plan-compare-table__muted {
  color: #5c5f5c;
  font-weight: 500;
}

.plan2026-comp--compare .plan-compare-table__item:nth-child(odd) {
  background: #F7F7F7;
}

.plan2026-comp--compare .plan-compare-table__group.current .plan-compare-table__item:nth-child(odd) {
  background: #F7F7F7;
}

.plan2026-comp--compare .plan-compare-table__group.current .plan-compare-table__item {
  color: #ff6762;
  font-weight: 600;
}

/* guest reset の `p { color: var(--black-color) }` より詳細度で勝ち、親のピンクを継承させる */
.plan2026-comp--compare .plan-compare-table__group.current .plan-compare-table__item p {
  color: inherit;
}

.plan2026-comp--compare .plan-compare-table__group:not(.current) .plan-compare-table__item {
  color: #1b1e1b;
}

.plan2026-comp--compare .plan-compare-table__item sup {
  font-size: 9px;
  vertical-align: super;
  margin-left: 1px;
}

.plan2026-comp--compare .plan-compare-table__ico {
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  color: inherit;
  position: relative;
}

.plan2026-comp--compare .plan-compare-table__ico--circle-o {
  width: 22px;
  height: 22px;
}

.plan2026-comp--compare .plan-compare-table__ico--circle-o::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-sizing: border-box;
}

.plan2026-comp--compare .plan-compare-table__ico--close {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 600;
}

.plan2026-comp--compare .plan-compare-table__ico--close::before {
  content: '\2715';
}

/* 枠となる要素（必要に応じて） */
.plan2026-comp--compare .plan-compare-table__ico--polygon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.plan2026-comp--compare .plan-compare-table__ico--polygon::before {
  content: '';
  display: inline-block;
  width: 24px; /* 好きな横幅 */
  height: 14px; /* 好きな高さ */
  /* ↓ 背景にSVGの幅広の三角形を指定（色は fill='%23000' の 000 を変更） */
  background-image: url("/img/plan/img_polygon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

文字の△をやめて、CSSで図形を描く
.plan2026-comp--compare .plan-compare-table__ico--polygon::before {
  content: ''; /* 文字は入れない */
  display: inline-block;
  
  /* 幅広の三角形を作る（数値を調整してください） */
  border-bottom: 16px solid #000; /* 三角形の高さと色 */
  border-left: 10px solid transparent;  /* 左半分の幅（大きくすると幅広になる） */
  border-right: 10px solid transparent; /* 右半分の幅（大きくすると幅広になる） */
  
  /* 余計な余白などを消す */
  width: 0;
  height: 0;
}

/* .plan2026-comp--compare .plan-compare-table__ico--polygon {
  font-size: 18px;
  font-weight: 700;
  display: inline-block; 
  transform: scaleX(1.5);
}

.plan2026-comp--compare .plan-compare-table__ico--polygon::before {
  content: '\25B3';
} */

.plan2026-comp--compare
  .plan-compare-table__group:not(.current)
  .plan-compare-table__ico--close::before,
.plan2026-comp--compare
  .plan-compare-table__group:not(.current)
  .plan-compare-table__ico--polygon::before {
  color: #727472;
}

.plan2026-comp--compare
  .plan-compare-table__group:not(.current)
  .plan-compare-table__ico--circle-o::before {
  border-color: #ff6762;
}

.plan2026-comp__note {
  margin: 16px;
  padding: 12px;
  background: #FFF;
  border-radius: 12px;
  color: #727472;
}

.plan2026-comp--compare .plan-compare-online__note {
  font-size: var(--font-size-xs);
  line-height: 160%;
  color: #727472;
}

.plan2026-comp--compare .plan-compare-online__note + .plan-compare-online__note {
  margin-top: 6px;
}