@charset "UTF-8";

/************************************************************************
 * reset
 ************************************************************************/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  -webkit-print-color-adjust: exact;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-underline-offset: 0.2em;
  background: #eff1f9;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color: #292929;
  font-family: "Noto Sans JP", serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-break: strict;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  vertical-align: baseline;
  margin: 0;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 100%;
}

a {
  display: inline-block;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
  color: inherit;
  text-decoration: none;
}

a[href="*"] {
  cursor: pointer;
}

a[href="*"]:hover,
a[href="*"]:focus-visible {
  opacity: 0.7;
}

img,
svg {
  display: inline-block;
  vertical-align: top;
  border: none;
  width: 100%;
  max-width: 100%;
  height: auto;
}

video {
  width: 100%;
  height: auto;
}

code,
kbd,
pre,
samp {
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
  content: "";
  content: none;
}

address {
  font-style: italic;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  margin: 0;
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
}

abbr,
acronym {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

cite {
  font-style: italic;
}

code,
kbd {
  background-color: #e2e4f0;
  padding: 0.25em 0.5em;
}

em {
  font-style: italic;
  font-weight: 700;
}

pre {
  display: block;
  background-color: #e2e4f0;
  padding: 1em 2em;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

var {
  background-color: #e2e4f0;
  padding: 0.25em 0.5em;
  font-style: italic;
}

/************************************************************************
 * end reset
 ************************************************************************/
.js-fadeIn {
  visibility: hidden;
  opacity: 0;
}

.js-fadeInUp {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInLeft {
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInRight {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  visibility: hidden;
  opacity: 0;
}

@-webkit-keyframes fadeInLeft {
  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInLeft {
  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInRight {
  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInRight {
  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeInLeft,
.fadeInRight,
.fadeInUp,
.fadeIn,
.fadeOut {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.fadeInLeft {
  -webkit-animation-name: fadeinleft;
  animation-name: fadeInLeft;
}

.fadeInRight {
  -webkit-animation-name: fadeinright;
  animation-name: fadeInRight;
}

.fadeInUp {
  -webkit-animation-name: fadeinup;
  animation-name: fadeInUp;
}

.fadeIn {
  -webkit-animation-name: fadein;
  animation-name: fadeIn;
}

.fadeOut {
  opacity: 1;
  -webkit-animation-name: fadeout;
  animation-name: fadeOut;
}

[data-target] {
  cursor: pointer;
}

html {
  font-size: 16px;
}

button {
  color: #292929;
}

/************************************************************************
 * layout
 ************************************************************************/
body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

body.fadeIn {
  opacity: 0;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

footer {
  margin-top: auto;
}

/************************************************************************
 * base
 ************************************************************************/
a[target="_blank"]:not([class]) {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

a[target="_blank"]:not([class])::after {
  display: inline-block;
  -webkit-mask-image: url("../img/common/icon-outerLink.svg");
  mask-image: url("../img/common/icon-outerLink.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  margin-left: 0.7647058824em;
  background-color: currentColor;
  width: 0.8529411765em;
  height: 0.7647058824em;
  font-weight: 900;
  content: "";
}

a:not([class]) {
  color: #03c;
}

a:not([class]):visited {
  color: #639;
}

a:not([class]):hover {
  text-decoration: underline;
}

table {
  margin-right: auto;
  margin-left: auto;
  border-collapse: collapse;
  border-spacing: 0;
  width: auto;
  min-width: 100%;
  table-layout: fixed;
}

th,
td {
  border: 1px solid;
}

address {
  font-style: normal;
}

details .icon {
  aspect-ratio: 1;
  display: block;
  position: relative;
  width: 24px;
  width: 1.5rem;
}

details .icon::before,
details .icon::after {
  inset: 0;
  position: absolute;
  margin: auto;
  background-color: #292929;
  width: 13px;
  width: 0.8125rem;
  height: 1px;
  content: "";
}

details .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

details[open] > summary .icon::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

details.is-closing[open] > summary .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

summary {
  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  display: block;
  cursor: pointer;
}

summary::-webkit-details-marker {
  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}

/************************************************************************
 * end base
 ************************************************************************/

/************************************************************************
 * form
 ************************************************************************/
form {
  margin: 0;
  padding: 0;
}

form button[type="submit"],
form input[type="submit"],
form input[type="button"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  width: auto;
}

form button[type="submit"]:hover,
form button[type="submit"]:focus-visible,
form input[type="submit"]:hover,
form input[type="submit"]:focus-visible,
form input[type="button"]:hover,
form input[type="button"]:focus-visible {
  outline: none;
}

form button[type="submit"]:disabled,
form input[type="submit"]:disabled,
form input[type="button"]:disabled {
  cursor: default;
  border-color: transparent;
  background-color: #b2b2b2;
  pointer-events: none;
  color: #fff;
}

form button[type="submit"] ::-moz-focus-inner,
form input[type="submit"] ::-moz-focus-inner,
form input[type="button"] ::-moz-focus-inner {
  border: none;
  padding: 0;
}

label {
  cursor: pointer;
}

input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #707070;
  border-radius: 0;
  background-image: none;
  padding: 8px;
  padding: 0.5rem;
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

textarea {
  resize: vertical;
}

textarea:hover,
textarea:focus-visible {
  outline: none;
}

textarea:focus-visible {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

textarea ::-moz-focus-inner {
  border: none;
  padding: 0;
}

input:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

input[type="radio"] {
  position: absolute;
  opacity: 0;
  margin: 0;
  padding: 0;
  width: auto;
  line-height: 1.5;
}

input[type="radio"] + span {
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin: 0;
  padding: 0 0 0 1.875em;
  line-height: 1.5;
}

input[type="radio"] + span::before {
  display: block;
  position: absolute;
  top: 0.5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #707070;
  border-radius: 50%;
  background: #fff;
  width: 1.625em;
  height: 1.625em;
  content: "";
}

input[type="radio"] + span::after {
  display: block;
  position: absolute;
  top: 0.5lh;
  left: 0.5em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
  border-radius: 50%;
  background: #707070;
  width: 0.625em;
  height: 0.625em;
  content: "";
}

input[type="radio"]:focus-visible + span::before {
  outline: -webkit-focus-ring-color auto 5px;
}

input[type="radio"]:checked + span::after {
  opacity: 1;
}

input[type="checkbox"] {
  position: absolute;
  vertical-align: middle;
  opacity: 0;
  margin: 0;
  padding: 0;
  width: auto;
  line-height: 1.5;
}

input[type="checkbox"] + span {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  padding-left: 1.875em;
  line-height: 1.5;
}

input[type="checkbox"] + span::before {
  display: inline-block;
  position: absolute;
  top: 0.5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #707070;
  width: 1.625em;
  height: 1.625em;
  content: "";
}

input[type="checkbox"] + span::after {
  display: inline-block;
  position: absolute;
  top: 0.5lh;
  left: 0;
  -webkit-transform: translateY(-70%) translateX(0.5em) rotate(45deg);
  transform: translateY(-70%) translateX(0.5em) rotate(45deg);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
  border-right: 0.25em solid #0f165b;
  border-bottom: 0.25em solid #0f165b;
  width: 0.8125em;
  height: 1.625em;
  content: "";
}

input[type="checkbox"]:focus-visible + span::before {
  outline: -webkit-focus-ring-color auto 5px;
}

input[type="checkbox"]:checked:focus-visible + span::before {
  outline: none;
}

input[type="checkbox"]:checked + span::after {
  opacity: 1;
}

input[type="number"],
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: textfield;
  margin: 0;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #707070;
  border-radius: 0;
  padding: 0.4em 2.4em 0.4em 0.8em;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
}

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

select:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

select:focus-visible {
  outline: initial;
}

select:invalid {
  color: #b2b2b2;
}

select:not(:disabled) {
  cursor: pointer;
}

:root {
  /* ウィンドウサイズ */
  --vw: 100vw;
  --vh: 100vh;

  /* color */
  --font-sans: "Noto Sans JP", sans-serif;
  --font-roboto: "Roboto", sans-serif;

  --color-white: #fff;
  --color-gray: #EFF1F9;
  --color-black: #333;
  --color-blue: #212877;
  --color-navy: #0F165B;
  --color-yellow: #FFD044;
  --color-yellow2: #FFC344;
  --color-cream: #FFF9E1;


  --grad-orange: linear-gradient(180deg, #FF710C 40.82%, #D8461D 100%);

  /* 三角形 */
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);
}

.slick-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.slick-dots li {
  margin: 0 2px;
}

.slick-dots li button::before {
  font-size: 7px;
}

/************************************************************************
 * swiper
 ************************************************************************/
.swiper-button-prev,
.swiper-button-next {
  position: static;
  cursor: pointer;
  margin-top: initial;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.swiper-pagination {
  position: static;
}

.swiper-pagination-bullet {
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  background-color: #0f165b;
  width: 6px;
  height: 6px;
}

.swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 5px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #0f165b;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin-inline: 10px;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: auto;
}

/* rtl ******************************************************************/

/************************************************************************
 * swiper end
 ************************************************************************/

/* === layout === */

.l-inner {
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
  max-width: 1212px;/* 1152px  */
}

.l-inner.l-inner--ss {
  max-width: 832px;
}

.l-inner.l-inner--s {
  max-width: 1024px;
}

.l-inner.l-inner--l {
  max-width: 1216px;
}

.l-inner.l-inner--full {
  margin-left: calc((100% - 100vw) / 2);
  width: 100vw;
  max-width: none;
}

.l-feature {
  padding-top: 322px;
  padding-top: 20.13rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}

.l-footer {
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}

.l-header {
  position: -webkit-sticky;
  position: sticky;
  top: -110%;
  left: 0;
  z-index: 99998;
  -webkit-transition: top 1s ease 0s;
  transition: top 1s ease 0s;
  width: 100%;
}

.l-header.is-fixed {
  top: 0;
  -webkit-box-shadow: 0 3px 6px rgba(117, 117, 117, 0.16);
  box-shadow: 0 3px 6px rgba(117, 117, 117, 0.16);
}

.l-mv {
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 234px;
}

.l-section {
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}

.l-section--pb {
  padding-bottom: 80px;
  padding-bottom: 5rem;
}

/* === Component === */
.c-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  gap: 16px;
  gap: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s ease 0s;
  transition: 0.3s ease 0s;
  -webkit-transition-property: prop;
  transition-property: prop;
  margin: 0;
  border-radius: 100vmax;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(41%, #ff710c),
    to(#d8461d)
  );
  background: linear-gradient(#ff710c 41%, #d8461d 100%);
  padding: 1.4em 1.69em 1.4em 1.34em;
  color: #fff;
  font-size: 26px;
  font-size: 1.63rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.c-btn:focus-visible {
  outline: none;
}

.c-btn__tag {
  display: inline-block;
  border-radius: 3.125rem;
  background: #ffda44;
  padding: 8px 20px;
  padding: 0.5rem 1.25rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #0f165b;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
}

.c-btn__text {
  padding-right: 15px;
  padding-right: 0.9375rem;
  word-break: keep-all;
}

.c-btn::after {
  position: absolute;
  top: 50%;
  right: 42px;
  right: 2.625rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../img/common/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 11px;
  width: 0.6875rem;
  height: 18px;
  height: 1.125rem;
  content: "";
}

.c-btn.c-btn--shine {
  position: relative;
  overflow: hidden;
}

.c-btn.c-btn--shine::before {
  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -75%;
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(255, 255, 255, 0)),
    to(rgba(255, 255, 255, 0.8))
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 100%
  );

  /*キラッと光る形状*/
  width: 50%;
  height: 100%;
  content: "";
}

.c-btn.c-btn--shine:focus-visible {
  opacity: 1;
  border-color: linear-gradient(#ff710c 41%, #d8461d 100%);
  background-color: linear-gradient(#ff710c 41%, #d8461d 100%);
  color: #fff;
}

.c-btn.c-btn--shine:focus-visible::before {
  -webkit-animation: shine 0.7s;
  animation: shine 0.7s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.c-cta-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  gap: 3px;
  gap: 0.1875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-transition: 0.3s ease 0s;
  transition: 0.3s ease 0s;
  -webkit-transition-property: prop;
  transition-property: prop;
  margin: 0 auto;
  border-radius: 2.5rem;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(41%, #ff710c),
    to(#d8461d)
  );
  background: linear-gradient(#ff710c 41%, #d8461d 100%);
  padding: 16px 38px 16px 20px;
  padding: 1rem 2.38rem 1rem 1.25rem;
  color: #fff;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.c-cta-btn:focus-visible {
  outline: none;
}

.c-cta-btn__tag {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 3.125rem;
  background: #ffda44;
  padding: 1px 0.86em;
  padding: 0.0625rem 0.86em;
  color: #0f165b;
  font-size: 14px;
  font-size: 0.875rem;
}

.c-cta-btn::after {
  position: absolute;
  top: 50%;
  right: 20px;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../img/common/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 6.56px;
  width: 0.41rem;
  height: 10.6px;
  height: 0.6625rem;
  content: "";
}

.c-cta-btn.c-cta-btn--shine {
  position: relative;
  overflow: hidden;
}

.c-cta-btn.c-cta-btn--shine::before {
  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -75%;
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(255, 255, 255, 0)),
    to(rgba(255, 255, 255, 0.8))
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 100%
  );

  /*キラッと光る形状*/
  width: 50%;
  height: 100%;
  content: "";
}

.c-cta-btn.c-cta-btn--shine:focus-visible {
  opacity: 1;
  border-color: linear-gradient(#ff710c 41%, #d8461d 100%);
  background-color: linear-gradient(#ff710c 41%, #d8461d 100%);
  color: #fff;
}

.c-cta-btn.c-cta-btn--shine:focus-visible::before {
  -webkit-animation: shine 0.7s;
  animation: shine 0.7s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.c-section-title {
  color: #0f165b;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.c-section-title--white {
  color: #fff;
}

.c-totop {
  display: block;
  position: fixed;
  right: 20px;
  right: 1.25rem;
  bottom: 20px;
  bottom: 1.25rem;
  visibility: hidden;
  opacity: 0;
  z-index: 99997;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #f0f1f7;
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
}

.c-totop::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -20%) rotate(-45deg);
  transform: translate(-50%, -20%) rotate(-45deg);
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  content: "";
}

.c-totop.is-active {
  visibility: visible;
  opacity: 0.7;
}

.c-totop.is-active:focus {
  opacity: 1;
}

.p-float-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 99997;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  padding: 10px 0;
  width: 100%;
}

.p-float-cta.hide {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

.p-float-cta__btn {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  font-size: 1.125rem;
}

/* hero */
.p-hero {
  display: flex;
  justify-content: space-between;
  background: url(../img/hero_img.jpg) no-repeat right center / auto 100%;
  /*background: var(--color-navy);*/
  color: var(--color-white);
  align-items: center;
  padding: 60px 20px 100px;
  position: relative;
  overflow: hidden;

  &:before {
    content: '';
    display: block;
    width: 100vw;
    height: 100%;
    background: var(--color-navy);
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-47%, 0) skew(-15deg, 0);
    z-index: 0;
  }
}

.p-hero__content {
  display: flex;
  flex-direction: column;
  width: 45%;
  min-width: 528px;
  min-width: 33rem;
  z-index: 1;
  /*position: relative;*/
}

.p-hero__lead {
  background: var(--color-white);
  color: var(--color-navy);
  font-size: 22px;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  padding: .5em;
  letter-spacing: .14em;
  position: relative;
}

.p-hero__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
  position: relative;
}

.p-hero__titlePreWrap {
  margin-right: auto;
}

.p-hero__titlePre {
  display: inline-block;
  color: var(--color-yellow);
  font-size: 26px;
  font-size: 1.63rem;
  font-weight: 700;
  letter-spacing: .08em;
  margin: .75em 0 .25em;
  padding: .25em 0 .85em;
  transform: translateX(-1.5em) rotate(-6.12deg);
  background: url(../img/hero_titlePre_line.svg) no-repeat bottom center / contain;
}

.p-hero__title {
  font-size: 41px;
  font-size: 2.56rem;
  font-weight: 700;
  margin-right: -.4em;
  margin-bottom: .25em;
  line-height: 1.5;
  letter-spacing: .2em;

  .text1 {
    display: inline-block;
    font-size: 57px;
    font-size: 3.56rem;
    border-bottom: 2px solid currentColor;
  }
  .text2 {
    font-size: 66px;
    font-size: 4.13rem;
    color: var(--color-yellow);
    letter-spacing: .23em;
  }
  .text3 {
    display: inline-block;
    padding: 0 .4em;
  }
  .text3--pl0 {
    padding-right: 0;
  }
}

.p-heroPoint {
  display: flex;
  gap: 20px;
}

.p-heroPoint__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 145px;
  width: 9.06rem;
  height: 145px;
  height: 9.06rem;
  aspect-ratio: 1 / 1;
  font-weight: 700;
  text-align: center;
  padding: .65em 0 0;
  background: linear-gradient(135deg, rgba(67, 91, 124, 0.45) 0%, rgba(217, 217, 217, 0.45) 100%);
  border-radius: 10em;
}

.p-heroPoint__text {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-size: 0.94rem;
  height: calc(1.5 * 2em);
}

.p-heroPoint__num {
  font-size: 22px;
  font-size: 1.38rem;
  line-height: 1;
  padding: 0 0 .1em;
}

.p-heroPoint__numInt {
  font-size: 42px;
  font-size: 2.63rem;
}

.p-heroPoint__note {
  font-size: 12px;
  font-size: .75rem;
}

.p-heroPoint__noteList {
  font-size: 12px;
  font-size: .75rem;
  position: absolute;
  left: 2rem;
  bottom: 2rem;
}

.p-hero__chat {
  /*width: 713px;*/
  width: clamp(30%, 44.56rem, 713px);
  position: absolute;
  top: 12px;
  top: 0.75rem;
  left: 50%;
}



.p-mv__point {
  margin: 3.75rem 0 1em;
  text-align: center;
}

.p-mv__point-text {
  display: inline-block;
  font-weight: 700;
  position: relative;
}

.p-mv__point-text::before {
  position: absolute;
  top: 40%;
  left: -5px;
  left: -0.3125rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  rotate: -45deg;
  background: #fff;
  width: 1px;
  height: 25px;
  height: 1.5625rem;
  content: "";
}

.p-mv__point-text::after {
  position: absolute;
  top: 40%;
  right: -5px;
  right: -0.3125rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  rotate: 45deg;
  background: #fff;
  width: 1px;
  height: 25px;
  height: 1.5625rem;
  content: "";
}


.p-hero__cta {
  display: inline-block;
  background: #ffb400;
  color: #000;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 4px;
}


/* 調整しやすい変数 */
.p-flowingText {
  height: 83px;
  overflow: hidden;
  position: relative;
}

/* 流すレイヤー（背景画像を横リピート） */
.p-flowingText__layer {
  position: absolute;
  z-index: -1;
  display: flex;
  /*width: 1913px;*/
  width: calc(1850px * 2);
  height: 83px;
  line-height: 1;
  /*background-image: url("../img/hero_flowing_text.svg"); /* ←添付のSVGに差し替え */
  /*background-repeat: repeat-x;*/
  /*background-size: auto 100%;  /* 画像の高さを枠にフィット */
  /*background-position: 0 50%;*/

  animation: marquee-scroll 20s linear infinite;

  &:before ,
  &:after {
    content: 'ENGLISH LEARNING THAT LASTS WITH A SYSTEM AND SUPPORT';
    display: inline-block;
    transform: translateY(-.2em);
    color: var(--color-white);
    font-size: 111px;
    font-weight: 700;
    line-height: 1;
  }
}

/* 背景位置を左へ動かすだけで無限ループ */
@keyframes marquee-scroll {
  from { transform: translateX(0%); }  /* 右から */
  to   { transform: translateX(-50%); } /* 左へ */
}

/* 低速ネット/端末・アクセシビリティ配慮 */
@media (prefers-reduced-motion: reduce) {
  .p-flowingText__layer { animation: none; }
}

@media screen and (max-width: 767px) {
  .p-flowingText {
    height: 70px;
  }
  .l-feature .p-flowingText {
    display: none;
  }
  .p-flowingText__layer {
    width: calc(2200px * 2);
    height: 70px;
    animation: marquee-scroll 30s linear infinite;

    &:before ,
    &:after {
      width: 2200px;
      transform: translateY(-.2em);
      font-size: 70px;
    }
  }

}



/* problem */
.p-problem {
  padding: 70px 0 0;
  padding: 4.38rem 0 0;
  position: relative;
}
.p-problem__title {
  margin-bottom: 64px;
  margin-bottom: 4rem;
  text-align: center;
  span {
    display: inline-block;
    margin: 0 .8em;
    padding: .4em .8em;
    border-left: 1px solid currentColor;
    border-right: 1px solid currentColor;
  }
}

.p-problem__list {
  display: flex;
}

.p-problem__item {
  position: relative;
  border-left: 1px solid var(--color-navy);
  padding: 0 0 0 20px;
  padding: 0 0 0 1.25rem;
  width: calc((100% - 40px * 2) /3);
  width: calc((100% - 2.5rem * 2) /3);

  &:nth-child(n+2) {
    margin-left: 40px;
    margin-left: 2.5rem;
  }
}

.p-problem__num {
  display: grid;
  place-content: center;
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 22px;
  font-size: 1.38rem;
  font-weight: 700;
  width: 65px;
  width: 4.06rem;
  height: 65px;
  height: 4.06rem;
  position: absolute;
  top: 0;
  left: 15px;

  span {
    display: inline-block;
    font-size: 38px;
    font-size: 2.38rem;
    font-family: var(--font-roboto);
    font-style: Italic;
  }
}

.p-problem__img {
  display: flex;
  align-items: flex-end;
  height: 333px;
  height: 20.81rem;
  position: relative;
  justify-content: center;

  &:before {
    content: '';
    display: block;
    background: var(--color-white);
    clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
    position: absolute;
    top: 0;
    left: 15%;
    right: 0;
    bottom: 0;
    z-index: -1;
  }

  .p-problem__item:nth-child(1) & {
    justify-content: flex-end;
  }
  .p-problem__item:nth-child(2) & {
    justify-content: flex-start;
  }
}
.p-problem__img01 {
  width: 292px;
  width: 18.25rem;
}
.p-problem__img02 {
  width: 307px;
  width: 19.19rem;
}
.p-problem__img03 {
  width: 223px;
  width: 13.94rem;
}

.p-problem__text {
  color: var(--color-navy);
  font-size: 22px;
  font-size: 1.38rem;
  font-weight: 700;
  text-align: center;
  margin: 1.5em 0 0;
}

.p-problem__bottom {
  content: '';
  display: block;
  width: 100vw;
  /*height: 194px;*/
  aspect-ratio: 1920 / 194;
  /*height: 10.41vw;*/
  /*max-height: 200px;*/
  background: var(--color-gray);
  clip-path: polygon(100% 0%, 0% 0%, 50% 100%);
  position: absolute;
  top: calc(100% - .4px);
  left: 0;
  right: 0;
}

/* solution */
.p-solution {
  background: var(--color-navy);
  color: var(--color-white);
  /*padding: 300px 0 60px;*/
  padding: 15.73vw 0 150px;
  .l-inner {
    max-width: 1276px;
  }
}

.p-solution__head {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.p-solution__title {
  font-size: 34px;
  margin: .25em 0 64px;
}

.p-pointSummary {
  display: flex;
  background: var(--color-navy);
  border: 10px solid var(--color-navy);
  border-top: none;
  border-bottom: none;
  margin: 0 -10px;
  position: relative;
  z-index: 2;
}

.p-pointSummary__item {
  width: calc((100% - 32px * 2) / 3);
  &:nth-child(n+2) {
    margin-left: 32px;
  }
}

.p-pointSummary__num ,
.p-pointDetail__num ,
.p-flow__num {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  font-family: var(--font-roboto);
  font-style: italic;
  line-height: 1;

  span {
    font-size: 64px;
    font-size: 4rem;
    display: inline-block;
  }
}

.p-pointSummary__title {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-yellow);
  color: var(--color-black);
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.7;
  height: calc(1.7 * 3em);
}

.p-pointDetail {

  /*border: 3px solid var(--color-white);*/
  margin: -70px -30px 0;
  padding: 154px 94px 72px;
  padding: 9.63rem 5.88rem 4.5rem;
  position: relative;

  &:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    border: 3px solid var(--color-white);
  }
}

.p-pointDetail__item {
  display: flex;

  &:nth-child(n+2) {
    border-top: 1px solid var(--color-white);
    margin-top: 48px;
    padding-top: 48px;
  }
}

.p-pointDetail__textArea {
  flex: 1;
}

.p-pointDetail__title {
  display: inline-flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: .35em;
}

.p-pointDetail__title.u-onlyPc {
  display: inline-flex;
}

.p-pointDetail__title--line {
  background: var(--color-yellow);
  color: var(--color-navy);
  padding: .125em .25em;
  margin: .125em;
}

.p-pointDetail__text {
  line-height: 1.7;
  margin: 1.875em 0 0;

  .title {
    font-size: 18px;
    font-size: 1.125em;
    font-weight: 700;
    margin: 1.85em 0 .5em;
  }
}

.p-pointDetail__imgArea {
  width: 48.25%;
  margin-left: 3%;
}

.p-aboutCoaching__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.7;
  margin-top: 1.5rem;
}

.p-aboutCoaching__box {
  background: var(--color-blue);
  padding: .5em;
}

.p-aboutCoaching__title {
  font-weight: 700;
  margin: 0 0 .15em;
}

.p-point3Table {
  margin-top: 1.5rem;
  border-collapse: separate;
}
.p-point3Table__item {
  display: flex;
  &:nth-child(n+2) {
    margin-top: .125rem;
  }
}
.p-point3Table__title {
  display: flex;
  align-items: center;
  width: 180px;
  font-weight: 700;
  padding: .65em .63em;
  background: var(--color-yellow2);
  color: var(--color-navy);
}
.p-point3Table__content {
  flex: 1;
  display: flex;
  align-items: center;
  padding: .65em .63em;
  background: var(--color-blue);
}


/* reason */
.p-reason {
  padding: 50px 0;
}

.p-reason__title {
  font-size: 34px;
  font-size: 2.13rem;
  font-weight: 700;
  text-align: center;
}

.p-reason__arrow {
  margin: 40px auto;
  width: 97px;
  height: 28px;
}

.p-reason__outline {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.7;
  margin: 0 0 50px;
}

/* company  */
.p-company {
  background: var(--color-gray);
}

.p-company__title-block {
  text-align: center;
}

.p-company__text {
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #0f165b;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
}

.p-company__content {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-company__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7;
}

.p-company__item + .p-company__item {
  margin-top: 2px;
  margin-top: 0.125rem;
}

.p-company__content-text + .p-company__content-text {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-company__name {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #0f165b;
  padding: 20px;
  padding: 1.25rem;
  width: 16.5476190476%;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7;
}

.p-company__description {
  background: #fff;
  padding: 20px;
  padding: 1.25rem;
  width: 83.4523809524%;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7;
}

.p-compare {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: var(--color-gray);
  width: 100%;
}

.p-compare__other {
  -webkit-filter: drop-shadow(-10px 0 25px rgba(0, 0, 0, 0.08));
  filter: drop-shadow(-10px 0 25px rgba(0, 0, 0, 0.08));
  width: 33.6170212766%;
}

.p-compare__other-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
  -webkit-box-shadow: inset -10px 0 25px rgba(0, 0, 0, 0.08);
  box-shadow: inset -10px 0 25px rgba(0, 0, 0, 0.08);
  background: #eee;
  padding: 52px 80px 75px 45px;
  padding: 3.25rem 5rem 4.6875rem 2.8125rem;
  height: 100%;
}

.p-compare__tag {
  display: inline-block;
  background: #0f165b;
  padding: 10px 25px;
  padding: 0.625rem 1.5625rem;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-compare__thePast {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: -97px;
  margin-left: -6.0625rem;
  padding: 52px 50px 48px 85px;
  padding: 3.25rem 3.125rem 3rem 5.3125rem;
  width: 76.7021276596%;
  height: 100%;
}

.p-compare__logo {
  width: 183px;
  width: 11.4375rem;
  height: auto;
}

.p-compare__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-compare__title {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.p-compare__text {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7;
}

.p-compare__text--center {
  text-align: center;
}

.p-contact {
  background: #0f165b;
}

.p-contact__title {
  text-align: center;
}

.p-contact__text {
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7;
}

.p-contact__btn {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 20px auto 0;
  padding: 20.8px 40px;
  padding: 1.3rem 2.5rem;
  min-width: 240px;
  font-size: 18px;
  font-size: 1.125rem;
}

.p-contact__highlight {
  color: #ffda44;
}


.p-drawer {
  display: none;
}

.p-drawer__items {
  gap: 0 2px;
  gap: 0 0.125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
}

.p-drawer__menu {
  border-bottom: 1px solid white;
  width: 100%;
}

.p-drawer__menu:first-of-type {
  border-top: 1px solid white;
}

.p-drawer__menu:last-of-type {
  border-top: none;
  border-bottom: none;
}

.p-drawer__menu--contact {
  margin-top: 30px;
  margin-top: 1.875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-drawer__link {
  display: block;
  position: relative;
  padding: 15px;
  padding: 0.9375rem;
  width: 100%;
}

.p-drawer__link::after {
  position: absolute;
  top: 50%;
  right: 15px;
  right: 0.9375rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../img/common/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 8px;
  width: 0.5rem;
  height: 15px;
  height: 0.9375rem;
  content: "";
}

/* flow  */
.p-thought {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 80px 0 100px;
  position: relative;
  &:before {
    content: '';
    display: block;
    background: url(../img/thought_bg.png) no-repeat center bottom; / 118% auto;
    opacity: .08;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
  }
/*  &:after {
    content: '';
    display: block;
    background: 
      linear-gradient(0deg, #0F165B, #0F165B),
      linear-gradient(0deg, rgba(15, 22, 91, 0.9), rgba(15, 22, 91, 0.9));
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
  }
*/}

.p-thought__head {
  text-align: center;
  
  .c-section-title {
    margin: 0;
  }
}

.p-thought__lead {
  display: inline-block;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1.66em 0;
  padding: .5em .5em;
  border-bottom: 2px solid var(--color-white);
}

.p-thought__contentsWrap {
  /*height: 600px;*/
  overflow: hidden;
  position: relative;
}
.js-contents_open .p-thought__contents {
  /*height: auto;*/
  /*overflow: hidden;*/
}

.p-thought__item {
  display: flex;
  gap: 32px;

  &:nth-child(2n) {
    flex-direction: row-reverse;
  }
  
  &:nth-child(n+2) {
    margin-top: 80px;
    margin-top: 5rem;
  }
}

.p-thought__textArea {
  flex: 1;
}

.p-thought__title {
  font-size: 18px;
  font-size: 1.13rem;
  font-weight: 700;
  color: var(--color-yellow);
}

.p-thought__texts {
  line-height: 1.7;
  p {
    margin-top: 1.5em;
  }
}

.p-thought__imgArea {
  /*width: 47.22%;*/
  width: 544px;
  width: 34rem;
}

.p-thought__footer {
  position: relative;
  margin: 0 0 -100px;
  padding: 60px 0 100px;
  &:after {
    content: '';
    display: block;
    width: 100%;
    height: 410px;
    background: linear-gradient(180deg, rgba(15, 22, 91, 0) 9.82%, #0F165B 51.14%);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
  }
}
.js-contents_open .p-thought__footer {
  &:after {
    display: none;
  }
}


.p-thought__footerBtn {
  display: block;
  color: var(--color-white);
  border: 1px solid currentColor;
  border-radius: 3em;
  padding: 1.4em 1em;
  width: 280px;
  margin: auto;
  position: relative;
  z-index: 2;
  transition: background .3s, color .3s;

  &:hover {
    background: var(--color-white);
    color: var(--color-navy);
  }
}

 
/* flow  */
.p-flow {
  padding: 70px 0;
}

.p-flow__title {
  text-align: center;
  margin-bottom: 2.5em;
}

.p-flow__list {
}

.p-flow__item {

  &:nth-child(n+2) {
    position: relative;
    margin-top: 25px;
    margin-top: 1.56rem;
    &:before {
      content: '';
      display: block;
      font-size: 27px;
      font-size: 1.69rem;
      width: 1em;
      height: .66em;
      background: var(--color-navy);
      clip-path: polygon(0 0, 100% 0%, 50% 100%);
      position: absolute;
      top: 10px;
      top: 0.63rem;
      left: 50%;
      transform: translateX(-50%);
    }
  }
}

.p-flow__num {
  color: var(--color-navy);
}

.p-flowBox {
  display: flex;
  gap: 20px;
  gap: 1.25rem;
  background: var(--color-white);
  color: var(--color-black);
  padding: 20px;
  padding: 1.25rem;
}

.p-flowBox__imgArea {
  width: 28.42%;
}

.p-flowBox__title {
  font-size: 18px;
  font-size: 1.13rem;
  font-weight: 700;
  margin: 0 0 .5em;
}

.p-flowBox__textArea {
  flex: 1;
}

.p-faq {
  background: var(--color-white);
}

.p-faq__title {
  text-align: center;
  margin-bottom: 2.5em;

}

.p-faq__content {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-faq__item + .p-faq__item {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-faq__question-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-faq__question {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: #0f165b;
  padding: 15px 20px;
  padding: 0.9375rem 1.25rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

.p-faq__question::-webkit-details-marker {
  display: none;
}

.p-faq__question-span {
  display: inline-block;
  margin-right: 10px;
  margin-right: 0.625rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 1;
  white-space: nowrap;
}

.p-faq__question-text {
      padding-right: .4em;
}

.p-faq__question--text {
  font-size: 16px;
  font-size: 1rem;
}

.p-faq__question-btn {
  display: inline-block;
  position: relative;
  margin-left: auto;
  border-radius: 3.125rem;
  background: #fff;
  width: 29px;
  width: 1.8125rem;
  min-width: 29px;
  min-width: 1.8125rem;
  height: 29px;
  height: 1.8125rem;
}

.p-faq__question-btn::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 100vmax;
  background: #0f165b;
  width: 14px;
  width: 0.875rem;
  height: 2px;
  content: "";
}

.p-faq__question-btn::after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  border-radius: 100vmax;
  background: #0f165b;
  width: 14px;
  width: 0.875rem;
  height: 2px;
  content: "";
}

.p-faq__question-btn.is-opened::after {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
  transform: translate(-50%, -50%) rotate(0deg);
}

.p-faq__answer {
  background: #fff;
  overflow: hidden;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7;
}

.p-faq__answer-wrap {
  gap: 3px;
  gap: 0.1875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  padding: 1.25rem;
}

.p-faq__answer-content {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.p-faq__answer-a {
  margin-right: 10px;
  margin-right: 0.625rem;
  color: #0f165b;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.p-faq__answer-list {
  background: #EFF1F9;
  padding: 30px;
  padding: 1.88rem;
}

.p-faq__answer-list-title {
  font-weight: 700;
  border-bottom: 1px solid #0F165B;
  padding: .75em 1em;
}
.p-faq__answer-list-title:nth-child(n+2) {
  margin-top: 1em;
}
.p-faq__answer-list-detail {
  padding: .75em 1em;
}

.p-feature {
  padding-top: 0;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  position: relative;
  z-index: 1;
}

.p-feature::before {
  display: block;
  background-image: url(../img/feature-bg.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 740px;
  /*height: 38.54rem;*/
  content: "";
}

.p-feature__inner {
  margin-top: -430px;
  margin-top: -26.88rem;
}

.p-feature-title {
  background: #0f165b;
  padding: 20px;
  padding: 1.25rem;
  color: #fff;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.p-feature__material {
  margin-top: 60px;
}

.p-feature__head {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

.p-feature__head:not(:first-of-type) {
  margin-top: .6em;
}

.p-feature__head--line {
  display: inline-block;
  background: var(--color-yellow);
  margin: .25em 0 0;
  padding: .125em .5em;
}

.p-feature__content {
  background: var(--color-white);
  padding: 48px 64px;
  padding: 3rem 4rem;
}

.p-feature__text-block {
  margin-top: 64px;
  margin-top: 4rem;
}

.p-feature__text {
  line-height: 1.7;
}

.p-feature__text + .p-feature__text {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-feature__compare {
  margin-top: 64px;
  margin-top: 4rem;
}

.p-feature__pronunciation {
  margin-top: 64px;
  margin-top: 4rem;
  border: 2px solid var(--color-navy);
}

.p-footer {
  background-color: #fff;
}

.p-footer__inner {
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-right: 50px;
  padding-right: 3.125rem;
  padding-left: 50px;
  padding-left: 3.125rem;
  max-width: 1920px;
  max-width: 120rem;
}

.p-footer__items {
  gap: 30px;
  gap: 1.875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-footer__link {
  padding: 10px 0;
  padding: 0.625rem 0;
  width: 100%;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7;
}

.p-footer__copy {
  padding: 10px 0;
  padding: 0.625rem 0;
  color: #292929;
}

.p-header {
  background-color: #0f165b;
  padding-top: 10px;
  padding-top: 0.625rem;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  height: 70px;
  height: 4.375rem;
}

.p-header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  max-width: none;
}

.p-header__logo {
  z-index: 100000;
  width: 160px;
  width: 10rem;
  height: auto;
}

.p-header__logo a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.p-header__logo img,
.p-header__logo svg {
  width: auto;
  height: inherit;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-header__hamburger {
  display: none;
}

.p-header__hamburger {
  z-index: 9999;
  margin-left: auto;
}

.p-header__hamburger-bar {
  display: block;
  position: relative;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
  background-color: #fff;
  width: 35.5px;
  width: 2.21875rem;
  height: 1px;
  height: 0.0625rem;
}

.p-header__hamburger:nth-child(1) {
  top: 0;
}

.p-header__hamburger.is-open .p-header__hamburger-bar:nth-child(1) {
  top: 9px;
  top: 0.5625rem;
  -webkit-transform: rotate(35deg);
  transform: rotate(35deg);
}

.p-header__hamburger-bar:nth-child(2) {
  margin: 7.5px 0;
  margin: 0.46875rem 0;
}

.p-header__hamburger.is-open .p-header__hamburger-bar:nth-child(2) {
  opacity: 0;
}

.p-header__hamburger-bar:nth-child(3) {
  top: 0;
}

.p-header__hamburger.is-open .p-header__hamburger-bar:nth-child(3) {
  top: -8px;
  top: -0.5rem;
  -webkit-transform: rotate(-35deg);
  transform: rotate(-35deg);
}

.p-header__nav {
  display: block;
  margin-left: auto;
  height: inherit;
}

.p-header__nav-items {
  gap: 24px;
  gap: 1.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: inherit;
}

.p-header__nav-item {
  height: inherit;
}

.p-header__nav-item--contact {
  margin-left: -8px;
  margin-left: -0.5rem;
  height: auto;
}

.p-header__nav-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
}

.p-header__nav-span {
  display: inline-block;
  position: relative;
}

.p-header__nav-span::after {
  position: absolute;
  bottom: -5px;
  bottom: -0.3125rem;
  left: 0;
  scale: 0;
  -webkit-transition: scale 0.3s ease;
  transition: scale 0.3s ease;
  background: #fff;
  width: 100%;
  height: 1px;
  content: "";
}

.p-header__drawer {
  display: none;
}

.p-introduction-card {
  background: #fff;
  padding: 20px 30px;
  padding: 1.25rem 1.875rem;
  height: 100%;
  border-left: 7px solid #132468;
}

.p-introduction-card__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row-reverse;
}

.p-introduction-card__profile {
  margin-top: 1.75em;
  display: flex;
  align-items: center;
  gap: 1em;
}

.p-introduction-card__name {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
}

.p-introduction-card__tag {
  display: inline-block;
  background: #0F165B;
  color: #FFDA44;
  font-weight: 700;
  padding: .125em .75em;
}

.p-introduction-card__img {
  width: 31.1355311%; /* 340 / 1092 */
  margin: 0 4% 0 0;
}

.p-introduction-card__img img {
}

.p-introduction-card__introduction {
  flex: 1;
}

.p-introduction-card__title {
  color: #0f165b;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.7;
}

.p-introduction-card__text {
  margin-top: 1.75em;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.p-introduction-card__text p:nth-child(n+2) {
  margin-top: 1.5em;
}

.p-introduction-cards__item {
  margin-inline: 15px;
  margin-inline: 0.9375rem;
  height: auto;

  &:nth-child(n+2) {
    margin-top: 30px;
  }
}

.p-introduction {
  background: #e2e4f0;
}

.p-introduction__title {
  margin-bottom: 2.5em;
  text-align: center;
}

.p-introduction__content {
}

.p-introduction__pagination-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-introduction__prev-btn,
.p-introduction__next-btn {
  aspect-ratio: 1;
  width: 38px;
  width: 2.375rem;
}

.p-introduction__prev-btn {
  margin-right: 20px;
  margin-right: 1.25rem;
}

.p-introduction__next-btn {
  margin-left: 20px;
  margin-left: 1.25rem;
}

.p-introduction__prev-btn img,
.p-introduction__next-btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-material-item {
  gap: 30px;
  gap: 1.875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}

.p-material-item + .p-material-item {
  border-top: 1px solid rgba(15, 22, 91, 0.2);
  padding-top: 30px;
  padding-top: 1.875rem;
}

.p-material-item:last-of-type {
  margin-bottom: 0;
}

.p-material-item__img {
  aspect-ratio: 350 / 208;
  width: 37.2340425532%;
  overflow: hidden;
}

.p-material-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-material-item__body {
  width: 59.5744680851%;
}

.p-material-item__sub-title {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.6;
}

.p-material-item__sub-items {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.p-material-item__sub-item + .p-material-item__sub-item {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.p-material-item__head {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.7;
}

.p-material-item__description {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7;
}

.p-material__content {
  background: var(--color-white);
  padding: 50px 130px;
  padding: 3.125rem 8.125rem;
}


/* price  */
.p-price {
  background: #0f165b;
  color: var(--color-white);
}

.p-price__title {
  text-align: center;
}

.p-priceBox + .p-priceBox {
  margin-top: 3rem;
}

.p-priceBox__title {
  background: var(--color-yellow2);
  color: var(--color-navy);
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  padding: .35em 0;
}

.p-priceBox__content {
  display: flex;
  color: var(--color-navy);
}

.p-priceBox__summary {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 460px;
  width: 28.75rem;
  background: var(--color-cream);
  padding: 2rem;
}

.p-priceBox__detail {
  flex: 1;  
  background: var(--color-white);
  padding: 2rem;
  line-height: 1.7;
}

.p-priceBox__title2 {
  font-size: 18px;
  font-size: 1.13rem;
  font-weight: 700;
  margin-top: 1.66em;
  padding-left: 22px;
  padding-left: 1.38rem;
  position: relative;
  &:before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    font-size: 10px;
    font-size: 0.63rem;
    margin-right: 1.2em;
    background: currentColor;
    clip-path: circle(40%);
    position: absolute;
    top: 1.2em;
    left: 0;

  }
}

.p-priceBox__title2:first-child {
  margin-top: 0;
}

.p-priceBox__title2 + .p-priceBox__text {
  margin-top: .25em;
  padding-left: 22px;
  padding-left: 1.38rem;
}

.p-priceBox__note {
  font-size: 14px;
  font-size: 0.88rem;
  margin-top: 1.5em;
}

.p-fee {
  font-size: 26px;
  font-size: 1.63rem;
  font-weight: 700;

  span {
    font-size: 2.5em;
    font-family: var(--font-roboto);
    line-height: 1;
  }
}

.p-fee__tag {
  display: inline-block;
  background: var(--color-navy);
  color: var(--color-white);
  font-weight: 700;
  margin: 0 0 1em;
  padding: .4em 1.25em;
  border-radius: 2em;
}

.p-fee__tax {
  font-size: 18px;
  font-size: 1.13rem;
  font-weight: 700;
  margin-top: .25em;
}

.p-fee__note {
  margin: 1.25em 0 1em;

}


.p-pronunciation__titleWrap {
  text-align: center;
  transform: translateY(-50%);
}

.p-pronunciation__title {
  display: inline-block;
  background: #0f165b;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  padding: 8px 24px;
  padding: 0.5rem 1.5rem;
}

.p-pronunciation__body {
  margin-top: -16px;
  padding: 0 50px 60px;
  padding: 0 3.125rem 3.75rem;
}

.p-pronunciation__text {
  /*font-weight: 500;*/
  line-height: 1.7;
  text-align: center;
}

.p-pronunciation__text + .p-pronunciation__text {
  margin-top: 2.5rem;
}

.p-pronunciation__center .p-pronunciation__text + .p-pronunciation__text {
  margin-top: 1.25rem;
}

.p-pronunciation__text-span {
  font-weight: 700;
}

.p-pronunciation__text--bold {
  font-weight: 700;
}

.p-pronunciation__text-fz18 {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.8;
}

.p-pronunciation__text-fz20 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.8;
}

.p-pronunciation__center {
  margin-top: 40px;
  margin-top: 2.5rem;
  background: rgba(255, 245, 205, 0.6);
  background: rgba(255, 245, 205, 0.6);
  padding: 2rem 1.25rem;
}

.p-pronunciation__bottom {
  position: relative;
  background: var(--color-gray);
  margin-top: 40px;
  margin-top: 2.5rem;
  padding: 20px 112px 30px;
  padding: 1.25rem 7.0625rem 1.875rem;
}

.p-pronunciation__bottom::before {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(0 0, 0 5%, 3% 0);
  clip-path: polygon(0 0, 0 5%, 3% 0);
  background: #0f165b;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  content: "";
}

.p-pronunciation__sub-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #0f165b;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin: 0 auto 1.75em;

}

.p-pronunciation__example {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #333;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7;
}

.p-pronunciation__example-span {
  display: inline-block;
  position: relative;
  font-weight: 700;
  padding-left: 27px;
  padding-left: 1.6875rem;
}

.p-pronunciation__example-span::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../img/common/vowel.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  content: "";
}

.p-pronunciation__items {
  margin-top: 34px;
  margin-top: 2.13rem;
}

.p-pronunciation__item {
  padding-bottom: 17px;
  padding-bottom: 1.0625rem;
}

.p-pronunciation__item:not(:first-of-type) {
  position: relative;
  padding-top: 17px;
  padding-top: 1.0625rem;
}

.p-pronunciation__item:not(:first-of-type)::before {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(
    to right,
    rgba(15, 22, 91, 0.2) 4px,
    transparent 4px
  );
  background-repeat: repeat-x;
  background-size: 10px 2px;
  width: 100%;
  height: 1px;
  height: 0.0625rem;
  content: "";
}

.p-pronunciation__item:last-of-type {
  padding-bottom: 0;
}

.p-pronunciation__head {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 900;
}

.p-pronunciation__text-block {
  position: relative;
}

.p-pronunciation__bottom-text {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7;
}

.p-pronunciation__bottom-text--mt0 {
  margin-top: 0;
}

.p-pronunciation__bottom-text--mt {
  margin-top: 0;
}

.p-pronunciation__sign {
  font-size: 12px;
  font-size: 0.75rem;
}

.p-pronunciation__bubble {
  position: absolute;
  z-index: 1;
  -webkit-filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  padding: 7px 10px;
  padding: 0.4375rem 0.625rem;
  color: #0f165b;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-pronunciation__bubble::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: 0.625rem;
  background: #ffda44;
  width: 100%;
  height: 100%;
  content: "";
}

.p-pronunciation__bubble::after {
  position: absolute;
  background: #ffda44;
  content: "";
}

.p-pronunciation__bubble--01 {
  top: -32px;
  top: -2rem;
  left: min(9.5rem, 24%);
}

.p-pronunciation__bubble--01::after {
  top: 50%;
  left: -20px;
  left: -1.25rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-clip-path: polygon(100% 0%, 0% 100%, 100% 75%);
  clip-path: polygon(100% 0%, 0% 100%, 100% 75%);
  width: 22px;
  width: 1.375rem;
  height: 18px;
  height: 1.125rem;
}

.p-pronunciation__bubble--02 {
  top: 20px;
  top: -1.125rem;
  right: -52px;
  right: 0.75rem;
}

.p-pronunciation__bubble--02::after {
  top: 40%;
  left: -72px;
  left: -4.5rem;
  -webkit-clip-path: polygon(100% 0%, 0% 100%, 100% 35%);
  clip-path: polygon(100% 0%, 0% 100%, 100% 35%);
  width: 75px;
  width: 4.6875rem;
  height: 40px;
  height: 2.5rem;
}

.p-pronunciation__bubble--03 {
  top: -60px;
  top: -3.75rem;
  right: -48px;
  right: -3rem;
}

.p-pronunciation__bubble--03::after {
  bottom: -18px;
  bottom: -1.125rem;
  left: 53%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
  clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
  width: 18px;
  width: 1.125rem;
  height: 20px;
  height: 1.25rem;
}

.p-slider__control {
  margin-inline: auto;
  padding-inline: 40px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}

.p-slider__arrows {
  cursor: pointer;
}

.p-slider__prev-arrow {
  position: absolute;
  top: -8px;
  top: -0.5rem;
  left: 0;
}

.p-slider__next-arrow {
  position: absolute;
  top: -8px;
  top: -0.5rem;
  right: 0;
}

.p-slider__prev-arrow,
.p-slider__next-arrow {
  width: 38px;
  width: 2.375rem;
  height: 38px;
  height: 2.375rem;
}

.p-slider__prev-arrow {
  margin-left: -15px;
  margin-left: -0.9375rem;
}

.p-slider__next-arrow {
  margin-right: -15px;
  margin-right: -0.9375rem;
}

.p-slider__dots .slick-dots {
  position: static;
  font-size: 0;
}

.p-voice-card {
  background: #fff;
  padding: 20px 30px;
  padding: 1.25rem 1.875rem;
  height: 100%;
}

.p-voice-card__header {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-voice-card__point {
  display: inline-block;
  background: #0f165b;
  padding: 5px 10px;
  padding: 0.3125rem 0.625rem;
  color: #ffda44;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}

.p-voice-card__point-span {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
}

.p-voice-card__name {
  margin-top: 12px;
  margin-top: 0.75rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
}

.p-voice-card__img {
  width: 30.3797468354%;
}

.p-voice-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-voice-card__introduction {
  width: 59.4936708861%;
}

.p-voice-card__title {
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #0f165b;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
}

.p-voice-card__text {
  margin-top: 10px;
  margin-top: 0.625rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7;
}

.p-voice-cards__item {
  margin-inline: 15px;
  margin-inline: 0.9375rem;
  height: auto;
}

.p-voice {
  background: #eff1f9;
}

.p-voice__title {
  text-align: center;
  margin-bottom: 2.5em;
}

.p-voice__content {
  position: relative;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/************************************************************************
 * visible device spファースト
 ************************************************************************/
.u-onlyPc {
  display: block;
}

.u-onlySp {
  display: none;
}

.red {
  color: #e30f0f;
}

.yellow {
  color: #FFC344;
}

.white {
  color: var(--color-white);
}

.u-inlineBlock {
  display: inline-block !important;
}

.u-block {
  display: block !important;
}

.u-inline {
  display: inline !important;
}

.u-textZ_right {
  text-align: right !important;
}

.underline {
  border-bottom: 2px solid #0f165b;
}

.highlight {
  display: inline;
  background: #ffeca2;
}

.bold {
  font-weight: 700;
}

@media (max-width: 1200px) {
  html {
    font-size: 1.3333333333vw;
  }

  .p-header__nav-items {
    gap: 20px;
    gap: 1.25rem;
  }

  .l-inner {
    padding: 0 24px;
    padding: 0 1.5rem;
  }

}

@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }

  body {
    line-height: 1.7;
  }

  .l-about {
    margin-top: 14px;
    margin-top: 0.875rem;
    padding-bottom: 48px;
    padding-bottom: 3rem;
  }

  .l-inner {
    padding: 0 20px;
    padding: 0 1.25rem;
    max-width: 630px;
  }

  .l-inner.l-inner--ss {
    max-width: 630px;
  }

  .l-inner.l-inner--s {
    max-width: 630px;
  }

  .l-inner.l-inner--l {
    max-width: 1216px;
  }

  .l-inner.l-inner--full {
    max-width: none;
  }

  .l-feature {
    padding-top: 0;
    padding-bottom: 0;
  }

  .l-footer {
    padding-top: 10px;
    padding-top: 0.625rem;
    padding-bottom: 20px;
    padding-bottom: 1.25rem;
  }

  .l-mv {
    padding-top: 16px;
    padding-top: 1rem;
    padding-bottom: 86px;
  }

  .l-section {
    padding-top: 20px;
    padding-top: 1.25rem;
    padding-bottom: 50px;
    padding-bottom: 3.125rem;
  }

  .l-section--pb {
    padding-top: 0;
  }

  .c-btn {
    gap: 0;
    padding: 1.35em 0.68em 1.35em 1.25em;
    font-size: 17px;
    font-size: 4.53vw;
    line-height: 1.3;
  }

  .c-btn__tag {
    margin-right: 10px;
    margin-right: 0.63rem;
    padding: .3em 1em;
    font-size: 14px;
    font-size: 3.73vw;
  }

  .c-btn__text {
    padding-right: 30px;
    padding-right: 1.875rem;
    margin: auto;
  }

  .c-btn::after {
    top: 50%;
    right: 15px;
    right: 0.9375rem;
  }

  .c-section-title {
    font-size: 22px;
    font-size: 1.375rem;
  }

  /* hero  */

  .p-hero {
    padding: 20px 20px 580px;
    padding: 20px 20px 154.67vw;
    background: url(../img/hero_img_sp.jpg) no-repeat center bottom  / 100% auto;
    &:before {
      width: 100%;
      height: 100%;
      transform: translate(0, -47%) skew(0, -9deg);
    }
  }

  .p-hero .l-inner.l-inner--l {
    padding: 0;
  }

  .p-hero__content {
    width: 100%;
    min-width: auto;
  }
  .p-hero__lead {
    font-size: 14px;
    font-size: 3.6vw;
    padding: .35em .7em;
    letter-spacing: .02em;
  }

  .p-hero__main {
    width: 91.2vw;
  }

  .p-hero__titlePre {
    font-size: 16px;
    font-size: 4.27vw;
    transform: translateX(0.75em) rotate(-6.12deg);
  }
  .p-hero__title {
    font-size: 24px;
    font-size: 6.4vw;
    text-align: center;
    margin-bottom: .4em;
    .text1 {
      font-size: 39px;
      font-size: 10.4vw;
      letter-spacing: .1em;
    }
    .text2 {
      font-size: 44px;
      font-size: 11.73vw;
      letter-spacing: .1em;
    }
    .text3 {
      padding: 0 .2em;
    }

  }

  .p-heroPoint {
    gap: 8px;
    width: 100%;
  }
  .p-heroPoint__item {
    width: calc((100% - 8px * 2) / 3);
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .p-heroPoint__text {
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 1.5;
  }
  .p-heroPoint__num {
    font-size: 16px;
    font-size: 4.27vw;
    padding: .125em 0 0;
  }
  .p-heroPoint__numInt {
    font-size: 28px;
    font-size: 7.47vw;
  }

  .p-heroPoint__noteList {
    order: 4;
    position: static;
    text-align: right;
    padding: 1.25em 0 2em;
    z-index: 1;
  }

  .p-mv__point {
    font-size: 14px;
    font-size: 3.73vw;
    margin: 2.5em 0 1em;
  }

  .p-hero__chat {
    width: 98.93vw;
    top: 50%;
    left: 1%;
  }

  .p-mv__btn-wrap {
    order: 3;
  }


  /* problem */
  .p-problem {
    padding: 33px 0 0;
    padding: 2.06rem 0 0m;
  }

  .p-problem__title {
    font-size: 26px;
    font-size: 6.93vw;
    line-height: 1.7;

    span {
      margin: 0 .5em;
      padding: .075em .65em;
    }
  }

  .p-problem__list {
    flex-direction: column;
  }

  .p-problem__item {
    width: 100%;
    padding: 0;
    border: none;

    &:nth-child(n+2) {
      margin: 1rem 0 0;
      padding: 1rem 0 0;
      border-top: 1px solid var(--color-navy);
    }
  }

  .p-problem__num {
    font-size: 4.27vw;
    width: 14.4vw;
    height: 14.4vw;
    top: 5.33vw;
    left: 5.33vw;

    span {
      font-size: 8vw;
    }
  }

  .p-problem__img {
    margin: 0 18.67vw 0 17.33vw;
    height: 61.33vw;
  }

  .p-problem__img01 {
    width: 53.6vw;
  }
  .p-problem__img02 {
    width: 56.53vw;
  }
  .p-problem__img03 {
    width: 41.2vw;
  }

  .p-problem__text {
    font-size: 18px;
    font-size: 4.8vw;
  }

  .p-problem__bottom {
    aspect-ratio: 375 / 95;
    top: calc(100% - 1px);
  }

  /* solution */
  .p-solution {
    overflow: hidden;
    padding: 34.13vw 0 16vw;
  }

  .p-solution__head {
    font-size: 4.27vw;
  }

  .p-solution__head {
    font-size: 4.27vw;
  }

  .p-solution__title {
    font-size: 5.87vw;
    margin-bottom: 1.2em;
  }

  .p-pointSummary {
    flex-direction: column;
    margin: 0 3vw;
    gap: 1.5vw;
  }

  .p-pointSummary__title {
    font-size: 18px;
    font-size: 4.8vw;
  }

  .p-pointSummary__item {
    width: 100%;

    &:nth-child(n+2) {
      margin: 0;
    }
  }

  .p-pointDetail {
    margin: -10vw -1.07vw 0;
    padding: 20vw 5.33vw 4vw;
  }

  .p-pointDetail__item {
    flex-direction: column;
  }

  .p-pointDetail__imgArea {
    width: 100%;
    margin: 1em 0 0;
  }

  .p-aboutCoaching__box {
    padding: 1em .75em;
  }

  .p-pointDetail__title {
    font-size: 20px;
    font-size: 5.33vw;
  }
  .p-pointDetail__title.u-onlyPc {
    display: none;
  }
  .p-pointDetail__title.u-onlySp {
    display: inline-flex;
  }

  .p-point3Table__title {
    width: 120px;
    width: 32vw;
  }


  /* ccompany  */
  .p-company__text {
    text-align: left;
  }

  .p-company__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-company__item + .p-company__item {
    margin-top: 0;
  }

  .p-company__name {
    -webkit-box-pack: left;
    -webkit-justify-content: left;
    -ms-flex-pack: left;
    justify-content: left;
    padding: 10px 20px;
    padding: 0.625rem 1.25rem;
    width: 100%;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-company__description {
    width: 100%;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-compare {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-compare__other {
    width: 100%;
  }

  .p-compare__other-inner {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 75%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 75%, 0% 100%);
    padding: 20px 66px 43px;
    padding: 1.25rem 4.125rem 2.6875rem;
  }

  .p-compare__thePast {
    margin-top: -72px;
    margin-top: -4.5rem;
    margin-left: 0;
    padding: 82px 15px 30px;
    padding: 5.125rem 0.9375rem 1.88rem;
    width: 100%;
  }

  .p-compare__logo {
    width: 161px;
    width: 10.0625rem;
  }

  .p-compare__title {
    margin-top: 10px;
    margin-top: 0.625rem;
    line-height: 1.7;
    text-align: center;
    white-space: inherit;
  }

  .p-compare__text {
    margin-top: 10px;
    margin-top: 0.625rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-drawer {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin-top: 50px;
    margin-top: 3.125rem;
    background: #0f165b;
    padding-top: 40px;
    padding-top: 2.5rem;
    padding-bottom: 100px;
    padding-bottom: 6.25rem;
    width: 100%;
    height: calc(100vh - 3.125rem);
    height: calc(100svh - 3.125rem);
    overflow-y: auto;
  }

  .p-faq__content {
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-faq__question {
    padding: 16px 15px;
    padding: 1rem 0.9375rem;
  }

  .p-faq__question-span {
    margin-right: 0;
  }

  .p-faq__answer {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-faq__answer-wrap {
    flex-direction: column;
    gap: 3vw;
    padding: 20px 18px;
    padding: 5.33vw 4.8vw;
  }

  .p-faq__answer-a {
    margin-right: 2px;
    margin-right: 0.125rem;
  }

  .p-feature-title {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 15px;
    padding: 0.9375rem;
    font-size: 22px;
    font-size: 1.375rem;
  }

  .p-feature {
    background: #eff1f9;
  }

  .p-feature::before {
    background-image: url(../img/feature-bg-sp.jpg);
    height: 234px;
    height: 14.63rem;
  }

  .p-feature__head {
    font-size: 18px;
    font-size: 4.8vw;
    text-align: left;
  }

  .p-feature__head--line {
    background: none;
    margin: 0;
    padding: 0;
  }

  .p-feature__head--line--sp {
    display: inline-block;
    background: var(--color-yellow);
    margin: .25em 0 0;
    padding: .125em .5em;
  }

  .p-feature__inner {
    margin-top: 0;
  }

  .p-feature__content {
    margin: 0 -20px;
    padding: 20px 0 56px;
    padding: 1.25rem 20px 3.5rem;
  }

  .p-feature__text-block {
    margin-top: 32px;
  }

  .p-feature__text {
    margin-top: 24px;
  }

  .p-feature__compare {
    margin-top: 30px;
    margin-top: 1.875rem;
  }

  .p-feature__pronunciation {
    margin-top: 48px;
    margin-top: 2.38rem;
  }

  .p-feature__material {
    margin: 0;
  }

  /* price  */
  .p-priceBox__title {
    font-size: 5.33vw;
  }

  .p-priceBox__content {
    flex-direction: column;
  }

  .p-priceBox__summary {
    width: 100%;
  }

  .p-priceBox__detail {
    padding: 5.33vw;
  }

  .p-fee {
    font-size: 5.33vw;

    span {
      font-size: 2em;
    }
  }

  .p-fee__tag {
    padding: .25em 1.25em;
  }

  .p-fee__tax {
    font-size: 4.27vw;
  }

  .p-fee__note {
    margin-bottom: 0;
  }

  .p-fee__noteSeparator {
    display: block;
    height: 0;
  }


  /* footer  */
  .p-footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-footer__items {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-footer__item {
    text-align: center;
  }

  .p-footer__link {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-footer__copy {
    margin-top: 30px;
    margin-top: 1.875rem;
  }

  .p-header {
    padding-top: 5px;
    padding-top: 0.3125rem;
    padding-bottom: 5px;
    padding-bottom: 0.3125rem;
    height: 50px;
    height: 3.125rem;
  }

  .p-header__logo {
    width: 127px;
    width: 7.9375rem;
  }

  .p-header__hamburger {
    display: block;
  }

  .p-header__nav {
    display: none;
  }

  .p-header__drawer {
    display: block;
  }

  .p-introduction-card {
    padding: 25px 30px 50px;
    padding: 1.56rem 1.88rem 3.13rem;
    border-left: none;
    border-top: 4px solid #132468;
  }

  .p-introduction-card::before {
    -webkit-clip-path: polygon(0 0, 0 6%, 8% 0);
    clip-path: polygon(0 0, 0 6%, 8% 0);
  }

  .p-introduction-card__header {
    gap: 32px;
    gap: 2rem;
    flex-direction: column-reverse;
  }

  .p-introduction-card__name {
    margin-top: 10px;
    margin-top: 0.625rem;
  }

  .p-introduction-card__img {
    width: 50.67vw;
    margin: auto;
  }

  .p-introduction-card__introduction {
    width: 100%;
  }

  .p-introduction-card__title {
    font-size: 18px;
    font-size: 1.13rem;
  }

  .p-introduction-card__profile {
    margin-top: 1.5em;
  }

  .p-introduction-card__text {
    font-size: 16px;
    font-size: 1rem;
    margin-top: 1.5em;
  }

  .p-introduction-cards__item {
    margin-inline: 0;
    &:nth-child(n+2) {
      margin-top: 24px;
      margin-top: 1.5rem;
    }
  }

  .p-introduction__content {
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  .p-material-item {
    gap: 20px;
    gap: 1.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 15px;
    margin-bottom: 0.9375rem;
  }

  .p-material-item + .p-material-item {
    padding-top: 20px;
    padding-top: 1.25rem;
  }

  .p-material-item__img {
    aspect-ratio: 345 / 208;
    width: 100%;
  }

  .p-material-item__body {
    padding-inline: 15px;
    padding-inline: 0.9375rem;
    width: 100%;
  }

  .p-material-item__sub-title {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .p-material-item__head {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-material-item__description {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-material__content {
    margin: 0 -15px;
    padding: 20px 15px;
    padding: 1.25rem 0.94rem;
  }

  .p-voice,
  .p-introduction,
  .p-thought,
  .p-flow,
  .p-faq ,
  .p-company {
    padding: 40px 0 56px;
    padding: 2.5rem 0 3.5rem;
  }

  .p-voice__title,
  .p-introduction__title,
  .p-flow__title, 
  .p-faq__title, 
  .c-section-title {
    margin-bottom: 24px;
    margin-bottom: 1.5rem;
  }

  .p-pronunciation__titleWrap {
    transform: translateY(-20%);
  }
  .p-pronunciation__title {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.5;
    background: none;
    padding: 0;

    span {
      display: inline-block;
      background: #0f165b;
      margin: .1em 0;
      padding: 0.125rem .5rem;
    }
  }

  .p-pronunciation__body {
    margin-top: -.25em;
    padding: 5px 20px 32px;
    padding: .25rem 1.25rem 2rem;
  }

  .p-pronunciation__text {
    font-size: 16px;
    font-size: 1rem;
    text-align: left;

  }

  .p-pronunciation__text + .p-pronunciation__text ,
  .p-pronunciation__center .p-pronunciation__text + .p-pronunciation__text {
    margin-top: 1.5em;
  }

  .p-pronunciation__text-fz18 {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.7;
  }

  .p-pronunciation__text-fz20 {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.7;
  }

  .p-pronunciation__center {
    margin-top: 1.5em;
    padding: 20px 16px;
    padding: 1.25rem 1rem;
  }

  .p-pronunciation__bottom {
    margin-top: 30px;
    margin-top: 1.875rem;
    padding: 20px 15px;
    padding: 1.25rem 0.9375rem;
  }

  .p-pronunciation__bottom::before {
    -webkit-clip-path: polygon(0 0, 0 2%, 8% 0);
    clip-path: polygon(0 0, 0 2%, 8% 0);
  }

  .p-pronunciation__sub-title {
    width: 100%;
    font-size: 20px;
    font-size: 1.25rem;
    margin-bottom: 1.5em;
  }

  .p-pronunciation__example {
    margin: 0.75em 0 1em;
    padding: 11px 15px;
    padding: 0 0.9375rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-pronunciation__example-span {
    padding-left: 34px;
    padding-left: 2.125rem;
  }

  .p-pronunciation__example-span::before {
    top: 12px;
    top: 0.75rem;
    left: -2px;
    left: -0.125rem;
  }

  .p-pronunciation__items {
    margin-top: 10px;
    margin-top: 0.625rem;
  }

  .p-pronunciation__item {
    padding-bottom: 20px;
    padding-bottom: 1.25rem;
  }

  .p-pronunciation__item:not(:first-of-type) {
    padding-top: 10px;
    padding-top: 0.625rem;
  }

  .p-pronunciation__head {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-pronunciation__bottom-text {
    margin-top: 10px;
    margin-top: 0.625rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-pronunciation__bottom-text--mt0 {
    margin-top: 0;
  }

  .p-pronunciation__bottom-text--mt {
    margin-top: 10px;
    margin-top: 0.625rem;
  }

  .p-pronunciation__sign {
    font-size: 14px;
    font-size: 0.875rem;
  }

  .p-pronunciation__bubble {
    position: relative;
    top: initial;
    right: inherit;
    left: inherit;
    margin-top: 10px;
    margin-top: 0.625rem;
    padding: 7px 10px 15px;
    padding: 0.4375rem 0.625rem 0.9375rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: none;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.7;
  }

  .p-pronunciation__bubble::before {
    top: 0;
    left: 0;
    border-radius: 0.625rem;
    background: #ffda44;
    width: 100%;
    height: 100%;
  }

  .p-pronunciation__bubble::after {
    top: -10px;
    top: -0.625rem;
    left: 40px;
    left: 2.5rem;
    -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    width: 20px;
    width: 1.25rem;
    height: 12px;
    height: 0.75rem;
  }

  .p-pronunciation__bubble--01 {
    top: 0;
    left: 0;
  }

  .p-pronunciation__bubble--01::after {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  .p-pronunciation__bubble--03 {
    padding: 7px 10px;
    padding: 0.4375rem 0.625rem;
  }
  .p-voice-card {
    padding: 20px 15px 20px;
    padding: 1.25rem 0.9375rem 1.25rem;
  }

  .p-voice-card__header {
    gap: 10px;
    gap: 0.625rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-voice-card__point-span {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-voice-card__name {
    margin-top: 10px;
    margin-top: 0.625rem;
  }

  .p-voice-card__img {
    width: 38.0952380952%;
  }

  .p-voice-card__introduction {
    width: 100%;
    text-align: center;
  }

  .p-voice-card__text {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-voice-cards__item {
    margin-inline: 0;
  }

  .p-voice__content {
    margin-top: 20px;
    margin-top: 1.25rem;
  }

  /* thought */
  .p-thought__lead {
    font-size: 18px;
    font-size: 4.8vw;
    margin: 1.25em 0 2em;
  }

  .p-thought__title {
    font-size: 18px;
    font-size: 4.8vw;
  }

  .p-thought__item {
    display: block;
    &:nth-child(n+2) {
      margin-top: 14.93vw;
    }
  }

  .p-thought__footer {
    padding: 60px 0;
    padding: 0;
    margin: 0;

    &:after {
      height: 42vw;
    }
  }

  .p-thought__footerBtn {
    padding: .8em 1em;
  }

  .js-contents_open .p-thought__footerBtn {
    margin-top: 1.5em;
  }

  .p-flow {
    padding: 10.67vw 0 14.93vw;
  }

  .p-flow__list {
    flex-direction: column;
  }

  .p-flow__item {
    &:nth-child(n+2) {
      margin-top: 4.27vw;
      &:before {
        top: 4vw;
        left: 50%;
      }
    }
  }

  .p-flowBox {
    flex-direction: column;
  }

  .p-flowBox__imgArea {
    width: 100%;
  }

  .p-thought__imgArea {
    width: 100%;
    margin-top: 1.75rem;
  }

  .u-onlyPc {
    display: none;
  }

  .u-onlySp {
    display: block;
  }
}

@media (min-width: 768px) and (max-width: 1370px) {
  .p-pointSummary {
    margin: 0 20px;
  }

  .p-pointDetail {
    margin: -70px 0 0;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

@media (hover: hover) {
  .c-btn.c-btn--shine:hover {
    opacity: 1;
    border-color: linear-gradient(#ff710c 41%, #d8461d 100%);
    background-color: linear-gradient(#ff710c 41%, #d8461d 100%);
    color: #fff;
  }

  .c-btn.c-btn--shine:hover::before {
    -webkit-animation: shine 0.7s;
    animation: shine 0.7s;
  }

  .c-cta-btn.c-cta-btn--shine:hover {
    opacity: 1;
    border-color: linear-gradient(#ff710c 41%, #d8461d 100%);
    background-color: linear-gradient(#ff710c 41%, #d8461d 100%);
    color: #fff;
  }

  .c-cta-btn.c-cta-btn--shine:hover::before {
    -webkit-animation: shine 0.7s;
    animation: shine 0.7s;
  }

  .c-totop.is-active:hover {
    opacity: 1;
  }

  .p-faq__question:hover {
    cursor: pointer;
  }

  .p-header__nav-link:hover {
    opacity: 1;
  }

  .p-header__nav-span:hover::after {
    scale: 1;
  }
}

/* オリジナルのscript.jsで文字列リテラルとして読み込むと画像のバンドルができないため、CSSで設定 */
.p-slider__prev-arrow {
  content: url(../img/common/slider-arrow-prev.svg);
}

.p-slider__next-arrow {
  content: url(../img/common/slider-arrow-next.svg);
}

/*# sourceMappingURL=map/style.css.map */
