/* =============================================
まいにちデスク　ランディングページ：共通クラス
============================================= */

.mainichi {
  --mainichi-black: #333333;
  --mainichi-dark-blue: #11313f;
  --mainichi-blue: #0097bf;
  --mainichi-light-blue: #0091fd;
  --mainichi-pink: #ea7e60;
  --mainichi-orange: #ff9900;
  --mainichi-white: #fff;
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--mainichi-black);
  font-family: "M PLUS Rounded 1c", sans-serif;
}

.l-mainichi-inner {
  max-width: calc(1152px + 30px * 2);
  width: 100%;
  padding-inline: 30px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .l-mainichi-inner {
    padding-inline: 20px;
    max-width: 500px;
  }
}

/* セクション上下の余白 */
.layout-mainichi {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 767px) {
  .layout-mainichi {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}

/* モバイル表示 */
.u-mobile {
  display: none;
}

@media (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}

/* デスクトップ表示 */
.u-desktop {
  display: block;
}

@media (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

/* =============================================
まいにちデスク　ランディングページ：共通パーツ
============================================= */
/* セクションタイトル　白文字用 */
.section-white-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--mainichi-white);
  letter-spacing: 0;
  width: fit-content;
  position: relative;
}

.section-white-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: -52px;
  width: 2px;
  height: 72px;
  border-radius: 9999px;
  background-color: var(--mainichi-white);
  rotate: -40deg;
}

.section-white-title::after {
  content: "";
  position: absolute;
  top: 0;
  right: -52px;
  width: 2px;
  height: 72px;
  border-radius: 9999px;
  background-color: var(--mainichi-white);
  rotate: 40deg;
}

.section-white-title--about::before {
  top: -10px;
  left: -45px;
}

.section-white-title--about::after {
  top: -10px;
  right: -45px;
}

.section-white-title__main {
  font-size: 40px;
}

@media (max-width: 767px) {
  .section-white-title::before {
    top: -8px;
    left: -32px;
    height: 45px;
    rotate: -30deg;
  }

  .section-white-title::after {
    top: -8px;
    right: -32px;
    height: 45px;
    rotate: 30deg;
  }

  .section-white-title--about::before {
    top: 15px;
    left: -20px;
  }

  .section-white-title--about::after {
    top: 15px;
    right: -20px;
  }

  .section-white-title {
    font-size: 16px;
  }

  .section-white-title__main {
    font-size: 26px;
  }

  .section-white-title__main--about {
    font-size: 23px;
  }
}

/* セクションタイトル */
.section-blue-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--mainichi-dark-blue);
  letter-spacing: 0;
  width: fit-content;
  padding-bottom: 64px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.section-blue-title__span {
  font-size: 24px;
  display: block;
}

.section-blue-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 55%;
  transform: translateX(-50%);
  width: 480px;
  aspect-ratio: 480 / 93;
  background-image: url(../images/mainichi/underline2.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 767px) {
  .section-blue-title {
    font-size: 26px;
    padding-bottom: 48px;
    gap: 10px;
  }

  .section-blue-title__span {
    font-size: 16px;
  }

  .section-blue-title::before {
    bottom: 0;
    left: 50%;
    width: 342px;
    aspect-ratio: 668 / 136;
    background-image: url(../images/mainichi/underline2_sp.webp);
  }
}

/* ボタン */
.mainichi-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fa7756;
  border-radius: 9999px;
  box-shadow: 0px 0px 15px #ffb43b;
  color: var(--mainichi-white);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
  padding: 48px 80px 48px 60px;
  position: relative;
  transition: opacity 0.3s ease-in-out;
}

.mainichi-button::before {
  content: "まずはクラウティに登録";
  position: absolute;
  border: solid 2px #f56947;
  border-radius: 6px;
  color: #f56947;
  font-size: 20px;
  background: #fff;
  padding: 6px 12px;
  top: -20px;
  left: 50%;
  translate: -50% 0;
  width: fit-content;
  white-space: nowrap;
  box-shadow: 0px 3px 5px rgba(123, 29, 7, 0.3);
  line-height: 1;
  letter-spacing: 0;
}

.mainichi-button__text {
  display: block;
  font-size: 40px;
  position: relative;
}

.mainichi-button__text::after {
  content: "";
  position: absolute;
  background-image: url(../images/mainichi/arrow_right.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 28.75px;
  aspect-ratio: 29 / 35;
  top: 60%;
  transform: translateY(-50%);
  right: -40px;
  transition: transform 0.3s ease-in-out;
}

@media (hover: hover) {
  .mainichi-button:hover {
    opacity: 0.9;
  }

  .mainichi-button:hover .mainichi-button__text::after {
    transform: translate(5px, -50%);
  }
}

@media (max-width: 767px) {
  .mainichi-button {
    box-shadow: 0px 0px 7.5px #ffb43b;
    font-weight: 700;
    letter-spacing: 0.01em;
    padding: 30px 45px;
  }

  .mainichi-button::before {
    font-size: 14px;
    top: -16px;
  }

  .mainichi-button__text {
    font-size: 22px;
  }

  .mainichi-button__text::after {
    width: 14.63px;
    right: -22px;
  }
}

/* =============================================
まいにちデスク　ランディングページ　：　MVセクション
============================================= */

.mainichi-mv {
  position: relative;
  padding-bottom: 56px;
}

.mainichi-mv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f6f6f6;
  background-image: repeating-linear-gradient(
      0deg,
      var(--mainichi-white),
      var(--mainichi-white) 2px,
      transparent 2px,
      transparent 24px
    ),
    repeating-linear-gradient(
      90deg,
      var(--mainichi-white),
      var(--mainichi-white) 2px,
      transparent 2px,
      transparent 24px
    );
  background-size: 24px 24px;
  background-repeat: repeat;
  background-position: 0 0;
  z-index: -1;
}

.mainichi-mv__header {
  background: var(--mainichi-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-block: 12px;
  position: relative;
}

.mainichi-mv__header::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
}

.mainichi-mv__header::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
}

.mainichi-mv__header-inner {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.mainichi-mv__top {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 7px;
}

.mainichi-mv__tab {
  font-size: 22.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--mainichi-white);
  padding: 0 16px;
  white-space: nowrap;
  border-radius: 9999px;
}

.mainichi-mv__tab:nth-child(1) {
  color: #3b8fff;
}

.mainichi-mv__tab:nth-child(2) {
  color: #ff7872;
}

.mainichi-mv__header-text {
  font-size: 21.5px;
  font-weight: 700;
  color: var(--mainichi-white);
}

.mainichi-mv__bottom-span {
  font-size: 28px;
}

.mainichi-mv__inner {
  margin-top: 58px;
  max-width: calc(1150px + 30px * 2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mainichi-mv__flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.mainichi-mv__device {
  width: 100%;
  max-width: 488px;
}

.mainichi-mv__device img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mainichi-mv__title {
  width: 100%;
  max-width: 602px;
}

.mainichi-mv__title-text {
  font-size: 26.5px;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--mainichi-dark-blue);
  position: relative;
  padding-bottom: 40px;
  max-width: 598px;
  margin-inline: auto;
}

.mainichi-mv__title-text::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 600 / 25;
  background-image: url(../images/mainichi/underline1.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.mainichi-mv__title-text::after {
  content: "";
  position: absolute;
  bottom: 40px;
  right: 0;
  width: 55px;
  aspect-ratio: 55 / 55.5;
  background-image: url(../images/mainichi/book_icon.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.mainichi-mv__title-text-span {
  font-size: 36.8px;
  background-image: radial-gradient(
    circle at center,
    var(--mainichi-dark-blue) 20%,
    transparent 20%
  );
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  padding-top: 0.15em;
}

.mainichi-mv__title-main {
  width: 100%;
  max-width: 602px;
  margin-top: 40px;
}

.mainichi-mv__title-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mainichi-mv__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 25px 20px 35px 50px;
  position: relative;
  z-index: 1;
  margin-top: 34px;
  width: 90%;
}

.mainichi-mv__list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1043 / 396;
  background-image: url(../images/mainichi/mv_list_bg.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.mainichi-mv__items {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: calc(584 / 945 * 100%);
}

.mainichi-mv__item {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  position: relative;
  padding-left: 40px;
}

.mainichi-mv__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 25.29px;
  height: 29.8px;
  background-image: url(../images/mainichi/pencil_icon.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.mainichi-mv__item-span {
  font-weight: 800;
  color: var(--mainichi-pink);
}

.mainichi-mv__list-image {
  width: calc(359 / 945 * 100%);
}

.mainichi-mv__list-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mainichi-mv__note {
  font-size: 14px;
}

@media (max-width: 767px) {
  .mainichi-mv {
    padding-bottom: 34px;
  }

  .mainichi-mv__header {
    padding-block: 18px;
  }

  .mainichi-mv__header::before {
    top: 12px;
  }

  .mainichi-mv__header::after {
    bottom: 5px;
  }

  .mainichi-mv__header-inner {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .mainichi-mv__top {
    gap: 6px;
  }

  .mainichi-mv__tab {
    font-size: 18px;
    line-height: 1;
    padding: 6px 14px;
  }

  .mainichi-mv__header-text {
    font-size: 16px;
  }

  .mainichi-mv__bottom-span {
    font-size: 18px;
  }

  .mainichi-mv__inner {
    margin-top: 20px;
    padding-inline: 20px;
  }

  .mainichi-mv__flex {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .mainichi-mv__device {
    max-width: 305px;
  }

  .mainichi-mv__title {
    min-width: 335px;
  }

  .mainichi-mv__title-text {
    font-size: 16px;
    padding-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 3px;
  }

  .mainichi-mv__title-text::after {
    bottom: 20px;
    width: 30px;
  }

  .mainichi-mv__title-text-span {
    font-size: 18px;
    padding-top: 0.5em;
  }

  .mainichi-mv__title-main {
    max-width: 300px;
    margin-top: 10px;
    margin-inline: auto;
  }

  .mainichi-mv__title-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .mainichi-mv__list {
    margin-top: 13px;
    width: 100%;
    max-width: 365px;
    flex-direction: column;
    gap: 0;
    padding: 22px 23px 35px;
  }

  .mainichi-mv__list::before {
    aspect-ratio: 670 / 1076;
    background-image: url(../images/mainichi/mv_list_bg_sp.webp);
  }

  .mainichi-mv__items {
    gap: 11px;
    width: 100%;
  }

  .mainichi-mv__item {
    font-size: 16px;
    padding-left: 28px;
  }

  .mainichi-mv__item::before {
    top: -1px;
    left: -1px;
    transform: translateY(0);
    width: 21px;
    height: 24px;
  }

  .mainichi-mv__list-image {
    width: calc(240 / 284 * 100%);
  }

  .mainichi-mv__list-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

/* =============================================
まいにちデスク　ランディングページ　：　アバウトセクション
============================================= */

.mainichi-about {
  background-color: var(--mainichi-blue);
  padding-top: 80px;
}

.mainichi-about__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.mainichi-about__inner::before {
  content: "";
  position: absolute;
  bottom: 60px;
  left: -296px;
  width: 348px;
  aspect-ratio: 348 / 370;
  background-image: url(../images/mainichi/stationery1.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.mainichi-about__inner::after {
  content: "";
  position: absolute;
  bottom: 175px;
  right: -260px;
  width: 180px;
  aspect-ratio: 180 / 225;
  background-image: url(../images/mainichi/stationery2.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.mainichi-about__title-span {
  position: relative;
  padding-right: 54px;
}

.mainichi-about__title-span::before {
  content: "";
  position: absolute;
  bottom: -35px;
  right: -8px;
  background-image: url(../images/mainichi/question.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  width: 48px;
  aspect-ratio: 40 / 92;
}

.mainichi-about__head-text {
  font-size: 18px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  color: var(--mainichi-white);
  text-align: center;
  margin-top: 44px;
}

.mainichi-about__content {
  margin-top: 58px;
  background-color: var(--mainichi-white);
  border-radius: 20px;
  padding: 101px 54px 95px;
  position: relative;
}

.mainichi-about__content::before {
  content: "";
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  width: 229px;
  aspect-ratio: 229 / 109;
  background-image: url(../images/mainichi/top_triangle.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.mainichi-about__items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.mainichi-about__number {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: var(--mainichi-dark-blue);
}

.mainichi-about__number-span {
  font-size: 21px;
}

.mainichi-about__content-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--mainichi-white);
  background-color: #0090ff;
  padding: 18px 22px;
  border-radius: 9.35px;
  width: fit-content;
  margin-top: 16px;
  position: relative;
}

.mainichi-about__content-text::before {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 24%;
  width: 26px;
  aspect-ratio: 1 / 1;
  background-image: url(../images/mainichi/right_triangle.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.mainichi-about__content-image {
  width: 100%;
  aspect-ratio: 332 / 312;
  margin-top: -20px;
}

.mainichi-about__content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mainichi-about__feature {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.8;
  color: var(--mainichi-pink);
  text-align: center;
  margin-top: 66px;
}

.mainichi-about__feature-span {
  position: relative;
}

.mainichi-about__feature-span::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  aspect-ratio: 161 / 15;
  background-image: url(../images/mainichi/wave_line.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.mainichi-about__text {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  color: var(--mainichi-black);
  text-align: center;
  margin-top: 24px;
}

.mainichi-about__image {
  position: absolute;
  bottom: -40px;
  right: -150px;
  width: calc(365 / 1152 * 100%);
  aspect-ratio: 1 / 1;
}

.mainichi-about__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 767px) {
  .mainichi-about {
    padding-top: 52px;
    padding-bottom: 168px;
  }

  .mainichi-about__inner::before {
    top: 203px;
    left: initial;
    bottom: initial;
    right: -22px;
    width: 112px;
    aspect-ratio: 112 / 71;
    background-image: url(../images/mainichi/stationery9.svg);
  }

  .mainichi-about__inner::after {
    bottom: -120px;
    right: initial;
    left: -28px;
    width: 253px;
    aspect-ratio: 253 / 127;
    background-image: url(../images/mainichi/stationery10.svg);
  }

  .mainichi-about__title-span {
    padding-right: 30px;
    display: flex;
    align-items: baseline;
    margin-top: 10px;
  }

  .mainichi-about__title-span::before {
    bottom: -12px;
    right: 2px;
    width: 24px;
  }

  .mainichi-about__head-text {
    font-size: 16px;
    line-height: 1.7;
    text-align: left;
    margin-top: 20px;
  }

  .mainichi-about__content {
    margin-top: 26px;
    padding: 36px 20px 48px;
  }

  .mainichi-about__content::before {
    top: -25px;
    width: 148px;
  }

  .mainichi-about__items {
    flex-direction: column;
    gap: 18px;
    padding-inline: 17.5px;
  }

  .mainichi-about__number {
    font-size: 32px;
  }

  .mainichi-about__number-span {
    font-size: 15.8px;
  }

  .mainichi-about__content-text {
    font-size: 16px;
    padding: 14px 16.5px;
    border-radius: 7px;
    margin-top: 8px;
  }

  .mainichi-about__content-text::before {
    bottom: -12px;
    left: 19%;
    width: 20px;
  }

  .mainichi-about__content-image {
    margin-top: -20px;
  }

  .mainichi-about__feature {
    font-size: 20px;
    line-height: 1.7;
    margin-top: 20px;
  }

  .mainichi-about__feature-span {
    position: relative;
  }

  .mainichi-about__feature-span::before {
    bottom: -10px;
    left: -4px;
    width: 102%;
  }

  .mainichi-about__text {
    font-size: 16px;
    line-height: 1.7;
    text-align: left;
    margin-top: 18px;
  }

  .mainichi-about__image {
    bottom: -150px;
    right: -47px;
    width: 215px;
  }
}

/* =============================================
まいにちデスク　ランディングページ　：　理由セクション
============================================= */

.mainichi-reason {
  position: relative;
}

.mainichi-reason::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f6f6f6;
  background-image: repeating-linear-gradient(
      0deg,
      var(--mainichi-white),
      var(--mainichi-white) 2px,
      transparent 2px,
      transparent 24px
    ),
    repeating-linear-gradient(
      90deg,
      var(--mainichi-white),
      var(--mainichi-white) 2px,
      transparent 2px,
      transparent 24px
    );
  background-size: 24px 24px;
  background-repeat: repeat;
  background-position: 0 0;
  z-index: -1;
}

.mainichi-reason__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mainichi-reason__items {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.mainichi-reason__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  background-color: var(--mainichi-white);
  padding: 53.5px 56px;
  box-shadow: 10px 10px 0 rgba(180, 180, 180, 0.65);
}

.mainichi-reason__item--padding {
  padding: 36px 56px;
}

.mainichi-reason__item:nth-child(even) {
  flex-direction: row-reverse;
}

.mainichi-reason__text-block {
  width: calc(513 / 1040 * 100%);
}

.mainichi-reason__item-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  min-height: 86px;
}

.mainichi-reason__item-number {
  font-size: 50px;
  font-weight: 800;
  color: var(--mainichi-light-blue);
  line-height: 1;
  position: relative;
}

.mainichi-reason__item-number::before {
  content: "";
  position: absolute;
  top: -32px;
  left: -32px;
  width: 82px;
  aspect-ratio: 82 / 52;
  background-image: url(../images/mainichi/point_text.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.mainichi-reason__item-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.8;
  letter-spacing: 0;
  color: var(--mainichi-light-blue);
  text-align: initial;
  margin-bottom: 0;
}

.mainichi-reason__item-title-span {
  font-size: 14px;
}

.mainichi-reason__item-text {
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  color: var(--mainichi-black);
  margin-top: 20px;
}

.mainichi-reason__item-text + .mainichi-reason__item-text {
  margin-top: 8px;
}

.mainichi-reason__item-text-span {
  display: block;
  background: #edf7ff;
  font-size: 16px;
  font-weight: 500;
  color: var(--mainichi-black);
  line-height: 1.8;
  letter-spacing: -0.01em;
  padding: 20px;
  margin-top: 8px;
}

.mainichi-reason__item-text-title {
  display: block;
  font-weight: 700;
}

.mainichi-reason__item-text-link {
  color: var(--mainichi-light-blue);
  text-decoration: underline;
}

.mainichi-reason__image {
  width: calc(479 / 1040 * 100%);
}

.mainichi-reason__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 767px) {
  .mainichi-reason {
    padding-bottom: 126px; /* 仮 */
  }

  .mainichi-reason__items {
    margin-top: 18px;
    gap: 30px;
  }

  .mainichi-reason__item {
    flex-direction: column;
    gap: 20px;
    padding: 48px 12px 20px 18px;
    box-shadow: 8px 8px 0 rgba(180, 180, 180, 0.65);
  }

  .mainichi-reason__item--padding {
    padding: 48px 12px 20px 18px;
  }

  .mainichi-reason__item:nth-child(even) {
    flex-direction: column;
  }

  .mainichi-reason__text-block {
    width: 100%;
  }

  .mainichi-reason__item-head {
    flex-direction: column;
    gap: 8px;
  }

  .mainichi-reason__item-number {
    font-size: 40px;
  }

  .mainichi-reason__item-number::before {
    top: -25px;
    width: 75px;
  }

  .mainichi-reason__item-title {
    font-size: 22px;
    line-height: 1.7;
  }

  .mainichi-reason__item-title-span {
    font-size: 16px;
  }

  .mainichi-reason__item-text {
    line-height: 1.7;
  }

  .mainichi-reason__item-text-span {
    line-height: 1.7;
  }

  .mainichi-reason__image {
    width: 100%;
    padding-right: 8px;
  }
}

/* =============================================
まいにちデスク　ランディングページ　：　流れセクション
============================================= */

.mainichi-flow {
  background-color: var(--mainichi-blue);
}

.mainichi-flow__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mainichi-flow__items {
  margin-top: 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 85px;
}

.mainichi-flow__item {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--mainichi-white);
  padding: 47.5px 40px;
  border-radius: 20px;
  box-shadow: 12px 12px 0 #ebf9fc;
  position: relative;
}

.mainichi-flow__item::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  aspect-ratio: 30 / 40;
  background-image: url(../images/mainichi/arrow_white.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.mainichi-flow__item:first-child::before {
  display: none;
}

.mainichi-flow__item-title-block {
  width: calc(200 / 1072 * 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.mainichi-flow__item-number {
  font-size: 40px;
  font-weight: 800;
  color: #ff6d6d;
  line-height: 1;
}

.mainichi-flow__item-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--mainichi-dark-blue);
  line-height: 1.8;
  letter-spacing: 0;
  margin-bottom: 0;
}

.mainichi-flow__item-icon {
  width: calc(150 / 1072 * 100%);
  margin-left: 56px;
}

.mainichi-flow__item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mainichi-flow__item-text {
  width: calc(634 / 1072 * 100%);
  margin-left: 24px;
  font-size: 16px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  color: var(--mainichi-black);
}

@media (max-width: 767px) {
  .mainichi-flow__items {
    margin-top: 24px;
    gap: 64px;
  }

  .mainichi-flow__item {
    flex-direction: column;
    gap: 10px;
    padding: 24px 20px;
    box-shadow: 8px 8px 0 #ebf9fc;
  }

  .mainichi-flow__item::before {
    top: -50px;
    width: 25px;
  }

  .mainichi-flow__item:first-child::before {
    display: none;
  }

  .mainichi-flow__item-title-block {
    width: 100%;
    gap: 8px;
  }

  .mainichi-flow__item-title {
    font-size: 24px;
  }

  .mainichi-flow__item-icon {
    width: calc(150 / 295 * 100%);
    margin-left: 0;
  }

  .mainichi-flow__item-text {
    width: 100%;
    margin-left: 0;
    line-height: 1.7;
  }
}

/* =============================================
まいにちデスク　ランディングページ　：　違いセクション
============================================= */

.mainichi-comparison {
  position: relative;
}

.mainichi-comparison::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  background-image: radial-gradient(circle, #ebebeb 2px, transparent 2px);
  background-position: 0 0;
  background-repeat: repeat;
  background-size: 24px 24px;
  z-index: -1;
}

.mainichi-comparison__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: calc(1158px + 30px * 2);
  position: relative;
}

.mainichi-comparison__inner::before {
  content: "";
  position: absolute;
  top: 20px;
  right: -360px;
  width: 277px;
  background-image: url(../images/mainichi/stationery3.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: 277 / 383;
}

.mainichi-comparison__content {
  padding-top: 35px;
  width: 100%;
}

.mainichi-comparison__table.mainichi-comparison__table {
  /* width: 100%; */
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 auto !important;
}

.mainichi-comparison__header-row {
  position: relative;
}

.mainichi-comparison__header-cell {
  font-size: 22.78px;
  font-weight: 800;
  line-height: 1.8;
  color: var(--mainichi-white);
  background: var(--mainichi-dark-blue);
  padding: 15px;
  position: relative;
}

.mainichi-comparison__header-cell:nth-child(1) {
  background: transparent;
}

.mainichi-comparison__header-cell--featured {
  background: var(--mainichi-light-blue);
  padding: 0 0 36px;
  position: relative;
}

.mainichi-comparison__header-cell--featured::after {
  content: "";
  position: absolute;
  top: -35px;
  left: 0;
  width: 100%;
  height: 35px;
  border-radius: 20px 20px 0 0;
  background-color: var(--mainichi-light-blue);
}

.mainichi-comparison__header-cell--top-right {
  border-radius: 0 30px 0 0;
  position: relative;
  z-index: 1;
}

.mainichi-comparison__header-cell--top-right::before {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  width: calc(100% + 1px);
  height: 100%;
  border-radius: 0 30px 0 0;
  background-color: var(--mainichi-dark-blue);
  z-index: -1;
}

.mainichi-comparison__cell {
  background: var(--mainichi-white);
  color: var(--mainichi-black);
  font-size: 15.19px;
  font-weight: 700;
  line-height: 1.5;
  padding: 20px 10px;
  position: relative;
  text-align: center;
  border-bottom: 1px solid var(--mainichi-dark-blue);
  border-right: 1px solid var(--mainichi-dark-blue);
}

.mainichi-comparison__cell--category {
  background: #ff6d6d;
  color: var(--mainichi-white);
  font-size: 22.78px;
  font-weight: 800;
  line-height: 1.8;
  border-bottom: 1px solid var(--mainichi-white);
  border-right: 1px solid transparent;
  padding: 19.8px 30px;
}

.mainichi-comparison__cell--featured {
  font-size: 17.72px;
  background: #edf7ff;
  border-bottom: 1px solid var(--mainichi-light-blue);
  border-right: 1px solid var(--mainichi-light-blue);
}

.mainichi-comparison__cell--top-left {
  border-radius: 30px 0 0 0;
}

.mainichi-comparison__cell--bottom-left {
  border-radius: 0 0 0 30px;
}

.mainichi-comparison__cell--bottom-right {
  border-radius: 0 0 30px 0;
  position: relative;
  border-bottom: 1px solid transparent;
  border-right: 1px solid transparent;
  z-index: 1;
}

.mainichi-comparison__cell--bottom-right::before {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  width: calc(100% + 1px);
  height: calc(100% + 1px);
  border-radius: 0 0 30px 0;
  background-color: var(--mainichi-dark-blue);
  z-index: -1;
}

.mainichi-comparison__cell--bottom-right::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 0 0 29px 0;
  background-color: var(--mainichi-white);
  z-index: 0;
}

.mainichi-comparison__rating {
  display: block;
  margin-inline: auto;
  width: 20.25px;
  aspect-ratio: 1 / 1;
  position: relative;
  z-index: 10;
}

.mainichi-comparison__rating img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mainichi-comparison__rating--featured {
  width: 35.44px;
}

.mainichi-comparison__description {
  margin-top: 8px;
  position: relative;
  z-index: 10;
}

@media (max-width: 767px) {
  .mainichi-comparison {
    padding-bottom: 45px;
  }

  .mainichi-comparison__inner::before {
    display: none;
  }

  .mainichi-comparison__inner::after {
    content: "";
    position: absolute;
    bottom: -70px;
    left: -58px;
    width: 247px;
    aspect-ratio: 337 / 326;
    background-image: url(../images/mainichi/stationery4.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
  }

  .mainichi-comparison__content {
    padding-top: 14px;
    padding-right: 18px;
    width: 105%;
    margin-right: calc(50% - 50vw) !important;
    z-index: 10;
  }

  .mainichi-comparison__header-cell {
    font-size: 18px;
    padding: 14px;
  }

  .mainichi-comparison__header-cell--featured {
    padding: 0 0 14px;
  }

  .mainichi-comparison__header-cell--featured::after {
    top: -14px;
    height: 14px;
  }

  .mainichi-comparison__cell {
    font-size: 16px;
    line-height: 1.8;
    padding: 14px 7px;
  }

  .mainichi-comparison__cell--category {
    font-size: 18px;
    padding: 16px 12px;
  }

  .mainichi-comparison__rating {
    width: 20px;
  }

  .mainichi-comparison__rating--featured {
    width: 26px;
  }
}

/* =============================================
まいにちデスク　ランディングページ　：　目安セクション
============================================= */

.mainichi-estimate {
  position: relative;
  overflow-x: clip;
}

.mainichi-estimate::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f6f6f6;
  background-image: repeating-linear-gradient(
      0deg,
      var(--mainichi-white),
      var(--mainichi-white) 2px,
      transparent 2px,
      transparent 24px
    ),
    repeating-linear-gradient(
      90deg,
      var(--mainichi-white),
      var(--mainichi-white) 2px,
      transparent 2px,
      transparent 24px
    );
  background-size: 24px 24px;
  background-repeat: repeat;
  background-position: 0 0;
  z-index: -1;
}

.mainichi-estimate__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: calc(1024px + 30px * 2);
}

.mainichi-estimate__estimate-time {
  margin-top: 40px;
  background-color: var(--mainichi-white);
  padding: 40px 50px;
  box-shadow: 10px 10px 0 rgba(180, 180, 180, 0.65);
  position: relative;
  z-index: 1;
}

.mainichi-estimate__estimate-time::before {
  content: "";
  position: absolute;
  top: -330px;
  left: -435px;
  width: 337px;
  aspect-ratio: 337 / 326;
  background-image: url(../images/mainichi/stationery4.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.mainichi-estimate__estimate-time::after {
  content: "";
  position: absolute;
  bottom: -85px;
  right: -410px;
  width: 316px;
  aspect-ratio: 316 / 232;
  background-image: url(../images/mainichi/stationery5.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.mainichi-estimate__lead {
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--mainichi-black);
  line-height: 1.8;
  text-align: center;
}

.mainichi-estimate__items {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

.mainichi-estimate__item {
  padding-inline: 20px;
  position: relative;
}

.mainichi-estimate__item::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -16px;
  width: 1px;
  height: 100%;
  background-color: #c0c0c0;
}

.mainichi-estimate__item:first-child::before {
  display: none;
}

.mainichi-estimate__item-tag {
  font-size: 20px;
  font-weight: 800;
  color: var(--mainichi-white);
  line-height: 1.8;
  letter-spacing: 0;
  padding: 0 16.67px;
  border-radius: 8px;
  display: grid;
  place-content: center;
}

.mainichi-estimate__item-tag--row {
  background-color: #008aac;
}

.mainichi-estimate__item-tag--middle {
  background-color: #096b84;
}

.mainichi-estimate__item-tag--high {
  background-color: var(--mainichi-dark-blue);
}

.mainichi-estimate__item-time {
  font-size: 50px;
  font-weight: 800;
  color: var(--mainichi-black);
  line-height: 1.6;
  text-align: center;
  margin-top: 10px;
}

.mainichi-estimate__item-time-span {
  font-size: 20px;
}

.mainichi-estimate__note {
  font-size: 14px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--mainichi-black);
  line-height: 1.8;
  margin-top: 16px;
  margin-right: auto;
}

.mainichi-estimate__flex {
  margin-top: 66px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 22px;
  max-width: 575px;
}

.mainichi-estimate__image {
  width: calc(199 / 575 * 100%);
}

.mainichi-estimate__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mainichi-estimate__bubble {
  width: calc(354 / 575 * 100%);
}

.mainichi-estimate__bubble-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--mainichi-black);
  line-height: 1.8;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-top: 40px;
}

.mainichi-estimate__bubble-text::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -35px;
  width: 389px;
  aspect-ratio: 389 / 234;
  background-image: url(../images/mainichi/bubble.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.mainichi-estimate__bubble-text-span {
  color: #ff6d6d;
  font-size: 18px;
}

.mainichi-estimate__content {
  background-color: var(--mainichi-white);
  padding: 55px 52px;
  border: 4px solid #ff6d6d;
  border-radius: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.mainichi-estimate__content::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -330px;
  width: 262px;
  aspect-ratio: 262 / 296;
  background-image: url(../images/mainichi/stationery6.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.mainichi-estimate__content::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -310px;
  width: 203px;
  aspect-ratio: 203 / 97;
  background-image: url(../images/mainichi/stationery7.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.mainichi-estimate__text {
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--mainichi-black);
  line-height: 1.8;
  text-align: center;
}

.mainichi-estimate__text-span {
  color: #ff6d6d;
}

.mainichi-estimate__lesson-title {
  font-size: 16px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--mainichi-black);
  line-height: 1.8;
  margin-top: 40px;
}

.mainichi-estimate__lesson-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  width: calc(920 / 1024 * 100%);

  margin-top: 24px;
}

.mainichi-estimate__lesson-item {
  display: grid;
  position: relative;
}

.mainichi-estimate__lesson-item::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -32px;
  width: 1px;
  height: 100%;
  background-color: #c0c0c0;
}

.mainichi-estimate__lesson-item:first-child::before {
  display: none;
}

.mainichi-estimate__lesson-tag {
  font-size: 20px;
  font-weight: 800;
  color: var(--mainichi-white);
  line-height: 1.8;
  background-color: #ff6d6d;
  padding: 0 20px;
  border-radius: 8px;
  display: grid;
  place-content: center;
}

.mainichi-estimate__comment {
  font-size: 16px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--mainichi-white);
  line-height: 1.6;
  background-color: #3a8efe;
  padding: 8px 10px;
  border-radius: 10px;
  text-align: center;
  position: absolute;
  bottom: -76px;
  left: 55%;
  transform: translateX(-50%);
  width: max-content;
}

.mainichi-estimate__comment::before {
  content: "";
  position: absolute;
  background-image: url(../images/mainichi/center_triangle.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  width: 23px;
  aspect-ratio: 18 / 16;
  top: -10px;
  left: 51%;
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .mainichi-estimate__inner {
    position: relative;
    max-width: 500px;
  }

  .mainichi-estimate__inner::before {
    content: "";
    position: absolute;
    top: initial;
    bottom: -45px;
    left: initial;
    right: -32px;
    width: 147px;
    aspect-ratio: 147 / 166;
    background-image: url(../images/mainichi/stationery8.svg);
  }

  .mainichi-estimate__estimate-time {
    margin-top: 20px;
    background-color: var(--mainichi-white);
    padding: 30px 20px 40px;
  }

  .mainichi-estimate__estimate-time::before {
    display: none;
  }

  .mainichi-estimate__estimate-time::after {
    display: none;
  }

  .mainichi-estimate__lead {
    line-height: 1.7;
    text-align: left;
  }

  .mainichi-estimate__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 18px;
  }

  .mainichi-estimate__item {
    padding-inline: 0;
  }

  .mainichi-estimate__item::before {
    left: -8px;
  }

  .mainichi-estimate__item-tag {
    font-size: 16px;
    padding: 0 16px;
    border-radius: 5px;
  }

  .mainichi-estimate__item-time {
    font-size: 40px;
    line-height: 1;
  }

  .mainichi-estimate__item-time--large {
    font-size: 50px;
  }

  .mainichi-estimate__note {
    font-size: 16px;
    line-height: 1.7;
    display: flex;
    gap: 5px;
  }

  .mainichi-estimate__flex {
    margin-top: 66px;
    flex-direction: column-reverse;
    gap: 12px;
  }

  .mainichi-estimate__image {
    width: calc(143 / 335 * 100%);
    position: relative;
    z-index: 10;
    transform: translateX(40%);
  }

  .mainichi-estimate__bubble {
    width: 100%;
  }

  .mainichi-estimate__bubble-text {
    margin-top: 0;
  }

  .mainichi-estimate__bubble-text::before {
    top: 72%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 313px;
    aspect-ratio: 313 / 229;
    background-image: url(../images/mainichi/bubble_sp.webp);
  }

  .mainichi-estimate__content {
    padding: 26px 14px;
  }

  .mainichi-estimate__content::before {
    display: none;
  }

  .mainichi-estimate__content::after {
    display: none;
  }

  .mainichi-estimate__text {
    font-size: 16px;
    line-height: 1.7;
    text-align: left;
  }

  .mainichi-estimate__lesson-title {
    font-size: 18px;
    line-height: 1;
    margin-top: 32px;
  }

  .mainichi-estimate__lesson-items {
    grid-template-columns: repeat(1, 1fr);
    gap: 28px;
    width: 100%;
    margin-top: 18px;
  }

  .mainichi-estimate__lesson-item {
    padding-inline: 7.5px;
  }

  .mainichi-estimate__lesson-item::before {
    display: none;
  }

  .mainichi-estimate__lesson-tag {
    font-size: 18px;
  }

  .mainichi-estimate__comment {
    line-height: 1.5;
    padding: 8px 16px;
    border-radius: 3.5px;
    position: relative;
    left: 50%;
    bottom: 0;
    width: fit-content;
    margin-top: 20px;
  }

  .mainichi-estimate__comment::before {
    background-image: url(../images/mainichi/center_triangle_sp.svg);
    width: 20px;
    top: -10px;
    left: 51%;
  }
}

/* =============================================
まいにちデスク　ランディングページ　：　料金セクション
============================================= */

.mainichi-price {
  background-color: var(--mainichi-blue);
}

.mainichi-price__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: calc(1024px + 30px * 2);
}

.mainichi-price__content {
  margin-top: 55px;
  width: 100%;
}

.mainichi-price__item {
  background-color: var(--mainichi-white);
  padding: 48px 20px 40px;
  border-radius: 20px;
  box-shadow: 12px 12px 0 #ebf9fc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.mainichi-price__item-head {
  font-size: 20px;
  font-weight: 800;
  color: var(--mainichi-black);
  line-height: 1.8;
  text-align: center;
}

.mainichi-price__item-head-span {
  color: #ff6d6d;
}

.mainichi-price__price-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.mainichi-price__tag {
  font-size: 20px;
  font-weight: 800;
  color: var(--mainichi-white);
  line-height: 1.8;
  background-color: var(--mainichi-light-blue);
  padding: 0 20px;
  border-radius: 8px;
  margin-top: 24px;
}

.mainichi-price__price {
  font-size: 90px;
  font-weight: 800;
  color: var(--mainichi-black);
  line-height: 1;
  margin-top: 0;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.mainichi-price__price-en {
  font-size: 28px;
  font-weight: 800;
  color: var(--mainichi-black);
  line-height: 1;
  margin-top: 0;
}

@media (max-width: 767px) {
  .mainichi-price__inner {
    max-width: 500px;
  }

  .mainichi-price {
    padding-top: 58px;
  }

  .mainichi-price__content {
    margin-top: 30px;
    padding-inline: 6px;
  }

  .mainichi-price__item {
    padding: 34px 20px 28px;
    box-shadow: 8px 8px 0 #ebf9fc;
    gap: 23px;
  }

  .mainichi-price__item-head {
    font-size: 16px;
  }

  .mainichi-price__price-wrap {
    flex-direction: column;
    gap: 2px;
  }

  .mainichi-price__tag {
    font-size: 18px;
    margin-top: 0;
  }

  .mainichi-price__price {
    font-size: 70px;
    gap: 8px;
  }

  .mainichi-price__price-en {
    font-size: 24px;
  }
}

/* =============================================
まいにちデスク　ランディングページ　：　申し込みセクション
=============================================	 */

.mainichi-application {
  position: relative;
}

.mainichi-application::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f6f6f6;
  background-image: repeating-linear-gradient(
      0deg,
      var(--mainichi-white),
      var(--mainichi-white) 2px,
      transparent 2px,
      transparent 24px
    ),
    repeating-linear-gradient(
      90deg,
      var(--mainichi-white),
      var(--mainichi-white) 2px,
      transparent 2px,
      transparent 24px
    );
  background-size: 24px 24px;
  background-repeat: repeat;
  background-position: 0 0;
  z-index: -1;
}

.mainichi-application__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mainichi-application__lead {
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--mainichi-black);
  line-height: 1.8;
  text-align: center;
  margin-top: 40px;
}

.mainichi-application__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 26px;
  width: 100%;
  max-width: 1024px;
}

.mainichi-application__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
  justify-items: center;
  filter: drop-shadow(8px 8px 0 #d1d1d1);
}

.mainichi-application__step {
  font-size: 20px;
  font-weight: 800;
  color: var(--mainichi-white);
  line-height: 1.8;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  background-color: #ff6d6d;
  padding: 0 20px;
  border-radius: 10px;
  width: fit-content;
  text-transform: uppercase;
  transform: translateX(8px);
  position: relative;
}

.mainichi-application__step-number {
  font-size: 28px;
}

.mainichi-application__body {
  background-color: var(--mainichi-white);
  border-radius: 20px;
  margin-top: -20px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  width: 100%;
}

.mainichi-application__head {
  font-size: 20px;
  font-weight: 800;
  color: var(--mainichi-white);
  line-height: 1.8;
  background-color: var(--mainichi-light-blue);
  padding: 24px 20px 12px;
  border-radius: 20px 20px 0 0;
  margin-bottom: 0;
  display: grid;
  place-content: center;
}

.mainichi-application__text {
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--mainichi-black);
  line-height: 1.8;
  padding: 20px;
}

.mainichi-application__button-wrap {
  margin-top: 56px;
}

.mainichi-application__button-note {
  text-align: center;
  margin-top: 10px;
}

.mainichi-application__note {
  padding: 40px;
  background-color: #f8f8f8;
  border: 1px solid #dedede;
  border-radius: 20px;
  margin-top: 80px;
}

.mainichi-application__note-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--mainichi-black);
  line-height: 1.8;
  text-align: center;
}

.mainichi-application__note-items {
  margin-top: 20px;
}

.mainichi-application__note-item {
  font-size: 16px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--mainichi-black);
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.mainichi-application__note-item::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 12px;
  width: 5px;
  height: 5px;
  background-color: var(--mainichi-black);
  border-radius: 50%;
}

.mainichi-application__note-item + .mainichi-application__note-item {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .mainichi-application__lead {
    font-size: 16px;
    text-align: left;
    margin-top: 20px;
  }

  .mainichi-application__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
    margin-top: 18px;
  }

  .mainichi-application__step {
    padding: 0 20px;
    transform: translateX(0);
  }

  .mainichi-application__body {
    display: block;
  }

  .mainichi-application__head {
    font-size: 18px;
    line-height: 1.6;
    padding: 24px 20px 12px;
    height: 94px;
    display: grid;
    place-content: center;
  }

  .mainichi-application__text {
    padding: 10px 20px;
  }

  .mainichi-application__button-wrap {
    margin-top: 40px;
  }

  .mainichi-application__button-note {
    font-size: 0.8em;
  }

  .mainichi-application__note {
    padding: 30px 20px;
    border-radius: 10px;
    margin-top: 20px;
  }

  .mainichi-application__note-title {
    font-size: 22px;
  }

  .mainichi-application__note-item {
    font-weight: 500;
    padding-left: 20px;
  }

  .mainichi-application__note-item::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 12px;
    width: 5px;
    height: 5px;
    background-color: var(--mainichi-black);
    border-radius: 50%;
  }

  .mainichi-application__note-item + .mainichi-application__note-item {
    margin-top: 20px;
  }
}

/* =============================================
まいにちデスク　ランディングページ　：　よくある質問セクション
=============================================	 */

.mainichi-faq {
  background-color: var(--mainichi-blue);
  border-bottom: 2px solid #ebf9fc;
}

.mainichi-faq__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: calc(880px + 30px * 2);
}

.mainichi-faq__content {
  margin-top: 55px;
}

.mainichi-faq__item + .mainichi-faq__item {
  margin-top: 16px;
}

.mainichi-faq__question {
  background-color: #def8ff;
  padding: 20px 30px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mainichi-faq__question::-webkit-details-marker {
  display: none;
}

@media (hover: hover) {
  .mainichi-faq__question:hover {
    cursor: pointer;
  }
}

.mainichi-faq__question.is-opened {
  border-radius: 10px 10px 0 0;
}

.mainichi-faq__question-left {
  display: flex;
  align-items: center;
  gap: 20px;
  width: calc(747.5 / 813.5 * 100%);
}

.mainichi-faq__question-span {
  display: inline-block;
  width: 28px;
  min-width: 28px;
  aspect-ratio: 28 / 29;
}

.mainichi-faq__question-span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mainichi-faq__question-text {
  font-size: 16px;
  font-weight: 800;
  color: var(--mainichi-black);
}

.mainichi-faq__answer-text {
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--mainichi-black);
  line-height: 1.8;
  padding: 20px 30px;
  background-color: var(--mainichi-white);
  border-radius: 0 0 10px 10px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.mainichi-faq__answer-span {
  display: inline-block;
  width: 28px;
  min-width: 28px;
  aspect-ratio: 28 / 29;
}

.mainichi-faq__answer-span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mainichi-faq__question-btn {
  background-image: url(../images/mainichi/arrow_top.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 20px;
  aspect-ratio: 13 / 19.5;
  transition: rotate 0.2s ease;
  rotate: 180deg;
}

.mainichi-faq__question-btn.is-opened {
  rotate: 0deg;
}

@media (max-width: 767px) {
  .mainichi-faq {
    padding-top: 58px;
  }

  .mainichi-faq__inner {
    max-width: 500px;
  }

  .mainichi-faq__content {
    margin-top: 25px;
  }

  .mainichi-faq__question {
    background-color: #def8ff;
    align-items: flex-start;
    padding: 10px 18px;
  }

  .mainichi-faq__question-left {
    gap: 5px;
    width: calc(253 / 280 * 100%);
    align-items: flex-start;
  }

  .mainichi-faq__question-span {
    width: 18px;
    min-width: 18px;
    transform: translateY(4px);
  }

  .mainichi-faq__question-text {
    font-weight: 700;
    line-height: 1.7;
  }

  .mainichi-faq__answer-text {
    line-height: 1.7;
    padding: 15px 18px;
    gap: 5px;
  }

  .mainichi-faq__answer-span {
    width: 18px;
    min-width: 18px;
  }

  .mainichi-faq__question-btn {
    width: 15px;
  }
}
