@charset "UTF-8";

@font-face {
  font-style: bold;
  font-weight: bold;
  font-family: 'LINESeedJP';
  src: url('../font/LINESeedJP_OTF_Eb.woff');
}
/* -------------------------------------------
 リセットcss
------------------------------------------- */
*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizespeed;
}

img,
video,
canvas,
svg {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

ul,
ol {
  list-style: none;
}

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

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

fieldset,
legend {
  margin: 0;
  padding: 0;
  border: 0;
}

button {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

/* -------------------------------------------
 ベース
------------------------------------------- */
html {
  scroll-behavior: smooth;
}

body {
  color: #090a33;
  font-family: Roboto, sans-serif;
}

a:hover {
  opacity: 0.7;
}

/* -------------------------------------------
 共通パーツ
------------------------------------------- */
/* タイトル ------------------------------------------- */
/* ttl-primary */
.ttl-primary {
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.8;
  margin-inline: auto;
  text-box: trim-both text text;
}

@media (min-width: 769px) {
  .ttl-primary {
    font-weight: 600;
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .ttl-primary {
    font-weight: 700;
    font-size: 20px;
  }
}
/* ttl-secondary */
.ttl-secondary {
  width: -moz-fit-content;
  width: fit-content;
  background:
    no-repeat bottom left 0.1em/0.5em auto url(../images/bg-ttl-left.svg),
    no-repeat bottom right 0.1em/0.5em auto url(../images/bg-ttl-right.svg);
  color: #006aff;
  font-weight: 800;
  font-size: 40px;
  line-height: 1.8;
  padding-inline: 1.5em;
  margin-inline: auto;
  text-box: trim-both text text;
}

@media (min-width: 769px) {
  .ttl-secondary {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .ttl-secondary {
    font-size: min(6vw, 22px);
  }
  .ttl-secondary--sp-small {
    font-size: min(4.7vw, 22px);
  }
}
/* ttl-tertiary */
.ttl-tertiary {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: 0.3em 1em;
  border-radius: 999px;
  background: #f2f7ff;
  color: #2e59f4;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  text-box: trim-both text text;
}

@media (min-width: 769px) {
  .ttl-tertiary {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .ttl-tertiary {
    font-size: min(54vw, 16px);
  }
}
/* ボタン ------------------------------------------- */
/* btn-primary */
.btn-primary {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  background: rgb(46, 89, 244);
  color: rgb(255, 255, 255);
  font-weight: 700;
  line-height: 1.8;
}
.btn-primary::after {
  display: inline-block;
  width: 0.8em;
  height: 0.6em;
  margin-left: 0.5em;
  background: url('../images/icon-arrow-right-s-line-white.svg') center center/contain no-repeat;
  content: '';
}

@media (min-width: 769px) {
  .btn-primary {
    min-width: min(90%, 480px);
    min-height: 80px;
    padding: min(0.869vw, 8px) min(3.478vw, 32px) min(0.869vw, 8px) calc(min(3.478vw, 32px) + 0.8em);
    border-radius: min(0.869vw, 8px);
    box-shadow: rgb(8, 18, 108) 0 4px 0 0;
    font-size: min(4.347vw, 40px);
  }
}
@media (max-width: 768px) {
  .btn-primary {
    min-width: min(90%, 300px);
    min-height: 56px;
    padding: 4px 17px;
    border-radius: 4px;
    box-shadow: rgb(8, 18, 108) 0 2.16px 0 0;
    font-size: 18px;
  }
  .btn-primary::after {
    width: 0.6em;
    height: 0.8em;
  }
}
/* btn-secondary */
.btn-secondary {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 480px;
  min-height: 56px;
  padding: min(2.051vw, 8px);
  border: 4px solid #2e59f4;
  border-radius: 9999px;
  box-shadow: rgba(0, 0, 0, 0.2509803922) 0 4px 4px 0;
  background: #ffffff;
  color: #2e59f4;
  font-weight: 700;
  font-size: min(4.102vw, 16px);
  line-height: 1.8;
}

.btn-secondary::after {
  display: inline-block;
  width: 0.8em;
  height: 1em;
  margin-left: 1.2em;
  background: url('../images/icon-arrow-right-s-line-02.svg') center center/contain no-repeat;
  content: '';
}

.btn-secondary--disabled {
  border: #999999;
  box-shadow: none;
  background: #999999;
  color: #ffffff;
  pointer-events: none;
}
.btn-secondary--disabled::after {
  width: auto;
  height: auto;
  margin-left: 0;
  background: none;
  content: '準備中';
}

@media (min-width: 769px) {
  .btn-secondary {
    min-width: min(90%, 480px);
    min-height: 56px;
    padding: min(0.869vw, 8px) min(0.869vw, 8px) min(0.869vw, 8px) calc(min(0.869vw, 8px) + 0.8em);
    font-size: min(1.739vw, 16px);
  }
}
@media (max-width: 768px) {
  .btn-secondary {
    min-width: min(90%, 264px);
    min-height: 48px;
    padding: min(1.025vw, 4px) min(1.025vw, 4px) min(1.025vw, 4px) calc(min(1.025vw, 4px) + 0.8em);
    font-size: min(3.846vw, 15px);
  }
}
/* btn-tertiary */
.btn-tertiary {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: clamp(240px, 31.3vw, 340px);
  border-radius: 9999px;
  background: #ffdd00;
  color: #2e59f4;
  font-weight: 900;
  font-size: clamp(16px, 2.1vw, 20px);
  line-height: 1.8;
  padding-block: clamp(6px, 0.8vw, 14px);
  padding-inline-end: 1.2rem;
}

.btn-tertiary::after {
  position: absolute;
  top: 50%;
  right: 1.4rem;
  transform: translateY(-50%);
  width: 100%;
  width: 1em;
  height: 1px;
  height: 1em;
  margin-left: 1.2em;
  background: url('../images/icon-arrow-right-directing-blue.svg') center center/contain no-repeat;
  content: '';
}

@media (max-width: 769px) {
  .btn-tertiary--sp-width-100 {
    width: 100%;
  }
}
.btn-tertiary:hover {
  opacity: 0.8;
}

/* btn-quaternary */

.btn-quaternary {
  display: flex;
  width: 100%;
  max-width: 480px;
  min-height: 64px;
  padding: 8px 8px 8px 32px;
  justify-content: center;
  align-items: center;
  gap: 24px;
  border-radius: 999px;
  background: #2e59f4;
  color: #fff;
  font-family: Roboto;
  font-size: 1rem;
  font-weight: 700;
  line-height: 180%;
}

@media (max-width: 768px) {
  .btn-quaternary {
    max-width: 264px;
    min-height: 48px;
    padding: 4px 4px 4px 16px;
    gap: 12px;
    font-size: 0.9375rem;
  }
}

/* 注意書き ------------------------------------------- */
.attention-list {
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 400;
  line-height: 1.8;
  margin-inline: auto;
}

.attention:not(:last-child) {
  padding-bottom: 1em;
}

@media (min-width: 769px) {
  .attention-list {
    font-size: min(3.076vw, 12px);
  }
}
@media (max-width: 768px) {
  .attention-list {
    font-size: min(2.564vw, 10px);
  }
}
/* content ------------------------------------------- */
.content {
  width: 100%;
  padding-inline: max(5%, 16px);
}

.content--bg {
  background: rgba(0, 106, 255, 0.0509803922);
}

.content__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 920px;
  margin-inline: auto;
}

.content__inner--wide-width {
  width: 100%;
  max-width: none;
}

.content__header {
  display: flex;
  flex-direction: column;
}

.content__text-block {
  line-height: 1.8;
  letter-spacing: 0.005em;
  text-align: center;
}

.content__text-block--text-left {
  text-align: left;
}

.content__text-block--interval-large {
  letter-spacing: 0.19em;
}

.content__text {
  text-box: trim-both text text;
}

.content__text:not(:last-child) {
  padding-bottom: 1em;
}

.content__text--big-marker {
  width: -moz-fit-content;
  width: fit-content;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent calc(100% - 0.8em),
    #ffea00 calc(100% - 0.8em),
    #ffea00 calc(100% - 0.3em),
    transparent calc(100% - 0.3em),
    transparent 100%
  );
  color: #2e59f4;
  font-weight: 800;
  margin-inline: auto;
  text-box: none;
}

.content__text-bold {
  font-weight: 700;
}

.content__text-emphasis {
  color: #2e59f4;
  font-weight: 700;
  font-size: 1.5em;
}

@media (min-width: 769px) {
  .content__inner {
    gap: min(6.956vw, 64px);
    padding-block: min(9.782vw, 90px) min(10.869vw, 100px);
  }
  .content__header {
    gap: min(4.456vw, 41px);
  }
  .content__text-block {
    font-size: min(1.739vw, 16px);
  }
  .content__text-emphasis {
    font-size: min(2.608vw, 24px);
  }
  .content__text--big-marker {
    font-size: min(3.478vw, 32px);
  }
}
@media (max-width: 768px) {
  .content__inner {
    gap: min(8.974vw, 35px);
    padding-block: min(14.871vw, 58px) min(12.307vw, 48px);
  }
  .content__header {
    gap: min(6.41vw, 25px);
  }
  .content__text-block {
    font-size: min(3.589vw, 14px);
  }
  .content__text-emphasis {
    font-size: min(3.589vw, 14px);
  }
  .content__text--big-marker {
    font-size: min(4.1vw, 20px);
  }
}
/* -------------------------------------------
 header
------------------------------------------- */
#nav-toggle {
  display: none;
}

.header {
  display: flex;
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
}

.header::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  content: '';
}

.header__logo {
  display: block;
  position: relative;
  z-index: 9;
  height: 100%;
}

.header__logo-img {
  width: auto;
  max-width: 100%;
  height: 90%;
}

.header__login-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 9;
  width: 100%;
  color: #2e59f4;
  font-weight: 700;
  line-height: 1.8;
  font-family: Arial;
}

.nav__inner {
  display: flex;
}

.nav__link-list {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  gap: 20px;
}

.nav__link {
  height: 28px;
}

.nav__link-img {
  width: auto;
  height: 100%;
}

.nav__contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 769px) {
  .header {
    height: 80px;
    padding-inline: 48px;
    padding-block: 20px;
  }

  .nav__contents {
    display: none;
  }

  .header__login-btn {
    max-width: 158px;
    min-height: 40px;
    margin-left: 40px;
    border: 2px solid #2e59f4;
    border-radius: 8px;
    font-size: 16px;
  }

  .nav {
    display: flex;
    align-items: center;
    margin-left: auto;
  }
  .nav__menu-list {
    display: flex;
  }

  .nav__menu {
    padding-inline: 16px;
    color: #090a33;
    font-family: Roboto;
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1.8;
  }
}
@media (max-width: 768px) {
  .header {
    justify-content: space-between;
    height: 56px;
    padding-inline: 12px;
    padding-block: 10px;
  }

  .header::before {
    z-index: 2;
  }
  .header__logo-img {
    max-width: 174px;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .header__login-btn {
    max-width: 80px;
    min-height: 36px;
    border: 1.2px solid #2e59f4;
    border-radius: 4px;
    font-size: 14px;
  }
  .nav-hamburger {
    display: block;
    position: relative;
    z-index: 9;
    width: 36px;
    height: 36px;
  }
  .nav-hamburger::before,
  .nav-hamburger::after {
    content: '';
  }
  .nav-hamburger::before,
  .nav-hamburger::after,
  .nav-hamburger__line {
    position: absolute;
    left: 9px;
    width: 18px;
    height: 2px;
    background: #2e59f4;
    transition: 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .nav-hamburger::before {
    top: 10px;
  }
  .nav-hamburger__line {
    top: calc(50% - 1px);
  }
  .nav-hamburger::after {
    bottom: 10px;
  }
  #nav-toggle:checked ~ .nav-hamburger::before {
    top: calc(50% - 1px);
    transform: rotate(45deg);
  }
  #nav-toggle:checked ~ .nav-hamburger .nav-hamburger__line {
    opacity: 0;
  }
  #nav-toggle:checked ~ .nav-hamburger::after {
    top: calc(50% - 1px);
    transform: rotate(-45deg);
  }

  .nav {
    transform: translateY(-100%);
    transition: 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
    position: fixed;
    top: 56px;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100dvh;
    border-top: 1px solid #d9d9d9;
    background: #ffffff;
  }

  #nav-toggle:checked ~ .nav {
    transform: translateY(0px);
    pointer-events: all;
  }
  html:has(#nav-toggle:checked) {
    overflow: hidden;
  }

  .nav__inner {
    display: flex;
    flex-direction: column;
    max-height: 100%;
    padding-bottom: 5%;
    overflow: auto;
    gap: 32px;
  }

  .nav__menu-item {
    border-bottom: 1px solid #d9d9d9;
  }

  .nav__menu {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 64px;
    padding: 1em;
    color: #090a33;
    font-weight: 500;
    font-size: 14px;
  }

  .nav__menu::after {
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-left: auto;
    background: url('../images/icon-arrow-right-s-line-black.svg') center center/contain no-repeat;
    content: '';
  }
}
/* -------------------------------------------
 main-visual
------------------------------------------- */
.main-visual {
  background: #ffffff;
}

.main-visual__inner {
  position: relative;
  z-index: 1;
  max-width: 1556px;
  margin-inline: auto;
}

.main-visual__img-wrap {
  position: absolute;
  top: 0;
  z-index: -1;
}

.main-visual__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: right bottom;
  object-position: right bottom;
}

.main-visual__img-catch {
  position: absolute;
  top: 11%;
  right: 4.8%;
  color: #ffffff;
  font-weight: 800;
  font-size: min(1.968vw, 32px);
  line-height: 1.5;
  text-shadow: #2e59f4 0 0 8px;
  writing-mode: vertical-rl;
}

.main-visual__contents {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr;
}

.main-visual__up-date {
  color: #006aff;
  line-height: 1.5;
  font-weight: 600;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  background:
    no-repeat bottom left 0.1em/0.5em auto url(../images/bg-ttl-left.svg),
    no-repeat bottom right 0.1em/0.5em auto url(../images/bg-ttl-right.svg);
  padding-inline: 1.5em;
  margin-inline: auto;
  text-box: trim-both text text;
  letter-spacing: 0.1em;
}

.main-visual__catch {
  color: #090a33;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-box: text text;
}

.main-visual__catch-var01 {
  position: absolute;
  top: -9%;
  right: 4%;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 1rem;
  background-color: #fff301;
  color: #0f19c7;
  font-weight: 900;
  font-size: min(4.5vw, 35px);
  line-height: 1.5;
  font-family: 'LINESeedJP', sans-serif;
  text-align: center;
  text-box: text text;
}

.main-visual__catch-var02 {
  position: absolute;
  top: 2%;
  left: 10%;
  z-index: -1;
  width: clamp(180px, 45.6vw, 800px);
}

@media (max-width: 769px) {
  .main-visual__catch-var02 {
    top: 40%;
    right: 3%;
    left: unset;
    z-index: 1;
  }
}
.main-visual__catch-var03 {
  display: flex;
  flex-direction: row-reverse;
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
}

@media (max-width: 769px) {
  .main-visual__catch-var03 {
    display: none;
  }
}
.main-visual__catch-var03 p {
  color: #ffffff;
  font-family: 'LINESeedJP', sans-serif;
}

.main-visual__catch-var03-main-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-visual__catch-var03-main-row {
  font-size: 1.5em;
}

.main-visual__catch-var03-main-column {
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.main-visual__catch-var03-main {
  font-weight: 900;
  font-size: clamp(20px, 2.9vw, 45px);
  text-shadow:
    rgb(46, 89, 244) 8px 0 0,
    rgb(46, 89, 244) 7.93758px 0.997398px 0,
    rgb(46, 89, 244) 7.7513px 1.97923px 0,
    rgb(46, 89, 244) 7.44406px 2.93018px 0,
    rgb(46, 89, 244) 7.02066px 3.8354px 0,
    rgb(46, 89, 244) 6.4877px 4.68078px 0,
    rgb(46, 89, 244) 5.85351px 5.45311px 0,
    rgb(46, 89, 244) 5.12797px 6.14035px 0,
    rgb(46, 89, 244) 4.32242px 6.73177px 0,
    rgb(46, 89, 244) 3.44941px 7.21814px 0,
    rgb(46, 89, 244) 2.52258px 7.59188px 0,
    rgb(46, 89, 244) 1.55638px 7.84714px 0,
    rgb(46, 89, 244) 0.565898px 7.97996px 0,
    rgb(46, 89, 244) -0.433417px 7.98825px 0,
    rgb(46, 89, 244) -1.42597px 7.87189px 0,
    rgb(46, 89, 244) -2.39627px 7.63269px 0,
    rgb(46, 89, 244) -3.32917px 7.27438px 0,
    rgb(46, 89, 244) -4.21013px 6.80256px 0,
    rgb(46, 89, 244) -5.02539px 6.22459px 0,
    rgb(46, 89, 244) -5.76223px 5.54948px 0,
    rgb(46, 89, 244) -6.40915px 4.78778px 0,
    rgb(46, 89, 244) -6.95606px 3.95136px 0,
    rgb(46, 89, 244) -7.39442px 3.05329px 0,
    rgb(46, 89, 244) -7.71739px 2.10757px 0,
    rgb(46, 89, 244) -7.91994px 1.12896px 0,
    rgb(46, 89, 244) -7.9989px 0.132735px 0,
    rgb(46, 89, 244) -7.95304px -0.865561px 0,
    rgb(46, 89, 244) -7.78307px -1.85035px 0,
    rgb(46, 89, 244) -7.49165px -2.80627px 0,
    rgb(46, 89, 244) -7.08333px -3.71839px 0,
    rgb(46, 89, 244) -6.56448px -4.57249px 0,
    rgb(46, 89, 244) -5.94318px -5.35524px 0,
    rgb(46, 89, 244) -5.22915px -6.05442px 0,
    rgb(46, 89, 244) -4.43352px -6.65912px 0,
    rgb(46, 89, 244) -3.5687px -7.15991px 0,
    rgb(46, 89, 244) -2.6482px -7.54898px 0,
    rgb(46, 89, 244) -1.68637px -7.82024px 0,
    rgb(46, 89, 244) -0.698222px -7.96947px 0,
    rgb(46, 89, 244) 0.300817px -7.99434px 0,
    rgb(46, 89, 244) 1.29516px -7.89446px 0,
    rgb(46, 89, 244) 2.2693px -7.67139px 0,
    rgb(46, 89, 244) 3.20802px -7.32862px 0,
    rgb(46, 89, 244) 4.09668px -6.87148px 0,
    rgb(46, 89, 244) 4.92142px -6.30711px 0,
    rgb(46, 89, 244) 5.66936px -5.64432px 0,
    rgb(46, 89, 244) 6.32883px -4.89346px 0,
    rgb(46, 89, 244) 6.88954px -4.06623px 0,
    rgb(46, 89, 244) 7.34274px -3.17555px 0,
    rgb(46, 89, 244) 7.68136px -2.23532px 0,
    rgb(46, 89, 244) 7.90012px -1.26021px 0,
    rgb(46, 89, 244) 7.9956px -0.265434px 0;
}

.main-visual__catch-var03-sub {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding-bottom: 1rem;
  font-weight: 900;
  font-size: clamp(16px, 2.3vw, 32px);
  text-indent: -3.5rem;
  text-shadow:
    rgb(46, 89, 244) 6px 0 0,
    rgb(46, 89, 244) 5.91686px 0.995377px 0,
    rgb(46, 89, 244) 5.66974px 1.96317px 0,
    rgb(46, 89, 244) 5.2655px 2.87655px 0,
    rgb(46, 89, 244) 4.71532px 3.71022px 0,
    rgb(46, 89, 244) 4.03447px 4.44106px 0,
    rgb(46, 89, 244) 3.24181px 5.04883px 0,
    rgb(46, 89, 244) 2.35931px 5.51667px 0,
    rgb(46, 89, 244) 1.41143px 5.83163px 0,
    rgb(46, 89, 244) 0.424423px 5.98497px 0,
    rgb(46, 89, 244) -0.574341px 5.97245px 0,
    rgb(46, 89, 244) -1.55719px 5.79441px 0,
    rgb(46, 89, 244) -2.49688px 5.45578px 0,
    rgb(46, 89, 244) -3.36738px 4.96596px 0,
    rgb(46, 89, 244) -4.14455px 4.33852px 0,
    rgb(46, 89, 244) -4.80686px 3.59083px 0,
    rgb(46, 89, 244) -5.33596px 2.74364px 0,
    rgb(46, 89, 244) -5.71718px 1.8204px 0,
    rgb(46, 89, 244) -5.93995px 0.84672px 0,
    rgb(46, 89, 244) -5.99811px -0.150428px 0,
    rgb(46, 89, 244) -5.89004px -1.14341px 0,
    rgb(46, 89, 244) -5.61874px -2.1047px 0,
    rgb(46, 89, 244) -5.19172px -3.00766px 0,
    rgb(46, 89, 244) -4.62082px -3.82727px 0,
    rgb(46, 89, 244) -3.92186px -4.54081px 0,
    rgb(46, 89, 244) -3.11421px -5.12852px 0,
    rgb(46, 89, 244) -2.22026px -5.57409px 0,
    rgb(46, 89, 244) -1.26477px -5.86518px 0,
    rgb(46, 89, 244) -0.274238px -5.99373px 0,
    rgb(46, 89, 244) 0.723898px -5.95617px 0,
    rgb(46, 89, 244) 1.70197px -5.75355px 0,
    rgb(46, 89, 244) 2.63288px -5.39147px 0,
    rgb(46, 89, 244) 3.49082px -4.87998px 0,
    rgb(46, 89, 244) 4.25202px -4.23324px 0,
    rgb(46, 89, 244) 4.89538px -3.46919px 0,
    rgb(46, 89, 244) 5.40307px -2.60899px 0,
    rgb(46, 89, 244) 5.76102px -1.67649px 0,
    rgb(46, 89, 244) 5.95932px -0.697531px 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.main-visual__logo {
  margin-inline: auto;
}

.main-visual__lead {
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.2em;
  text-align: center;
  text-box: text text;
}

.main-visual__point-list {
  display: flex;
}

.main-visual__point {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5em 0.5em 0.5em;
  border-radius: 9999px;
  box-shadow: rgba(0, 0, 0, 0.2509803922) 0 4px 4px 0;
  background: linear-gradient(#111ec9 0%, #275beb 100%);
  color: #ffffff;
  font-weight: 600;
  aspect-ratio: 1/1;
}

.main-visual__point--secondary {
  background: #f4382e;
}

.main-visual__point-text {
  line-height: 1.1;
}

.main-visual__emphasis {
  color: #fff301;
}

.main-visual__point-text--emphasis {
  font-weight: 800;
}
.main-visual__point-text--emphasis .main-visual__emphasis {
  font-size: 2.75em;
}

.main-visual__release-date {
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 0.1em;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent calc(100% - 0.4em),
    #ffea00 calc(100% - 0.4em),
    #ffea00 100%
  );
  font-weight: 700;
  line-height: 1;
  text-align: center;
  font-feature-settings: 'palt';
  margin-inline: auto;
}

.main-visual__release-date-emphasis {
  color: #006aff;
}

.main-visual__point-text--emphasis-small .main-visual__emphasis {
  font-size: 2.36em;
}

@media (min-width: 769px) {
  .main-visual__inner {
    padding-top: 2%;
  }
  .main-visual__img-wrap {
    right: 11.6%;
    width: 58.8%;
    height: 100%;
  }
  .main-visual__contents {
    justify-content: center;
    width: 33%;
    padding-block: min(2.551vw, 74px);
    gap: min(2.029vw, 33px);
    aspect-ratio: 33/41;
  }

  .main-visual__up-date {
    font-size: min(1.25vw, 24px);
  }

  .main-visual__catch {
    font-size: min(2.5vw, 30px);
  }
  .main-visual__catch-var01 {
    top: 3%;
    right: 11%;
  }
  .main-visual__logo {
    width: min(90%, 434px);
    margin-inline: auto;
  }
  .main-visual__lead {
    font-size: min(1.2vw, 16px);
  }
  .main-visual__point-list {
    position: absolute;
    bottom: 8%;
    left: 38%;
    width: min(37%, 624px);
    gap: min(0.984vw, 16px);
  }
  .main-visual__point {
    font-size: min(1vw, 22px);
  }
  .main-visual__point-text {
    font-size: min(1.5vw, 22px);
  }
  .main-visual__point-text--emphasis {
    font-size: min(1.9vw, 32px);
  }
  .main-visual__release-date {
    font-size: min(2.826vw, 26px);
  }
  .main-visual__release-date-emphasis {
    font-size: min(4.347vw, 40px);
  }
}
@media (max-width: 768px) {
  .main-visual__inner {
    position: relative;
    padding-top: 46vw;
  }
  .main-visual__img-wrap {
    right: 0;
    width: 100%;
    height: auto;
  }
  .main-visual__img-catch {
    display: none;
  }
  .main-visual__contents {
    position: relative;
    width: 95%;
    border-radius: 12px;
    background: #ffffff;
    margin-inline: auto;
    padding-block: min(6.923vw, 27px);
    gap: min(6.923vw, 27px);
  }

  .main-visual__up-date {
    font-size: min(4.102vw, 16px);
  }
  .main-visual__catch {
    font-size: min(5.5vw, 20px);
  }
  .main-visual__logo {
    width: min(85%, 300px);
    margin-inline: auto;
  }
  .main-visual__lead {
    font-size: min(3vw, 13px);
  }
  .main-visual__point-list {
    width: min(90%, 345px);
    margin-inline: auto;
    gap: min(1.794vw, 7px);
  }
  .main-visual__point {
    font-size: min(4vw, 14px);
  }
  .main-visual__point-text {
    font-size: min(3.2vw, 14px);
  }
  .main-visual__point-text--emphasis {
    font-size: min(4.771vw, 19px);
  }
  .main-visual__release-date {
    margin-top: 0.2em;
    font-size: min(4.871vw, 19px);
    grid-row: 5/6;
  }
  .main-visual__release-date-emphasis {
    font-size: min(7.692vw, 30px);
  }
}
/*registration-btn ------------------------------------------ */
.registration-btn-area__lead {
  width: -moz-fit-content;
  width: fit-content;
  color: #2e59f4;
  font-weight: 600;
  margin-inline: auto;
}

.registration-btn-area__btn {
  margin-inline: auto;
}

@media (min-width: 769px) {
  .registration-btn-area {
    display: flex;
    flex-direction: column;
    gap: min(2.5vw, 32px);
  }
  .registration-btn-area__lead {
    border-top: 7px double;
    border-bottom: 7px double;
    font-size: min(2.3vw, 32px);
    line-height: 1.8;
  }
  .registration-btn-area__btn {
    min-height: auto;
    font-size: min(2.5vw, 40px);
  }
}
@media (max-width: 768px) {
  .registration-btn-area:not(.registration-btn-area--none-btn) {
    position: relative;
    padding-top: 0.5em;
    font-size: min(3vw, 12px);
  }
  .registration-btn-area__lead:not(.registration-btn-area__lead--none-btn) {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid;
    border-radius: 999px;
    background: #ffffff;
    font-size: 1em;
    padding-inline: 1.8em;
  }
  .registration-btn-area__lead--none-btn {
    border-top: 7px double;
    border-bottom: 7px double;
    font-size: min(6.153vw, 24px);
    line-height: 1.8;
  }
  .registration-btn-area__btn {
    padding-top: 1em;
    font-size: min(4.2vw, 18px);
  }
}
/* -------------------------------------------
 follow-btn
------------------------------------------- */
/*follow-btn-sp------------------------------------------ */
.follow-btn-sp {
  display: flex;
  flex-direction: column;
  position: sticky;
  /* top: calc(100% - min(27vw, 104px)); */
  bottom: 0;
  z-index: 10;
  padding-bottom: min(6vw, 12px);
  gap: min(6vw, 12px);
}
.follow-btn-sp::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 70%;
  background: #f2f7ff;
  content: '';
}

@media (min-width: 769px) {
  .follow-btn-sp {
    display: none;
  }
}
/* 表示 */
.js-follow-btn-sp {
  opacity: 1;
  position: fixed;
  transform: translateY(0);
  width: 100%;
  transition: all 0.5s;
}

.js-follow-btn-sp--hide {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s;
}

/*follow-btn-pc------------------------------------------ */
.follow-btn-pc {
  position: fixed;
  right: 47px;
  bottom: 22px;
  z-index: 10;
  min-width: min(90%, 168px);
  min-height: 77px;
  padding: min(2.051vw, 8px) min(8.205vw, 32px);
  box-shadow: rgba(0, 0, 0, 0.2509803922) 0 4px 4px 0;
  font-size: 24px;
}
.follow-btn-pc::after {
  display: none;
}

@media (max-width: 768px) {
  .follow-btn-pc {
    display: none;
  }
}
/* 表示 */
.js-follow-btn-pc {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s;
}

.js-follow-btn-pc--hide {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s;
}

/* -------------------------------------------
 trouble-list
------------------------------------------- */
.trouble-list {
  display: flex;
}

@media (min-width: 769px) {
  .trouble-list {
    gap: min(3vw, 32px);
  }
}
@media (max-width: 768px) {
  .trouble-list {
    flex-direction: column;
    gap: min(5vw, 50px);
  }
}
/* -------------------------------------------
 balloon-card
------------------------------------------- */
.balloon-card {
  display: flex;
  flex: 1;
  justify-content: center;
  position: relative;
  position: relative;
  z-index: 1;
}
.balloon-card::before {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 100%;
  background: #ffffff;
  content: '';
}

.balloon-card__ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #2e59f4;
  font-weight: 800;
  line-height: 1;
}

.balloon-card__ttl-emphasis {
  color: #f4382e;
}

.balloon-card__inner {
  display: flex;
  flex-direction: column;
  /* flex: 0 0 auto; */
  align-items: flex-end;
  padding: min(5.8vw, 50px) min(1.4vw, 20px) min(1.4vw, 20px);
  gap: min(1.4vw, 20px);
}

.balloon-card__img {
  width: 100%;
  aspect-ratio: 178/129;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: bottom center;
  object-position: bottom center;
}

.balloon-card__text-block {
  width: 100%;
  font-weight: 600;
  font-size: min(1.8vw, 16px);
  line-height: 1.6;
  text-align: center;
}

@media (min-width: 769px) {
  .balloon-card {
    padding-top: min(1.4vw, 20px);
  }
  .balloon-card::before {
    top: min(1.4vw, 20px);
    height: calc(100% - min(1.4vw, 20px));
    border-radius: 12px;
  }
  .balloon-card__ttl {
    position: absolute;
    top: 0;
    width: 85%;
    padding-bottom: 4%;
    background: no-repeat center center/contain url(../images/bg-balloon.svg);
    font-size: min(1.7vw, 18px);
    aspect-ratio: 240/56;
  }
  .balloon-card__inner {
    padding: min(5.8vw, 50px) min(1.4vw, 20px) min(1.4vw, 20px);
  }
}
@media (max-width: 768px) {
  .balloon-card::before {
    bottom: 0;
    height: calc(100% - min(4.5vw, 50px));
    border-radius: 8px;
  }
  .balloon-card__ttl {
    position: absolute;
    left: 0;
    width: 72%;
    padding-bottom: 2%;
    background: no-repeat center center/contain url(../images/bg-balloon-sp.svg);
    font-size: min(4vw, 26px);
    aspect-ratio: 202/33;
  }
  .balloon-card__inner {
    flex-direction: row-reverse;
    padding: min(1.4vw, 20px) 0 0;
  }
  .balloon-card__img-block {
    width: 34%;
  }
  .balloon-card__text-block {
    flex: 1;
    padding: max(4vw, 40px) min(1.4vw, 20px) min(1.4vw, 20px);
    font-size: min(3.8vw, 26px);
    text-align: left;
  }
  .balloon-card__text {
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}
/* -------------------------------------------
 link-banner
------------------------------------------- */
.link-banner {
  border: 2px solid #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.5019607843);
}

/* -------------------------------------------
 notice-point
------------------------------------------- */
.notice-point {
  display: flex;
  flex-direction: column;
  color: #090a33;
}

.notice-point__item {
  display: flex;
  flex-direction: column;
}
.notice-point__item:not(:last-child) {
  border-bottom: 1px solid #b9b9b9;
}

.notice-point__header {
  display: flex;
  flex-direction: column;
}

.ttl-numbering {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  margin-inline: auto;
  text-box: trim-both text text;
}

.ttl-numbering--left {
  margin-inline: unset;
}

.ttl-numbering__number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  border-radius: 999px;
  background: #2e59f4;
  color: #ffffff;
  font-weight: 700;
  line-height: 1;
}

.ttl-numbering__number--var01 {
  background: #ffffff;
  color: #2e59f4;
}

.ttl-numbering__inner {
  text-align: center;
  text-box: trim-both text text;
}

.ttl-numbering__text-emphasis {
  color: #2e59f4;
}

.notice-img-block {
  width: 90%;
  max-width: 720px;
  margin-inline: auto;
}

.notice-point__detail {
  display: flex;
  flex-direction: column;
}

.ttl-numbering__text-large {
  font-size: 1.5em;
}

.ttl-numbering__text-x-large {
  font-size: 2em;
}

@media (min-width: 769px) {
  .notice-point {
    gap: min(6.956vw, 64px);
  }
  .notice-point__item {
    gap: min(5.434vw, 50px);
  }
  .notice-point__item:not(:last-child) {
    padding-bottom: min(6.956vw, 64px);
  }
  .notice-point__header {
    gap: min(3.26vw, 30px);
  }
  .ttl-numbering {
    font-size: min(3.478vw, 32px);
    line-height: 1.2;
    gap: 0.8em;
  }
  .ttl-numbering__number {
    font-size: min(3.478vw, 32px);
  }
  .notice-point__detail {
    gap: min(1.739vw, 16px);
  }
  .ttl-numbering__text-large--sp,
  ttl-numbering__text-x-large--sp {
    font-size: 1em;
  }
}
@media (max-width: 768px) {
  .notice-point {
    gap: min(8.205vw, 32px);
  }
  .notice-point__item {
    gap: min(8.205vw, 32px);
  }
  .notice-point__item:not(:last-child) {
    padding-bottom: min(8.205vw, 32px);
  }
  .ttl-numbering {
    flex-direction: column;
    font-size: 20px;
    line-height: 1.4;
    gap: 1em;
  }
  .ttl-numbering--row {
    flex-direction: row;
  }
  .notice-point__header {
    gap: min(8.974vw, 35px);
  }
  .ttl-numbering__number {
    font-size: min(5.641vw, 22px);
  }
  .notice-point__detail {
    gap: 16px;
  }
  .ttl-numbering__text-large--pc,
  .ttl-numbering__text-x-large--pc {
    font-size: 1em;
  }
}
.notice-point-container-round {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  border-radius: clamp(14px, 1.8vw, 20px);
  background-color: #2e59f4;
  gap: clamp(10px, 2.6vw, 30px);
  padding-block: clamp(20px, 2.6vw, 60px);
  padding-inline: clamp(26px, 3.4vw, 78px);
}
.notice-point-container-round::before {
  position: absolute;
  right: -4%;
  bottom: -10%;
  z-index: -1;
  width: 26.75rem;
  background-image: url(../images/picture-book.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
  aspect-ratio: 475/444;
}

@media (max-width: 769px) {
  .notice-point-container-round::before {
    top: 2%;
    right: -2%;
    bottom: unset;
    width: 11rem;
  }
}
.notice-point-container-round {
  text-box: trim-both text text;
}

.notice-point-container-round__title {
  color: #ffffff;
  font-weight: 800;
  text-shadow:
    3px 3px 0 #2e59f4,
    -3px 3px 0 #2e59f4,
    3px -3px 0 #2e59f4,
    -3px -3px 0 #2e59f4,
    3px 0 0 #2e59f4,
    0 3px 0 #2e59f4,
    -3px 0 0 #2e59f4,
    0 -3px 0 #2e59f4;
}

.notice-point-container-round__text-large {
  color: #fff301;
  font-weight: 800;
  font-size: clamp(30px, 3.9vw, 80px);
  line-height: 1.4;
  text-shadow:
    3px 3px 0 #2e59f4,
    -3px 3px 0 #2e59f4,
    3px -3px 0 #2e59f4,
    -3px -3px 0 #2e59f4,
    3px 0 0 #2e59f4,
    0 3px 0 #2e59f4,
    -3px 0 0 #2e59f4,
    0 -3px 0 #2e59f4;
}

.notice-point-container-round__text {
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(12px, 1.6vw, 18px);
  line-height: 1.8;
}

/* -------------------------------------------
 store-list
------------------------------------------- */
.store-list-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2509803922);
  background: #ffffff;
  align-items: center;
}

.store-list {
  display: grid;
  width: 100%;
  max-width: 777px;
  margin-inline: auto;
  grid-template-columns: repeat(4, 1fr);
}

.store-list__img {
  width: 100%;
  height: auto;
  aspect-ratio: 17/7;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.store-list-wrap .btn-secondary {
  margin-inline: auto;
}

@media (min-width: 769px) {
  .store-list-wrap {
    padding: min(4.891vw, 45px) min(3.695vw, 34px);
    border-radius: min(2.173vw, 20px);
    gap: min(5.434vw, 50px);
  }
  .store-list {
    gap: min(4.13vw, 38px) min(6.847vw, 63px);
  }
}
@media (max-width: 768px) {
  .store-list-wrap {
    padding: min(6.923vw, 27px);
    border-radius: min(1.538vw, 6px);
    gap: min(5.384vw, 21px);
  }
  .store-list {
    gap: min(3.846vw, 15px) min(5.128vw, 20px);
  }
}
/* -------------------------------------------
 course
------------------------------------------- */
:root {
  --curse-tab-btn-bg: #f4382e;
  --course-tab-btn-text: #ffff;
  --curse-tab-batch-bg: #ffffff;
  --course-tab-batch-text: #f4382e;
  --course-batch-w: min(10.217vw, 94px);
}

.course {
  width: 100%;
  max-width: 743px;
  margin-inline: auto;
}

.course__tab-area {
  display: flex;
  align-items: flex-end;
}

.course__tab-btn {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0.2em 0.5em;
  background: var(--curse-tab-btn-bg);
  color: var(--course-tab-btn-text);
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
}
.course__tab-btn:hover {
  opacity: 0.7;
}

.course__tab-btn--cooperation {
  --curse-tab-btn-bg: #f4382e;
  --course-tab-batch-text: #f4382e;
}

.course__tab-btn--omakase {
  --course-tab-batch-text: #2e59f4;
  --curse-tab-btn-bg: #2e59f4;
}

.course__tab-btn-batch {
  margin-right: 0.5em;
  border-radius: 999px;
  background: var(--curse-tab-batch-bg);
  color: var(--course-tab-batch-text);
  font-weight: bold;
  line-height: 1;
}

.course__tab-btn-batch--cooperation {
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--course-batch-w);
  background: #fff301;
  font-weight: bold;
  aspect-ratio: 1/1;
}

[name='course-tab'] {
  display: none;
}

.course__content {
  display: none;
}

.course__tab:checked + .course__content {
  display: block;
}

@media (min-width: 769px) {
  .course {
    padding-top: calc(var(--course-batch-w) / 3);
    padding-left: calc(var(--course-batch-w) / 2);
  }
  .course__tab-area {
    gap: min(0.54vw, 5px);
  }
  .course__tab-btn {
    min-height: 64px;
    border-radius: min(2.17vw, 20px) min(2.17vw, 20px) 0 0;
    font-size: min(2.39vw, 22px);
  }
  .course__tab-btn-batch {
    padding: 0.5em 0.8em;
    font-size: 1.74;
  }
  .course__tab-btn-batch--cooperation {
    position: absolute;
    top: calc(var(--course-batch-w) / 3 * -1);
    left: calc(var(--course-batch-w) / 2 * -1);
    font-size: min(2.608vw, 24px);
  }
  .course__tab-area:has(~ #course-tab-cooperation:checked) [for='course-tab-cooperation'],
  .course__tab-area:has(~ #course-tab-omakase:checked) [for='course-tab-omakase'] {
    min-height: 80px;
  }
}
@media (max-width: 768px) {
  :root {
    --course-batch-w: min(12.307vw, 48px);
  }
  .course__tab-area {
    gap: 1px;
  }
  .course__tab-btn {
    min-height: 48px;
    border-radius: min(2.82vw, 11px) min(2.82vw, 11px) 0 0;
    font-size: min(3.589vw, 14px);
  }
  .course__tab-btn-batch {
    padding: 0.3em 0.5em;
    font-size: min(3.333vw, 13px);
  }
  course__tab-btn-batch--cooperation {
    font-size: min(3.589vw, 14px);
  }
  .course__tab-area:has(~ #course-tab-cooperation:checked) [for='course-tab-cooperation'],
  .course__tab-area:has(~ #course-tab-omakase:checked) [for='course-tab-omakase'] {
    min-height: 64px;
  }
}
/* course-table ------------------------------------------- */
:root {
  --course-table-border: #f4382e;
  --course-table-emphasis: #f4382e;
  --course-table-ttl-bg: #ff716a;
  --course-table-ttl-text: #ffffff;
  --course-table-item-bg: #fff4f4;
}

.course-table {
  display: grid;
  background: var(--course-table-border);
  gap: 1px;
}

.course-table--cooperation {
  --course-table-border: #f4382e;
  --course-table-emphasis: #f4382e;
  --course-table-ttl-bg: #ff716a;
  --course-table-item-bg: #fff4f4;
}

.course-table--omakase {
  --course-table-border: #2e59f4;
  --course-table-emphasis: #2e59f4;
  --course-table-ttl-bg: #6b8bff;
  --course-table-item-bg: #f2f7ff;
}

.course-table__item,
.course-table__content {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  color: #090a33;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.course-table__item--bg {
  background: var(--course-table-item-bg);
}

.course-table__content--emphasis {
  color: var(--course-table-emphasis);
  font-weight: bold;
}

.course-table__content--row2 {
  grid-row: 2 span;
}

.course-table__content--row3 {
  grid-row: 4 span;
}

.course-table__content--row4 {
  grid-row: 4 span;
}

.course-table__text-marker {
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent calc(100% - 0.6em),
    #ffea00 calc(100% - 0.6em),
    #ffea00 calc(100% - 0.3em),
    transparent calc(100% - 0.3em),
    transparent 100%
  );
}

.course-table__ttl {
  padding: 0.5em 0.5em;
  background: var(--course-table-ttl-bg);
  color: var(--course-table-ttl-text);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  grid-column: 2 span;
}

@media (min-width: 769px) {
  .course-table {
    border: 4px solid var(--course-table-border);
    grid-template-columns: 259px auto;
  }
  .course-table__item,
  .course-table__content {
    padding: 1em;
  }
  .course-table__item {
    font-size: min(1.739vw, 16px);
  }
  .course-table__content {
    font-size: min(2.173vw, 20px);
  }
  .course-table__text-large {
    font-size: min(5.217vw, 48px);
  }
  .course-table__text-unit {
    font-size: min(4.347vw, 40px);
  }
  .course-table__ttl {
    font-size: min(1.739vw, 16px);
  }
}
@media (max-width: 768px) {
  .course-table {
    border: 2px solid var(--course-table-border);
    grid-template-columns: repeat(2, 1fr);
  }
  .course-table__item,
  .course-table__content {
    padding: 0.8em;
    font-size: min(3.589vw, 14px);
  }
  .course-table__text-large,
  .course-table__text-unit {
    font-size: min(9.23vw, 36px);
  }
  .course-table__ttl {
    font-size: min(3.076vw, 12px);
  }
}
/* -------------------------------------------
 provision-service
------------------------------------------- */
.provision-service {
  max-width: 95vw;
  overflow: auto;
}

@media (min-width: 769px) {
  .provision-service {
    padding-top: min(2.564vw, 10px);
  }
}
@media (max-width: 768px) {
  .provision-service {
    padding-top: min(1.282vw, 5px);
  }
}
/* service-list ------------------------------------------- */
@media (min-width: 769px) {
  .service-list {
    display: grid;
    padding: 5px;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px 20px;
  }
}
@media (max-width: 768px) {
  .service-list {
    display: flex;
    width: -moz-max-content;
    width: max-content;
    padding: 5px;
    gap: 5vw;
  }
}
/* service-card ------------------------------------------- */
.service-card {
  display: flex;
  flex-direction: column;
}

.service-card--preparing {
  position: relative;
  overflow: hidden;
}
.service-card--preparing::after {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5137254902);
  color: #ffffff;
  font-weight: bold;
  content: '後日実装予定';
}

.service-card__icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  background: #f2f7ff;
  margin-inline: auto;
}

.service-card__icon {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.service-card__info {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.service-card__detail {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.4;
  text-align: center;
  text-box: trim-both text text;
}

.service-card__course {
  width: 85%;
  padding: 0.5em 1em;
  border-radius: 999px;
  background: #f2f7ff;
  color: #2e59f4;
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  margin-inline: auto;
}

@media (min-width: 769px) {
  .service-card {
    padding: 15% 1% 8%;
    border-radius: min(1.304vw, 12px);
    box-shadow: rgba(0, 0, 0, 0.25) 0 0 8px 0;
    gap: min(2.173vw, 20px);
  }
  .service-card--preparing {
    font-size: min(2.173vw, 20px);
  }
  .service-card__info {
    font-size: min(1.739vw, 16px);
  }
  .service-card__detail {
    min-height: 2.8em;
    font-size: min(1.739vw, 16px);
  }
  .service-card__course {
    font-size: 12px;
  }
  .service-card__icon-wrap {
    width: 50%;
    padding: 14%;
    aspect-ratio: 1/1;
  }
}
@media (max-width: 768px) {
  .service-card {
    width: 40vw;
    padding: 1% 0.5% 1%;
    border-radius: 8px;
    box-shadow: 0 0 5.52px 0 rgba(0, 0, 0, 0.2509803922);
    gap: min(4.102vw, 16px);
  }
  .service-card--preparing {
    font-size: min(3.589vw, 14px);
  }
  .service-card__info {
    justify-content: center;
    height: 100%;
    font-size: min(3.333vw, 13px);
  }
  .service-card__detail {
    min-height: 4.2em;
    font-size: min(3.333vw, 13px);
  }
  .service-card__course {
    font-size: min(2.051vw, 8px);
  }
  .service-card__icon-wrap {
    width: 22vw;
    height: 22vw;
    padding: 5vw;
  }
}
/* -------------------------------------------
 registration-method
------------------------------------------- */
/* registration-method ------------------------------------------- */
@media (min-width: 769px) {
  .registration-method {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: min(2.173vw, 20px);
  }
}
@media (max-width: 768px) {
  .registration-method {
    display: flex;
    flex-direction: column;
    gap: min(3.589vw, 14px);
  }
}
/* process-card ------------------------------------------- */
:root {
  --process-card-border: #00b39f;
  --process-card-ttl-text: #ffffff;
  --process-card-ttl-bg: #00b39f;
  --process-card-icon-bg: #e2f9f6;
  --process-card-to-do-bg: #e2f9f6;
  --process-card-to-do-text: #00b39f;
  --process-card-text: #00b39f;
}

.process-card {
  overflow: hidden;
}

.process-card--secondary {
  --process-card-border: #2e59f4;
  --process-card-ttl-text: #ffffff;
  --process-card-ttl-bg: #2e59f4;
  --process-card-icon-bg: #f2f7ff;
  --process-card-to-do-bg: #f2f7ff;
  --process-card-to-do-text: #2e59f4;
  --process-card-text: #2e59f4;
}

.process-card__ttl {
  padding: 0.3em 0.5em;
  background: var(--process-card-ttl-bg);
  color: var(--process-card-ttl-text);
  font-weight: bold;
  line-height: 1.8;
  text-align: center;
}

.process-card__inner {
  display: flex;
  flex-direction: column;
  padding: 5% 3%;
}

.process-card__figure {
  display: flex;
  justify-content: center;
  align-items: center;
}

.process-card__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  box-sizing: border-box;
  background: var(--process-card-icon-bg);
  aspect-ratio: 1/1;
}

.process-card__to-do {
  display: flex;
  flex-direction: column;
}

.process-card__to-do-item {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 5em;
  padding: 0.3em 0.5em 0.3em 0.1em;
  color: var(--process-card-to-do-text);
  font-weight: bold;
  line-height: 1;
}
.process-card__to-do-item::before {
  display: block;
  clip-path: polygon(0% 0%, calc(100% - 0.5em) 0%, 100% 50%, calc(100% - 0.5em) 100%, 0% 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: var(--process-card-to-do-bg);
  content: '';
}
.process-card__to-do-item:not(:last-of-type) {
  margin-bottom: calc(1em + min(0.543vw, 5px));
}
.process-card__to-do-item:not(:last-of-type)::after {
  display: block;
  position: absolute;
  top: calc(100% + min(0.543vw, 5px));
  left: 0;
  width: 100%;
  font-weight: 500;
  font-size: 1em;
  line-height: 1;
  text-align: center;
  content: '+';
}

.process-card__to-do-icon {
  display: inline-block;
  width: 1em;
  margin-right: 0.3em;
}

.process-card__detail {
  color: var(--process-card-text);
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}

@media (min-width: 769px) {
  .process-card {
    border: 4px solid var(--process-card-border);
    border-radius: min(1.086vw, 10px);
  }
  .process-card__ttl {
    font-size: min(2.608vw, 24px);
  }
  .process-card__inner {
    gap: min(2.173vw, 20px);
  }
  .process-card__figure {
    gap: min(1.521vw, 14px);
  }
  .process-card__icon {
    width: min(10.76vw, 99px);
    padding: 5%;
  }
  .process-card__to-do {
    gap: min(0.543vw, 5px);
  }
  .process-card__to-do-item {
    font-size: min(1.956vw, 18px);
  }
  .process-card__to-do-item:not(:last-of-type) {
    margin-bottom: calc(1em + min(0.543vw, 5px));
  }
  .process-card__to-do-item:not(:last-of-type)::after {
    top: calc(100% + min(0.543vw, 5px));
  }
  .process-card__detail {
    font-size: min(2.173vw, 20px);
  }
}
@media (max-width: 768px) {
  .process-card {
    border: 3px solid var(--process-card-border);
    border-radius: min(1.794vw, 7px);
  }
  .process-card__ttl {
    font-size: min(4.615vw, 18px);
  }
  .process-card__inner {
    gap: min(3.589vw, 14px);
  }
  .process-card__figure {
    gap: min(2.82vw, 11px);
  }
  .process-card__icon {
    width: min(19.23vw, 75px);
    padding: min(5%, 20px);
  }
  .process-card__to-do {
    gap: min(1.282vw, 5px);
  }
  .process-card__to-do-item {
    font-size: min(4.102vw, 16px);
  }
  .process-card__to-do-item:not(:last-of-type) {
    margin-bottom: calc(1em + min(1.282vw, 5px));
  }
  .process-card__to-do-item:not(:last-of-type)::after {
    top: calc(100% + min(1.282vw, 5px));
  }
  .process-card__detail {
    font-size: min(4.102vw, 16px);
  }
}
/* -------------------------------------------
 conclusion-delivery
------------------------------------------- */
/* conclusion-delivery ------------------------------------------- */
.conclusion-delivery {
  display: flex;
  flex-direction: column;
  padding: 4%;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2509803922);
}

.conclusion-delivery__text-block {
  font-weight: 700;
  text-align: center;
  text-align: center;
}

.conclusion-delivery__text:not(:last-child) {
  padding-bottom: 1em;
}

@media (min-width: 769px) {
  .conclusion-delivery {
    border-radius: min(1.086vw, 10px);
    gap: min(7.692vw, 30px);
  }
  .conclusion-delivery__text-block {
    font-size: min(2.173vw, 20px);
    line-height: 1.2;
  }
}
@media (max-width: 768px) {
  .conclusion-delivery {
    border-radius: min(2.564vw, 10px);
    gap: min(4.102vw, 16px);
  }
  .conclusion-delivery__text-block {
    font-size: min(4.102vw, 16px);
    line-height: 1.8;
  }
}
/* conclusion-delivery-list ------------------------------------------- */
.conclusion-delivery-list {
  display: grid;
  margin-inline: auto;
}

.conclusion-delivery-list__item {
  padding-left: 1.3em;
  background: no-repeat left center/1em url(../images/icon-check-box.svg);
}

@media (min-width: 769px) {
  .conclusion-delivery-list {
    width: 80%;
    grid-template-columns: repeat(4, 1fr);
    gap: min(8.152vw, 75px);
  }
  .conclusion-delivery-list__item {
    font-size: min(2.173vw, 20px);
  }
}
@media (max-width: 768px) {
  .conclusion-delivery-list {
    width: 95%;
    grid-template-columns: repeat(3, 1fr);
    gap: min(2.564vw, 10px);
  }
  .conclusion-delivery-list__item {
    font-size: min(4.102vw, 16px);
  }
}
/* -------------------------------------------
 payment-schedule
------------------------------------------- */
.payment-schedule {
  border-radius: min(1.086vw, 10px);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2509803922);
  gap: 1px;
}

.payment-schedule-item {
  display: flex;
}

.payment-schedule-item__date {
  padding: 0.5em 1em;
  background: #006aff;
  color: #ffffff;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

.payment-schedule-item__detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #00b39f;
  color: #ffffff;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  gap: 0.3em;
}

.payment-schedule-item__detail--secondary {
  background: #e8e8e8;
  color: #7c7c7c;
}

.payment-schedule-item__text--small {
  font-weight: 500;
}

.payment-schedule-item__emphasis {
  color: #fff301;
}

@media (min-width: 769px) {
  .payment-schedule {
    display: grid;
    padding: min(5.217vw, 48px);
    grid-template-columns: repeat(3, 1fr);
  }
  .payment-schedule-item {
    flex-direction: column;
    gap: min(1.521vw, 14px);
  }
  .payment-schedule-item__date {
    font-size: min(2.173vw, 20px);
  }
  .payment-schedule-item__detail {
    clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%);
    min-height: 152px;
    padding-right: 15%;
    font-size: min(2.173vw, 20px);
  }
  .payment-schedule-item__text--small {
    font-size: min(1.739vw, 16px);
  }
}
@media (max-width: 768px) {
  .payment-schedule {
    display: flex;
    flex-direction: column;
    padding: min(8.205vw, 32px);
  }
  .payment-schedule-item {
    gap: min(3.589vw, 14px);
  }
  .payment-schedule-item__date {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 4.5em;
    font-size: min(3.589vw, 14px);
  }
  .payment-schedule-item__detail {
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 2em), 50% 100%, 0% calc(100% - 2em));
    width: 100%;
    min-height: 10em;
    box-sizing: border-box;
    font-size: min(4.102vw, 16px);
    padding-block: 1em 2em;
  }
  .payment-schedule-item__text--small {
    font-size: min(3.589vw, 14px);
  }
  .payment-schedule-item__writing {
    writing-mode: vertical-rl;
  }
}
/* -------------------------------------------
 faq
------------------------------------------- */
/* faq-list ------------------------------------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: min(1.086vw, 10px);
}

@media (min-width: 769px) {
  .faq-list {
    gap: min(1.086vw, 10px);
  }
}
@media (max-width: 768px) {
  .faq-list {
    gap: max(1.086vw, 10px);
  }
}
/* faq-item ------------------------------------------- */
.faq-item {
  display: flex;
  flex-direction: column;
}

.faq-item__ttl {
  display: flex;
  align-items: center;
  background: #ffffff;
}
.faq-item__ttl::before {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  align-items: center;
  width: 1.6em;
  margin-right: 1em;
  padding-bottom: 0.1em;
  border-radius: 999px;
  background: #2e59f4;
  color: #ffffff;
  font-weight: 600;
  font-size: min(2.173vw, 20px);
  line-height: 1;
  content: 'Q';
  aspect-ratio: 1/1;
}
.faq-item__ttl::after {
  display: block;
  flex: 0 0 auto;
  width: 1em;
  margin-left: auto;
  background: no-repeat center center/contain url(../images/icon-minus-black.svg);
  content: '';
  aspect-ratio: 1/1;
}

.faq-item__ttl-inner {
  align-items: center;
  font-weight: 500;
  line-height: 1.2;
}

.faq-item__answer {
  display: flex;
  align-items: flex-start;
  box-sizing: border-box;
}
.faq-item__answer::before {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  align-items: center;
  width: 1.6em;
  margin-right: 1em;
  border-radius: 999px;
  background: #ffffff;
  color: #2e59f4;
  font-weight: 600;
  line-height: 1;
  content: 'A';
  aspect-ratio: 1/1;
}

.faq-item__answer-inner {
  padding-top: 0.2em;
  font-weight: 500;
  line-height: 1.8;
}

@media (min-width: 769px) {
  .faq-item {
    gap: min(1.086vw, 10px);
  }
  .faq-item__ttl {
    min-height: min(7.608vw, 70px);
    padding: min(0.543vw, 5px) min(2.391vw, 22px);
    border-radius: 999px;
    font-size: min(1.739vw, 16px);
  }
  .faq-item__ttl::before {
    padding-right: 0.08em;
    padding-bottom: 0.1em;
    font-size: min(2.173vw, 20px);
  }
  .faq-item__ttl::after {
    margin-right: 1.8em;
  }
  .faq-item__answer-wrap {
    padding-top: min(2.826vw, 26px);
    padding-bottom: min(6.521vw, 60px);
    padding-left: min(2.391vw, 22px);
  }
  .faq-item__answer::before {
    font-size: min(2.173vw, 20px);
  }
  .faq-item__answer-inner {
    font-size: min(1.739vw, 16px);
  }
  .faq-item__text-indent {
    display: inline-block;
    padding-left: 2em;
  }
  .faq-item__text-bold {
    font-weight: 700;
  }
  .faq-item__answer-text:not(:last-child, .faq-item__answer-text--none-padding) {
    padding-bottom: 1.8em;
  }
}
@media (max-width: 768px) {
  .faq-item {
    gap: min(2.564vw, 10px);
  }
  .faq-item__ttl {
    min-height: min(20.512vw, 80px);
    padding: min(1.282vw, 5px) min(5.641vw, 22px);
    border-radius: min(2.564vw, 10px);
    font-size: min(3.846vw, 15px);
  }
  .faq-item__ttl::before {
    padding-top: 0.1em;
    padding-right: 0.03em;
    font-size: min(4.102vw, 16px);
  }
  .faq-item__answer-wrap {
    padding-top: min(5.641vw, 22px);
    padding-bottom: min(8.205vw, 32px);
    padding-left: min(5.641vw, 22px);
  }
  .faq-item__answer::before {
    font-size: min(4.102vw, 16px);
  }
  .faq-item__answer-inner {
    font-size: min(3.846vw, 15px);
  }
  .faq-item__answer-text:not(:last-child) {
    padding-bottom: 1.8em;
  }
}
/* アコーディオン ------------------------------------------- */
.js-faq .faq-item__answer-wrap {
  display: grid;
  transition:
    0.5s grid-template-rows ease,
    0.5s padding-block ease;
  grid-template-rows: 1fr;
}

.js-faq .faq-item__ttl {
  cursor: pointer;
}
.js-faq .faq-item__ttl::after {
  transition: 0.5s all ease;
}

.js-faq--close .faq-item__answer-wrap {
  grid-template-rows: 0fr;
  padding-block: 0;
}

.js-faq--close .faq-item__answer {
  overflow: hidden;
}

.js-faq--close .faq-item__ttl::after {
  transform: rotate(1turn);
  background: no-repeat center center/contain url(../images/icon-plus-black.svg);
}

/* -------------------------------------------
 comic
------------------------------------------- */
/* comic-content ------------------------------------------- */
.comic-content {
  display: flex;
  flex-direction: column;
}

.comic-content__header {
  display: flex;
  flex-direction: column;
}

@media (min-width: 769px) {
  .comic-content {
    gap: min(5.434vw, 50px);
  }
  .comic-content__header {
    gap: min(2.173vw, 20px);
  }
}
@media (max-width: 768px) {
  .comic-content {
    gap: min(7.692vw, 30px);
  }
  .comic-content__header {
    gap: min(5.128vw, 20px);
  }
}
/* comic-writer-name ------------------------------------------- */
.comic-writer-name {
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.2em;
  text-align: center;
  text-box: text text;
}

@media (min-width: 769px) {
  .comic-writer-name {
    font-size: min(2.173vw, 20px);
  }
}
@media (max-width: 768px) {
  .comic-writer-name {
    font-size: min(3.589vw, 14px);
  }
}
/* comic-list ------------------------------------------- */
.comic-list {
  display: flex;
  flex-direction: column;
  max-width: 700px;
  margin-inline: auto;
}

@media (min-width: 769px) {
  .comic-list {
    gap: min(3.804vw, 35px);
  }
}
@media (max-width: 768px) {
  .comic-list {
    gap: min(8.205vw, 32px);
  }
}
/* -------------------------------------------
 text-content
------------------------------------------- */
.text-content {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  color: #000000;
}

.text-content__block:not(:last-child) {
  border-bottom: 1px solid #999999;
}

.text-content__ttl {
  line-height: 1.2;
  text-box: trim-both text text;
}

.text-content__secondary-ttl {
  padding-bottom: 1em;
  font-weight: 800;
  line-height: 1.64;
  text-box: trim-both text text;
}

.text-content__tertiary-ttl {
  font-weight: 600;
  line-height: 1.6;
  text-indent: 1em;
}

.text-content__tertiary-ttl--p-top {
  padding-top: 1.8em;
}

.text-content__sentence {
  font-weight: 400;
  line-height: 1.6;
  text-indent: 1em;
}

.text-content__sentence--p-top {
  padding-top: 1.8em;
}

.text-content__sentence--p-bottom {
  padding-bottom: 1.8em;
}

.text-content__number-list,
.text-content__list {
  padding-left: 2em;
  font-weight: 400;
  line-height: 1.6;
}

.text-content__number-list {
  list-style-type: decimal;
}

.text-content__list {
  list-style-type: disc;
}

.text-content__link {
  color: #2e59f4;
  font-weight: 400;
  line-height: 1.6;
  text-decoration: underline;
  text-indent: 1em;
  word-break: break-word;
}

@media (min-width: 769px) {
  .text-content {
    padding: 56px 45px 31px;
    gap: 32px;
  }
  .text-content__block:not(:last-child) {
    padding-bottom: 24px;
  }
  .text-content__ttl {
    font-weight: 800;
    font-size: 24px;
  }
  .text-content__secondary-ttl {
    font-size: 18px;
  }
  .text-content__tertiary-ttl {
    font-size: 15px;
  }
  .text-content__sentence {
    font-size: 15px;
  }
  .text-content__number-item,
  .text-content__item {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .text-content {
    padding: 32px 24px 32px;
    grid: 26px;
  }
  .text-content__block:not(:last-child) {
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
  .text-content__ttl {
    font-weight: 700;
    font-size: 24px;
  }
  .text-content__secondary-ttl {
    font-size: 18px;
  }
  .text-content__tertiary-ttl {
    font-size: 15px;
  }
  .text-content__sentence {
    font-size: 15px;
  }
  .text-content__number-item,
  .text-content__item {
    font-size: 15px;
  }
}

/* -------------------------------------------
 stores-container
------------------------------------------- */
.stores-container {
  display: flex;
  width: 98%;
  max-width: 1000px;
  box-sizing: border-box;
  margin-inline: auto;
  padding: 64px;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  border-radius: 20px;
  background: #fff;
}

@media (max-width: 768px) {
  .stores-container {
    padding: 40px 16px;
  }
}

/* -------------------------------------------
 stores-logo-list
------------------------------------------- */
.stores-logo-list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  gap: 16px 32px;
  flex-wrap: wrap;
}

.stores-logo-list__item {
  width: fit-content;
  height: 60px;
}

.stores-logo-list__img {
  display: block;
  height: 100%;
  width: auto;
}

@media (max-width: 768px) {
  .stores-logo-list {
    gap: 8px 32px;
  }

  .stores-logo-list__item {
    height: 40px;
  }
}

/* -------------------------------------------
 stores-list
------------------------------------------- */
.stores-list-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
      width: 95%;
}

@media (max-width: 768px) {
  .stores-list-wrap {
    gap: 24px;
  }
}

.stores-list {
  display: grid;
  row-gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}

.stores-list__item {
  color: #090a33;
  text-align: center;
  font-family: Roboto;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 130%;
}

@media (max-width: 768px) {
  .stores-list {
    display: grid;
    row-gap: 10px;
    grid-template-columns: 1fr;
    padding-inline: 32px;
  }

  .stores-list__item {
    text-align: left;
  }
}

.stores-list-footer__text {
  color: #090a33;
  text-align: center;
  font-family: Roboto;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 130%;
}

/* -------------------------------------------
 footer
------------------------------------------- */
/* signup-announce ------------------------------------------- */
.signup-announce {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.signup-announce__lead-container {
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.signup-announce__lead:not(:last-child) {
  padding-bottom: 1em;
}

.signup-announce__attention {
  font-weight: 400;
  line-height: 1.8;
}

@media (min-width: 769px) {
  .signup-announce {
    gap: 32px;
  }
  .signup-announce__lead-container {
    font-size: 32px;
  }
  .signup-announce__attention {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .signup-announce {
    gap: 24px;
  }
  .signup-announce__lead-container {
    font-size: 20px;
  }
  .signup-announce__attention {
    font-size: 10px;
  }
}
/* related-service ------------------------------------------- */
.related-service {
  background: #006aff;
}

.related-service__ttl {
  color: #ffffff;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.related-service__logo-link {
  display: block;
  width: 50%;
  max-width: 252px;
  margin-inline: auto;
}

@media (min-width: 769px) {
  .related-service__inner {
    gap: min(4.347vw, 40px);
    padding-block: min(8.478vw, 78px);
  }
  .related-service__ttl {
    font-size: min(4.347vw, 40px);
  }
}
@media (max-width: 768px) {
  .related-service__ttl {
    font-size: 20px;
  }
}
/* footer-nav ------------------------------------------- */
.footer-nav {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  gap: 2em;
  margin-inline: auto;
  padding-block: 2em;
}

.footer-nav__icon-img {
  width: auto;
  height: 2em;
}

@media (min-width: 769px) {
  .footer-nav {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .footer-nav {
    flex-direction: column;
    font-size: 12px;
  }
}
/* footer-copyright ------------------------------------------- */
.footer-copyright {
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 350;
  margin-inline: auto;
  padding-block: 1em max(5%, 2em);
}

@media (min-width: 769px) {
  .footer-copyright {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .footer-copyright {
    font-size: 12px;
  }
}
/* -------------------------------------------
 ユーキリティ
------------------------------------------- */
.u-letter-space-small {
  letter-spacing: -0.1em;
}

/* -------------------------------------------
 アニメーション対応
------------------------------------------- */
.animation-float {
  transform: translate(-50%, -50%);
  animation-name: fuwafuwa;
  animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@media (max-width: 768px) {
  .animation-float--pc {
    transform: none;
    animation-name: none;
  }
}
@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0px);
  }
  100% {
    transform: translate(0, -15px);
  }
}
/* -------------------------------------------
 レスポンシブ対応
------------------------------------------- */
@media (min-width: 769px) {
  .sp {
    display: none;
  }
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
}
