@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Oswald:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Zen+Kaku+Gothic+New&display=swap");
@keyframes top-open {
  0% {
    transform: translateY(0) rotate(0deg);
    transform-origin: center;
  }
  50% {
    transform: translateY(8px) rotate(0deg);
  }
  to {
    transform: translateY(8px) rotate(-45deg);
  }
}
@keyframes bottom-open {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(0deg);
  }
  to {
    transform: translateY(-8px) rotate(45deg);
  }
}
@keyframes top-close {
  0% {
    transform: translateY(8px) rotate(-45deg);
  }
  50% {
    transform: translateY(8px) rotate(0deg);
  }
  to {
    transform: translateY(0) rotate(0deg);
  }
}
@keyframes bottom-close {
  0% {
    transform: translateY(-8px) rotate(45deg);
  }
  50% {
    transform: translateY(-8px) rotate(0deg);
  }
  to {
    transform: translateY(0) rotate(0deg);
  }
}
@keyframes overlay-show {
  0% {
    width: 0;
    height: 0;
    opacity: 0;
  }
  10% {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
  to {
    width: 100%;
    height: 100%;
    opacity: 0.5;
  }
}
@keyframes overlay-hide {
  0% {
    width: 100%;
    height: 100%;
    opacity: 0.5;
  }
  90% {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
  to {
    width: 0;
    height: 0;
    opacity: 0;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

button,
img {
  padding: 0;
  border: 0;
}

img {
  max-width: 100%;
  height: auto;
  margin: 0;
  font: inherit;
  vertical-align: bottom;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body,
html {
  height: 100%;
}

body {
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  color: #333;
  font-size: 1.4rem;
  line-height: 1.5;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴシック", "Hiragino Sans", "ＭＳ Ｐゴシック", sans-serif;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  background-color: transparent;
  cursor: pointer;
}

html {
  font-size: 62.5%;
}

a {
  color: inherit;
  text-decoration: none;
}

.header {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 100%;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
}

.header__inner {
  display: flex;
  align-items: center;
  height: 48px;
  margin: 0 auto;
  padding: 9px 2rem 9px 9px;
  background: #fff;
}

.header__logo {
  display: inline-block;
  width: 94px;
  height: auto;
  margin-right: auto;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 45px;
  background: #e50012;
}

.footer__bottom {
  color: #fff;
}

.footer__copyright {
  font-size: 1.1rem;
}

html.is-nav-open {
  height: 100%;
  overflow: auto;
}

html.is-nav-open body {
  height: 100%;
  overflow: hidden;
}

.container {
  margin-bottom: -2rem;
  line-height: 1.6;
}

.header__nav {
  width: calc(45px - 1.5rem);
  height: 45px;
  border-left: 1px solid #ccc;
}

.header__nav-pc {
  display: none;
}

.nav-pc__item {
  display: inline-block;
  margin-left: 2rem;
  letter-spacing: -0.02rem;
}

.nav-pc__item:last-child {
  margin-left: 1.5rem;
}

.nav-pc__link {
  display: block;
  color: #444;
  font-size: 1.5rem;
}

.gnav,
.gnav__ham {
  position: absolute;
  top: 0;
  right: 0;
}

.gnav__ham {
  display: flex;
  z-index: 30;
  flex-flow: column;
  justify-content: center;
  width: 50px;
  height: 48px;
  cursor: pointer;
}

.gnav__part {
  display: block;
  width: 21px;
  height: 3px;
  margin: 0 auto 5px;
  border-radius: 1px;
  background-color: #e50012;
}

.gnav__part:last-child {
  margin-bottom: 0;
}

.gnav__inner {
  -webkit-overflow-scrolling: touch;
  z-index: 20;
  position: fixed;
  top: 0;
  right: -337px;
  width: 337px;
  height: 100vh;
  margin-top: 48px;
  overflow: auto;
  background: #eee;
  transition: all 0.5s ease;
}

.gnav__inner::before {
  display: block;
  z-index: 2;
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  height: 0;
  box-shadow: 0 0 5px 4px rgba(0, 0, 0, 0.15);
  content: "";
}

.is-open .gnav__ham span:nth-of-type(1) {
  animation: top-open 0.5s;
  animation-fill-mode: forwards;
}

.is-open .gnav__ham span:nth-of-type(2) {
  opacity: 0;
  transition: opacity 0.5s;
}

.is-open .gnav__ham span:nth-of-type(3) {
  margin-bottom: 0;
  animation: bottom-open 0.5s;
  animation-fill-mode: forwards;
}

.is-open .gnav__inner {
  transform: translateX(-337px);
}

.is-open + .overlay {
  animation: overlay-show 0.5s forwards;
}

.is-close .gnav__ham span:nth-of-type(1) {
  animation: top-close 0.5s forwards;
}

.is-close .gnav__ham span:nth-of-type(2) {
  opacity: 1;
  transition: opacity 0.5s;
}

.is-close .gnav__ham span:nth-of-type(3) {
  animation: bottom-close 0.5s forwards;
}

.is-close .gnav__inner {
  transform: translateX(0);
}

.is-close + .overlay {
  animation: overlay-hide 0.5s forwards;
}

.overlay {
  display: block;
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  background: #333;
}

.gnav-innerHead {
  display: grid;
  position: relative;
  grid-template-rows: repeat(2, auto);
  grid-template-columns: repeat(4, 78px);
  grid-template-areas: ". . . ." "search search search search";
  -moz-column-gap: 2px;
  column-gap: 2px;
  padding: 20px 12px 5px;
  background: #fff;
}

.gnav-innerHead__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gnav-innerHead__text {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  text-align: center;
}

.gnav-iconMenu {
  display: grid;
  z-index: 1;
  position: relative;
  grid-template-columns: 169px 168px;
  border-top: 1px solid #ccc;
  background: #fff;
}

.gnav-iconMenu > li:nth-child(odd) {
  border-right: 1px solid #ccc;
}

.gnav-iconMenu__item {
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  height: 50px;
  padding: 0 12px;
  border-bottom: 1px solid #ccc;
}

.gnav-iconMenu__item::before {
  display: block;
  width: 30px;
  height: 30px;
  margin-right: 7px;
  border-radius: 15px;
  background-image: url(/course/common/images/icon_category.png);
  background-size: 420% auto;
  background-repeat: no-repeat;
  content: "";
}

.gnav-iconMenu__item--law::before {
  background-position: -48px 2px;
  background-color: #2e4b75;
}

.gnav-iconMenu__item--medical::before {
  background-position: -48px -74px;
  background-color: #e79b8d;
}

.gnav-iconMenu__item--welfare::before {
  background-position: 2.5px -23px;
  background-color: #e7812f;
}

.gnav-iconMenu__item--beauty::before {
  background-position: -74px -73px;
  background-color: #db7093;
}

.gnav-iconMenu__item--cooking::before {
  background-position: -48px -22px;
  background-color: #f4575e;
}

.gnav-iconMenu__item--design::before {
  background-position: 2.5px -49px;
  background-color: #3da7c1;
}

.gnav-iconMenu__item--handwriting::before {
  background-position: -48px -48px;
  background-color: #69543f;
}

.gnav-iconMenu__item--pc::before {
  background-position: -98px 3px;
  background-color: #2e4b75;
}

.gnav-iconMenu__item--psycho::before {
  background-position: -98px -24px;
  background-color: #b282c0;
}

.gnav-iconMenu__item--language::before {
  background-position: 2px -74px;
  background-color: #c8260d;
}

.gnav-iconMenu__item--servant::before {
  background-position: -99px -48px;
  background-color: #e7812f;
}

.gnav-iconMenu__item--construct::before {
  background-position: -22.5px -23px;
  background-color: #d4a231;
}

.gnav-iconMenu__item--travel::before {
  background-position: -99px -73px;
  background-color: #3da7c1;
}

.gnav-iconMenu__item--education::before {
  background-position: -24px -49px;
  background-color: #717d31;
}

.gnav-iconMenu__item--craft::before {
  background-position: -73px -23px;
  background-color: #e79b8d;
}

.gnav-iconMenu__item--art::before {
  background-position: -23px 2px;
  background-color: #b282c0;
}

.gnav-iconMenu__item--life::before {
  background-position: -23px -73px;
  background-color: #717d31;
}

.gnav-iconMenu__item--igo::before {
  background-position: -72.3px -47px;
  background-color: #d4a231;
}

.gnav-iconMenu__text {
  font-size: 14px;
}

.gnav-iconMenu-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 7px;
  border-bottom: 1px solid #ccc;
  background: #fff;
  color: #444;
  font-size: 14px;
}

.gnav-iconMenu-button:not(.is-open) {
  border-top: 1px solid #ccc;
}

.gnav-iconMenu-button::after {
  display: block;
  width: 6px;
  height: 6px;
  transform: rotate(45deg) translate(0, -3px);
  transform-origin: 50% 0%;
  border: 1px solid #444;
  border-top: none;
  border-left: none;
  content: "";
  transition: transform 0.3s ease;
}

.gnav-iconMenu-button.is-open::after {
  transform: rotate(225deg) translate(-2px, -7px);
}

.gnav-iconMenu-button.is-open__close {
  display: none;
}

.gnav-iconMenu-button.is-open:not(.is-open) .js-gnav-iconMenu-button__open {
  display: none;
}

.gnav-iconMenu-button__text {
  display: block;
  width: 90px;
}

.js-gnav-iconMenu {
  overflow: hidden;
}

.js-gnav-iconMenu:not(.is-open) {
  height: 250px;
}

.js-gnav-iconMenu > li:nth-child(even) .gnav-courseList {
  margin-left: -169px;
}

.js-gnav-courseList {
  z-index: 1;
}

.js-gnav-courseList__target {
  background: #fff;
}

.js-gnav-courseList.is-open {
  z-index: 2;
}

.js-gnav-courseList.is-open .js-gnav-courseList__target {
  background: #f2f0eb;
}

.js-gnav-courseList.is-open .js-gnav-courseList__contents {
  display: grid;
}

.gnav-courseList {
  display: none;
  grid-template-columns: 169px 168px;
  grid-auto-rows: 50px;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid #ccc;
  background: #fcfbf9;
}

.gnav-courseList__item {
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-size: 13px;
  line-height: 1.5076923077;
}

.gnav-courseList__item:nth-child(odd) {
  border-right: 1px solid #ccc;
}

.gnav-courseList__item:not(:last-child) {
  border-bottom: 1px solid #ccc;
}

.gnav-courseList__item:nth-last-child(2):nth-child(odd) {
  border-bottom: none;
}

.js-gnav-iconMenu-button.is-open::after {
  transform: rotate(225deg) translate(-4px, -7px);
}

.js-gnav-iconMenu-button.is-open .js-gnav-iconMenu-button__close {
  display: none;
}

.js-gnav-iconMenu-button:not(.is-open) .js-gnav-iconMenu-button__open {
  display: none;
}

.gnav-inquiry {
  display: grid;
  position: relative;
  grid-template-rows: repeat(2, auto);
  grid-template-columns: repeat(3, 104px);
  grid-template-areas: ". . . " "faq faq faq";
  -moz-column-gap: 2px;
  column-gap: 2px;
  margin: 10px 12px;
  border-radius: 5px;
  background: #fff;
}

.gnav-inquiry__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 0 5px;
}

.gnav-inquiry__item:not(:last-child) {
  border-right: 1px solid #eee;
}

.gnav-inquiry__text {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  text-align: center;
}

.gnav-innerFoot {
  margin-bottom: 80px;
  padding: 15px 12px 80px;
}

.gnav-innerFoot__link {
  display: block;
  position: relative;
  padding-left: 13px;
  font-size: 13px;
}

.gnav-innerFoot__link:not(:first-child) {
  margin-top: 12px;
}

.gnav-innerFoot__link::before {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  height: 5px;
  margin: auto;
  transform: rotate(45deg);
  border: 1px solid #444;
  border-bottom: none;
  border-left: none;
  content: "";
}

.search {
  display: block;
}

.search__wrapper {
  padding: 1rem;
  background: #fff;
}

.search__form {
  position: relative;
  overflow: hidden;
}

.search__text {
  display: block;
  width: 100%;
  margin-left: 1px;
  padding: 1.2rem 3.2rem 1.2rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: 0;
  background: #fff;
  font-size: 1.6rem;
}

.search__text::-moz-placeholder {
  color: #ccc;
}

.search__text::placeholder {
  color: #ccc;
}

.search__btn {
  -webkit-tap-highlight-color: transparent;
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  top: 1px;
  right: -1px;
  width: 42px;
  height: 46px;
  padding: 0;
  transform: translateY(-1px);
  border: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  outline: 0;
  background: #999;
  background-color: transparent;
  color: #fff;
  font-size: 1.1rem;
  line-height: 46px;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.is-sp {
  display: block;
}

.is-pc {
  display: none;
}

.is-portrait {
  display: block;
}

.is-landscape {
  display: none;
}

.u-strong {
  color: var(--accent-color);
  font-weight: 700;
}

br.is-sp {
  display: inline;
}

.main {
  margin-top: 48px;
}
:root {
  --typo: #333;
  --primary: #e03130;
  --inverse: #fff;
  --light: #666;
  --bg: #f8f4e2;
  --bg01: #f7f7f7;
  --bg02: #f4f0ea;
  --bg03: #e0d1b9;
  --bg-alfa: #ffffffcc;
  --bg-zebra-alfa: #f5f5f5cc;
  --border: #c9c9c9;
  --border-light: #c3c3c3;
  --border-dashed: #3333336b;
  --spacing: 0em;
}

.contents {
  color: var(--typo);
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
}

.u-bold-text {
  font-weight: 700;
}

.u-mt1em {
  margin-top: 1em;
}
.u-mb1em {
  margin-bottom: 1em;
}

.notes-list__item {
  position: relative;
  padding-left: 1em;
}
.notes-list__item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "※";
}

.dot-list__item {
  position: relative;
  padding-left: 1em;
}
.dot-list__item::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}

.lp-inner {
  max-width: 1024px;
  margin-inline: auto;
  padding-right: 20px;
  padding-left: 20px;
}
.course .lp-inner, .requirements .lp-inner, .notes .lp-inner {
  position: relative;
}

.lp-strong {
  font-weight: bold;
}
.lp-strong--color {
  color: var(--primary);
}

.lp-text-link {
  color: var(--primary);
  text-decoration: underline;
}
.lp-text-link::after {
  display: inline-block;
  width: 11.68px;
  height: 7.58px;
  background: url(../images/arrow_link.svg) no-repeat right top;
  background-size: 7.68px auto;
  content: "";
}

.lp-btn-link {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  height: 44px;
  padding: 12px 40.64px 12px 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: url(../images/arrow_link.svg) no-repeat right 24px center var(--inverse);
  background-size: 8.64px auto;
  line-height: 1;
}

.lp-mv {
  min-height: 625px;
  padding-top: 13px;
  background: url(../images/bg_mv_cloud.svg) no-repeat center 346px, url(../images/bg_mv_confetti.png) no-repeat center -5px;
}
.lp-mv__sp-contents {
  display: contents;
}
.lp-mv__title {
  max-width: 342px;
  height: 114.61px;
  margin: 0 auto 5px;
}
.lp-mv__title-sp-contents {
  display: contents;
}
.lp-mv__title-shoulder {
  display: block;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 0 19px;
  color: var(--primary);
  font-weight: 900;
  font-size: 2.1rem;
  line-height: 1.2380952381;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: -0.01em;
}
.lp-mv__title-shoulder::before, .lp-mv__title-shoulder::after {
  display: block;
  position: absolute;
  bottom: 0;
  width: 11px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
.lp-mv__title-shoulder::before {
  left: 0;
  background-image: url(../images/bg_line_l.svg);
}
.lp-mv__title-shoulder::after {
  right: 0;
  background-image: url(../images/bg_line_r.svg);
}
.lp-mv__title-text-line {
  display: flex;
  height: 93.61px;
  margin-top: -5px;
  padding: 20px 0 20px 73px;
  background: url(../images/bg_mv_title.svg) no-repeat center bottom;
  background-size: auto 93.61px;
  color: var(--inverse);
  font-weight: bold;
  line-height: normal;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.lp-mv__title-text {
  display: block;
  font-size: 3.8rem;
}
.lp-mv__title-text-last {
  display: grid;
  align-content: flex-end;
  font-size: 3.9rem;
  line-height: 1;
}
.lp-mv__title-text-small {
  display: grid;
  align-content: flex-end;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
.lp-mv__gift-sp-contents {
  display: contents;
}
.lp-mv__gift-header {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding-bottom: 12.49px;
  background: url(../images/bg_mv_requirement.svg) no-repeat center bottom;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.4444444444;
}
.lp-celeb10 .lp-mv__gift-header {
  font-size: clamp(1rem, 3.7vw, 1.4rem);
}
.lp-mv__gift-content {
  padding: 0 0 15px 5px;
}
.lp-mv__lead {
  font-size: 1.5rem;
  line-height: 1.4666666667;
  letter-spacing: 0.04em;
  text-align: center;
}
.lp-mv__attention {
  display: inline-block;
  position: relative;
  padding: 0 13.781px;
  color: var(--primary);
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
}
.lp-mv__attention::before, .lp-mv__attention::after {
  display: block;
  position: absolute;
  top: 50%;
  width: 9.781px;
  height: 19.38px;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
.lp-mv__attention::before {
  left: 0;
  background-image: url(../images/bg_attention_l.svg);
}
.lp-mv__attention::after {
  right: 0;
  background-image: url(../images/bg_attention_r.svg);
}
.lp-mv__img {
  width: -moz-fit-content;
  width: fit-content;
  margin: -30px auto 0;
}

.lp-mv-egift {
  display: grid;
  grid-template-rows: 31px 1fr;
  grid-template-columns: 28px 1fr auto;
  max-width: 340px;
  height: 76px;
  margin-inline: auto;
}
.lp-mv-egift__egift {
  display: grid;
  grid-row: 1/3;
  grid-column: 1/2;
  place-content: center;
  background: var(--primary);
  color: var(--inverse);
  font-weight: 900;
  font-size: 1.4rem;
  line-height: 1.1428571429;
  letter-spacing: -0.03em;
  text-align: center;
  writing-mode: vertical-rl;
}
.lp-mv-egift__egift-en {
  text-combine-upright: all;
}
.lp-mv-egift__num {
  grid-row: 1/3;
  grid-column: 2/3;
  padding: 0.1em 4.5px 0 5px;
  color: var(--primary);
  font-weight: bold;
  /*font-size: 8.9rem;*/
  font-size: 6.9rem;
  line-height: 0.8539325843;
  font-family: "Roboto", sans-serif;
  letter-spacing: -0.05em;
  text-align: center;
}
.lp-mv-egift__num-comma {
  margin-bottom: -5px;
}
.lp-mv-egift__yen {
  grid-row: 1/2;
  grid-column: 3/4;
  align-self: flex-end;
  color: var(--primary);
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.07em;
}
.lp-mv-egift__yen small {
  color: var(--typo);
  font-size: 2.1rem;
  line-height: 1.2380952381;
}
.lp-mv-egift__present {
  grid-row: 2/3;
  grid-column: 3/4;
  align-self: self-start;
  font-weight: 900;
  font-size: 3.4rem;
  line-height: 1;
  letter-spacing: 0.02em;
}
.lp-mv-egift__present-exclamation {
  margin-left: -10px;
  font-size: 3.9rem;
}
.lp-mv-egift__pc-img {
  display: none;
}

.lp-anchor-nav {
  z-index: 2;
  position: relative;
  margin-top: -71px;
}
.lp-anchor-nav__list {
  display: grid;
  position: relative;
  grid-template-columns: repeat(2, 1fr);
  max-width: 335px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: 5px;
}
.lp-anchor-nav__list::before, .lp-anchor-nav__list::after {
  display: block;
  position: absolute;
  content: "";
}
.lp-anchor-nav__list::before {
  top: calc(50% - 1px);
  left: 10px;
  width: calc(100% - 20px);
  height: 1px;
  border-bottom: 1px dashed var(--border-dashed);
}
.lp-anchor-nav__list::after {
  top: 10px;
  left: calc(50% - 1px);
  width: 1px;
  height: calc(100% - 20px);
  border-left: 1px dashed var(--border-dashed);
}
.lp-anchor-nav__list-item {
  background: var(--inverse);
}
.lp-anchor-nav__link {
  display: grid;
  align-content: center;
  height: 69px;
  background-image: url(../images/arrow_anchor.png);
  background-size: 20px auto;
  background-repeat: no-repeat;
  background-position-y: center;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.25;
}
.lp-anchor-nav__list-item:nth-child(2n+1) .lp-anchor-nav__link {
  padding: 0 35px 0 23px;
  background-position-x: calc(100% - 15px);
}
.lp-anchor-nav__list-item:nth-child(2n) .lp-anchor-nav__link {
  padding: 0 43px 0 16px;
  background-position-x: calc(100% - 23px);
}

.lp-section {
  position: relative;
}
.lp-section--bg-confetti {
  background: url(../images/bg_confetti.svg) repeat-y left top;
}
.lp-section--bg-color {
  background: var(--primary);
}
.lp-section.gift {
  z-index: 1;
  margin-top: -71px;
  padding: 108px 0 55px;
  background: var(--bg);
}
.lp-section.course {
  padding: 66px 0 55px;
}
.lp-section.requirements {
  padding: 60px 0;
}
.lp-section.notes {
  padding: 40px 0 180px;
}
.lp-section__header {
  z-index: 2;
  position: relative;
}
.gift .lp-section__header {
  margin-bottom: 24px;
}
.lp-section.course .lp-section__header {
  margin-bottom: 16px;
}
.lp-section.requirements .lp-section__header {
  margin-bottom: 15px;
}
.notes .lp-section__header {
  margin-bottom: 23px;
}
.lp-section__title {
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1.5833333333;
  text-align: center;
}
.lp-section.requirements .lp-section__title {
  color: var(--inverse);
}
.lp-section__title-text {
  display: grid;
  grid-template-columns: repeat(4, 47px);
  -moz-column-gap: 2px;
  column-gap: 2px;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 47px;
  margin-inline: auto;
  color: var(--inverse);
  font-size: 27px;
  line-height: 1;
}
.lp-section__title-text span {
  display: grid;
  align-content: center;
  background: var(--primary);
}
.lp-section__lead {
  font-size: 1.6rem;
  line-height: 1.625;
  text-align: center;
}
.lp-section.course .lp-section__lead {
  margin-bottom: 24px;
}
.lp-section.requirements .lp-section__lead {
  margin-bottom: 36px;
  color: var(--inverse);
}

.lp-subsection-title {
  font-weight: bold;
  text-align: center;
}
.lp-subsection-title__category {
  display: grid;
  place-content: center;
  width: 63px;
  height: 63px;
  margin: 0 auto 16px;
  border-radius: 100%;
  background: var(--primary);
  color: var(--inverse);
  font-size: 3.3rem;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  text-align: center;
}
.lp-subsection-title__text {
  display: block;
  font-size: 2rem;
  line-height: 1.5;
}

.lp-gifteebox-card {
  /*max-width: 335px;*/
  max-width: 360px;
  /*height: 46.6666666667vw;*/
  /*max-height: 175px;*/
  aspect-ratio: 335 / 175;
  margin: 0 auto 37px;
  padding-top: 39px;
  background: url(../images/bg_card.svg) no-repeat center top;
  background-size: contain;
  color: var(--primary);
  font-weight: bold;
}
.lp-gifteebox-card__grid {
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: 1fr auto;
  max-width: 305px;
  height: 100%;
  margin-inline: auto;
}
.lp-gifteebox-card__gifteebox {
  grid-row: 1/2;
  grid-column: 1/3;
  padding-bottom: 5px;
  font-size: 2.3rem;
  line-height: 1.1304347826;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.02em;
}
.lp-gifteebox-card__num {
  grid-row: 2/3;
  grid-column: 1/2;
  font-weight: 900;
  font-size: 8.2rem;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  letter-spacing: -0.02em;
}
.lp-gifteebox-card__yen {
  grid-row: 2/3;
  grid-column: 2/3;
  padding-top: 40px;
  font-size: 2.9rem;
  line-height: 1;
}

.lp-gifteebox {
  position: relative;
  padding: 37px 20px 25px;
  border-radius: 5px;
  background: var(--inverse);
}
.lp-gifteebox__title {
  display: grid;
  position: absolute;
  top: 0;
  left: 0;
  place-content: center;
  width: 100%;
  height: 26px;
  transform: translateY(-50%);
}
.lp-gifteebox__title-text {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 31px;
  background: url(../images/icon_about.svg) no-repeat left center;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.4444444444;
}
.lp-gifteebox__lead {
  margin-bottom: 16px;
}
.lp-gifteebox__link {
  display: inline-block;
  color: var(--primary);
  font-size: 1.2rem;
  text-decoration: underline;
}
.lp-gifteebox__link::after {
  display: inline-block;
  width: 13.25px;
  height: 13.25px;
  margin-left: 3px;
  background: url(../images/icon_blank.svg) no-repeat center center;
  background-size: contain;
  content: "";
  vertical-align: text-bottom;
}
.lp-gifteebox .dot-list {
  display: grid;
  row-gap: 1em;
}

.lp-course-section + .lp-course-section {
  margin-top: 36px;
}
.lp-course-section__header {
  margin-bottom: 24px;
}

.lp-course-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* width: -moz-fit-content;
  width: fit-content; */
  width: 100%;
  margin-inline: auto;
  gap: 5px;
}
.lp-course-list__link {
  display: grid;
  align-content: center;
  width: 100%;
  height: 72px;
  padding: 15px 12px;
  border: 1px solid var(--border-light);
  border-radius: 5px;
  background: url(../images/arrow_link.svg) no-repeat right 8.8px bottom 8.8px var(--bg-alfa);
}

.lp-requirements-section {
  padding: 36px 20px;
  border-radius: 5px;
  background: var(--inverse);
}
.lp-requirements-section + .lp-requirements-section {
  margin-top: 36px;
}
.lp-requirements-section__header {
  margin-bottom: 24px;
}

.lp-requirements-subsection__header {
  margin-bottom: 19px;
  padding-bottom: 9px;
  border-bottom: 1px dashed var(--primary);
  background: url(../images/icon_requirement.svg) no-repeat left top;
}
.lp-requirements-subsection__title {
  display: grid;
  align-content: center;
  min-height: 36.49px;
  padding-left: 41px;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.6666666667;
}
.lp-requirements-subsection__lead {
  margin-bottom: 24px;
  font-size: 1.6rem;
  line-height: 1.625;
}

.lp-requirements-box {
  margin-bottom: 32px;
  padding: 24px 20px;
  border: 1px solid var(--border-light);
  border-radius: 5px;
  background: var(--bg-alfa);
}

.lp-requirements-list {
  display: grid;
  row-gap: 24px;
}
.lp-requirements-list__item {
  background-position: center top;
  background-repeat: no-repeat;
  line-height: 1.5;
  text-align: center;
}
.lp-requirements-list__item--reward {
  padding-top: 54px;
  background-image: url(../images/icon_reward.svg);
}
.lp-requirements-list__item--voice {
  padding-top: 55px;
  background-image: url(../images/icon_voice.svg);
}
.lp-requirements-list__item--personel {
  padding-top: 54px;
  background-image: url(../images/icon_personel.svg);
}
.lp-requirements-list__item--mailaddress {
  padding-top: 63px;
  background-image: url(../images/icon_mailaddress.svg);
}
.lp-requirements-list__item--mail {
  padding-top: 45.05px;
  background-image: url(../images/icon_mail.svg);
}
.lp-requirements-list__item p + p {
  margin-top: 0.5em;
}
.lp-requirements-list__item .notes-list {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0.5em auto 0;
  font-size: 1.2rem;
  text-align: left;
}
.lp-requirements-list__small {
  font-size: 1.2rem;
}

.lp-step-list {
  display: grid;
  row-gap: 38px;
}
.lp-step-list__item {
  font-size: 1.6rem;
  line-height: 1.625;
}
.lp-step-list__item:not(:last-child) {
  position: relative;
}
.lp-step-list__item:not(:last-child)::after {
  display: block;
  position: absolute;
  bottom: -38px;
  left: 0;
  width: 100%;
  height: 38px;
  background: url(../images/arrow_step.svg) no-repeat center center;
  content: "";
}

.lp-step-block {
  display: grid;
  grid-template-columns: 44px 1fr;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.lp-step-block__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 49px;
  font-family: "Roboto", sans-serif;
}
.lp-step-block__step {
  width: 44px;
  height: 16px;
  border-radius: 8px;
  background: var(--primary);
  color: var(--inverse);
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  text-align: center;
}
.lp-step-block__num {
  color: var(--primary);
  font-weight: 500;
  font-size: 2.6rem;
  line-height: 1;
  text-align: center;
}
.lp-step-block__content {
  align-content: center;
}
.lp-step-block__small {
  font-size: 1.4rem;
}
.lp-notes-list__item {
  padding: 16px 20px 24px 43.04px;
  border-radius: 5px;
  background: url(../images/icon_notes.svg) no-repeat 16px 19px;
}
.lp-notes-list__item:nth-child(2n+1) {
  background-color: var(--bg-zebra-alfa);
}
.lp-notes-list__item:nth-child(2n) {
  background-color: var(--inverse);
}
.lp-notes-list__btn {
  padding-top: 12px;
}

.lp-notes-course-list {
  display: grid;
  row-gap: 8px;
  margin: 20px 0 0 -27.04px;
}
.lp-notes-course-list__item {
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: var(--inverse);
}
.lp-notes-course-list__item-title {
  margin-bottom: 4px;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.5;
}
.lp-notes-course-list__item-desc {
  line-height: 1.4285714286;
}
.lp-notes-course-list .notes-list {
  margin-top: 0.5em;
  font-size: 1.2rem;
}

.lp-notes-course-schedule {
  min-height: 24px;
  padding: 3px 0 0 32px;
  background: url(../images/icon_calendar.svg) no-repeat left top;
}

.lp-decoration {
  position: absolute;
}
.course .lp-decoration {
  z-index: 2;
  top: -141.3px;
  right: 5px;
}
.requirements .lp-decoration {
  z-index: 2;
  top: -97.72px;
  left: -22.62px;
}
.notes .lp-decoration {
  z-index: 2;
  right: 0;
  bottom: -150px;
}

.lp-note__text {
  margin-top: 10px;
  font-size: 14px;
}

@media screen and (max-width: 340px) {
  .lp-mv-egift__num {
    padding-top: 0.2em;
    font-size: 5.9rem;
  }
  .lp-gifteebox-card__grid {
    max-width: 244px;
  }
  .lp-gifteebox-card__num {
    font-size: 17vw;
  }
}
@media screen and (max-width: 370px) {
  .lp-gifteebox-card__grid {
    max-width: 305px;
    width: 85%;
  }
  .lp-gifteebox-card__num {
    font-size: 21vw;
  }
  .lp-gifteebox-card__yen {
    font-size: 7vw;
  }
  .lp-celeb10 .lp-mv__gift-header {
    font-size: clamp(10px, 3.7vw, 14px);
  }
}
@media screen and (max-width: 360px) {
  .lp-gifteebox-card__num {
    font-size: 20vw;
  }
}
@media screen and (min-width: 375px) {
  .search__btn {
    width: 48px;
    height: 51px;
    line-height: 49px;
  }
}
@media screen and (min-width: 414px) {
  .header__nav {
    width: calc(50px - 2rem);
  }
  .lp-course-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 568px) {
  .search__btn {
    width: 53px;
    height: 53px;
    line-height: 53px;
  }
  .is-portrait {
    display: none;
  }
  .is-landscape {
    display: block;
  }
  .lp-course-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .lp-mv-egift__fv-title-img {
    max-width: 342px;
    margin: 0 auto 5px;
  }
  /*.lp-anchor-nav {
    margin-top: -24px;
  }*/
}

@media screen and (min-width: 768px) {
  .header__inner {
    height: 68px;
    padding: 14px 2rem 14px 26px;
  }
  .header__logo {
    width: 124px;
  }
  .header__nav-pc {
    display: flex;
    align-items: center;
  }
  .nav-pc__link:active,
  .nav-pc__link:hover {
    text-decoration: underline;
  }
  .header__nav {
    display: none;
  }
  .gnav__ham {
    top: 1.8rem;
  }
  .gnav__part {
    width: 23px;
  }
  .is-sp {
    display: none;
  }
  .is-pc {
    display: block;
  }
  br.is-sp {
    display: none;
  }
  br.is-pc {
    display: inline;
  }
  .main {
    margin-top: 70px;
  }
  .course .lp-inner, .requirements .lp-inner, .notes .lp-inner {
    position: static;
  }
  .lp-mv {
    min-height: 550px;
    padding-top: 0;
    background: url(../images/bg_mv_cloud_pc.svg) no-repeat center 285px, url(../images/bg_mv_confetti_pc.svg) no-repeat center 8px;
  }
  .lp-mv__sp-contents {
    display: block;
    position: relative;
    max-width: 1024px;
    margin-inline: auto;
    padding-top: 55px;
    padding-right: 20px;
    padding-left: 20px;
  }
  .lp-mv__title {
    max-width: 415px;
    height: 130px;
  }
  .lp-mv__title-sp-contents {
    display: none;
  }
  .lp-mv__gift {
    width: -moz-fit-content;
    width: fit-content;
    margin: 12px auto 25px;
  }
  .lp-mv__gift-sp-contents {
    display: none;
  }
  .lp-mv__lead {
    margin-top: -8px;
    font-size: 1.8rem;
    line-height: 2.1111111111;
    white-space: nowrap;
  }
  .lp-mv__attention {
    padding: 0 19.8px;
    font-size: 2.6rem;
    line-height: 1;
    letter-spacing: 0.04em;
  }
  .lp-mv__attention::before, .lp-mv__attention::after {
    width: 19.8px;
    height: 26.79px;
    background-size: 12.8px auto;
  }
  .lp-mv__attention::before {
    background-image: url(../images/bg_attention_l_pc.svg);
  }
  .lp-mv__attention::after {
    background-image: url(../images/bg_attention_r_pc.svg);
    background-position-x: 7px;
  }
  .lp-mv__img {
    z-index: 0;
    position: absolute;
    margin: 0;
  }
  .lp-mv__img--l {
    top: 140px;
    left: 1.46484375vw;
    max-width: 18.984375vw;
  }
  .lp-mv__img--r {
    top: 90px;
    right: 3.90625vw;
    max-width: 17.109375vw;
  }
  .lp-anchor-nav {
    margin-top: -35px;
  }
  .lp-anchor-nav__list {
    grid-template-columns: repeat(4, 1fr);
    max-width: 668px;
  }
  .lp-anchor-nav__list::before, .lp-anchor-nav__list::after {
    display: none;
  }
  .lp-anchor-nav__list-item {
    position: relative;
  }
  .lp-anchor-nav__list-item:not(:last-child)::after {
    display: block;
    position: absolute;
    top: 10px;
    right: 0;
    width: 1px;
    height: calc(100% - 20px);
    border-right: 1px dashed var(--border-dashed);
    content: "";
  }
  .lp-section.gift {
    margin-top: -35px;
    padding-top: 73px;
    padding-bottom: 100px;
  }
  .lp-section.course {
    padding: 120px 0 100px;
  }
  .lp-section.requirements {
    padding: 120px 0;
  }
  .lp-section.notes {
    padding: 80px 0 180px;
  }
  .gift .lp-section__header {
    margin-bottom: 48px;
  }
  .lp-section.course .lp-section__header {
    margin-bottom: 32px;
  }
  .lp-section.requirements .lp-section__header {
    margin-bottom: 30px;
  }
  .notes .lp-section__header {
    margin-bottom: 46px;
  }
  .lp-section.requirements .lp-section__title br {
    display: none;
  }
  .lp-section__lead br {
    display: none;
  }
  .lp-subsection-title__text br {
    display: none;
  }
  .lp-gifteebox-card {
    margin-bottom: 70px;
  }
  .lp-gifteebox {
    padding: 50px 40px;
    font-size: 1.6rem;
  }
  .lp-course-section + .lp-course-section {
    margin-top: 70px;
  }
  .lp-course-section__header {
    margin-bottom: 48px;
  }
  .lp-course-list {
    grid-template-columns: repeat(5, 1fr);
  }
  .lp-requirements-section {
    padding: 70px 40px;
  }
  .lp-requirements-box {
    font-size: 1.6rem;
  }
  .lp-requirements-list__item .notes-list {
    font-size: 1.4rem;
  }
  .lp-requirements-list__small {
    font-size: 1.4rem;
  }
  .lp-requirements-list p br {
    display: none;
  }
  .lp-notes-list {
    font-size: 1.6rem;
  }
  .lp-notes-list__item {
    padding: 30px 40px 35px 43.04px;
  }
  .lp-notes-course-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .course .lp-decoration {
    top: -75.3px;
  }
  .requirements .lp-decoration {
    top: -37.72px;
  }
  .notes .lp-decoration {
    bottom: 16.4px;
  }
}
@media screen and (min-width: 1024px) {
  .lp-mv__img--l {
    top: 140px;
    left: 15px;
  }
  .lp-mv__img--r {
    top: 90px;
    right: 40px;
  }
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}


/**** 20251128 gift card start ****/

.lp-celeb-base .lp-gifteebox-card {
  margin-bottom: 20px;
}

.lp-celeb-base .lp-gifteebox-card__num {
  grid-row: 2 / 3;
  grid-column: 1 / 2;
  font-weight: 900;
  font-size: 7rem;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  letter-spacing: -0.02em;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 16px;
}
.lp-celeb-base .lp-gifteebox-card__first {
  position: relative;
  top: 6px;
  font-size: 2.9rem;
  width: 2ch;
}
.lp-celeb-base .lp-gifteebox-card__num img {
  margin-top: 18px;
}
.lp-celeb-base .lp-gifteebox-card__yen {
  padding-top: 46px;
}

.lp-celeb-base .lp-gifteebox-card + .lp-note__text {
  margin-bottom: 73px;
  text-align: center;
}

.lp-celeb-base .lp-gifteebox .dot-list__item .lp-note__text {
  margin-top: 7px;
}

@media screen and (max-width: 767px) {

  .lp-celeb-base .lp-note__text {
    font-size: 11px;
    margin-top: 10px;
    padding: 0 10px;
  }
  .lp-celeb-base .lp-mv__img {
    margin: -28px auto 0;
  }

  .lp-celeb-base .lp-gifteebox-card {
    margin-bottom: 20px;
  }
  .lp-celeb-base .lp-gifteebox-card__grid {
    max-width: 303px;
    width: 86%;
  }
  .lp-celeb-base .lp-gifteebox-card__num {
    font-size: clamp(12px,18vw,7rem);
  }
  .lp-celeb-base .lp-gifteebox-card__num img {
    margin-top: 28px;
  }
  .lp-celeb-base .lp-gifteebox-card__first,
  .lp-celeb-base .lp-gifteebox-card__yen {
    font-size: clamp(9px,7vw,2.9rem);
  }
  .lp-celeb-base .lp-gifteebox-card__gifteebox {
    font-size: clamp(12px,6vw,2.3rem);
  }
  .lp-celeb-base .lp-gifteebox-card + .lp-note__text {
    margin-bottom: 35px;
    padding: 0;
  }
  .lp-celeb-base .lp-gifteebox .dot-list__item .lp-note__text {
    width: calc(100% + 2ch);
    margin-top: 3px;
    padding-left: 15px;
    padding-right: 0;
    text-indent: -15px;
  }
}
@media screen and (max-width: 370px) {
  .lp-celeb-base .lp-gifteebox-card__gifteebox {
    padding-bottom: 1.3vw;
  }
  .lp-celeb-base .lp-gifteebox-card {
    padding-top: 10.4vw;
  }
  .lp-celeb-base .lp-gifteebox-card__num {
    margin-top: 4.4vw;
  }
  .lp-celeb-base .lp-gifteebox-card__num img {
    width: 1.8vw;
  }
}
@media screen and (min-width: 768px) {

}