@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 390px) {
  html {
    font-size: 4.1025641026vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.25vw;
  }
}
@media (min-width: 1280px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
/* グローバル基盤 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-x: hidden;
}

*, *::before, *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

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

/* Make images easier to work with */
img, svg, video, canvas, iframe, picture {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: initial;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  word-break: break-all;
}

button {
  color: inherit;
  padding-block: 0;
  padding-inline: 0;
  text-align: justify;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

/* telリンクの下線＆青色を消す（共通） */
a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
  /* アクセシビリティ：フォーカス可視 */
}
a[href^="tel:"]:hover, a[href^="tel:"]:active, a[href^="tel:"]:focus {
  text-decoration: none;
}
a[href^="tel:"]:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* 念のためのiOS系強制上書き（必要な場合のみ） */
@supports (-webkit-touch-callout: none) {
  a[href^="tel:"] {
    color: inherit !important;
    text-decoration: none !important;
  }
}
a[href^="tel:"] {
  pointer-events: none;
  text-decoration: none;
}
@media (hover: none) and (pointer: coarse) {
  a[href^="tel:"] {
    pointer-events: auto;
    color: inherit;
    text-decoration: underline;
  }
}

/* まず、必要な要素には明確なフォーカスリングを付ける */
:where(a, button, input, select, textarea, summary, [role=button], [role=link]):focus-visible {
  outline: 3px solid #23a5ff;
  outline-offset: 2px;
}

/* スクロール用に一時的に tabindex="-1" を付けた見出し/セクションはリングを消す */
:where(h1, h2, h3, h4, h5, h6, section, article, main, div)[id][tabindex="-1"]:focus-visible {
  outline: none;
}

/* 長い文字列の折返し徹底 */
:where(p, li, dd, td, th, figcaption, .c-text, .richtext) {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ------------------------------
    スクロールアニメーション
------------------------------ */
*[data-scroll], *[data-load] {
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  --gap: 100ms;
}
@media screen and (min-width: 768px) {
  *[data-scroll], *[data-load] {
    --gap: 300ms;
  }
}
*[data-scroll][data-scroll-delay="1"], *[data-load][data-scroll-delay="1"] {
  -webkit-transition-delay: calc(var(--gap) * 1);
          transition-delay: calc(var(--gap) * 1);
}
*[data-scroll][data-scroll-delay="2"], *[data-load][data-scroll-delay="2"] {
  -webkit-transition-delay: calc(var(--gap) * 2);
          transition-delay: calc(var(--gap) * 2);
}
*[data-scroll][data-scroll-delay="3"], *[data-load][data-scroll-delay="3"] {
  -webkit-transition-delay: calc(var(--gap) * 3);
          transition-delay: calc(var(--gap) * 3);
}
*[data-scroll][data-scroll-delay="4"], *[data-load][data-scroll-delay="4"] {
  -webkit-transition-delay: calc(var(--gap) * 4);
          transition-delay: calc(var(--gap) * 4);
}
*[data-scroll][data-scroll-delay="5"], *[data-load][data-scroll-delay="5"] {
  -webkit-transition-delay: calc(var(--gap) * 5);
          transition-delay: calc(var(--gap) * 5);
}
*[data-scroll][data-scroll-delay="6"], *[data-load][data-scroll-delay="6"] {
  -webkit-transition-delay: calc(var(--gap) * 6);
          transition-delay: calc(var(--gap) * 6);
}
*[data-scroll][data-scroll-delay="7"], *[data-load][data-scroll-delay="7"] {
  -webkit-transition-delay: calc(var(--gap) * 7);
          transition-delay: calc(var(--gap) * 7);
}
*[data-scroll][data-scroll-delay="8"], *[data-load][data-scroll-delay="8"] {
  -webkit-transition-delay: calc(var(--gap) * 8);
          transition-delay: calc(var(--gap) * 8);
}
*[data-scroll][data-scroll-delay="9"], *[data-load][data-scroll-delay="9"] {
  -webkit-transition-delay: calc(var(--gap) * 9);
          transition-delay: calc(var(--gap) * 9);
}
*[data-scroll][data-scroll-delay="10"], *[data-load][data-scroll-delay="10"] {
  -webkit-transition-delay: calc(var(--gap) * 10);
          transition-delay: calc(var(--gap) * 10);
}

*[data-scroll].scroll-show, *[data-load].scroll-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

*[data-scroll=fadein-top], *[data-load=fadein-top] {
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}

*[data-scroll=title01], *[data-load=title01] {
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}

.l-inner {
  width: 100%;
  max-width: 27.5rem;
  padding-inline: 1.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 76.875rem;
    padding-inline: 1.5625rem;
  }
}

.l-main {
  overflow: hidden;
  margin-top: -1px;
}
.c-cta {
  margin-inline: auto;
  width: 19.375rem;
  display: block;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
@media (hover: hover) {
  .c-cta:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
  .c-cta:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .c-cta {
    width: 33.125rem;
  }
}
.c-cta__ctaBalloon {
  text-align: center;
  font-family: "M PLUS 2", sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.14;
  width: 4.125rem;
  height: 1.8125rem;
  border-radius: 4rem;
  background: #ffffff;
  background: #FFF;
  -webkit-filter: drop-shadow(0 0 1.00775rem rgba(0, 0, 0, 0.15));
          filter: drop-shadow(0 0 1.00775rem rgba(0, 0, 0, 0.15));
  display: grid;
  place-content: center;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-cta__ctaBalloon {
    font-size: 1.0295625rem;
    line-height: 1.33;
    width: 6.6216875rem;
    height: 2.9878125rem;
    border-radius: 6.4601875rem;
  }
}
.c-cta__ctaBalloon::before {
  content: "";
  display: block;
  background: #ffffff;
  background: #FFF;
  -webkit-filter: drop-shadow(0 0 1.00775rem rgba(0, 0, 0, 0.15));
          filter: drop-shadow(0 0 1.00775rem rgba(0, 0, 0, 0.15));
  width: 0.6875rem;
  height: 0.625rem;
  position: absolute;
  bottom: -0.375rem;
  left: 50%;
  translate: -50% 0;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}
@media screen and (min-width: 768px) {
  .c-cta__ctaBalloon::before {
    width: 1.125rem;
    height: 1rem;
    bottom: -0.75rem;
  }
}
.c-cta__btn {
  display: grid;
  place-content: center;
  color: #FFF;
  text-align: center;
  font-family: "M PLUS 2", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.3888888889;
  border-radius: 4.25rem;
  background: #ED7B36;
  -webkit-box-shadow: -0.3023125rem -0.3023125rem 0.7558125rem 0 rgba(0, 0, 0, 0.25) inset, 0.2678125rem 0.2678125rem 0.503875rem 0 rgba(255, 255, 255, 0.2) inset;
          box-shadow: -0.3023125rem -0.3023125rem 0.7558125rem 0 rgba(0, 0, 0, 0.25) inset, 0.2678125rem 0.2678125rem 0.503875rem 0 rgba(255, 255, 255, 0.2) inset;
  width: 100%;
  height: 5.0625rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: -0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-cta__btn {
    height: 8.125rem;
    border-radius: 6.8681875rem;
    -webkit-box-shadow: -0.4845rem -0.4845rem 1.2113125rem 0 rgba(0, 0, 0, 0.25) inset, 0.42925rem 0.42925rem 0.8075rem 0 rgba(255, 255, 255, 0.2) inset;
            box-shadow: -0.4845rem -0.4845rem 1.2113125rem 0 rgba(0, 0, 0, 0.25) inset, 0.42925rem 0.42925rem 0.8075rem 0 rgba(255, 255, 255, 0.2) inset;
    font-size: 1.9380625rem;
    line-height: 1.33;
    margin-top: -1.875rem;
  }
}

.c-titleEn {
  display: block;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 3.212375rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.09;
  background: -webkit-gradient(linear, left top, right top, from(#0084D0), to(#8CC11F));
  background: linear-gradient(90deg, #0084D0 0%, #8CC11F 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  mix-blend-mode: plus-darker;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-titleEn {
    font-size: 6.25rem;
    line-height: 1.09;
  }
}
.c-titleJa {
  display: block;
  color: #363636;
  font-family: "M PLUS 2", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .c-titleJa {
    font-size: 2rem;
    line-height: 1.75;
    margin-top: 1.5rem;
  }
}

/* =========================================================
   LP Header
   ======================================================= */
.p-lpHeader {
  width: 100%;
  border-bottom: solid 0.125rem #363636;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  .p-lpHeader {
    display: grid;
    place-content: center;
    border-bottom: unset;
    width: 36.6875rem;
    height: 8.125rem;
    left: auto;
    right: -1.5rem;
  }
}
.p-lpHeader::before {
  content: "";
  display: block;
  background: #ffffff;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
@media screen and (min-width: 768px) {
  .p-lpHeader::before {
    -webkit-filter: blur(0.625rem);
            filter: blur(0.625rem);
  }
}
.p-lpHeader__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 4.1875rem;
  padding: 1.1875rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.1875rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-lpHeader__inner {
    height: 4.75rem;
    padding: 1.1875rem 0.723625rem 1.1875rem 1.25rem;
  }
}
.p-lpHeader__brand--onecareer {
  width: 8rem;
}
@media screen and (min-width: 768px) {
  .p-lpHeader__brand--onecareer {
    width: 11rem;
  }
}
.p-lpHeader__brand--adobe {
  width: 9.3125rem;
}
@media screen and (min-width: 768px) {
  .p-lpHeader__brand--adobe {
    width: 12.8125rem;
  }
}
.p-lpHeader__with {
  width: 1.5313125rem;
}
@media screen and (min-width: 768px) {
  .p-lpHeader__with {
    width: 2.0625rem;
  }
}

.p-lpFooter__cta {
  padding-block: 2.5rem;
  background: #F6F6F6;
}
@media screen and (min-width: 768px) {
  .p-lpFooter__cta {
    padding-block: 4rem;
  }
}
.p-lpFooter__bar {
  padding-block: 2.5rem;
  background: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-lpFooter__bar {
    padding-block: 2.625rem 2.75rem;
  }
}
.p-lpFooter__logo {
  width: 10.75rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-lpFooter__logo {
    width: 14.625rem;
  }
}
.p-lpFooter__copyright {
  color: #0084D0;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  margin-top: 1rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-lpFooter__copyright {
    font-size: 1rem;
    margin-top: 0.75rem;
  }
}

.p-heroSeminar {
  --mv-h: 100svh;
  background: #ffffff;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-heroSeminar {
    --mv-h: calc(100svh - 2rem);
  }
}
.p-heroSeminar__bgWrap {
  background: #ffffff;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}
.p-heroSeminar__bg {
  mix-blend-mode: exclusion;
  position: relative;
}
.p-heroSeminar__bg img {
  width: 100%;
  height: var(--mv-h);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.p-heroSeminar__overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-heroSeminar__overlay {
    top: calc(50% + 1.375rem);
  }
}
.p-heroSeminar__overlay img {
  width: 100%;
  height: var(--mv-h);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
@media screen and (min-width: 768px) {
  .p-heroSeminar__overlay img {
    max-width: 90rem;
    max-height: 46.875rem;
    -webkit-filter: blur(0.625rem);
            filter: blur(0.625rem);
    margin-inline: auto;
  }
}
.p-heroSeminar__inner {
  position: relative;
  width: 24.375rem;
  height: var(--mv-h);
  margin-inline: auto;
  display: grid;
  place-content: center;
  padding-block: 3.125rem 0;
}
@media screen and (min-width: 768px) {
  .p-heroSeminar__inner {
    max-width: 90rem;
    width: 100%;
    padding-block: 0rem 0;
  }
}
.p-heroSeminar__balloon {
  width: 16.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-heroSeminar__balloon {
    width: 29.5625rem;
  }
}
.p-heroSeminar__title {
  width: 22.25rem;
  margin-inline: auto;
  margin-top: -0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-heroSeminar__title {
    width: 48.8125rem;
    margin-top: -1.5625rem;
  }
}
.p-heroSeminar__cta {
  margin-inline: auto;
  width: 19.375rem;
  display: block;
  margin-top: 2.5625rem;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
@media (hover: hover) {
  .p-heroSeminar__cta:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
  .p-heroSeminar__cta:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .p-heroSeminar__cta {
    width: 25.625rem;
    margin: 0;
    left: auto;
    right: 3.75rem;
    bottom: 1rem;
    position: fixed;
    translate: unset;
    z-index: 200;
  }
}
.p-heroSeminar__cta.is-active {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  translate: -50% 0;
  z-index: 200;
}
@media screen and (min-width: 768px) {
  .p-heroSeminar__cta.is-active {
    left: auto;
    right: 3.75rem;
    bottom: 1rem;
    position: fixed;
    translate: unset;
  }
}
.p-heroSeminar__cta.is-nearFooter {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(0.75rem);
          transform: translateY(0.75rem);
}
.p-heroSeminar__ctaBalloon {
  text-align: center;
  font-family: "M PLUS 2", sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.14;
  width: 4.125rem;
  height: 1.8125rem;
  border-radius: 4rem;
  background: #ffffff;
  background: #FFF;
  -webkit-filter: drop-shadow(0 0 1.00775rem rgba(0, 0, 0, 0.15));
          filter: drop-shadow(0 0 1.00775rem rgba(0, 0, 0, 0.15));
  display: grid;
  place-content: center;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-heroSeminar__ctaBalloon {
    font-size: 0.796875rem;
    line-height: 1.33;
    width: 5.125rem;
    height: 2.3125rem;
    border-radius: 5rem;
    margin-inline: 1.3125rem auto;
  }
}
.p-heroSeminar__ctaBalloon::before {
  content: "";
  display: block;
  background: #ffffff;
  background: #FFF;
  -webkit-filter: drop-shadow(0 0 1.00775rem rgba(0, 0, 0, 0.15));
          filter: drop-shadow(0 0 1.00775rem rgba(0, 0, 0, 0.15));
  width: 0.6875rem;
  height: 0.625rem;
  position: absolute;
  bottom: -0.375rem;
  left: 50%;
  translate: -50% 0;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}
@media screen and (min-width: 768px) {
  .p-heroSeminar__ctaBalloon::before {
    width: 1.125rem;
    height: 1rem;
  }
}
.p-heroSeminar__btn {
  display: grid;
  place-content: center;
  color: #FFF;
  text-align: center;
  font-family: "M PLUS 2", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.3888888889;
  border-radius: 4.25rem;
  background: #ED7B36;
  -webkit-box-shadow: -0.3023125rem -0.3023125rem 0.7558125rem 0 rgba(0, 0, 0, 0.25) inset, 0.2678125rem 0.2678125rem 0.503875rem 0 rgba(255, 255, 255, 0.2) inset;
          box-shadow: -0.3023125rem -0.3023125rem 0.7558125rem 0 rgba(0, 0, 0, 0.25) inset, 0.2678125rem 0.2678125rem 0.503875rem 0 rgba(255, 255, 255, 0.2) inset;
  width: 100%;
  height: 5.0625rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: -0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-heroSeminar__btn {
    font-size: 1.5rem;
    line-height: 1.33;
    height: 6.3125rem;
    border-radius: 5.3158125rem;
    -webkit-box-shadow: -0.375rem -0.375rem 0.9375rem 0 rgba(0, 0, 0, 0.25) inset, 0.33225rem 0.33225rem 0.625rem 0 rgba(255, 255, 255, 0.2) inset;
            box-shadow: -0.375rem -0.375rem 0.9375rem 0 rgba(0, 0, 0, 0.25) inset, 0.33225rem 0.33225rem 0.625rem 0 rgba(255, 255, 255, 0.2) inset;
  }
}

/* =========================================================
   Intro: 最初にぶつかる悩み
   ======================================================= */
.p-introProblem__inner {
  padding-block: 3.75rem 4.4375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-introProblem__inner {
    padding-block: 8.75rem 7.125rem;
  }
}
@media screen and (min-width: 768px) {
  .p-introProblem__col--text {
    padding-left: 1.5625rem;
  }
}
.p-introProblem__lead {
  font-family: "M PLUS 2", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.88;
}
@media screen and (min-width: 768px) {
  .p-introProblem__lead {
    font-size: 1.75rem;
    line-height: 2;
  }
}
.p-introProblem__lead strong {
  color: #0084D0;
}
.p-introProblem__txt, .p-introProblem__txt2 {
  font-family: "M PLUS 2", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.07;
}
@media screen and (min-width: 768px) {
  .p-introProblem__txt, .p-introProblem__txt2 {
    font-size: 1.125rem;
    line-height: 2.66;
  }
}
.p-introProblem__txt {
  margin-top: 3.1875rem;
  max-width: 11.375rem;
}
@media screen and (min-width: 768px) {
  .p-introProblem__txt {
    margin-top: 4.5rem;
    max-width: 21.5625rem;
  }
}
.p-introProblem__txt2 {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-introProblem__txt2 {
    margin-top: 0rem;
    max-width: 21.5625rem;
  }
}
.p-introProblem__figure {
  width: 11.082375rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  top: 15.3125rem;
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-introProblem__figure {
    width: 45.5625rem;
    top: 8.75rem;
    right: -2.625rem;
  }
}

/* =========================================================
   Recommend Section
   ======================================================= */
.p-recommend {
  position: relative;
}
.p-recommend::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 1.75rem);
  background: #E1E6EC;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-recommend::before {
    height: calc(100% - 3.4375rem);
  }
}
.p-recommend__inner {
  position: relative;
  padding-block: 0 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-recommend__inner {
    padding-block: 0 6.25rem;
  }
}
.p-recommend__list {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.25rem;
  width: 15.5625rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-recommend__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.875rem;
    width: 100%;
    margin-top: 3.75rem;
  }
}
.p-recommend__item {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-recommend__item {
    width: 21.4375rem;
  }
}
.p-recommend__img {
  width: 100%;
}
.p-recommend__caption {
  color: #363636;
  font-family: "M PLUS 2", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.24;
  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: 0.5rem;
  position: absolute;
  bottom: 1.125rem;
  left: -1rem;
}
@media screen and (min-width: 768px) {
  .p-recommend__caption {
    position: relative;
    bottom: auto;
    left: auto;
    font-size: 1.5rem;
    line-height: 1.75;
    margin-top: 1.5rem;
  }
}
.p-recommend__caption span {
  display: inline-block;
  padding: 0 0.1668125rem;
  background: #FFF;
  -webkit-box-shadow: 0.125rem 0.125rem 0 0 #363636;
          box-shadow: 0.125rem 0.125rem 0 0 #363636;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-recommend__caption span {
    padding: 0 0.3125rem;
    -webkit-box-shadow: 0.1875rem 0.1875rem 0 0 #363636;
            box-shadow: 0.1875rem 0.1875rem 0 0 #363636;
  }
}
.p-recommend__caption.is-right {
  left: auto;
  right: -1rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media screen and (min-width: 768px) {
  .p-recommend__caption.is-right {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    right: auto;
  }
}

/* =========================================================
  POINTS セクション
========================================================= */
.p-points {
  background: #ffffff;
  /* ===== Swiper 埋め込みの見た目 ===== */
}
@media screen and (min-width: 768px) {
  .p-points {
    --slider-w:30.8125rem;
  }
}
.p-points__inner {
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-points__inner {
    padding-block: 6.25rem;
  }
}
.p-points__list {
  margin-top: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-points__list {
    gap: 1.25rem;
  }
}
.p-points__item {
  padding-block: 1.25rem 1.875rem;
  padding-inline: 1.25rem;
  border-radius: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-points__item {
    padding: 0.8125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 2.75rem;
  }
}
.p-points__item--blue {
  background: #009EE7;
}
.p-points__item--orange {
  background: #F5966A;
}
.p-points__item--purple {
  background: #A181E2;
}
.p-points__titWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-block: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-points__titWrap {
    gap: 0.5625rem;
    margin-block: 0 3rem;
  }
}
.p-points__label {
  color: #ffffff;
  font-family: "M PLUS 2", sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-points__label {
    font-size: 1rem;
    line-height: 3;
    padding-top: 0.875rem;
  }
}
.p-points__itemTitle {
  color: #ffffff;
  font-family: "M PLUS 2", sans-serif;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.45;
  padding-left: 1rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-points__itemTitle {
    font-size: 2rem;
    line-height: 1.5;
    padding-left: 2.125rem;
    white-space: nowrap;
  }
}
.p-points__itemTitle::before {
  content: "";
  display: block;
  background: #ffffff;
  width: 0.0625rem;
  height: calc(100% - 0.75rem);
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}
@media screen and (min-width: 768px) {
  .p-points__itemTitle::before {
    height: calc(100% - 1.5rem);
  }
}
@media screen and (min-width: 768px) {
  .p-points__media {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.p-points__media img {
  border-radius: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-points__media img {
    width: var(--slider-w);
  }
}
@media screen and (min-width: 768px) {
  .p-points__body {
    padding-left: 2.25rem;
    padding-block: 3.375rem 0;
    width: calc(100% - 2.75rem - var(--slider-w));
  }
}
.p-points__desc {
  color: #ffffff;
  font-family: "M PLUS 2", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.71;
}
@media screen and (min-width: 768px) {
  .p-points__desc {
    font-size: 1.125rem;
    line-height: 2;
  }
}
.p-points__note {
  color: #ffffff;
  font-family: "M PLUS 2", sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  display: inline-block;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-points__note {
    font-size: 0.875rem;
    line-height: 1.71;
  }
}
.p-points__slider {
  background: #ffffff;
  border-radius: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-points__slider {
    width: var(--slider-w);
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

/* ----- Swiper をカードっぽく ----- */
.swiper {
  border-radius: 0.875rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .swiper {
    width: var(--slider-w);
  }
}

.swiper-slide {
  display: grid;
  place-items: center;
  background: #ffffff;
}
@media screen and (min-width: 768px) {
  .swiper-slide {
    width: var(--slider-w);
  }
}
.swiper-slide picture, .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (min-width: 768px) {
  .swiper-slide picture, .swiper-slide img {
    width: var(--slider-w);
  }
}

/* =========================================================
   Flow Section
   ======================================================= */
.p-flow {
  position: relative;
  /* ===== カード ===== */
  /* STEPタグ */
  /* 申込ブロック */
  /* CTAボタン */
}
.p-flow::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 1.875rem);
  background: #F6F6F6;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-flow::before {
    height: 100%;
  }
}
.p-flow__inner {
  position: relative;
  padding-block: 0 3.3125rem;
}
@media screen and (min-width: 768px) {
  .p-flow__inner {
    padding-block: 6.25rem 9.375rem;
  }
}
.p-flow__list {
  margin-top: 3.75rem;
  padding-inline: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-flow__list {
    max-width: 48.75rem;
    margin-inline: auto;
    padding-inline: 0;
    gap: 1.875rem;
  }
}
.p-flow__hand {
  width: 0.8125rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-flow__hand {
    width: 1.3125rem;
  }
}
.p-flow__hand img {
  width: 100%;
}
.p-flow__item {
  border-radius: 1.25rem;
  border: 0.0625rem solid #000;
  background: #ffffff;
  -webkit-box-shadow: 0.625rem 0.625rem 0 0 #8CC11F;
          box-shadow: 0.625rem 0.625rem 0 0 #8CC11F;
  overflow: hidden;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-flow__item {
    padding-bottom: 3rem;
  }
}
.p-flow__step {
  color: #ffffff;
  font-family: "M PLUS 2", sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  width: 5.6875rem;
  height: 2.0625rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #8CC11F;
  border-bottom: #000 solid 0.0625rem;
  border-right: #000 solid 0.0625rem;
  display: grid;
  place-content: center;
}
@media screen and (min-width: 768px) {
  .p-flow__step {
    font-size: 1.25rem;
    width: 8.78125rem;
    height: 2.5rem;
  }
}
.p-flow__lead {
  color: #363636;
  text-align: center;
  font-family: "M PLUS 2", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.44;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-flow__lead {
    font-size: 1.5rem;
    line-height: 2.33;
  }
}
.p-flow__seminar {
  margin-top: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-flow__seminar {
    margin-top: 0rem;
  }
}
@media screen and (min-width: 768px) {
  .p-flow__seminarWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.875rem;
    margin-top: 2.5rem;
  }
}
.p-flow__seminarLead {
  color: #363636;
  text-align: center;
  font-family: "M PLUS 2", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-flow__seminarLead {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
  }
}
.p-flow__divider {
  border: none;
  margin: 0;
  width: 16.125rem;
  height: 0.25rem;
  background: url(../img/flow/dashed.svg) 50% 50%/100%;
  margin-inline: auto;
  margin-block: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-flow__divider {
    width: 0.25rem;
    height: 12rem;
    margin: 0;
    background: url(../img/flow/dashed_pc.svg) 50% 50%/100%;
  }
}
.p-flow__cta {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-flow__cta {
    margin-top: 1.25rem;
  }
}
.p-flow__btn {
  color: #ffffff;
  font-family: "M PLUS 2", sans-serif;
  font-size: 1.106875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  -webkit-box-shadow: 0.1845rem 0.1845rem 0.1845rem 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0.1845rem 0.1845rem 0.1845rem 0 rgba(0, 0, 0, 0.25);
  border-radius: 2.0754375rem;
  width: 13.375rem;
  height: 3.3668125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: grid;
  place-content: center;
  margin-inline: auto;
  gap: 0.25rem;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
@media (hover: hover) {
  .p-flow__btn:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
  .p-flow__btn:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .p-flow__btn {
    width: 18.125rem;
    height: 4.5625rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-radius: 2.8125rem;
    -webkit-box-shadow: 0.25rem 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.25);
            box-shadow: 0.25rem 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.25);
    font-size: 1.5rem;
  }
}
.p-flow__btnNote {
  color: #ffffff;
  font-family: "M PLUS 2", sans-serif;
  font-size: 0.625rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-flow__btnNote {
    display: none;
  }
}
.p-flow__btn--blue {
  background: #0084D0;
}
.p-flow__btn--grad {
  background: -webkit-gradient(linear, left top, right top, from(#009EE7), to(#8CC11F));
  background: linear-gradient(90deg, #009EE7 0%, #8CC11F 100%);
}
@media screen and (min-width: 768px) {
  .p-flow__btn--grad {
    margin-top: 2.5rem;
  }
}

/* =========================================================
   自己PR画像 参考例
   ======================================================= */
.p-prExamples {
  padding-block: 1.25rem 0;
  background: #F6F6F6;
}
@media screen and (min-width: 768px) {
  .p-prExamples {
    padding-block: 0 6.25rem;
  }
}
.p-prExamples__panel {
  border-radius: 1.25rem 1.25rem 0 0;
  background: #FFF;
  -webkit-box-shadow: 0 -myrem(5) 0.625rem 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 -myrem(5) 0.625rem 0 rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .p-prExamples__panel {
    background: unset;
  }
}
.p-prExamples__inner {
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-prExamples__inner {
    padding-block: 4.125rem 4.1875rem;
    border-radius: 1.25rem;
    border: 0.1875rem solid #363636;
    background: #FFF;
    max-width: 73.75rem;
  }
}
.p-prExamples__title {
  color: #363636;
  font-family: "M PLUS 2", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-prExamples__title {
    font-size: 2rem;
    line-height: 1.75;
  }
}
.p-prExamples__list {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.375rem;
  padding-inline: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-prExamples__list {
    margin-top: 3.75rem;
    padding-inline: 0;
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 3.125rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.p-prExamples__card {
  -webkit-box-shadow: 0.25rem 0.25rem 0.625rem 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0.25rem 0.25rem 0.625rem 0 rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 768px) {
  .p-prExamples__card {
    width: 28.75rem;
  }
}

/* =========================================================
   イベント概要
   ======================================================= */
.p-outline {
  background: #0084CD;
  padding-block: 3.75rem 0;
  /* 申込ブロック */
  /* CTAボタン */
}
@media screen and (min-width: 768px) {
  .p-outline {
    padding-block: 6.25rem 0;
  }
}
.p-outline__inner {
  color: #0084CD;
}
.p-outline__card {
  border-radius: 1.25rem;
  background: #FFF;
  padding-block: 2.5rem;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-outline__card {
    padding-block: 4.375rem;
  }
}
.p-outline__title {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .p-outline__title {
    font-size: 3.125rem;
    line-height: 1.44;
  }
}
.p-outline__title::after {
  content: "";
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(#0084CD), to(#80C1EE));
  background: linear-gradient(90deg, #0084CD, #80C1EE);
  width: 6.1875rem;
  height: 0.1875rem;
  margin-inline: auto;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-outline__title::after {
    width: 8.53125rem;
    height: 0.3125rem;
    margin-top: 1.4375rem;
  }
}
.p-outline__list {
  margin-top: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .p-outline__list {
    max-width: 50.8125rem;
    margin-top: 1.5625rem;
    margin-inline: auto;
  }
}
.p-outline__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-outline__term {
  padding-block: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.05em;
  width: 4.1875rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-bottom: #0084CD solid 0.0625rem;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-outline__term {
    width: 6.8125rem;
    padding-block: 1.875rem;
    padding-left: 0.25rem;
  }
}
.p-outline__desc {
  padding-block: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.05em;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-bottom: #86C5DA solid 0.0625rem;
  padding-left: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-outline__desc {
    padding-block: 1.875rem;
    padding-left: 1rem;
  }
}
.p-outline__seminar {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-outline__seminarWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.875rem;
    margin-top: 2.5rem;
  }
}
.p-outline__seminarLead {
  color: #363636;
  text-align: center;
  font-family: "M PLUS 2", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-outline__seminarLead {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
  }
}
.p-outline__divider {
  border: none;
  margin: 0;
  width: 16.125rem;
  height: 0.25rem;
  margin-inline: auto;
  margin-block: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-outline__divider {
    width: 0.25rem;
    height: 12rem;
    margin: 0;
  }
}
.p-outline__cta {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-outline__cta {
    margin-top: 1.25rem;
  }
}
.p-outline__btn {
  color: #ffffff;
  font-family: "M PLUS 2", sans-serif;
  font-size: 1.106875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  -webkit-box-shadow: 0.1845rem 0.1845rem 0.1845rem 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0.1845rem 0.1845rem 0.1845rem 0 rgba(0, 0, 0, 0.25);
  border-radius: 2.0754375rem;
  width: 13.375rem;
  height: 3.3668125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: grid;
  place-content: center;
  margin-inline: auto;
  gap: 0.25rem;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
@media (hover: hover) {
  .p-outline__btn:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
  .p-outline__btn:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .p-outline__btn {
    width: 18.125rem;
    height: 4.5625rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-radius: 2.8125rem;
    -webkit-box-shadow: 0.25rem 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.25);
            box-shadow: 0.25rem 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.25);
    font-size: 1.5rem;
  }
}
.p-outline__btn--blue {
  background: #0084D0;
}
.p-outline__btn--orange {
  background: linear-gradient(91deg, #FBA736 13.03%, #F78001 105.73%);
}
.p-outline__btn--grad {
  background: -webkit-gradient(linear, left top, right top, from(#009EE7), to(#8CC11F));
  background: linear-gradient(90deg, #009EE7 0%, #8CC11F 100%);
}

/* =========================================================
   よくある質問
   ======================================================= */
.p-faq {
  background: #0084CD;
  padding-block: 1.875rem 3.75rem;
  /* item */
  /* summary (Q) */
  /* ＋／− アイコン */
}
@media screen and (min-width: 768px) {
  .p-faq {
    padding-block: 3.75rem 6.25rem;
  }
}
.p-faq__inner {
  color: #0084CD;
}
.p-faq__card {
  border-radius: 1.25rem;
  background: #ffffff;
  padding-block: 2.5rem;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-faq__card {
    padding-block: 4.375rem 7.5rem;
  }
}
.p-faq__title {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .p-faq__title {
    font-size: 3.125rem;
    line-height: 1.44;
  }
}
.p-faq__title::after {
  content: "";
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(#0084CD), to(#80C1EE));
  background: linear-gradient(90deg, #0084CD, #80C1EE);
  width: 6.1875rem;
  height: 0.1875rem;
  margin-inline: auto;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-faq__title::after {
    width: 8.53125rem;
    height: 0.3125rem;
    margin-top: 1.4375rem;
  }
}
.p-faq__items {
  margin-top: 2.5rem;
  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.5rem;
}
@media screen and (min-width: 768px) {
  .p-faq__items {
    max-width: 66.25rem;
    margin-inline: auto;
    gap: 1.5rem;
    margin-top: 3.125rem;
  }
}
.p-faq__item {
  overflow: hidden;
  background: #0084CD;
  background-blend-mode: multiply;
}
.p-faq__item[open] .p-faq__toggle::before {
  rotate: 90deg;
}
.p-faq__q {
  list-style: none;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 0.875rem;
  padding: 1rem;
  cursor: pointer;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-faq__q {
    padding-block: 2rem;
    padding-inline: 3rem;
    font-size: 1rem;
    letter-spacing: 0.05em;
    gap: 1rem;
  }
}
.p-faq__q::-webkit-details-marker {
  display: none;
}
.p-faq__qBadge {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  width: 2.25rem;
  height: 2.25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #0084CD;
  font-family: Oswald;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
}
.p-faq__toggle {
  position: relative;
  inline-size: 1.75rem;
  block-size: 1.75rem;
  rotate: 90deg;
}
.p-faq__toggle::before, .p-faq__toggle::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  background: currentColor;
  width: 1.25rem;
  height: 0.125rem;
  -webkit-transition: rotate 300ms;
  transition: rotate 300ms;
}
.p-faq__toggle::after {
  rotate: 90deg;
}
.p-faq__panel {
  height: 0;
  /* 初期は閉 */
  overflow: clip;
  /* 内容のはみ出しをクリップ */
  -webkit-transition: height 0.28s ease;
  transition: height 0.28s ease;
  will-change: height;
}
.p-faq__panelIn {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  cursor: pointer;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.05em;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-faq__panelIn {
    padding-block: 2rem;
    padding-inline: 3rem;
    font-size: 1rem;
    letter-spacing: 0.05em;
    gap: 1rem;
  }
}
.p-faq__panelIn::before {
  content: "";
  display: block;
  background: #ffffff;
  width: 17.375rem;
  height: 0.0625rem;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
}
@media screen and (min-width: 768px) {
  .p-faq__panelIn::before {
    width: 60.25rem;
  }
}
.p-faq__aBadge {
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: #ffffff solid 0.125rem;
  width: 2.25rem;
  height: 2.25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #ffffff;
  font-family: Oswald;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
}
.u-desktop-inline {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop-inline {
    display: inline-block;
  }
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

.u-mobile-inline {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .u-mobile-inline {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

/* アクセシビリティ補助ユーティリティ（必要に応じてプロジェクト共通へ） */
.u-srOnly {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}