@charset "utf-8";

/* 共通設定 */
*,
*::before,
*::after {
  box-sizing: border-box;
  word-break: break-word;
}

html {
  overflow-x: hidden;
}

body {
  position: relative;
  overflow-x: hidden;
  color: #000;
  font-size: 100%;
  -webkit-appearance: none;
  -webkit-text-size-adjust: none;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif,
    "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック体,
    "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo,
    verdana, sans-serif;
}

.header-space {
  margin-top: 60px;
}

/* body の xl ブレークポイント */
@media (max-width: 1440px) {
  body {
    background-position: top 715em center;
    background-size: 1440em;
  }
}

/* a要素 */
a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.8;
}
@media (max-width: 567px) {
  a:hover {
    opacity: 1;
  }
}

/* img要素 */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* layout */
.layout {
  background-color: #f8f4ff;
  background-repeat: no-repeat;
}

/* コンテナ */
.container {
  overflow: hidden;
  margin: 0 auto;
  max-width: 100%;
  width: 1920px;
}
@media (max-width: 1440px) {
  .container {
    width: 1440px;
  }
}

/* 内部ラッパー */
.inner {
  overflow: hidden;
  padding: 0 20px;
}

/* PC/SP表示切替 */
.pc {
  display: block;
}
@media (max-width: 567px) {
  .pc {
    display: none;
  }
}
.sp {
  display: none;
}
@media (max-width: 567px) {
  .sp {
    display: block;
  }
}

/* CTAボタン */
/* .cta-btn {
  background: linear-gradient(to right, #ff3b3b 0%, #ff9500 100%);
  color: #fff;
  border-radius: 50px;
  padding: 1em 4em;
  text-decoration: none;
  font-size: 1.6vw;
  font-weight: bold;
  box-shadow: 0.6vw 0.6vw 0 #ed6603;
  transition: all 0.3s ease;
}
@media (max-width: 567px) {
  .cta-btn {
    width: 90%;
    font-size: 4vw;
    padding: 1em 2em;
  }
}
.cta-btn:hover {
  box-shadow: none;
  background: linear-gradient(to right, #ff9500 0%, #ff3b3b 100%);
  transform: translate(0.6vw, 0.6vw);
} */

/* .sec セクション */
/* fz_vw(1): fallback → font-size: 1px; 次行でvw換算 */
.sec {
  font-size: 1px;
  font-size: calc(100 / 1920 * 1vw);
}
@media (max-width: 1440px) {
  .sec {
    font-size: 1px;
    font-size: calc(100 / 1440 * 1vw);
  }
}
@media (max-width: 567px) {
  .sec {
    font-size: 1px;
    font-size: calc(100 / 414 * 1vw);
  }
}
@media screen and (min-width: 1921px) {
  .sec {
    font-size: 1px;
  }
}
.sec .inner {
  padding: 0 360em;
}
@media (max-width: 1440px) {
  .sec .inner {
    padding: 0 216em;
  }
}
@media (max-width: 567px) {
  .sec .inner {
    padding: 0 17em;
  }
}
.sec i {
  color: #00a1a1;
}

/* .price セクション */
/* .price {
  margin-bottom: 100em;
}
@media (max-width: 1440px) {
  .price {
    margin-bottom: 75em;
  }
}
@media (max-width: 567px) {
  .price {
    margin-bottom: 35em;
  }
}
.price .warning {
  margin-top: 1.66em;
  font-weight: 500;
  font-size: 18em;
}
@media (max-width: 1440px) {
  .price .warning {
    font-size: 15em;
  }
}
@media (max-width: 567px) {
  .price .warning {
    font-size: 12em;
  }
}
.price__title {
  margin-bottom: 25em;
}
@media (max-width: 1440px) {
  .price__title {
    margin-bottom: 20em;
  }
}
.price__title h3 {
  text-align: center;
  font-weight: 700;
  font-size: 40em;
}
@media (max-width: 1440px) {
  .price__title h3 {
    font-size: 30em;
  }
}
@media (max-width: 567px) {
  .price__title h3 {
    font-size: 24em;
  }
}
.price .items {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 567px) {
  .price .items {
    overflow-x: scroll;
    padding-right: 28em;
    width: 100vw;
  }
}
.price__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.price__item__top {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6em;
  min-height: 64em;
  width: 100%;
  color: #fff;
}
@media (max-width: 1440px) {
  .price__item__top {
    height: 64em;
  }
}
@media (max-width: 567px) {
  .price__item__top {
    margin-bottom: 10em;
    width: 215em;
    height: 106em;
  }
}
.price__item__top p {
  font-weight: 700;
  font-size: 24em;
}
@media (max-width: 567px) {
  .price__item__top p {
    font-size: 26em;
  }
}
.price__item__top p span {
  display: inline-block;
  margin-left: 1em;
  font-size: 0.53em;
}
@media (max-width: 567px) {
  .price__item__top p span {
    margin-left: 0.5em;
    font-size: 0.69em;
  }
}
.price__item__txt {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6em;
  min-height: 54em;
  width: 100%;
  background-color: #fff;
}
@media (max-width: 567px) {
  .price__item__txt {
    margin-bottom: 10em;
    min-height: 96em;
  }
}
.price__item__txt:last-of-type {
  margin-bottom: 0;
}
.price__item__txt p {
  font-weight: 700;
  font-size: 22em;
}
@media (max-width: 567px) {
  .price__item__txt p {
    text-align: center;
    font-size: 26em;
  }
}
.price__item__txt p span {
  margin-left: 0.5em;
  font-size: 0.65em;
}
@media (max-width: 567px) {
  .price__item__txt p span {
    margin-left: 0;
  }
}
.price__item .column {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 30em 0;
  min-height: 152.34em;
}
.price__item .column dl {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.7em;
  width: 12em;
  font-weight: 700;
  font-size: 21em;
}
.price__item .column dl:last-of-type {
  margin-bottom: 0;
}
.price__item .column dl dt {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  margin-right: 0.95em;
  width: 7.5em;
}
.price__item .column dl dd {
  width: calc(100% - 7.5em - 0.95em);
}
.price__item__plan {
  margin: 6em;
  width: 490em;
}
@media (max-width: 1440px) {
  .price__item__plan {
    width: 413em;
  }
}
@media (max-width: 567px) {
  .price__item__plan {
    width: 490em;
  }
}
.price__item__plan .price__item__top {
  background-color: #000;
}
.price__item__title {
  position: sticky;
  left: 0;
  z-index: 1;
  width: calc(100% - 490em - 490em);
  background-color: #f9f9f9;
}
@media (max-width: 1440px) {
  .price__item__title {
    width: calc(100% - 413em - 413em);
  }
}
@media (max-width: 567px) {
  .price__item__title {
    width: calc(100% - 158em - 158em);
  }
}
.price__item__title .price__item__top {
  background-color: transparent;
}
.price__item__title .price__item__txt {
  background-color: transparent;
}
.price__item__title .price__item__txt > span {
  position: absolute;
  top: 0.6em;
  right: 0.4em;
  display: block;
  font-weight: 500;
  font-size: 18em;
}
@media (max-width: 1440px) {
  .price__item__title .price__item__txt > span {
    top: 0.6em;
    right: -0.1em;
    font-size: 15em;
  }
}
@media (max-width: 567px) {
  .price__item__title .price__item__txt > span {
    top: 0.8em;
    right: 1.2em;
    font-size: 12em;
  }
}
.price__item__title .price__item__txt p {
  font-weight: 700;
  font-size: 18em;
}
@media (max-width: 567px) {
  .price__item__title .price__item__txt p {
    font-size: 16em;
    line-height: 1.375;
  }
}*/

/* .price-sp セクション */
/*.price-sp {
  margin-bottom: 50em;
}
.price-sp > p {
  font-weight: 500;
  font-size: 12em;
}
.price-sp__title {
  margin-bottom: 20em;
}
.price-sp__title h3 {
  font-weight: 700;
  font-size: 20em;
}
.price-sp .plan {
  margin-bottom: 40em;
}
.price-sp .plan:last-of-type {
  margin-bottom: 0;
}
.price-sp .plan__head {
  margin-bottom: 10em;
  height: 110em;
  background-color: #000;
  color: #fff;
}
.price-sp .plan__head dl {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.price-sp .plan__head dl dt {
  text-align: center;
  font-weight: 700;
  font-size: 26em;
  line-height: 1.27;
}
.price-sp .plan__head dl dt span {
  display: block;
  font-size: 0.54em;
}
.price-sp .plan__head dl dd {
  margin-left: 0.6em;
  font-weight: 700;
  font-size: 18em;
}
.price-sp .plan__list > dl {
  display: flex;
  margin-bottom: 10em;
}
.price-sp .plan__list > dl > dt {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96em;
  width: calc(100% - 180em);
}
.price-sp .plan__list > dl > dt > span {
  display: inline-block;
  font-weight: 700;
  font-size: 16em;
}
.price-sp .plan__list > dl > dt > dl {
  display: flex;
  align-items: center;
}
.price-sp .plan__list > dl > dt > dl > dt {
  margin-right: 10em;
}
.price-sp .plan__list > dl > dt > dl > dt > span {
  display: inline-block;
  font-weight: 700;
  font-size: 14em;
  line-height: 1.5;
}
.price-sp .plan__list > dl > dt > dl > dd {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.price-sp .plan__list > dl > dt > dl > dd p {
  margin-bottom: 1em;
  font-weight: 700;
  font-size: 13em;
}
.price-sp .plan__list > dl > dt > dl > dd p:last-of-type {
  margin-bottom: 0;
}
.price-sp .plan__list > dl > dd {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96em;
  width: 180em;
  background-color: #fff;
}
.price-sp .plan__list > dl > dd > p {
  text-align: center;
  font-weight: 700;
  font-size: 26em;
}
.price-sp .plan__list > dl > dd > p .asterisk {
  position: absolute;
  top: 0.6em;
  right: 1.5em;
}
.price-sp .plan__list > dl > dd > p > span {
  margin-left: 0.5em;
  font-size: 0.615em;
}
.price-sp .plan__list > dl > dd > p > .ml0 {
  margin-left: 0;
}
.price-sp .plan__list > dl > dd > ul > li {
  margin-bottom: 0.4em;
  font-weight: 700;
  font-size: 26em;
}
.price-sp .plan__list > dl > dd > ul > li:last-of-type {
  margin-bottom: 0;
}
.price-sp .plan__list > dl > dd > ul > li > span {
  display: inline-block;
  margin-left: 0.5em;
  font-size: 0.5em;
} */

/* .white-area */
.white-area {
  padding: 80em 110em 125em;
  background-color: #fff;
}
@media (max-width: 1440px) {
  .white-area {
    padding: 70em;
  }
}
@media (max-width: 567px) {
  .white-area {
    padding: 50em 10em;
  }
}

/* .question */
/*.question {
  margin-bottom: 160em;
}
@media (max-width: 1440px) {
  .question {
    margin-bottom: 105em;
  }
}
@media (max-width: 567px) {
  .question {
    margin-bottom: 50em;
  }
}
.question .accordion {
  margin-bottom: 20em;
}
.question .accordion .accordion-hidden {
  display: none;
}
.question .accordion .accordion-open {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.8em 2em 0.8em 0.8em;
  border-radius: 29px;
  background-color: #f5f5f5;
  font-weight: bold;
  font-size: 20em;
  line-height: 1.35;
}
@media (max-width: 567px) {
  .question .accordion .accordion-open {
    padding: 1em 2.66em 1em 2.66em;
    border-radius: 12px;
    font-size: 18em;
    line-height: 1.5;
  }
}
.question .accordion .accordion-open:hover {
  cursor: pointer;
}
.question .accordion .accordion-open span:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5em;
  width: 1.55em;
  height: 1.55em;
  border-radius: 50%;
  background: linear-gradient(to right, #ff3b3b 0%, #ff9500 100%);
}
@media (max-width: 567px) {
  .question .accordion .accordion-open span:first-child {
    position: absolute;
    top: 50%;
    left: 0.55em;
    margin-right: 0;
    width: 1.27em;
    height: 1.27em;
    transform: translateY(-50%);
  }
}
.question .accordion .accordion-open span:first-child i {
  z-index: 1;
  color: #fff;
  font-weight: 700;
  font-size: 0.8em;
}
@media (max-width: 567px) {
  .question .accordion .accordion-open span:first-child i {
    font-size: 0.66em;
  }
}
.question .accordion .accordion-open .plus {
  position: absolute;
  top: 50%;
  right: 0.68em;
  width: 1.55em;
  height: 1.55em;
  border-radius: 50%;
  background-color: #fff;
  transform: translateY(-50%);
}
.question .accordion .accordion-open .plus::before,
.question .accordion .accordion-open .plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 2px;
  background-color: #000;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
}
.question .accordion .accordion-open .plus::after {
  transform: translate(-50%, -50%) rotate(-450deg);
  transform-origin: center center;
}
.accordion-hidden:checked + .accordion-open .plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
  transform-origin: center center;
}
.question .accordion .accordion-close {
  overflow: hidden;
  padding: 0;
  height: 0;
  opacity: 0;
  transition: all 0.3s ease;
}
.accordion-hidden:checked + .accordion-open + .accordion-close {
  padding: 0.8em 0.8em 0.8em 3em;
  height: auto;
  font-weight: 500;
  font-size: 20em;
  line-height: 1.5;
  opacity: 1;
}
@media (max-width: 567px) {
  .accordion-hidden:checked + .accordion-open + .accordion-close {
    padding: 1em;
    font-size: 18em;
  }
}*/

/* .archive */
.archive {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 567px) {
  .archive {
    flex-direction: column;
  }
}
.archive__item {
  position: relative;
  display: block;
  overflow: hidden;
  margin-right: 30em;
  margin-bottom: 90em;
  width: calc(100% / 3 - 30em * 2 / 3);
  aspect-ratio: 16 / 9;
}
@media (max-width: 1440px) {
  .archive__item {
    margin-right: 25em;
    margin-bottom: 75em;
    width: calc(100% / 3 - 25em * 2 / 3);
  }
}
@media (max-width: 567px) {
  .archive__item {
    margin-right: 0;
    margin-bottom: 50em;
    width: 100%;
  }
}
.archive__item:nth-of-type(3n) {
  margin-right: 0;
}
.archive__item img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.archive__item__txt {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 1em;
  color: #fff;
  font-weight: 500;
  font-size: 21em;
  line-height: 1.28;
}
@media (max-width: 1440px) {
  .archive__item__txt {
    font-size: 18em;
  }
}
@media (max-width: 567px) {
  .archive__item__txt {
    font-size: 21em;
  }
}

/* .steps */
.steps {
  display: flex;
  justify-content: space-between;
  margin: 40em 0;
}
@media (max-width: 567px) {
  .steps {
    margin-bottom: 35em;
  }
}
.step {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10em;
}
.step__title {
  margin-bottom: 18em;
  width: 100%;
}
@media (max-width: 567px) {
  .step__title {
    margin-bottom: 10em;
  }
}
.step__title p {
  font-weight: 700;
  font-size: 24em;
  line-height: 1.125;
}
@media (max-width: 567px) {
  .step__title p {
    font-size: 14em;
  }
}
.step__icon {
  margin-bottom: 20em;
  width: 88em;
  height: 88em;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 567px) {
  .step__icon {
    margin-bottom: 10em;
    width: 44em;
    height: 44em;
  }
}
.step__icon img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
@media (max-width: 567px) {
  .step__icon img {
    width: auto;
    max-width: 100%;
  }
}
.step__txt {
  width: 100%;
}
.step__txt p {
  white-space: nowrap;
  font-weight: 700;
  font-size: 18em;
  line-height: 2;
}

@media (max-width: 567px) {
  .steps .step__txt p {
    font-size: 14em;
    line-height: 1.5;
  }
}

.step__sub {
  font-weight: 500;
  font-size: 18em;
  line-height: 1.5;
}

/* .explanation */
.explanation {
  margin-bottom: 80em;
}
@media (max-width: 567px) {
  .explanation {
    margin-bottom: 20em;
    margin-left: 0;
  }
}
.explanation__title {
  margin-bottom: 14em;
}
.explanation__title p {
  font-weight: 700;
  font-size: 30em;
}
@media (max-width: 567px) {
  .explanation__title p {
    font-size: 24em;
  }
}
.explanation__txt {
  margin-bottom: 14em;
}
.explanation__txt p {
  font-weight: 700;
  font-size: 24em;
  line-height: 1.5;
}
.explanation__sub p {
  font-weight: 500;
  font-size: 18em;
  line-height: 1.5;
}
.explanation__sub__strong {
  color: red;
  font-weight: 600;
}

/* .annotation */
.annotation {
  font-size: 12em;
}

/* ロゴ */
.mazideza-logo {
  height: 72px;
  width: auto;
  max-width: 100%;
  max-height: 72px;
}
@media (max-width: 567px) {
  .mazideza-logo {
    height: 56px;
    max-height: 56px;
  }
}
