@charset "UTF-8";
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body, h1, h2, h3, h4, h5, h6, p, ul, ol, dl, dt, dd, figure, blockquote {
  padding: 0;
  margin: 0;
}
ul, ol {
  list-style: none;
}
img, picture {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input, textarea, select {
  font: inherit;
  color: inherit;
}
button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: none;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
iframe {
  border: 0;
}
address {
  font-style: normal;
}
:root {
  --color-text: #222;
  --color-bg: #fff;
  --color-main: #BFD9D9;
  --color-accent: #EACEB9;
  --color-border: rgb(0 0 0 / 40%);
  --color-white: #fff;
  --color-black: #000;
  --color-asagi: #b8d0d1;
  --color-akane: #c8b1bd;
  --color-tetsukon: #b9bfd8;
  --color-geppaku: #cccfd4;
}
body {
  min-width: 320px;
  font-family: Roboto, Helvetica Neue, arial, Yu Gothic, 游ゴシック体, YuGothic, 游ゴシック, Hiragino Kaku Gothic ProN, Meiryo, sans-serif;
  font-size: 1.6rem;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  line-height: 1.75;
  color: var(--color-text);
  letter-spacing: 0.1em;
  word-break: break-word;
  overflow-wrap: break-word;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--color-bg)), to(#F2F4F4));
  background: linear-gradient(180deg, var(--color-bg) 0%, #D6DAEB 100%);
}
main {
  display: block;
}
a {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 769px) {
  a:hover {
    opacity: 0.7;
  }
}
img {
  vertical-align: bottom;
}
sup {
  font-size: 0.6em;
  vertical-align: super;
}
sub {
  font-size: 0.6em;
  vertical-align: sub;
}
.is-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
}
.is-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
}
.is-pc-inline {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .is-pc-inline {
    display: none;
  }
}
.is-sp-inline {
  display: none;
}
@media screen and (max-width: 768px) {
  .is-sp-inline {
    display: inline-block;
  }
}
.l-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: var(--color-main);
}
.l-header__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  min-height: 80px;
}
@media screen and (max-width: 768px) {
  .l-header__inner {
    min-height: 60px;
  }
}
.l-header__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 200px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    width: 96px;
  }
}
.l-header__logo a {
  display: block;
}
.l-header__logo img {
  width: 100%;
}
.l-header__toggle {
  position: relative;
  z-index: 202;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}
@media screen and (min-width: 769px) {
  .l-header__toggle {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .l-header__toggle {
    margin-right: 20px;
  }
}
.l-header__toggleLine {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-black);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.l-header__nav {
  margin-left: auto;
}
@media screen and (min-width: 769px) {
  .l-header__nav {
    position: static;
    z-index: auto;
    width: auto;
    height: auto;
    padding: 0;
    overflow: visible;
    background: transparent;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
@media screen and (max-width: 768px) {
  .l-header__nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 201;
    width: min(85%, 320px);
    height: 100dvh;
    padding: 72px 20px 24px;
    overflow-y: auto;
    background: #fff;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
}
.l-header__navList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .l-header__navList {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 24px;
    margin-right: 40px;
  }
}
@media screen and (max-width: 768px) {
  .l-header__navList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}
.l-header__navItem a {
  display: inline-block;
  padding: 0 0.5em;
  font-size: 1.4rem;
  line-height: 1.4;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .l-header__navItem a {
    display: block;
    padding: 0 0 10px;
    font-size: 1.5rem;
    line-height: 1.5;
    border-bottom: 1px solid var(--color-border);
  }
}
.l-header__overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (min-width: 769px) {
  .l-header__overlay {
    display: none;
  }
}
.l-header.is-open .l-header__overlay {
  visibility: visible;
  opacity: 1;
}
.l-header.is-open .l-header__toggleLine:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
  -ms-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}
.l-header.is-open .l-header__toggleLine:nth-child(2) {
  opacity: 0;
}
.l-header.is-open .l-header__toggleLine:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  -ms-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .l-header.is-open .l-header__nav {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
body.is-fixed {
  overflow: hidden;
}
[id] {
  scroll-margin-top: 80px;
}
@media screen and (max-width: 768px) {
  [id] {
    scroll-margin-top: 64px;
  }
}
.p-cta {
  padding: 0 0 60px;
}
@media screen and (max-width: 768px) {
  .p-cta {
    padding: 0 0 40px;
  }
}
.p-cta__inner {
    padding: 4rem;
    background: var(--color-bg);
    border: 3px solid;
    border-image: linear-gradient(170deg, #92c4d8 0%, #cbd6e7 30%, #e2ddce 77%, #eedf9e 100%) 1;
	box-shadow: 0 0 8px gray;
}
@media screen and (max-width: 768px) {
  .p-cta__inner {
    padding: 18px 14px
  }
}
.p-cta__regular {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 4rem;
  margin: 10px 0;
  background: color-mix(in srgb, #dadbec 80%, var(--color-bg));
}
@media screen and (max-width: 768px) {
  .p-cta__regular {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 12px 14px;
    margin-bottom: 0;
  }
}
.p-cta__regularText {
  min-width: 0;
}
.p-cta__regularTitle {
  font-size: 2.5rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-cta__regularTitle {
    font-size: 2rem;
  }
}
.p-cta__regularDesc {
  font-size: 2.2rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-cta__regularDesc {
    font-size: 1.6rem;
  }
}
.p-cta__regularPrice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  gap: 6px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 2.3rem;
  font-weight: 500;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p-cta__regularPrice {
    -ms-flex-item-align: end;
    align-self: flex-end;
    font-size: 1.8rem;
  }
}
.p-cta__regularPriceNum {
  font-family: "Roboto", "Helvetica Neue", arial;
  font-size: 5rem;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-cta__regularPriceNum {
    font-size: 3.2rem;
  }
}
.p-cta__regularPriceValue {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-top: 0;
}
.p-cta__regularPriceTax {
  margin-bottom: 2px;
  font-size: 1.1rem;
  line-height: 1.1;
}
@media screen and (max-width: 768px) {
  .p-cta__regularPriceTax {
    font-size: 0.9rem;
  }
}
.p-cta__regularPriceUnit {
  font-size: 2.3rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-cta__regularPriceUnit {
    font-size: 1.8rem;
  }
}
.p-cta__head {
  padding: 10px 12px;
  margin: 20px 0 30px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  border: 1px solid var(--color-black);
}
@media screen and (max-width: 768px) {
  .p-cta__head {
    font-size: 1.4rem;
  }
}
.p-cta__head span {
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .p-cta__head span {
    font-size: 1.8rem;
  }
}
.p-cta__head em {
  display: inline-block;
  padding: 1px 3px;
  font-style: normal;
  line-height: 1;
  background-color: var(--color-accent);
}
.p-cta__head small {
  font-size: 1.2rem;
}
.p-cta__priceArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 2em 0;
}
@media screen and (max-width: 768px) {
  .p-cta__priceArea {
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 1.5em 0;
  }
}
.p-cta__badge {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 120px;
  flex: 0 0 120px;
  overflow: hidden;
  text-align: center;
  border: 1px solid var(--color-black);
}
@media screen and (max-width: 768px) {
  .p-cta__badge {
    -ms-flex-preferred-size: 80px;
    flex-basis: 80px;
  }
}
.p-cta__badgeTop {
  padding: 6px;
  font-size: 2rem;
  line-height: 1.3;
  letter-spacing: 0.05em;
  background: var(--color-white);
}
@media screen and (max-width: 768px) {
  .p-cta__badgeTop {
    padding-top: 10px;
    font-size: 1.1rem;
  }
}
.p-cta__badgeBottom {
  padding: 10px 6px;
  font-size: 2rem;
  line-height: 1.1;
  color: var(--color-white);
  letter-spacing: 0.05em;
  background: var(--color-black);
}
@media screen and (max-width: 768px) {
  .p-cta__badgeBottom {
    padding: 8px 6px;
    font-size: 1.1rem;
  }
}
.p-cta__priceBlock {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  min-width: 0;
  text-align: right;
}
.p-cta__off {
  margin-bottom: 4px;
  font-size: 1.6rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-cta__off {
    margin-bottom: 0;
  }
}
.p-cta__off .offPer {
  font-size: 150%;
}
.p-cta__off .offExtra {
  font-size: 120%;
}
@media screen and (max-width: 768px) {
  .p-cta__off {
    font-size: 1.3rem;
  }
}
.p-cta__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 4px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  line-height: 1;
}
.p-cta__num {
  font-family: "Roboto", "Helvetica Neue", arial;
  font-size: 12.4rem;
  font-weight: 500;
  line-height: 0.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .p-cta__num {
    font-size: 6rem;
  }
}
.p-cta__num--first {
  color: #cc7e4f;
}
.p-cta__num--first ~ .p-cta__value {
  color: #cc7e4f;
}
.p-cta__num--second {
  color: #6aa2a0;
}
.p-cta__num--second ~ .p-cta__value {
  color: #6aa2a0;
}
.p-cta__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: bold;
}
.p-cta__tax {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-cta__tax {
    font-size: 1.2rem;
  }
}
.p-cta__yen {
  margin-bottom: 8px;
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .p-cta__yen {
    margin-bottom: 4px;
    font-size: 2rem;
  }
}
.p-cta__btnWrap {
  margin-top: 2rem;
}
.p-cta__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 80px;
  padding: 14px 20px;
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  letter-spacing: 1rem;
  background: url("../img/lp/icon/arrow.svg") no-repeat calc(100% - 2rem) 50%/16px auto var(--color-black);
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  .p-cta__btn {
    min-height: 56px;
    font-size: 1.8rem;
    background-size: 14px auto;
  }
}
.p-cta__notes {
  margin-top: 2rem;
}
.p-cta__notes li {
  position: relative;
  padding-left: 1em;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-cta__notes li {
    font-size: 1.1rem;
  }
}
.p-cta__notes li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "※";
}
.l-container:not(.l-header__inner) {
  width: min(100%, 760px);
  padding-inline: 20px;
  margin-inline: auto;
}
.p-fv {
  position: relative;
}
.p-fv__media img {
  display: block;
  width: 100%;
  height: auto;
}
.p-fv__inner {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-fv__inner {
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
  }
}
.p-fv__content {
  text-align: left;
}
.p-fv__title span, .p-fv__sub span {
  display: inline-block;
  background: -webkit-gradient(linear, left bottom, left top, from(var(--color-accent)), to(var(--color-main)));
  background: linear-gradient(0deg, var(--color-accent) 0%, var(--color-main) 100%);
}
.p-fv__title {
  margin-bottom: 10px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .p-fv__title {
    margin-bottom: 6px;
  }
}
.p-fv__title span {
  min-width: min(100%, 760px);
  padding: 10px 18px;
  font-size: 3.2rem;
  line-height: 1.2;
  letter-spacing: 0.22em;
}
.p-fv__title span img {
  display: inline-block;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .p-fv__title span img {
    max-width: 38%;
    vertical-align: baseline;
  }
}
.p-fv__title span span {
  display: inline;
  padding: unset;
  font-family: "Roboto", "Helvetica Neue", arial;
  background: unset;
}
@media screen and (max-width: 768px) {
  .p-fv__title span {
    min-width: auto;
    padding: 8px 12px;
    font-size: 2rem;
    letter-spacing: 0.14em;
  }
}
.p-fv__sub span {
  padding: 10px 14px 8px;
  font-size: 2.4rem;
  line-height: 1.2;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  .p-fv__sub span {
    padding: 6px 10px;
    font-size: 1.8rem;
    letter-spacing: 0.08em;
  }
}
@media screen and (max-width: 768px) {
  .p-firstview {
    margin-bottom: 20px;
  }
}
.p-featured {
  margin-top: 30px;
}
.p-featured__inner {
  padding: 12px 14px;
  text-align: center;
  border: 10px solid;
  border-image: linear-gradient(170deg, #92c4d8 0%, #dadbec 30%, #dadbec 77%, #eedf9e 100%) 1;
  background: #fff;
}
@media screen and (max-width: 768px) {}
.p-featured__head {
  display: inline-block;
  margin-right: auto;
  margin-left: auto;
}
.p-featured__title {
  font-family: "Roboto", "Helvetica Neue", arial;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-featured__title {
    font-size: 2.4rem;
  }
}
.p-featured__title::after {
  display: inline-block;
  width: 100%;
  height: 2px;
  line-height: 1;
  vertical-align: middle;
  content: "";
  background: var(--color-black);
}
.p-featured__lead {
  margin-top: 1rem;
  font-size: 2.5rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-featured__lead {
    margin-top: 10px;
    font-size: 1.8rem;
  }
}
.p-featured__movie {
  max-width: 490px;
  margin: 0 auto;
}
.p-featured__thumb {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: none;
}
@media screen and (min-width: 769px) {
  .p-featured__thumb:hover .p-featured__play {
    /*    background: color-mix(in srgb, var(--color-black) 20%, var(--color-white));*/
  }
}
.p-featured__thumb img {
  display: block;
  width: 100%;
  height: auto;
}
.p-featured__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  /*  background: color-mix(in srgb, var(--color-black) 12%, var(--color-white));*/
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.p-featured__playIcon {
  display: inline-grid;
  place-items: center;
  width: 60px;
  height: 60px;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--color-bg);
  background: color-mix(in srgb, var(--color-black) 60%, transparent);
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .p-featured__playIcon {
    width: 56px;
    height: 56px;
    font-size: 2rem;
  }
}
.p-featured__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border: 2px solid var(--color-black);
}
@media screen and (max-width: 768px) {
  .p-featured__player {
    border-width: 1px;
  }
}
.p-featured__player iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.p-featured__comingSoon img {
  display: block;
  width: 100%;
  height: auto;
}
.p-featured__btnWrap {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-featured__btnWrap {
    margin-top: 20px;
  }
}
.p-featured__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 320px;
  min-height: 80px;
  padding: 32px 20px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-black);
  letter-spacing: 0.2em;
  background: url("../img/lp/icon/youtube.svg") no-repeat calc(100% - 20px) 50%/30px auto var(--color-bg);
  border: 1px solid var(--color-black);
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .p-featured__btn {
    min-width: 300px;
    min-height: 50px;
    padding: 10px 18px;
    font-size: 1.7rem;
    border-radius: 8px;
  }
}
.p-concept {
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .p-concept {
    margin-bottom: 4rem;
  }
}
.p-concept__inner {
  position: relative;
  overflow: hidden;
}
.p-concept__media {
  position: relative;
}
.p-concept__media img {
  display: block;
  width: 100%;
  height: auto;
}
.p-concept__content {
  position: absolute;
  top: 68.8%;
  right: 2%;
  z-index: 2;
  width: 400px;
  color: var(--color-white);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .p-concept__content {
    inset: auto auto 8% 6%;
    width: 88%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.p-concept__title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-concept__title {
    font-size: 2rem;
    line-height: 1.7;
  }
}
.p-concept__text {
  margin-top: 3rem;
  font-size: 1.8rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-concept__text {
    margin-top: 14px;
    font-size: 1.2rem;
    line-height: 1.9;
  }
}
.p-product {
  padding-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-product {
    padding-bottom: 20px;
  }
}
.p-product__logo {
  text-align: center;
}
.p-product__logo img {
  margin: auto;
}
.p-product__lead {
  margin-top: 30px;
  font-size: 2.3rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-product__lead {
    font-size: 1.4rem;
    line-height: 1.9;
  }
}
.p-product__image {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-product__image {
    margin-top: 24px;
  }
}
.p-product__image img {
  display: block;
  width: 100%;
  height: auto;
}
.p-cartridge {
  padding: 0 0 100px;
}
@media screen and (max-width: 768px) {
  .p-cartridge {
    padding-bottom: 8rem;
  }
}
.p-cartridge__head {
  display: inline-block;
  margin-bottom: 30px;
}
.p-cartridge__title {
  font-family: "Roboto", "Helvetica Neue", arial;
  font-size: 4.2rem;
  font-weight: 500;
  line-height: 1;
}
.p-cartridge__sub {
  font-size: 2rem;
}
.p-cartridge__sub::before {
  display: inline-block;
  width: calc(100% - 2em - 20px);
  height: 2px;
  margin-right: 16px;
  vertical-align: middle;
  content: "";
  background-color: var(--color-black);
}
.p-cartridge__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .p-cartridge__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 10px;
  }
}
.p-cartridge__item {
  padding: 40px 20px 30px;
  text-align: center;
}
.p-cartridge__item:nth-child(2), .p-cartridge__item:nth-child(4) {
  -webkit-transform: translateY(40px);
  -ms-transform: translateY(40px);
  transform: translateY(40px);
}
.p-cartridge__item img {
  width: 100%;
  height: auto;
}
.p-cartridge__item p {
  margin-top: 40px;
  font-size: 1rem;
}
.p-cartridge .is-asagi {
  background: var(--color-asagi);
}
.p-cartridge .is-akane {
  background: var(--color-akane);
}
.p-cartridge .is-tetsukon {
  background: var(--color-tetsukon);
}
.p-cartridge .is-geppaku {
  background: var(--color-geppaku);
}
/* ===== Character Select ===== */
.in-inner{
	padding: 0 20px;
	width: min(100%, 760px);
	margin-inline: auto;
	background: #fff;
}
.p-flavor__head {
    margin-bottom: 20px;
    text-align: center;
}
.p-charselect {
  padding: 0 0 10px;
}
.p-charselect__block {
  padding: 30px 0;
  overflow: visible;
}
.p-charselect__block:last-child {
  border-bottom: none;
}
.p-charselect__title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0;
  padding: 6px 12px;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-charselect__title {
    font-size: 1.8rem;
  }
}
/* キャラ別タイトル背景色 */
.p-charselect__block.is-mia   .p-charselect__title { background: #FFE893; }
.p-charselect__block.is-mashu .p-charselect__title { background: #f3dd6d; }
.p-charselect__block.is-yuge  .p-charselect__title { background: #B7CDDA; }

/* 4等分レイアウト: キャラ | 本体 | フレーバー×2 */
.p-charselect__layout {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  overflow: visible;
padding-top: 1em;
}

/* デフォルト: キャラ左 */
.p-charselect__chara           { order: 0; }
.p-charselect__group--body     { order: 1; }
.p-charselect__group--flavor   { order: 2; }

/* リバース: キャラ右 */
.p-charselect__block.is-reverse .p-charselect__chara         { order: 3; }
.p-charselect__block.is-reverse .p-charselect__group--body   { order: 0; }
.p-charselect__block.is-reverse .p-charselect__group--flavor { order: 1; }

/* キャラ: カード+ラベル分の高さより自然と背が高く、上にはみ出す */
.p-charselect__chara {
  flex: 0 0 25%;
  align-self: flex-end;
  position: relative;
  z-index: 2;
}
.p-charselect__chara img {
  display: block;
  width: 100%;
  height: auto;
}

/* 本体グループ: 1カラム分 */
.p-charselect__group--body {
  flex: 0 0 calc(25% - 6px);
  display: flex;
  flex-direction: column;
  align-self: stretch; /* フレーバーと同じ高さに揃える */
  min-width: 0;
}
/* 本体カードをグループ内で縦に伸ばす */
.p-charselect__group--body .p-charselect__card {
  flex: 1;
}

/* フレーバーグループ: 2カラム分 */
.p-charselect__group--flavor {
  flex: 0 0 calc(50% - 6px);
  display: flex;
  flex-direction: column;
  align-self: stretch;
  min-width: 0;
}
/* フレーバー内カードも縦に伸ばす */
.p-charselect__group--flavor .p-charselect__cards {
  flex: 1;
}
.p-charselect__group--flavor .p-charselect__cards .p-charselect__card {
  flex: 1;
}

.p-charselect__label {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 6px;
  padding-top: 8px;
  text-align: center;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-charselect__label {
    font-size: 1.0rem;
    margin-bottom: 4px;
    padding-top: 6px;
  }
}

/* フレーバー内の2枚カードを横並び */
.p-charselect__group--flavor .p-charselect__cards {
  display: flex;
  gap: 8px;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .p-charselect__group--flavor .p-charselect__cards,.p-charselect__layout {
    gap: 5px;
  }
}
.p-charselect__group--flavor .p-charselect__cards .p-charselect__card {
  flex: 1;
}

.p-charselect__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 12px 6px 10px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  text-align: center;
  min-width: 0;
}
@media screen and (max-width: 768px) {
  .p-charselect__card {
    padding: 8px 4px 8px;
  }
}
.p-charselect__card img {
  display: block;
  width: 50px;
  height: auto;
  margin: 0 auto 10px;
}
@media screen and (max-width: 768px) {
  .p-charselect__card img {
    width: 32px;
    margin-bottom: 6px;
  }
}
/* 本体カードの画像だけ大きく */
.p-charselect__group--body .p-charselect__card img {
  width: 70%;
  max-width: 100px;
}
@media screen and (max-width: 768px) {
  .p-charselect__group--body .p-charselect__card img {
    width: 65%;
  }
}
.p-charselect__card p {
  font-size: 1.1rem;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .p-charselect__card p {
    font-size: 0.85rem;
  }
}

/* ===== Special Package ===== */
.p-specialset__head .p-specialset__title{
	    font-family: "Roboto", "Helvetica Neue", arial;
    font-size: 3rem;
    line-height: 1.2;
	margin:40px auto 20px;
}
@media screen and (max-width: 768px) {
.p-specialset__head .p-specialset__title{
    font-size: 2rem;
	margin:40px auto 20px;
}
}
.p-specialset ,.p-sticker {
  text-align: center;
}
.p-specialset ,.p-sticker {
  padding: 40px 0;
}

@media screen and (max-width: 768px) {.p-specialset {
  padding: 0 0 20px;
}}

.p-specialset__title ,.p-sticker__title {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.7;
  padding: 0px 12px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .p-specialset__title ,.p-sticker__title {
    font-size: 1.4rem;
  }
}
.p-specialset__photo img ,.p-sticker__photo img {
  display: block;
  width: 100%;
  height: auto;
  padding: 10px 30px;
}
.p-sticker__photo img {
  width: 80%;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {.p-sticker__photo img {
  width: 100%;
}}
@media screen and (max-width: 768px) {
.p-specialset__photo img ,.p-sticker__photo img{
  padding: 10px;
}
}

/* ===== Body Select ===== */
.p-bodyselect {
  padding: 0 0 40px;
  text-align: center;
}
@media screen and (max-width: 768px){
	.p-bodyselect {
  padding: 0 0 20px;
}
}
.p-bodyselect__title,.p-specialset p {
  font-size: 1.8rem;
  font-weight: 600;
  padding: 10px 12px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .p-bodyselect__title,.p-specialset p {
    font-size: 1.4rem;
  }
}
.p-bodyselect__photo img {
  display: block;
  width: 100%;
  height: auto;
}

/* ===== Select Cartridges ===== */
.p-selectcartridge {
  text-align: center;
}
.p-selectcartridge__title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-selectcartridge__title {
    font-size: 1.4rem;
    margin-bottom: 14px;
  }
}
.p-selectcartridge__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-selectcartridge__list {
    gap: 6px;
  }
}
/* 上段3枚：各33.333% */
.p-selectcartridge__item {
  flex: 0 0 calc(33.333% - 8px);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 200px;
  padding: 10px 8px;
  overflow: hidden;
  text-align: center;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .p-selectcartridge__item {
    flex: 0 0 calc(33.333% - 5px);
    min-height: 150px;
    padding: 7px 5px;
  }
}
/* 下段2枚を中央揃えで並べるためにmax-widthで幅を制限 */
.p-selectcartridge__item:nth-child(4),
.p-selectcartridge__item:nth-child(5) {
  flex: 0 0 calc(33.333% - 8px);
}
@media screen and (max-width: 768px) {
  .p-selectcartridge__item:nth-child(4),
  .p-selectcartridge__item:nth-child(5) {
    flex: 0 0 calc(33.333% - 5px);
  }
}
/* 背景画像 */
.p-selectcartridge__item.is-mint         { background-image: url('../img/lp/flavor-mint.jpg'); }
.p-selectcartridge__item.is-energy-drink { background-image: url('../img/lp/flavor-energy-drink.jpg'); }
.p-selectcartridge__item.is-citrus-cola  { background-image: url('../img/lp/flavor-citrus-cola.jpg'); }
.p-selectcartridge__item.is-coconut      { background-image: url('../img/lp/flavor-coconut.jpg'); }
.p-selectcartridge__item.is-chamomile    { background-image: url('../img/lp/flavor-chamomile.jpg'); }

/* テキストを白背景の四角で囲む（上部） */
.p-selectcartridge__item p {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
}
.p-selectcartridge__item p span {
  display: inline-block;
  background: rgba(255, 255, 255, 0.75);
  padding: 3px 8px;
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 600;
  color: #222;
}
@media screen and (max-width: 768px) {
  .p-selectcartridge__item p span {
    font-size: 0.85rem;
    padding: 2px 5px;
  }
}
/* カートリッジ画像（下部） */
.p-selectcartridge__item img {
  display: block;
  width: 36px;
  height: auto;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-selectcartridge__item img {
    width: 24px;
  }
}

/* ===== Acrylic Keychains ===== */
.p-keychain {
  padding: 0 0 60px;
  text-align: center;
}
.p-keychain__title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-keychain__title {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }
}
.p-keychain__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.p-keychain__body > img {
  display: block;
  max-width: 100%;
  height: auto;
}
.p-keychain__list {
  display: flex;
  gap: 24px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-keychain__list {
    gap: 14px;
  }
}
.p-keychain__item p {
  font-size: 1.3rem;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-keychain__item p {
    font-size: 1.1rem;
  }
}

.p-flavors {
  padding: 0 0 6rem;
}
@media screen and (max-width: 768px) {
  .p-flavors {
    padding: 0 0 4rem;
  }
}
.p-flavors {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, transparent), color-stop(1%, var(--color-main)), color-stop(28%, var(--color-main)), color-stop(92%, var(--color-accent)), color-stop(92%, transparent), to(transparent));
  background: linear-gradient(180deg, transparent 1%, var(--color-main) 1%, var(--color-main) 28%, var(--color-accent) 92%, transparent 92%, transparent 100%);
}
@media screen and (max-width: 768px) {
  .p-flavors .l-container {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, transparent), color-stop(1%, var(--color-main)), color-stop(28%, var(--color-main)), color-stop(96%, var(--color-accent)), color-stop(96%, transparent), to(transparent));
    background: linear-gradient(180deg, transparent 1%, var(--color-main) 1%, var(--color-main) 28%, var(--color-accent) 96%, transparent 96%, transparent 100%);
  }
}
.p-flavors__head {
  display: inline-block;
  margin-bottom: 20px;
}
.p-flavors__title {
  font-family: "Roboto", "Helvetica Neue", arial;
  font-size: 4.2rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-flavors__title {
    font-size: 3.6rem;
  }
}
.p-flavors__sub {
  font-size: 2rem;
}
.p-flavors__sub::before {
  display: inline-block;
  width: calc(100% - 5em - 20px);
  height: 2px;
  margin-right: 16px;
  vertical-align: middle;
  content: "";
  background-color: var(--color-black);
}
@media screen and (max-width: 768px) {
  .p-flavors__sub::before {
    width: calc(100% - 5.5em - 20px);
  }
}
.p-flavors__lead {
  margin-bottom: 20px;
  text-align: center;
}
.p-flavors__lead p {
  font-size: 1.6rem;
  line-height: 1.5;
}
.p-flavors__lead p + p {
  margin-top: 0.5em;
}
.p-flavors__group {
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .p-flavors__group {
    padding: 12px 0;
  }
}
.p-flavors__group--caffeine {
  background: url("../img/lp/flavors-bg-caffeine.png") no-repeat 50% 0/689px auto;
}
@media screen and (max-width: 768px) {
  .p-flavors__group--caffeine {
    background: none;
  }
}
.p-flavors__group--gaba {
  padding-bottom: 40px;
  background: url("../img/lp/flavors-bg-gaba.png") no-repeat 8% 0/392px auto;
}
@media screen and (max-width: 768px) {
  .p-flavors__group--gaba {
    background: none;
  }
}
.p-flavors__group + .p-flavors__group {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .p-flavors__group + .p-flavors__group {
    margin-top: 0;
  }
}
.p-flavors__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .p-flavors__list {
    grid-template-columns: 1fr;
  }
}
.p-flavors__item {
  list-style: none;
}
.p-flavors__card {
  position: relative;
  display: block;
  overflow: hidden;
  color: var(--color-bg);
}
.p-flavors__bg {
  position: relative;
  aspect-ratio: 335/272;
}
.p-flavors__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-flavors__content {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-top: 32px;
}
@media screen and (max-width: 768px) {
  .p-flavors__content {
    padding-top: min(14.6153846154%, 57px);
  }
}
.p-flavors__device {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: max(15.8974358974%, 62px);
}
.p-flavors__device img {
  display: block;
  width: 100%;
  height: auto;
}
.p-flavors__text {
  width: 100%;
  min-height: 42px;
  padding: 7px 10px 0;
  font-size: 1.2rem;
  line-height: 1.1;
  text-align: left;
}
.p-flavors__group--caffeine .p-flavors__text {
  background: url("../img/lp/flavors-text-bg-caffeine.png") no-repeat 50% 50%/100% auto, var(--color-bg);
}
.p-flavors__group--gaba .p-flavors__text {
  background: url("../img/lp/flavors-text-bg-gaba.png") no-repeat 50% 50%/100% auto, var(--color-bg);
}
.p-flavors__btnWrap {
  margin-top: 6rem;
}
.p-flavors__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 600px;
  min-height: 80px;
  padding: 14px 20px;
  margin: auto;
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  letter-spacing: 1rem;
  background: url("../img/lp/icon/arrow.svg") no-repeat calc(100% - 2rem) 50%/21px auto var(--color-black);
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  .p-flavors__btn {
    min-height: 56px;
    font-size: 1.8rem;
    background-size: 14px auto;
  }
}
.p-howto {
  padding: 0 0 60px;
}
@media screen and (max-width: 768px) {
  .p-howto {
    padding: 20px 20px 0;
  }
}
.p-howto {
  padding: 0 0 40px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, var(--color-bg)), to(transparent));
    background: linear-gradient(180deg, var(--color-bg) 0%, color-mix(in srgb, var(--color-bg) 20%, transparent) 100%);
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .p-howto .l-container {
    padding: 0 0 40px;
  }
}
.p-howto__head {
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-howto__head {
    margin-bottom: 14px;
  }
}
.p-howto__title {
  font-family: "Roboto", "Helvetica Neue", arial;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-howto__title {
    font-size: 2.4rem;
  }
}
.p-howto__sub {
  margin-top: 4px;
  font-size: 2rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-howto__sub {
    font-size: 1.6rem;
  }
}
.p-howto__kv {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-howto__kv {
    margin-bottom: 16px;
  }
}
.p-howto__kv img {
  display: block;
  width: 100%;
  height: auto;
}
.p-howto__list {
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .p-howto__list {
    padding: 0;
  }
}
.p-howto__item {
  display: grid;
  grid-template-columns: 1fr 335px;
  gap: 20px 40px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  padding: 20px 0;
  border-top: 2px solid #d9d9d9;
}
@media screen and (max-width: 768px) {
  .p-howto__item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px;
  }
}
.p-howto__item:nth-child(1) {
  border-top: none;
}
.p-howto__item:nth-child(even) {
  grid-template-columns: 300px 1fr;
}
@media screen and (max-width: 768px) {
  .p-howto__item:nth-child(even) {
    grid-template-columns: 1fr;
  }
}
.p-howto__item:nth-child(even) .p-howto__text {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
@media screen and (max-width: 768px) {
  .p-howto__item:nth-child(even) .p-howto__text {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.p-howto__item:nth-child(even) .p-howto__image {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
@media screen and (max-width: 768px) {
  .p-howto__item:nth-child(even) .p-howto__image {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
.p-howto__text {
  min-width: 0;
}
.p-howto__num {
  display: inline-block;
  padding-bottom: 2px;
  font-family: "Roboto", "Helvetica Neue", arial;
  font-size: 6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  border-bottom: 6px solid #BFD9D9;
}
@media screen and (max-width: 768px) {
  .p-howto__num {
    font-size: 3.6rem;
    border-bottom-width: 3px;
  }
}
.p-howto__desc {
  margin-top: 10px;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-howto__desc {
    margin-top: 8px;
    line-height: 1.5;
  }
}
.p-howto__image {
  width: 300px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .p-howto__image {
    margin: 0 auto;
  }
}
.p-howto__image img {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
}
.p-apply {
  padding: 40px 0 60px;
	border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .p-apply {
    padding: 0 0px;
    margin: 40px 0;
  }
}
.p-apply .l-container {
  background: #fff;
  border-radius: 10px;
}
.p-apply__head {
  margin-bottom: 20px;
  text-align: center;
}
.p-specialset__title ,.p-sticker__title
.p-flavor__head .p-apply__title,
.p-apply__head .p-apply__title,
.p-howto__head .p-howto__title,
.p-faq__head .p-faq__title,
.p-notes__head .p-notes__title {
  display: inline-block;
  background: linear-gradient(to right, transparent 0%, rgba(238, 223, 100, 0.65) 15%, rgba(238, 223, 100, 0.65) 85%, transparent 100%);
  padding: 2px 20px;
  margin: 20px 0 0;
}
@media screen and (max-width: 768px) {
  .p-apply__head {
    margin-bottom: 15px;
  }
}
.p-apply__title {
  font-family: "Roboto", "Helvetica Neue", arial;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.2;
}
.p-apply__toptitle {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .p-apply__title {
    font-size: 2.4rem;
  }
}
.p-apply__sub {
  margin-top: 4px;
  font-size: 2rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-apply__sub {
    font-size: 1.6rem;
  }
}
.p-apply__flow {
	font-weight: 600;
    text-align: center;
    line-height: 2;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .p-apply__flow {
    padding: 16px 12px;
  }
}
.p-apply__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
}
@media screen and (max-width: 768px) {
  .p-apply__step {
    grid-template-columns: 58px 1fr;
    gap: 12px;
  }
}
.p-apply__stepLabel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border: 1px solid var(--color-black);
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .p-apply__stepLabel {
    width: 58px;
    height: 58px;
  }
}
.p-apply__stepEn {
  margin-top: 4px;
  font-size: 1.6rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-apply__stepEn {
    font-size: 1.2rem;
  }
}
.p-apply__stepNum {
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .p-apply__stepNum {
    font-size: 2rem;
  }
}
.p-apply__stepBody {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: flex-start
}
.p-apply__stepBody div p a {
  cursor: pointer;
}
.p-apply__dateWrap {
  max-width: 91%;
	    margin: 0 auto 10px;
}
.p-apply__year {
  font-size: 1.4rem;
  line-height: 1;
}
.p-apply__dateLine {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  font-size: 1.8rem;
  align-items: flex-end;
}
.p-apply__reward {
  display: flex;
  gap: 40px;
  margin-top: 10px;
}
.p-apply__rewardtext, .p-apply__rewardimg {
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
.p-apply__rewardtext {
  align-items: end;
}
.p-apply__rewardtext span {
  background: #EACEB9;
  padding: 1.5px 3px;
}
.p-apply__rewardimg {
  align-items: flex-start;
}
.p-apply__rewardimg img {
  width: 220px;
  height: auto;
  display: block;
}
.p-apply__dateLine + .p-apply__dateLine {
  margin-top: 2px;
}
.p-apply__date {
  position: relative;
  font-size: 1.8rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-apply__date {
    font-size: 1.4rem;
  }
}
.p-apply__date .num {
  font-size: 4rem;
}
@media screen and (max-width: 768px) {
  .p-apply__date .num {
    font-size: 2rem;
  }
}
.p-apply__time {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .p-apply__time {
    font-size: 1.5rem;
  }
}
.p-apply__until {
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-apply__until {
    margin-left: -30%;
    flex: 0 0 auto;
  }
}
.p-apply__course {
  text-align: center;
}
.p-apply__courseBrand {
  font-size: 2.5rem;
  line-height: 1.7;
  text-align: center;
}
.p-apply__original {
  margin-top: 10px;
}
.p-apply__courseText {
  margin-top: 4px;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
}
.p-apply__courseBrand .p-apply__original {
  letter-spacing: 0.18em;
  background: #EACEB9;
  padding: 1.5px 0 1.5px 4px;
}
@media screen and (max-width: 768px) {
  .p-apply__courseText {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
.p-apply__courseNote {
  margin-top: 2px;
  font-size: 1.1rem;
  line-height: 1.5;
}
.p-apply__arrow {
  margin: 16px 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-apply__arrow {
    margin: 12px 0;
  }
}
.p-apply__arrow img {
  height: auto;
  margin: auto;
}
.p-apply__present {
  padding: 40px 0;
  margin-top: 40px;
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--color-bg)), color-stop(50%, color-mix(in srgb, #f5b2c3 50%, transparent)), to(var(--color-bg)));
  background: linear-gradient(to bottom, var(--color-bg) 0%, color-mix(in srgb, #f5b2c3 50%, transparent) 50%, var(--color-bg) 100%);
}
.p-apply__present .p-apply__arrow {
  position: relative;
  margin-bottom: -20px;
  -webkit-transform: translateY(-70px);
  -ms-transform: translateY(-70px);
  transform: translateY(-70px);
}
.p-apply__presentText {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-apply__presentText {
    font-size: 1.8rem;
  }
}
.p-apply__presentSample {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 18px;
}
@media screen and (max-width: 768px) {
  .p-apply__presentSample {
    display: block;
    margin-top: 14px;
  }
}
.p-apply__sampleList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-apply__sampleList {
    gap: 6px;
    margin-bottom: 10px;
  }
}
.p-apply__sampleItem {
  display: block;
  width: 52px;
  height: 86px;
  background: #ddd;
}
@media screen and (max-width: 768px) {
  .p-apply__sampleItem {
    width: 40px;
    height: 66px;
  }
}
.p-apply__sampleItem--tilt {
  -webkit-transform: rotate(-10deg);
  -ms-transform: rotate(-10deg);
  transform: rotate(-10deg);
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
}
.p-apply__sampleNote {
  font-size: 1.2rem;
  line-height: 1.7;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-apply__sampleNote {
    padding: 0 20px;
  }
}
.p-apply__gift {
  margin-top: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-apply__gift {
    margin-top: 18px;
  }
}
.p-apply__gift img {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  margin: 0 auto;
}
.p-productLineup {
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-productLineup {
    padding-bottom: 40px;
  }
}
.p-productLineup__inner {
  padding: 60px 20px;
  background: var(--color-bg);
}
@media screen and (max-width: 768px) {
  .p-productLineup__inner {
    padding: 40px 20px;
  }
}
.p-productLineup__head {
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-productLineup__head {
    margin-bottom: 18px;
  }
}
.p-productLineup__brand {
  font-family: "Roboto", "Helvetica Neue", arial;
  font-size: 3.2rem;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-productLineup__brand {
    font-size: 2rem;
  }
}
.p-productLineup__sub {
  margin-top: 6px;
  font-size: 2rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-productLineup__sub {
    font-size: 1.4rem;
  }
}
.p-productLineup__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-productLineup__list {
    gap: 10px;
  }
}
.p-productLineup__item {
  position: relative;
  width: 120px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-productLineup__item {
    width: 70px;
  }
}
.p-productLineup__item img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}
.p-productLineup__item::after {
  position: absolute;
  top: 70%;
  left: 70%;
  z-index: 1;
  width: 70%;
  height: 12px;
  content: "";
  background: rgba(0, 0, 0, 0.5);
  -webkit-filter: blur(6px);
  filter: blur(6px);
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .p-productLineup__item::after {
    top: 55%;
    height: 8px;
    -webkit-filter: blur(4px);
    filter: blur(4px);
  }
}
.p-productLineup__name {
  font-size: 1.2rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-productLineup__name {
    font-size: 0.9rem;
  }
}
.p-productLineup__name span {
  display: inline-block;
  font-family: "Roboto", "Helvetica Neue", arial;
  font-size: 1rem;
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .p-productLineup__name span {
    font-size: 0.8rem;
  }
}
.p-faq {
  padding: 0 0 60px;
}
@media screen and (max-width: 768px) {
  .p-faq {
    padding: 0 0 40px;
  }
}
.p-faq__head {
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-faq__head {
    margin-bottom: 16px;
  }
}
.p-faq__title {
  font-family: "Roboto", "Helvetica Neue", arial;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-faq__title {
    font-size: 2.4rem;
  }
}
.p-faq__sub {
  margin-top: 4px;
  font-size: 1.8rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-faq__sub {
    font-size: 1.1rem;
  }
}
.p-faq__item {
  margin-top: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--color-black) 10%, var(--color-white));
}
.p-faq__question {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px 0 8px;
  text-align: center;
  list-style: none;
  border-top: solid 1px var(--color-black);
  border-bottom: solid 1px var(--color-black);
}
@media screen and (max-width: 768px) {
  .p-faq__question {
    gap: 8px;
    padding: 14px 10px 10px;
  }
}
.p-faq__question::before {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  width: 14%;
  height: 12px;
  content: "";
  background: #b9d6d6;
}
@media screen and (max-width: 768px) {
  .p-faq__question::before {
    top: 40%;
    width: 22%;
  }
}
.p-faq__question::after {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: -1;
  width: 14%;
  height: 12px;
  content: "";
  background: #e7cdb9;
}
@media screen and (max-width: 768px) {
  .p-faq__question::after {
    top: 40%;
    width: 22%;
  }
}
.p-faq__question::-webkit-details-marker {
  display: none;
}
.p-faq__qMark {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-family: "Roboto", "Helvetica Neue", arial;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-faq__qMark {
    font-size: 2.2rem;
  }
}
.p-faq__questionText {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-faq__questionText {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.p-faq__answerWrap {
  display: block;
  background: var(--color-bg);
}
.p-faq__answer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 14px 0 20px;
}
@media screen and (max-width: 768px) {
  .p-faq__answer {
    gap: 8px;
    padding: 14px 10px 16px;
  }
}
.p-faq__aMark {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  min-width: 1em;
  margin-right: -0.5em;
  font-family: "Roboto", "Helvetica Neue", arial;
  font-size: 7rem;
  font-weight: 700;
  line-height: 1;
  color: color-mix(in srgb, var(--color-black) 10%, var(--color-white));
}
@media screen and (max-width: 768px) {
  .p-faq__aMark {
    font-size: 4rem;
  }
}
.p-faq__answerText {
  -ms-flex-item-align: center;
  align-self: center;
  font-size: 1.8rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-faq__answerText {
    font-size: 1.4rem;
    line-height: 1.7;
  }
}
.p-notes {
  padding: 0 0 60px;
}
@media screen and (max-width: 768px) {
  .p-notes {
    padding: 0 0 40px;
  }
}
.p-notes__inner {
  padding: 0px 20px 40px;
  background: var(--color-bg);
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .p-notes__inner {
        padding: 0px 20px 30px;
    border-radius: 6px;
  }
}
.p-notes__head {
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-notes__head {
    margin-bottom: 18px;
  }
}
.p-notes__title {
  font-family: "Roboto", "Helvetica Neue", arial;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-notes__title {
    font-size: 2.4rem;
  }
}
.p-notes__sub {
  margin-top: 4px;
  font-size: 2rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-notes__sub {
    font-size: 1.6rem;
  }
}
.p-notes__box {
  max-width: 640px;
  padding: 30px 20px;
  margin: 0 auto;
  background: var(--color-bg);
  border: 1px solid var(--color-black);
}
@media screen and (max-width: 768px) {
  .p-notes__box {
    padding: 18px 14px;
  }
}
.p-notes__list {
  display: grid;
  gap: 12px;
}
.p-notes__item {
  position: relative;
  padding-left: 1em;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-notes__item {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.p-notes__item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}
.p-purchase {
  padding: 0 0 60px;
}
@media screen and (max-width: 768px) {
  .p-purchase {
    padding: 0 20px 40px;
  }
}
.p-purchase .l-container {
  background: var(--color-bg);
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .p-purchase .l-container {
    border-radius: 6px;
  }
}
.p-purchase__inner {
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .p-purchase__inner {
    padding: 30px 0;
  }
}
.p-purchase__head {
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-purchase__head {
    margin-bottom: 18px;
  }
}
.p-purchase__title {
  font-family: "Roboto", "Helvetica Neue", arial;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-purchase__title {
    font-size: 2.4rem;
  }
}
.p-purchase__sub {
  margin-top: 4px;
  font-size: 2rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-purchase__sub {
    font-size: 1.6rem;
  }
}
.p-purchase__flow {
  padding: 28px 0;
  background: var(--color-bg);
  border: 1px solid var(--color-black);
}
@media screen and (max-width: 768px) {
  .p-purchase__flow {
    padding: 18px 12px;
  }
}
.p-purchase__step {
  display: grid;
  grid-template-columns: 1fr 236px;
  gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-purchase__step {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.p-purchase__step + .p-purchase__step {
  padding-top: 24px;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .p-purchase__step + .p-purchase__step {
    padding-top: 18px;
    margin-top: 18px;
  }
}
.p-purchase__step:nth-child(even) {
  grid-template-columns: 236px 1fr;
}
@media screen and (max-width: 768px) {
  .p-purchase__step:nth-child(even) {
    grid-template-columns: 1fr;
    padding-bottom: 20px;
    border-top: solid 1px color-mix(in srgb, var(--color-black) 10%, var(--color-white));
    border-bottom: solid 1px color-mix(in srgb, var(--color-black) 10%, var(--color-white));
  }
}
.p-purchase__step:nth-child(even) .p-purchase__text {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  .p-purchase__step:nth-child(even) .p-purchase__text {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding-right: 12px;
  }
}
.p-purchase__step:nth-child(even) .p-purchase__image {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
@media screen and (max-width: 768px) {
  .p-purchase__step:nth-child(even) .p-purchase__image {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
.p-purchase__step:nth-child(odd) .p-purchase__text {
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .p-purchase__step:nth-child(odd) .p-purchase__text {
    padding-left: 12px;
  }
}
.p-purchase__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  min-width: 0;
}
.p-purchase__label {
  display: grid;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--color-black);
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .p-purchase__label {
    width: 46px;
    height: 46px;
  }
}
.p-purchase__num {
  font-size: 2rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-purchase__num {
    font-size: 1.7rem;
  }
}
.p-purchase__body {
  min-width: 0;
}
.p-purchase__stepTitle {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-purchase__stepTitle {
    font-size: 1.6rem;
  }
}
.p-purchase__stepText {
  margin-top: 6px;
  font-size: 1.4rem;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .p-purchase__stepText {
    font-size: 1.3rem;
    line-height: 1.8;
  }
}
.p-purchase__image {
  width: 236px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .p-purchase__image {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }
}
.p-purchase__image img {
  display: block;
  width: 100%;
  height: auto;
}
.l-footer {
  padding: 32px 0;
  color: #fff;
  text-align: center;
  background: #000;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 24px 0;
  }
}
.l-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 14px;
}
@media screen and (max-width: 768px) {
  .l-footer__inner {
    gap: 10px;
  }
}
.l-footer__copy {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .l-footer__copy {
    font-size: 1rem;
  }
}
.l-footer__law {
  font-size: 1.2rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .l-footer__law {
    font-size: 1rem;
  }
}
.l-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .l-footer__nav {
    gap: 6px 12px;
  }
}
.l-footer__law a, .l-footer__item a {
  font-size: 1.2rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media screen and (max-width: 768px) {
  .l-footer__item a {
    font-size: 1rem;
  }
}
.p-notes__form a {
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  .sp_no {
    display: none;
  }
  .p-apply__step {
    padding-left: 5px;
    flex-direction: column;
    gap: 0;
  }
  .p-apply__course, .p-apply__until {
    margin-left: 0%;
  }
  .p-apply__flow .p-apply__step > * {
    margin-top: 10px;
    margin-left: 0px;
  }
  .p-apply__reward {
    flex-direction: column-reverse;
    gap: 10px;
    align-items: center;
  }
  .p-apply__date {
    font-size: 1.1rem;
  }
  .p-apply__courseBrand {
    font-size: 1.4rem;
  }
  .p-apply__flow {
    padding: 20px 10px;
  }
  .p-apply__course a {
    font-size: 1.5rem;
  }
}