@charset "UTF-8";

html {
  font-size: 100%;
}

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

@media screen and (min-width: 768px) {
  html {
    font-size: 1.4897579143vw;
  }
}

@media (min-width: 1074px) {
  html {
    font-size: 100%;
  }
}

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

@media screen and (min-width: 768px) {

  a,
  button {
    transition: 0.3s;
  }

  a:hover,
  button:hover {
    cursor: pointer;
  }
}

html,
body {
  overflow-x: hidden;
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 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;
  margin: 0;
  padding: 0;
}

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

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

/* 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 {
  color: inherit;
  text-decoration: none;
}

/* Make images easier to work with */
img,
picture {
  display: block;
  max-width: 100%;
}

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

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

/* 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 {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.l-inner {
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1074px;
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
  }
}

.c-button__icon {
  background-color: #FFFFFF;
  border-radius: 50%;
  flex-shrink: 0;
  gap: 0.5rem;
  height: 0.625rem;
  position: relative;
  transition: background-color 0.3s;
  width: 0.625rem;
}

@media screen and (min-width: 768px) {
  .c-button__icon {
    gap: 0.375rem;
  }
}

.c-button--icon-arrow .c-button__icon::after {
  border-color: transparent transparent transparent #000000;
  border-style: solid;
  border-width: 0.1875rem 0 0.1875rem 0.25rem;
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: border-color 0.3s;
}

@media screen and (min-width: 768px) {
  .c-button--cta:hover .c-button__icon {
    background-color: #ef7000;
  }

  .c-button--cta:hover .c-button__icon::after {
    border-left-color: #000000;
  }
}

.c-button--cta.c-button--icon-calendar {
  border: 0.125rem solid #FFFFFF;
  border-radius: 0.5rem;
  flex-direction: column;
  gap: 0.5rem;
  height: 5.3125rem;
  padding: 0;
  position: relative;
  text-align: center;
  width: 6.375rem;
}

.c-button--icon-calendar .c-button__icon::after {
  content: none;
}

.c-button--icon-calendar .c-button__icon {
  align-items: center;
  background-color: #ef7000;
  border-radius: 0.375rem;
  display: grid;
  grid-template-columns: 1fr;
  height: 2.5rem;
  justify-items: center;
  position: relative;
  width: 2.5rem;
}

.c-button__arrow {
  background-color: #FFFFFF;
  border-radius: 50%;
  bottom: 0.625rem;
  height: 0.75rem;
  position: absolute;
  right: 0.3125rem;
  width: 0.75rem;
}

@media screen and (min-width: 768px) {
  .c-button__arrow {
    bottom: 1.125rem;
    height: 1.5rem;
    right: 1.25rem;
    width: 1.5rem;
  }
}

.c-button__arrow::after {
  border-color: transparent transparent transparent #ef7000;
  border-style: solid;
  border-width: 0.1875rem 0 0.1875rem 0.25rem;
  color: #000000;
  content: "";
  left: 55%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 768px) {
  .c-button__arrow::after {
    border-width: 0.375rem 0 0.375rem 0.5rem;
  }
}

@media screen and (min-width: 768px) {
  .c-button--cta.c-button--icon-calendar {
    height: 10.25rem;
    left: 2.5rem;
    top: -6.625rem;
    width: 12.875rem;
  }

  .c-button--cta.c-button--icon-calendar .c-button__icon {
    height: 5.0625rem;
    width: 5rem;
  }

  .c-button--cta.c-button--icon-calendar .c-button__text {
    font-size: 1.25rem;
    margin-right: 0.75rem;
    margin-top: 0.5625rem;
  }

  .c-button--cta.c-button--icon-calendar .c-button__icon img {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
    aspect-ratio: 80/81;
    margin-top: 1rem;
    object-fit: contain;
  }
}

.c-button--black {
  background-color: #000000;
  border-radius: 62.4375rem;
  color: #FFFFFF;
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  height: 2.8125rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin-right: -1em;
  padding: 0.75rem 2.375rem 0.875rem 3.25rem;
  text-align: center;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
  width: 9.375rem;
}

@media screen and (min-width: 768px) {
  .c-button--black:hover {
    background: rgba(0, 0, 0, 0.9);
    opacity: 0.8;
  }
}

.c-button--blue {
  background-color: #1e588f;
  border-radius: 62.4375rem;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.035em;
  line-height: 1.2;
  padding: 0.875rem 2.125rem;
}

@media screen and (min-width: 768px) {
  .c-button--blue:hover {
    background: rgba(30, 88, 143, 0.9);
    opacity: 0.8;
  }
}

.c-button--cta {
  background-color: #ef7000;
  border: 0.125rem solid #ef7000;
  border-radius: 62.4375rem;
  color: #FFFFFF;
  font-size: 0.690625rem;
  font-weight: 500;
  letter-spacing: 0.035em;
  line-height: 1.2;
  padding-block: 0.625rem;
  text-align: center;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

@media screen and (min-width: 768px) {
  .c-button--cta:hover {
    opacity: 0.7;
  }
}

.c-button--dark {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9), #000000);
  border: 0.0625rem solid #FFFFFF;
  border: 0.125rem solid #FFFFFF;
  border-radius: 0.375rem;
  color: #FFFFFF;
  font-size: 0.6875rem;
  font-weight: 500;
  gap: 0.5rem;
  letter-spacing: 0.03em;
  line-height: 1.2;
  padding: 0.6875rem 1.25rem 0.6875rem 1.6875rem;
  transition: all 0.3s;
}

@media screen and (min-width: 768px) {
  .c-button--dark:hover {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9), #000000);
    opacity: 0.8;
  }
}

.c-button {
  align-items: center;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
}

.c-button__text {
  font-size: 0.625rem;
  padding-right: 0.375rem;
}

.c-card-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.c-card {
  --card-radius: rem(10);
  --card-shadow: 0 rem(10) rem(24) rgba(17, 24, 39, .12);
  --badge-bg: $blue;
  background: #FFFFFF;
  height: 17.5rem;
  overflow: hidden;
  width: 13.3125rem;
}

.c-card__link {
  color: inherit;
  display: block;
  text-decoration: none;
}

.c-card__media {
  position: relative;
}

.c-card__img {
  height: 8.875rem;
  width: 13.3125rem;
  -o-object-fit: cover;
  display: block;
  object-fit: cover;
}

.c-card__badge {
  background: #1e588f;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.18);
  color: #FFFFFF;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 0.4375rem 1.25rem;
  position: absolute;
  right: 0;
  top: 0;
}

.c-card__body {
  background: #e6eef6;
  padding-inline: 0.75rem;
  padding-top: 0.4375rem;
}

.c-card__title {
  color: #000000;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.96625;
  margin: 0 0 0.4375rem;
}

.c-card__text {
  color: #000000;
  font-size: 0.875rem;
  letter-spacing: -0.03em;
  line-height: 1.5;
  margin-top: 0.25rem;
}

.c-circle-headings {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(6px, 3vw, 20px);
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .c-circle-headings {
    gap: 2.1875rem;
  }
}

.c-circle-headings__item {
  align-items: center;
  aspect-ratio: 1/1;
  background-color: #1e588f;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  position: relative;
  width: clamp(80px, 26vw, 140px);
}

@media screen and (min-width: 768px) {
  .c-circle-headings__item {
    width: 11.25rem;
  }
}

.c-circle-headings__text {
  color: #FFFFFF;
  font-size: clamp(10px, 3vw, 16px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin: 0;
  position: relative;
  text-align: center;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .c-circle-headings__text {
    font-size: 1.5rem;
    letter-spacing: 0.005em;
    line-height: 1.3333333333;
  }
}

.c-circle-headings__item::before,
.c-circle-headings__item::after {
  border-radius: 50%;
  content: "";
  pointer-events: none;
  position: absolute;
}

.c-circle-headings__item::after {
  border: 0.0625rem solid #FFFFFF;
  inset: max(0.8vw, 0.1875rem);
}

@media screen and (min-width: 768px) {
  .c-circle-headings__item::after {
    border-width: 0.0625rem;
    inset: 0.25rem;
  }
}

.c-contact-btn {
  align-items: center;
  background-color: #ef7000;
  border: 0.125rem solid #FFFFFF;
  border-radius: 62.4375rem;
  color: #FFFFFF;
  display: inline-flex;
  font-weight: 700;
  gap: 0.5rem;
  height: 2.5rem;
  justify-content: center;
  line-height: 1;
  padding: 1rem 1.5rem;
  position: relative;
  text-decoration: none;
  transition: 0.3s;
  width: 8.9375rem;
}

.c-contact-btn:hover {
  opacity: 0.8;
}

@media screen and (min-width: 768px) {
  .c-contact-btn {
    height: 3.5rem;
    width: 13.75rem;
  }
}

.c-contact-btn__arrow {
  display: inline-block;
  height: 1rem;
  width: 1rem;
}

.c-floating-btn {
  align-items: center;
  background-color: #1e588f;
  border-radius: 62.4375rem;
  bottom: 1.5rem;
  box-shadow: 0 0.25rem 0.75rem rgba(246, 246, 246, 0.2);
  color: #FFFFFF;
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  position: fixed;
  right: 1rem;
  z-index: 1000;
}

.c-floating-btn__icon {
  height: 1.25rem;
  width: 1.25rem;
}

.c-floating-btn__text {
  font-size: 0.875rem;
  font-weight: 700;
}

.c-round-btn {
  align-items: center;
  border-radius: 62.4375rem;
  display: inline-flex;
  font-weight: 700;
  gap: 0.5rem;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  transition: 0.3s;
}

.c-round-btn:hover {
  opacity: 0.8;
}

.c-round-btn--black {
  background-color: #000000;
  color: #FFFFFF;
}

.c-round-btn--blue {
  background-color: #1e588f;
  color: #FFFFFF;
}

.c-title {
  display: flex;
  flex-direction: column;
  opacity: 0;
  text-align: center;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

@media screen and (min-width: 768px) {
  .c-title {
    margin: 0.25rem 0.625rem -1.5625rem 0;
  }
}

.c-title.is-active {
  opacity: 1;
  transform: translateY(0);
}

.c-title__en {
  color: #1e588f;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin: 0 0 0.5rem;
}

@media screen and (min-width: 768px) {
  .c-title__en {
    font-size: 1.25rem;
    margin-bottom: 0;
    margin-top: 0.625rem;
  }
}

.c-title__jp {
  color: #000000;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .c-title__jp {
    font-size: 2.625rem;
    margin-top: 0.25rem;
  }
}

.c-title.is-active {
  opacity: 1;
  transform: translateY(0);
}

.p-contact {
  background: linear-gradient(0deg, #164a7a 0%, #174a7a 40%, #2a6eae 99%, #2a6eae 100%);
  padding: 3.75rem 0;
}

@media screen and (min-width: 768px) {
  .p-contact {
    padding: 5.125rem 0 2.625rem;
  }
}

.p-contact__inner {
  padding: 0 1.125rem 0 0.875rem;
}

.p-contact__title {
  color: #FFFFFF;
  margin-bottom: 1.875rem;
  margin-left: 0.25rem;
  text-align: center;
}

.p-contact__title .c-title__en {
  color: #FFFFFF;
  font-size: 0.6875rem;
  letter-spacing: 0.01em;
  margin-right: 0.25rem;
  margin-top: -0.1875rem;
}

@media screen and (min-width: 768px) {
  .p-contact__title .c-title__en {
    font-size: 1.25rem;
    letter-spacing: 0.04em;
    margin-left: 0.875rem;
  }
}

.p-contact__title .c-title__jp {
  color: #FFFFFF;
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  margin-top: -0.4375rem;
}

@media screen and (min-width: 768px) {
  .p-contact__title .c-title__jp {
    font-size: 2.625rem;
    letter-spacing: -0.04em;
    margin-left: 1.625rem;
    margin-top: 0.375rem;
  }
}

.p-contact__box {
  background: #FFFFFF;
  border-radius: 0.5rem;
  padding: 1.625rem 0.875rem 1.875rem 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-contact__box {
    margin: 2.9375rem auto;
    max-width: 62.5rem;
    padding: 4.75rem 2.25rem 3.25rem 3.25rem;
  }
}

.p-contact__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media screen and (min-width: 768px) {
  .p-contact__list {
    gap: 0.875rem;
  }
}

.p-contact__item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media screen and (min-width: 768px) {
  .p-contact__item {
    align-items: center;
    flex-direction: row;
    gap: 0;
  }
}

.p-contact__item--email {
  margin-top: -0.25rem;
}

.p-contact__item--tel {
  margin-top: -0.1875rem;
}

.p-contact__label {
  color: #000000;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.075em;
}

@media screen and (min-width: 768px) {
  .p-contact__label {
    flex-shrink: 0;
    font-size: 1.125rem;
    width: 11.25rem;
  }
}

.p-contact__label-text--narrow {
  letter-spacing: -0.05em;
}

.p-contact__required {
  color: #da0000;
  font-size: 0.6875rem;
  margin-left: 0.25rem;
  position: relative;
  top: -0.25rem;
}

.p-contact__field input,
.p-contact__field textarea,
.p-contact__field select {
  background: #e6eef6;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  color: rgba(0, 0, 0, 0.4);
  font-size: 0.875rem;
  outline: none;
  padding: 0.875rem 0.75rem;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  width: 100%;
}

@media screen and (min-width: 768px) {

  .p-contact__field input,
  .p-contact__field textarea,
  .p-contact__field select {
    font-size: 1rem;
    height: 2.875rem;
    letter-spacing: 0.075em;
  }
}

.p-contact__field input:focus,
.p-contact__field textarea:focus,
.p-contact__field select:focus {
  border-color: #2a6eae;
  box-shadow: 0 0 0 0.125rem #1e588f;
}

.p-contact__field select:valid {
  color: #000000;
}

@media screen and (min-width: 768px) {
  .p-contact__field {
    flex: 1;
  }
}

.p-contact__field input::-moz-placeholder,
.p-contact__field textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
  font-size: 1rem;
}

.p-contact__field input::placeholder,
.p-contact__field textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
  font-size: 1rem;
}

.p-contact__field input:not(:-moz-placeholder),
.p-contact__field textarea:not(:-moz-placeholder) {
  font-size: 1rem;
}

.p-contact__field input:not(:placeholder-shown),
.p-contact__field textarea:not(:placeholder-shown),
.p-contact__field select:valid {
  font-size: 1rem;
}

.p-contact__field input,
.p-contact__field textarea {
  color: #000000;
}

@media screen and (min-width: 768px) {

  .p-contact__field input::-moz-placeholder,
  .p-contact__field textarea::-moz-placeholder {
    display: inline;
  }

  .p-contact__field input::placeholder,
  .p-contact__field textarea::placeholder {
    display: inline;
  }
}

@media (max-width: 767px) {

  .p-contact__field input::-moz-placeholder,
  .p-contact__field textarea::-moz-placeholder {
    color: transparent;
  }

  .p-contact__field input::placeholder,
  .p-contact__field textarea::placeholder {
    color: transparent;
  }
}

@media (max-width: 767px) {
  .p-contact__field select {
    color: transparent;
  }

  .p-contact__field select:focus {
    color: #000000;
  }
}

@media screen and (min-width: 768px) {

  #zipcode,
  #name,
  #kana {
    width: 16.3125rem;
  }
}

@media screen and (min-width: 768px) {

  #department,
  #tel,
  #email {
    width: 26.625rem;
  }
}

@media screen and (min-width: 768px) {
  #year {
    width: 7.875rem;
  }
}

.p-contact__item--textarea {
  margin-top: 0.375rem;
}

@media screen and (min-width: 768px) {
  .p-contact__item--textarea {
    align-items: flex-start;
  }
}

.p-contact__item--textarea textarea {
  height: 6.5625rem;
  resize: none;
}

@media screen and (min-width: 768px) {
  .p-contact__item--textarea textarea {
    height: 9.1875rem;
  }
}

.p-contact__date {
  align-items: center;
  display: flex;
  gap: 0.625rem;
  height: 2.875rem;
}

@media screen and (min-width: 768px) {
  .p-contact__date {
    gap: 2.5rem;
  }
}

.p-contact__date span {
  align-items: center;
  color: #000000;
  display: flex;
  font-size: 1rem;
  font-weight: 700;
  height: 2.875rem;
}

.p-contact__select {
  display: inline-block;
  position: relative;
  width: 5.75rem;
}

.p-contact__select select {
  height: 3.1875rem;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #e6eef6;
  line-height: 1;
  padding: 0.875rem 1.875rem 0.875rem 0.75rem;
}

@media screen and (min-width: 768px) {
  .p-contact__select select {
    height: 2.875rem;
  }
}

.p-contact__select span {
  font-size: 0.875rem;
}

.p-contact__select {
  position: relative;
}

.p-contact__select select {
  height: 2.875rem;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  align-items: center;
  appearance: none;
  background: #e6eef6;
  display: flex;
  line-height: 2.875rem;
  padding: 0 2.25rem 0 0.75rem;
}

.p-contact__select::after {
  border-left: 0.3125rem solid transparent;
  border-right: 0.3125rem solid transparent;
  border-top: 0.5rem solid #000000;
  content: "";
  pointer-events: none;
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
}

.p-contact__select#month {
  width: 4.3125rem;
}

@media screen and (min-width: 768px) {
  .p-contact__select#month {
    margin-left: -1.125rem;
  }
}

.p-contact__agree {
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 2.1;
  margin-left: 0.5rem;
  margin-top: 1.25rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-contact__agree {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.2;
    margin-top: 2rem;
  }
}

.p-contact__agree a {
  color: #da0000;
  text-decoration: underline;
  text-underline-offset: 0.375rem;
}

@media screen and (min-width: 768px) {
  .p-contact__agree a {
    text-underline-offset: 0.5rem;
  }
}

.p-contact__agree input {
  cursor: pointer;
  margin-right: 0.375rem;
}

.p-contact__submit {
  margin-top: 1.5rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-contact__submit {
    margin-left: 0.875rem;
    margin-top: 2.875rem;
  }
}

.c-button.c-button--contact {
  background-color: #2a6eae;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  height: 3.0625rem;
  padding: 0.75rem 3.125rem 0.9375rem 2.5rem;
  transition: 0.3s;
  width: 14.0625rem;
}

@media screen and (min-width: 768px) {
  .c-button.c-button--contact {
    font-size: 1.125rem;
    height: 4.3125rem;
    width: 23.75rem;
  }
}

.c-button.c-button--contact:hover {
  opacity: 0.8;
}

.p-cta {
  margin-left: 0;
  margin-top: -0.625rem;
  position: relative;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-cta {
    align-items: center;
    aspect-ratio: 1440/400;
    display: flex;
    margin-top: -1.125rem;
  }
}

.p-cta--second {
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .p-cta--second {
    margin-top: -1.8125rem;
  }
}

.p-cta::before {
  aspect-ratio: 750/395;
  background-color: rgba(72, 157, 225, 0.15);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 0;
}

@media screen and (min-width: 768px) {
  .p-cta::before {
    aspect-ratio: 1440/342;
    margin-top: 1.8125rem;
  }
}

.p-cta__bg {
  inset: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.p-cta__bg img {
  aspect-ratio: 750/400;
  height: auto;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .p-cta__bg img {
    aspect-ratio: 1440/400;
  }
}

.p-cta__inner {
  align-items: center;
  aspect-ratio: 750/400;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  text-align: center;
  transform: translateY(-1.3125rem);
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .p-cta__inner {
    aspect-ratio: 1440/400;
    transform: translateY(0);
  }
}

.p-cta__text {
  color: #000000;
  display: inline-block;
  font-size: 1.0321875rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  padding-inline: 1.8125rem;
  padding-top: 2.3125rem;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .p-cta__text {
    font-size: 1.375rem;
    letter-spacing: 0.035em;
    padding-inline: 2.3125rem;
    padding-top: 0;
  }
}

.p-cta__text::before,
.p-cta__text::after {
  background-color: #000000;
  content: "";
  height: 0.0625rem;
  position: absolute;
  top: 70%;
  width: 2.5625rem;
}

@media screen and (min-width: 768px) {

  .p-cta__text::before,
  .p-cta__text::after {
    height: 0.125rem;
    top: 60%;
    width: 1.875rem;
  }
}

.p-cta__text::before {
  left: 0;
  transform: translateY(-50%) rotate(62deg);
}

.p-cta__text::after {
  right: 0;
  transform: translateY(-50%) rotate(-62deg);
}

.p-cta__text span {
  color: #f7fe2f;
  display: block;
  font-size: 1.22rem;
  letter-spacing: 0;
  margin-top: -0.1875rem;
}

@media screen and (min-width: 768px) {
  .p-cta__text span {
    display: inline-block;
    font-size: 1.625rem;
    margin-left: -0.8125rem;
    margin-top: 0;
  }
}

.p-cta__button {
  display: block;
  margin-inline: auto;
  margin-top: 0.5625rem;
  width: 15rem;
}

@media screen and (min-width: 768px) {
  .p-cta__button {
    margin-top: 2.0625rem;
    width: 26.25rem;
  }
}

.c-button.c-button--dark.c-button--icon-arrow {
  height: 3.1875rem;
  padding: 0;
  width: 15.125rem;
}

@media screen and (min-width: 768px) {
  .c-button.c-button--dark.c-button--icon-arrow {
    height: 4.8125rem;
    width: 26.375rem;
  }
}

.p-cta__button .c-button__text {
  font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
  .p-cta__button .c-button__text {
    font-size: 1.375rem;
  }
}

/* ===============================
   p-flow
=============================== */
.p-flow {
  background: #FFFFFF;
  padding: 3.5rem 0 1.875rem;
}

@media screen and (min-width: 768px) {
  .p-flow {
    padding: 3.625rem 0 4.5rem;
  }
}

.p-flow__title {
  align-items: center;
  display: flex;
  flex-direction: column;
  letter-spacing: 0.05em;
  margin-bottom: 1.625rem;
  margin-right: 0.1875rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-flow__title {
    margin-left: 1.875rem;
  }
}

.p-flow__title .c-title__en {
  margin: 0 0.5rem 0.25rem 0;
}

@media screen and (min-width: 768px) {
  .p-flow__title .c-title__en {
    margin-left: -1rem;
  }
}

@media screen and (min-width: 768px) {
  .p-flow__title .c-title__jp {
    margin-right: 0.625rem;
    margin-top: 0.0625rem;
  }
}

/* ===============================
   リスト
=============================== */
.p-flow__list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-flow__list {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
    padding-top: 1.0625rem;
  }
}

.p-flow__list::before {
  background: #e6eef6;
  content: "";
  height: calc(100% - 11rem);
  left: 3.125rem;
  position: absolute;
  top: 2.5rem;
  width: 0.125rem;
}

@media screen and (min-width: 768px) {
  .p-flow__list::before {
    display: none;
  }
}

/* ===============================
   アイテム
=============================== */
.p-flow__item {
  display: flex;
  gap: 0.625rem;
  opacity: 0;
  padding-bottom: 1.625rem;
  position: relative;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

@media screen and (min-width: 768px) {
  .p-flow__item {
    align-items: center;
    flex-direction: column;
    gap: 0.375rem;
    padding-bottom: 0;
    position: relative;
    right: 0;
    top: 0;
    width: 20%;
  }
}

.p-flow__item.is-active {
  opacity: 1;
  transform: translateX(0);
}

.p-flow__item:nth-child(1) {
  transition-delay: 0s;
}

.p-flow__item:nth-child(2) {
  transition-delay: 0.2s;
}

.p-flow__item:nth-child(3) {
  transition-delay: 0.4s;
}

.p-flow__item:nth-child(4) {
  transition-delay: 0.6s;
}

.p-flow__item:nth-child(5) {
  transition-delay: 0.8s;
}

@media screen and (min-width: 768px) {
  .p-flow__item:not(:last-child)::after {
    background: #e6eef6;
    content: "";
    height: 0.125rem;
    position: absolute;
    right: -50%;
    top: 5.3125rem;
    width: 100%;
    z-index: 0;
  }
}

.p-flow__item:nth-child(1) .p-flow__image img {
  width: 2.8125rem;
}

@media screen and (min-width: 768px) {
  .p-flow__item:nth-child(1) .p-flow__image img {
    width: 4.375rem;
  }
}

.p-flow__item:nth-child(1) .p-flow__icon {
  right: 0.5625rem;
  top: 0.1875rem;
}

@media screen and (min-width: 768px) {
  .p-flow__item:nth-child(1) .p-flow__icon {
    right: 0.625rem;
    top: 0.375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-flow__item:nth-child(1) .p-flow__heading {
    letter-spacing: 0.05em;
    margin: -0.125rem 0.75rem 0.6875rem 0;
  }
}

.p-flow__item:nth-child(2) .p-flow__icon {
  right: 0.3125rem;
  top: 0.375rem;
}

.p-flow__item:nth-child(2) .p-flow__heading {
  margin: 0.125rem 0.375rem 0.625rem;
}

@media screen and (min-width: 768px) {
  .p-flow__item:nth-child(2) .p-flow__heading {
    letter-spacing: 0.05em;
    margin: -0.125rem 0.5rem 0.625rem 0;
  }
}

.p-flow__item:nth-child(3) .p-flow__image img {
  width: 3.75rem;
}

@media screen and (min-width: 768px) {
  .p-flow__item:nth-child(3) .p-flow__image img {
    width: 5.875rem;
  }
}

.p-flow__item:nth-child(3) .p-flow__icon {
  right: 0.25rem;
  top: 0.4375rem;
}

@media screen and (min-width: 768px) {
  .p-flow__item:nth-child(3) .p-flow__icon {
    right: -0.0625rem;
    top: 0.1875rem;
  }
}

.p-flow__item:nth-child(3) .p-flow__heading {
  margin: 0.5rem 0 0.4375rem 0.4375rem;
}

@media screen and (min-width: 768px) {
  .p-flow__item:nth-child(3) .p-flow__heading {
    letter-spacing: 0.05em;
    margin: -0.1875rem 0 0.6875rem -0.5rem;
  }
}

.p-flow__item:nth-child(4) .p-flow__image img {
  width: 4.375rem;
}

@media screen and (min-width: 768px) {
  .p-flow__item:nth-child(4) .p-flow__image img {
    width: 7rem;
  }
}

.p-flow__item:nth-child(4) .p-flow__icon {
  right: 0.3125rem;
  top: 0.0625rem;
}

@media screen and (min-width: 768px) {
  .p-flow__item:nth-child(4) .p-flow__icon {
    right: 0.0625rem;
    top: -0.0625rem;
  }
}

.p-flow__item:nth-child(4) .p-flow__heading {
  letter-spacing: 0.02em;
  margin: 0.25rem 0 0 0.5625rem;
}

@media screen and (min-width: 768px) {
  .p-flow__item:nth-child(4) .p-flow__heading {
    letter-spacing: 0.05em;
    margin: -0.125rem 0.125rem 0.625rem 0;
  }
}

@media screen and (min-width: 768px) {
  .p-flow__item:nth-child(5) .p-flow__image img {
    width: 5.3125rem;
  }
}

.p-flow__item:nth-child(5) .p-flow__icon {
  right: 0.4375rem;
  top: 0.3125rem;
}

@media screen and (min-width: 768px) {
  .p-flow__item:nth-child(5) .p-flow__icon {
    right: 0.125rem;
    top: 0rem;
  }
}

.p-flow__item:nth-child(5) .p-flow__heading {
  margin: 0.5rem 0 0.4375rem 0.4375rem;
}

@media screen and (min-width: 768px) {
  .p-flow__item:nth-child(5) .p-flow__heading {
    letter-spacing: 0.06em;
    margin: -0.125rem 0.125rem 0.625rem 0;
  }
}

/* ===============================
   アイコン（丸）
=============================== */
.p-flow__icon {
  align-items: center;
  background: #e6eef6;
  border-radius: 50%;
  display: flex;
  height: 6.875rem;
  justify-content: center;
  position: relative;
  width: 6.875rem;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .p-flow__icon {
    height: 10.625rem;
    margin-bottom: 1rem;
    position: relative;
    right: 0;
    top: 0;
    width: 10.625rem;
  }
}

.p-flow__image img {
  height: auto;
  width: 3.125rem;
}

@media screen and (min-width: 768px) {
  .p-flow__image img {
    width: 5rem;
  }
}

/* ===============================
   テキスト側
=============================== */
.p-flow__content {
  flex: 1;
}

.p-flow__heading {
  color: #1e588f;
  font-size: 1.1875rem;
  font-weight: 700;
  margin: -0.125rem 0 0.5625rem 0.25rem;
}

@media screen and (min-width: 768px) {
  .p-flow__heading {
    font-size: 1.375rem;
    text-align: center;
  }
}

.p-flow__border {
  background: #1e588f;
  display: block;
  height: 0.125rem;
  margin: 0.375rem 0.3125rem 0.625rem;
  width: 1.875rem;
}

@media screen and (min-width: 768px) {
  .p-flow__border {
    margin: 0.625rem 0 0.6875rem;
    margin-left: auto;
    margin-right: 5.5rem;
    width: 2.25rem;
  }
}

.p-flow__text {
  color: #000000;
  font-size: 0.875rem;
  letter-spacing: -0.04em;
  line-height: 1.4;
  margin-left: 0.25rem;
  margin-right: -0.375rem;
}

@media screen and (min-width: 768px) {
  .p-flow__text {
    font-size: 1rem;
    letter-spacing: 0.04em;
    line-height: 1.6;
    margin-left: 0;
    margin-right: 0;
    padding: 0.1875rem 1.625rem 0 0.75rem;
  }
}

/* ===============================
   最後の余白調整
=============================== */
.p-flow__item:last-child {
  padding-bottom: 0;
}

.p-footer {
  background: #FFFFFF;
  padding: 2.125rem 0 1.5rem;
}

.p-footer__inner {
  margin: 0 auto;
  max-width: 70rem;
  padding: 0 1rem;
}

.p-footer__main {
  margin-bottom: 2rem;
}

.p-footer__logo {
  color: #2a6eae;
  font-size: 1.705rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-top: 1.25rem;
}

.p-footer__nav {
  margin-top: 1.625rem;
  padding-inline: 0.0625rem;
}

.p-footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-footer__nav-title {
  align-items: center;
  background: transparent;
  border: none;
  border-bottom: 0.0625rem solid #2a6eae;
  color: #2a6eae;
  cursor: pointer;
  display: flex;
  font-size: 1.11625rem;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: 0.06em;
  line-height: 1.2;
  padding: 1rem 0;
  padding-bottom: 0.875rem;
  width: 100%;
}

.p-footer__nav-link {
  align-items: center;
  border-bottom: 0.0625rem solid #2a6eae;
  color: #2a6eae;
  display: flex;
  font-size: 1.11625rem;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: 0.05em;
  line-height: 1.2;
  padding: 2.125rem 0 0.875rem;
  padding-bottom: 0.875rem;
  text-decoration: none;
}

.p-footer__nav-icon {
  background: #2a6eae;
  border-radius: 50%;
  flex-shrink: 0;
  height: 1.25rem;
  left: 0.1875rem;
  position: relative;
  width: 1.25rem;
}

.p-footer__nav-icon::before {
  border-bottom: 0.25rem solid transparent;
  border-left: 0.375rem solid #FFFFFF;
  border-top: 0.25rem solid transparent;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-40%, -50%);
  width: 0;
}

.p-footer__sub-list {
  display: block;
  list-style: none;
  margin: 0;
}

.p-footer__sub-list a {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.05em;
  padding: 1.25rem 1.25rem 0.6875rem 1.25rem;
  position: relative;
}

.p-footer__sub-list a::after {
  color: #000000;
  content: "＞";
  font-size: 0.875rem;
  padding-right: 0.625rem;
  padding-top: 0.375rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

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

.p-footer__sub-nav {
  font-size: 0.875rem;
  font-weight: 400;
  margin: 3.875rem 0 1.375rem 0.3125rem;
}

.p-footer__sub-link {
  color: #000000;
  font-size: 0.875rem;
  padding: 0 0.875rem 0 0.75rem;
  text-decoration: none;
}

.p-footer__divider {
  color: #000000;
  font-size: 0.875rem;
}

.p-footer__copyright {
  color: #000000;
  font-size: 0.6875rem;
  letter-spacing: 0.07em;
}

@media screen and (min-width: 768px) {
  .p-footer {
    padding: 3.5rem 0 2rem;
  }

  .p-footer__main {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
  }

  .p-footer__logo {
    font-size: 2.125rem;
    letter-spacing: 0.07em;
    margin-bottom: 0;
    margin-left: 2.875rem;
  }

  .p-footer__nav-list {
    display: flex;
  }

  .p-footer__nav-item {
    border: none;
    margin-right: 2.8125rem;
    margin-top: 0.8125rem;
  }

  .p-footer__nav-link {
    padding: 0 0 0.375rem 0;
  }

  .p-footer__nav-title {
    cursor: default;
    padding: 0;
    padding-bottom: 0.375rem;
  }

  .p-footer__sub-link {
    font-size: 1rem;
    letter-spacing: 0.07em;
    padding: 0 0.1875rem 0 1.75rem;
  }

  .p-footer__sub-list {
    display: block;
    margin-top: 1rem;
  }

  .p-footer__sub-list a {
    padding: 0.5rem 0;
  }

  .p-footer__bottom {
    margin-top: 4.125rem;
  }

  .p-footer__sub-list a::after {
    padding: 0;
  }

  .p-footer__copyright {
    font-size: 0.75rem;
    margin-left: 1.625rem;
    margin-top: 3.75rem;
  }
}

.p-fv {
  height: auto;
  min-height: 32rem;
  overflow: visible;
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-fv {
    height: 43.0625rem;
    min-height: 43.0625rem;
  }
}

/* ======================
背景画像
====================== */
.p-fv__bg-image {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
  z-index: 0;
}

.p-fv__bg-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover cover;
  object-fit: cover cover;
  -o-object-position: 50% 20%;
  object-position: 50% 20%;
}

@media screen and (min-width: 768px) {
  .p-fv__bg-image img {
    height: 43.0625rem;
    height: 100%;
    -o-object-position: center bottom;
    object-position: center bottom;
  }
}

/* ======================
装飾（中央上）
====================== */
.p-fv__decor {
  left: 50%;
  position: absolute;
  text-align: center;
  top: 8.75rem;
  transform: translateX(-50%);
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .p-fv__decor {
    top: 7.6875rem;
  }
}

.p-fv__decor-image {
  margin-left: 8.9375rem;
  margin-top: -3.3125rem;
  width: 7.8125rem;
}

@media screen and (min-width: 768px) {
  .p-fv__decor-image {
    margin-left: 46.5625rem;
    margin-top: 3.125rem;
    width: 19rem;
  }
}

.p-fv__line {
  background: #2a6eae;
  display: block;
  height: 2.5rem;
  margin: 0 auto 0.5rem;
  width: 0.0625rem;
}

@media screen and (min-width: 768px) {
  .p-fv__line {
    height: 4.125rem;
    margin-bottom: 1rem;
  }
}

/* ======================
メインコンテンツ
====================== */
.p-fv__content {
  height: auto;
  min-height: 32rem;
  padding-inline: 1rem;
  padding-top: 11.25rem;
  position: relative;
  text-align: center;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .p-fv__content {
    height: 43.0625rem;
    padding-top: 12.125rem;
  }
}

.p-fv__lead {
  color: #1e588f;
  font-size: 1.1875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-left: 0.625rem;
  margin-top: 0.625rem;
}

@media screen and (min-width: 768px) {
  .p-fv__lead {
    font-size: 2.28125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    margin: 0 0 -0.25rem;
    margin-left: 0.625rem;
  }
}

.p-fv__title {
  font-size: 2.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin: -0.125rem 0 -0.4375rem 0.9375rem;
}

@media screen and (min-width: 768px) {
  .p-fv__title {
    font-size: 4.3125rem;
    letter-spacing: 0.06em;
    margin: 0 0 -1.125rem 1rem;
  }
}

.p-fv__circle {
  align-items: center;
  display: flex;
  height: clamp(80px, 22vw, 120px);
  justify-content: center;
  padding: 0;
  width: clamp(80px, 22vw, 120px);
}

@media (max-width: 767px) {
  .p-fv__circle {
    height: 12vw;
    width: 12vw;
  }
}

.p-fv__circle-headings {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(8px, 3vw, 24px);
  justify-content: center;
  margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-fv__circle-headings {
    margin-top: 2.5rem;
  }
}

.p-fv__circle-text {
  font-size: clamp(12px, 3.2vw, 18px);
}

/* ======================
CTAボタン
====================== */
.p-fv__cta-top {
  position: fixed;
  right: 1rem;
  right: 0;
  top: 0;
  z-index: 1000;
}

@media screen and (min-width: 768px) {
  .p-fv__cta-top {
    right: 2.5rem;
    top: 7.5rem;
  }
}

.p-fv__cta-fixed {
  bottom: 6.875rem;
  position: fixed;
  right: 1rem;
  z-index: 1000;
}

@media screen and (min-width: 768px) {
  .p-fv__cta-fixed {
    bottom: 8.75rem;
    right: 3.75rem;
  }
}

.p-fv__cta-bottom {
  bottom: 21rem;
  height: 3.125rem;
  left: 50%;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  z-index: 3;
}

@media screen and (min-width: 768px) {
  .p-fv__cta-bottom {
    bottom: 11.25rem;
    font-size: 1.375rem;
    height: 3.75rem;
    width: 100%;
  }
}

.c-button {
  height: 2.5rem;
  justify-content: center;
  transition: 0.3s;
}

@media screen and (min-width: 768px) {
  .c-button {
    height: 3.5rem;
    width: 13.75rem;
  }
}

.c-button--dark {
  height: 4.774375rem;
  width: 26.25rem;
}

.c-contact-btn {
  opacity: 0;
  pointer-events: none;
  right: 1rem;
  top: 4.125rem;
  transition: 0.3s;
  visibility: hidden;
  z-index: 5000;
}

@media screen and (min-width: 768px) {
  .c-contact-btn {
    right: 0;
    top: -0.125rem;
  }
}

.p-header.is-scrolled~.p-fv .c-contact-btn {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.c-button__text {
  font-size: 0.87rem;
  right: 0.0625rem;
}

@media screen and (min-width: 768px) {
  .c-button__text {
    font-size: 1rem;
  }
}

.c-button--icon-calendar {
  bottom: 18.125rem;
  right: -0.875rem;
}

.p-header.is-scrolled .p-fv__cta-fixed {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.p-fv__button-bottom {
  font-size: 0.875rem;
  height: 3.125rem;
  padding: 0 0 0 0.625rem;
  text-align: center;
  top: -22.8125rem;
  width: 15rem;
}

@media screen and (min-width: 768px) {
  .p-fv__button-bottom {
    font-size: 1.375rem;
    height: 4.775rem;
    top: -39.25rem;
    width: 26.25rem;
  }
}

@media screen and (min-width: 768px) {
  .c-button__icon {
    height: 1.5625rem;
    width: 1.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .c-button--icon-arrow .c-button__icon::after {
    border-width: 0.375rem 0 0.375rem 0.5rem;
    left: 55%;
    letter-spacing: 0.2em;
  }
}

.c-button--fixed {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.p-header.is-scrolled~.p-fv .c-button--fixed {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.p-header.is-scrolled~.p-fv .c-button.c-button--cta.c-button--icon-calendar {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.p-header {
  inset: 0 0 auto 0;
  position: fixed;
  transition: background-color 0.3s ease, color 0.3s ease;
  z-index: 3000;
}

.p-header__bar {
  align-items: center;
  background: url("/images/header-sp.png") center/cover no-repeat;
  display: flex;
  height: 3.5rem;
  overflow: visible;
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-header__bar {
    background-image: url("/images/header.png");
    height: 4.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-header.is-scrolled .p-header__bar {
    background: rgba(255, 255, 255, 0.8);
  }

  .p-header.is-scrolled .p-header__logo {
    color: #2a6eae;
  }

  .p-header.is-scrolled .p-header__drawer-link,
  .p-header.is-scrolled .p-header__drawer-toggle {
    color: #2a6eae;
  }

  .p-header.is-scrolled .p-header__hamburger span {
    background: #2a6eae;
  }

  .p-header.is-scrolled .p-header__drawer-item--contact .p-header__drawer-link {
    background: linear-gradient(90deg, #2a6eae 0%, rgb(24.15, 63.25, 100.05) 100%);
    color: #FFFFFF;
  }

  .p-header.is-scrolled .p-header__drawer-item+.p-header__drawer-item::before {
    background: #2a6eae;
  }
}

.p-header__wrapper {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  gap: 0.75rem;
  height: 100%;
  justify-content: space-between;
  margin: 0 auto;
  max-width: none;
  padding: 0 0.875rem 0 1rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-header__wrapper {
    justify-content: flex-start;
    max-width: none;
    padding: 0;
    padding-left: 6.25rem;
  }
}

.p-header__logo {
  align-items: center;
  color: #FFFFFF;
  display: flex;
  flex-shrink: 0;
  font-size: 1.125rem;
  font-weight: 700;
  height: 100%;
  letter-spacing: 0.09em;
  text-decoration: none;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .p-header__logo {
    font-size: min(1.9444444444vw, 1.75rem);
  }
}

/* ハンバーガー */
.p-header__hamburger {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: grid;
  height: 0.875rem;
  padding: 0;
  place-items: center;
  width: 2.75rem;
}

.p-header__hamburger span {
  background: #2a6eae;
  border-radius: 0.125rem;
  display: block;
  height: 0.0625rem;
  width: 1.625rem;
}

.p-header__hamburger span+span {
  margin-top: 0.4375rem;
}

.p-header__hamburger {
  position: relative;
  z-index: 5000;
}

.p-header__hamburger span {
  transition: 0.3s;
}

.p-header.is-open .p-header__hamburger span:nth-child(1) {
  transform: translateY(0.4375rem) rotate(45deg);
}

.p-header.is-open .p-header__hamburger span:nth-child(2) {
  transform: translateY(-0.25rem) rotate(-45deg);
}

@media screen and (min-width: 768px) {
  .p-header__bar {
    height: 4.5rem;
  }

  .p-header__logo {
    font-size: 1.75rem;
    letter-spacing: 0.07em;
  }
}

@media screen and (min-width: 768px) {
  .p-header__nav {
    display: block;
    flex: none;
    margin-left: auto;
  }

  .p-header__hamburger {
    display: none;
  }

  .p-header__drawer-list {
    align-items: center;
    display: flex;
    gap: 0.625rem;
    height: 4.5rem;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0;
    width: auto;
  }

  .p-header__title {
    margin: 0;
  }

  .p-header__drawer-item--contact {
    height: 4.5rem;
    margin-left: auto;
  }

  .p-header__drawer-item {
    border-bottom: none;
    margin: 0;
    position: relative;
  }

  .p-header__drawer-toggle,
  .p-header__drawer-link {
    font-size: 1.125rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    align-items: center;
    appearance: none;
    background: transparent;
    border: 0;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    font-weight: 600;
    height: 100%;
    letter-spacing: 0.05em;
    padding: 0 2.375rem 0 3.75rem;
    text-decoration: none;
  }

  .p-header__drawer-sub {
    background: #FFFFFF;
    border: 1px solid rgba(246, 246, 246, 0.2);
    border-radius: 0.25rem;
    box-shadow: 0 0.25rem 0.75rem rgba(246, 246, 246, 0.1);
    left: 1.25rem;
    opacity: 0;
    padding: 0;
    position: absolute;
    top: 3.125rem;
    transform: translateY(0.5rem);
    transition: 0.25s;
    visibility: hidden;
  }

  .p-header__drawer-sub li {
    border-bottom: 1px solid rgba(246, 246, 246, 0.2);
  }

  .p-header__drawer-sub li:last-child {
    border-bottom: none;
  }

  .p-header__drawer-sub a {
    align-items: center;
    background: #FFFFFF;
    color: #000000;
    display: flex;
    font-size: 0.75rem;
    height: 2.875rem;
    justify-content: space-between;
    letter-spacing: 0.05em;
    padding: 1rem 2.5rem 1rem 1.125rem;
    text-decoration: none;
    width: 14.3425rem;
  }

  .p-header__drawer-sub a::after {
    color: #000000;
    content: "＞";
    font-size: 1rem;
  }

  .p-header__drawer-sub a:hover,
  .p-header__drawer-sub a:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    outline: none;
  }

  .p-header__drawer-item:hover .p-header__drawer-sub,
  .p-header__drawer-item:focus-within .p-header__drawer-sub {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .p-header__drawer-item--contact .p-header__drawer-link {
    background: linear-gradient(90deg, #2a6eae 0%, rgb(24.15, 63.25, 100.05) 100%);
    border: 0.0625rem solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0.625rem 1.375rem rgba(0, 0, 0, 0.18);
    color: #FFFFFF;
    height: 100%;
    padding: 1.75rem 1.4375rem 1.75rem 0.25rem;
    position: relative;
    text-decoration: none;
  }

  .p-header__drawer-item+.p-header__drawer-item::before {
    background: #FFFFFF;
    content: "";
    height: 1rem;
    left: -0.75rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0.0625rem;
  }

  .p-header__drawer-contact-icon {
    background: url("/images/contact.png") no-repeat center/contain;
    display: inline-block;
    flex-shrink: 0;
    height: 1.4375rem;
    margin-right: 1.875rem;
    margin-top: 0.25rem;
    width: 1.875rem;
  }

  .p-header__drawer-item--contact .p-header__drawer-link:hover {
    filter: brightness(1.05);
  }

  .p-header__drawer-link,
  .p-header__drawer-toggle {
    align-items: center;
    display: inline-flex;
    gap: 0.5rem;
    padding: 0 2.375rem;
    position: relative;
  }

  .p-header__drawer-item:not(.p-header__drawer-item--contact) .p-header__drawer-link::after,
  .p-header__drawer-item:not(.p-header__drawer-item--contact) .p-header__drawer-toggle::after {
    background: #2a6eae;
    bottom: -0.3125rem;
    content: "";
    height: 0.125rem;
    left: 50%;
    opacity: 0;
    position: absolute;
    transform: translateX(-55%);
    transition: opacity 0.2s ease;
    width: 11.25rem;
  }

  .p-header__drawer-item:not(.p-header__drawer-item--contact) .p-header__drawer-link:hover::after,
  .p-header__drawer-item:not(.p-header__drawer-item--contact) .p-header__drawer-toggle:hover::after {
    opacity: 1;
  }
}

/* ======================
SP ドロワーメニュー
====================== */
@media screen and (max-width: 767px) {
  .p-header__nav {
    background: #FFFFFF;
    display: block;
    inset: 3.5rem 0 0 0;
    overflow-y: auto;
    padding: 0 1.25rem 0 0.9375rem;
    position: fixed;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    z-index: 4000;
  }

  .p-header.is-open .p-header__nav {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
  }

  .p-header__drawer-item:last-child {
    border-bottom: none;
  }

  .p-header__drawer-toggle,
  .p-header__drawer-link {
    align-items: center;
    background: transparent;
    border: none;
    color: #2a6eae;
    display: flex;
    font-size: 1.25rem;
    font-weight: 700;
    justify-content: space-between;
    padding: 1.5rem 0;
    position: relative;
    text-decoration: none;
    width: 100%;
  }

  .p-header__drawer-toggle::after,
  .p-header__drawer-link::after {
    background: #2a6eae;
    bottom: -0.375rem;
    content: "";
    height: 0.0625rem;
    left: 0;
    position: absolute;
    width: 100%;
  }

  .p-header__drawer-icon,
  .p-header__drawer-arrow {
    background: #2a6eae;
    border-radius: 50%;
    flex-shrink: 0;
    height: 1.375rem;
    position: relative;
    right: 0.25rem;
    top: 0.125rem;
    width: 1.375rem;
  }

  .p-header__drawer-icon::after,
  .p-header__drawer-arrow::after {
    border-color: transparent transparent transparent #FFFFFF;
    border-style: solid;
    border-width: 0.375rem 0 0.375rem 0.5625rem;
    content: "";
    left: 55%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .p-header__drawer-sub {
    display: none;
    list-style: none;
    padding: 0;
  }

  .p-header__drawer-sub li {
    border-top: 0.0625rem solid #FFFFFF;
  }

  .p-header__drawer-sub a {
    align-items: center;
    color: #000000;
    display: flex;
    font-size: 1rem;
    justify-content: space-between;
    letter-spacing: 0.05em;
    padding: 1.4375rem 1rem 0.4375rem 1.3125rem;
    text-decoration: none;
  }

  .p-header__drawer-sub a::after {
    color: #000000;
    content: "＞";
    font-family: serif;
    font-size: 1rem;
    font-weight: normal;
  }

  .p-header__drawer-item--contact {
    border-bottom: none;
    display: none;
    margin-top: 1.25rem;
  }

  .p-header__drawer-item--contact .p-header__drawer-arrow {
    display: none;
  }

  .p-header__drawer-link {
    border-radius: 0.25rem;
    color: #2a6eae;
    justify-content: space-between;
    padding: 2.1875rem 0.125rem 0 0;
    position: relative;
    text-decoration: none;
    transition: color 0.3s;
  }

  .p-header__drawer-link::after {
    background: #2a6eae;
    bottom: 0;
    content: "";
    height: 0.125rem;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    width: 100%;
  }

  .p-header__drawer-link:hover::after {
    transform: scaleX(1);
  }

  .p-header__drawer-toggle {
    color: #2a6eae;
    font-size: 1.1875rem;
    letter-spacing: 0.05em;
    padding: 2.625rem 0.1875rem 0 0;
    position: relative;
    transition: color 0.3s;
  }

  .p-header__drawer-toggle::after {
    background: #2a6eae;
    bottom: -0.3125rem;
    content: "";
    height: 0.125rem;
    left: 1.25rem;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    width: 100%;
  }

  .p-header__drawer-toggle:hover {
    color: #1e588f;
  }

  .p-header__drawer-toggle:hover::after {
    transform: scaleX(1);
  }

  .p-header__drawer-link:hover {
    color: #FFFFFF;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .p-header__logo {
    font-size: 1.25rem;
  }

  .p-header__drawer-toggle,
  .p-header__drawer-link {
    font-size: 0.875rem;
    padding: 0 1.25rem;
  }

  .p-header__wrapper {
    padding-left: 4.375rem;
  }
}

body.is-fixed {
  position: fixed;
  width: 100%;
}

.p-learn {
  background: #FFFFFF;
  padding: 4.875rem 0 4.0625rem 0;
}

@media screen and (min-width: 768px) {
  .p-learn {
    padding: 4.6875rem 0 5.125rem;
  }
}

.p-learn__inner {
  max-width: 56.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media screen and (min-width: 768px) {
  .p-learn__inner {
    max-width: 68.75rem;
  }
}

.p-learn__title {
  margin-bottom: 1.875rem;
}

@media screen and (min-width: 768px) {
  .p-learn__title {
    margin-bottom: 3.75rem;
  }
}

/* ======================
リスト
====================== */
.p-learn__list {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  justify-content: center;
  margin-left: 0;
}

@media screen and (min-width: 768px) {
  .p-learn__list {
    display: grid;
    gap: 1.625rem;
    grid-template-columns: repeat(4, 14.375rem);
    justify-content: center;
    margin-left: 0;
    margin-top: -1.75rem;
  }
}

.p-learn__item {
  width: 100%;
}

/* ======================
画像
====================== */
.p-learn__image {
  flex-shrink: 0;
  height: 6.25rem;
  max-width: 100%;
  overflow: hidden;
  width: 6.25rem;
}

.p-learn__image img {
  display: block;
  height: auto;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (min-width: 768px) {
  .p-learn__image {
    height: 7.75rem;
    width: 10.375rem;
  }
}

.p-learn__item:nth-child(4) img {
  transform: scale(0.8);
}

.p-learn__card--basic {
  gap: 0.5rem;
  padding: 0.875rem 0 0 1.4375rem;
}

.p-learn__card--basic .p-learn__text {
  padding: 0 0.75rem 1.3125rem 0;
}

@media screen and (min-width: 768px) {
  .p-learn__card--basic .p-learn__text {
    padding: 0 0 0 0.375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-learn__card--basic {
    gap: 1.25rem;
    padding: 3.75rem 0.75rem 0.5rem 0;
  }
}

.p-learn__card--risk {
  gap: 0.5rem;
  padding: 0.625rem 0 0 1.5625rem;
}

.p-learn__card--risk .p-learn__text {
  padding: 0 0.625rem 0.5rem 0;
}

@media screen and (min-width: 768px) {
  .p-learn__card--risk .p-learn__text {
    padding: 0.5rem 0 0.3125rem 0.4375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-learn__item:nth-child(2) img {
    transform: scale(0.9);
  }

  .p-learn__card--risk {
    gap: 1.25rem;
    padding: 1.375rem 0 1.25rem 0.1875rem;
  }
}

.p-learn__card--compare {
  gap: 0rem;
  padding: 1.125rem 0 0 1.5625rem;
}

.p-learn__card--compare .p-learn__text {
  letter-spacing: normal;
  padding: 0 0.4375rem 0.8125rem 0;
}

@media screen and (min-width: 768px) {
  .p-learn__card--compare .p-learn__text {
    letter-spacing: 0.09em;
    padding: 0.5rem 0 0.75rem 0;
  }
}

@media screen and (min-width: 768px) {
  .p-learn__card--compare {
    gap: 1rem;
    padding: 1.25rem 0 0.75rem 0.25rem;
  }
}

.p-learn__card {
  align-items: center;
  background: #e6eef6;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  height: 7.25rem;
  margin: 0 auto;
  padding: 1.5rem 0;
  padding: 0.4375rem 0 0.4375rem 1.0625rem;
  width: 21.5625rem;
}

@media screen and (min-width: 768px) {
  .p-learn__card {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 16.875rem;
    justify-content: center;
    min-height: unset;
    padding: 0;
    text-align: center;
    width: 100%;
  }
}

.p-learn__card--service {
  padding: 0.3125rem 0 0.5625rem 0.625rem;
}

.p-learn__card--service .p-learn__text {
  letter-spacing: normal;
  padding-top: 0.3125rem;
}

@media screen and (min-width: 768px) {
  .p-learn__card--service .p-learn__text {
    letter-spacing: 0.06em;
    padding: 1.875rem 0 1.5rem 0;
  }
}

@media screen and (min-width: 768px) {
  .p-learn__card--service {
    gap: 1.125rem;
    padding: 0.3125rem 0 0 0;
  }
}

/* ======================
テキスト
====================== */
.p-learn__text {
  color: #000000;
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.4;
  text-align: center;
  width: 100%;
  word-break: break-word;
}

@media screen and (min-width: 768px) {
  .p-learn__text {
    font-size: 1.125rem;
    letter-spacing: 0.07em;
    line-height: 1.8;
    text-align: center;
  }
}

.p-learn__text span {
  display: inline-block;
}

/* ======================
満足度
====================== */
.p-learn__achievement {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 0.3125rem;
}

@media screen and (min-width: 768px) {
  .p-learn__achievement {
    gap: 1.875rem;
    margin-top: 0.625rem;
  }
}

.p-learn__laurel {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
  height: 4.625rem;
  margin-top: 1.5rem;
  width: 2rem;
}

@media screen and (min-width: 768px) {
  .p-learn__laurel {
    height: 9.625rem;
    margin-top: 3.25rem;
    width: 4rem;
  }
}

.p-learn__laurel--left {
  background-image: url("/images/laurel.png");
  margin-right: 0.75rem;
}

.p-learn__laurel--right {
  background-image: url("/images/laurel2.png");
  margin-left: 1rem;
}

.p-learn__achievement-text {
  color: #1e588f;
  font-size: 1.20625rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.6;
  margin: 0 -0.375rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-learn__achievement-text {
    font-size: 2.4125rem;
    font-weight: 600;
    letter-spacing: 0.09em;
  }
}

.p-learn__rate {
  font-family: "Noto Serif JP", serif;
  font-size: 3.408125rem;
  font-weight: 700;
  letter-spacing: -0.06em;
  margin: 0 0.625rem;
}

.p-learn__rate span {
  font-size: 3.4375rem;
}

@media screen and (min-width: 768px) {
  .p-learn__rate {
    font-size: 6.875rem;
    margin: 0 1.125rem 0 0;
  }

  .p-learn__rate span {
    font-size: 6.875rem;
  }
}

.p-learn__rate span:last-child {
  font-size: 2.3125rem;
}

@media screen and (min-width: 768px) {
  .p-learn__rate span:last-child {
    font-size: 4.625rem;
  }
}

.p-learn__num {
  display: inline-block;
  font-size: 6.875rem;
  transform: skewX(-10deg);
}

.p-learn__achievement-note {
  display: block;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-left: 0.875rem;
  margin-top: -1.125rem;
}

@media screen and (min-width: 768px) {
  .p-learn__achievement-note {
    font-size: 2.125rem;
    letter-spacing: 0.09em;
    margin-top: -1.875rem;
  }
}

/* ===============================
   p-participant
=============================== */
.p-participant {
  background: #FFFFFF;
  padding: 2.625rem 0;
}

@media screen and (min-width: 768px) {
  .p-participant {
    padding: 3.4375rem 0;
  }
}

.p-participant__title {
  margin-bottom: 2.125rem;
  text-align: center;
}

.p-participant__title .c-title {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-participant__title .c-title {
    font-size: 2.625rem;
    letter-spacing: 0.075em;
    line-height: 1.2;
    margin-left: 1.875rem;
  }
}

.p-participant__title .c-title__en {
  margin: 1rem 0.5625rem 0.0625rem 0;
}

@media screen and (min-width: 768px) {
  .p-participant__title .c-title__en {
    margin: 0.25rem 0 0.25rem 0.625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-participant__title .c-title__jp {
    letter-spacing: 0.01em;
    margin: 0.25rem 0 0 1.75rem;
  }
}

.p-participant__list {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

@media screen and (min-width: 768px) {
  .p-participant__list {
    flex-direction: row;
    gap: 5.9375rem;
    justify-content: center;
    margin-top: -0.5rem;
    padding-right: 0.875rem;
  }
}

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

.p-participant__note {
  font-size: 1.180625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-left: 0.75rem;
  margin-top: 0.25rem;
}

@media screen and (min-width: 768px) {
  .p-participant__note {
    font-size: 1.625rem;
    margin-left: 5.75rem;
    margin-top: 0.125rem;
  }
}

/* ===============================
   c-donut（円グラフ）
=============================== */
.c-donut {
  margin: 0 auto;
  position: relative;
  width: 14.6875rem;
}

.c-donut__circle {
  aspect-ratio: 1/1;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  width: 15rem;
}

@media screen and (min-width: 768px) {
  .c-donut__circle {
    width: 20.625rem;
  }
}

.c-donut__circle::after {
  background: #FFFFFF;
  border-radius: 50%;
  content: "";
  inset: 26%;
  position: absolute;
  z-index: 1;
}

.c-donut__center {
  color: #1e588f;
  font-size: 1.180625rem;
  font-weight: 800;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .c-donut__center {
    font-size: 1.625rem;
  }
}

/* ===============================
   ラベル
=============================== */
.c-donut__label {
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.1;
  paint-order: stroke fill;
  position: absolute;
  text-align: center;
  z-index: 3;
}

.c-donut__label strong {
  display: block;
  font-size: 1.825rem;
}

.c-donut__label span {
  font-size: 0.75rem;
}

.c-donut__label--main {
  color: #ef7000;
}

.c-donut__label--sub {
  color: #1e588f;
}

/* ===============================
   円グラフの中身
=============================== */
/* 年齢 */
.c-donut--age .c-donut__circle {
  background: conic-gradient(rgba(30, 88, 143, 0.3) 0% 9%, rgba(239, 112, 0, 0.5) 9% 64%, rgba(30, 88, 143, 0.3) 64% 92%, rgba(230, 238, 246, 0.8) 92% 100%);
}

/* 年収 */
.c-donut--income .c-donut__circle {
  background: conic-gradient(rgba(30, 88, 143, 0.3) 0% 33%, rgba(239, 112, 0, 0.5) 33% 63%, rgba(30, 88, 143, 0.3) 63% 86%, rgba(230, 238, 246, 0.8) 86% 100%);
}

/* ===============================
   ラベル位置（SP）
=============================== */
.c-donut--age .c-donut__label--main {
  -webkit-text-stroke: 0.375rem #ef7000;
  bottom: 5%;
  color: #FFFFFF;
  font-size: 1.180625rem;
  line-height: 1;
  margin-bottom: 2.5625rem;
  right: 0.1875rem;
}

@media screen and (min-width: 768px) {
  .c-donut--age .c-donut__label--main {
    font-size: 1.625rem;
    margin-bottom: 4rem;
  }
}

.c-donut--age .c-donut__label--sub {
  -webkit-text-stroke: 0.375rem #1e588f;
  color: #FFFFFF;
  font-size: 1.180625rem;
  left: -0.375rem;
  line-height: 1.1;
  margin-top: 3.3125rem;
  top: 15%;
}

@media screen and (min-width: 768px) {
  .c-donut--age .c-donut__label--sub {
    font-size: 1.625rem;
    margin-top: 4.625rem;
  }
}

/* 年収 */
.c-donut--income .c-donut__label--main {
  -webkit-text-stroke: 0.375rem #ef7000;
  bottom: 0.5rem;
  color: #FFFFFF;
  font-size: 1.18625rem;
  line-height: 1.1;
  paint-order: stroke fill;
  right: 2.5625rem;
}

@media screen and (min-width: 768px) {
  .c-donut--income .c-donut__label--main {
    bottom: 1.5rem;
    line-height: 1;
    right: 4.375rem;
  }
}

.c-donut--income .c-donut__label--sub {
  -webkit-text-stroke: 0.375rem #1e588f;
  bottom: 5.1875rem;
  color: #FFFFFF;
  font-size: 1.18625rem;
  left: -1.75rem;
  line-height: 1;
  paint-order: stroke fill;
}

@media screen and (min-width: 768px) {
  .c-donut--income .c-donut__label--sub {
    bottom: 6.75rem;
    line-height: 1;
  }
}

.c-donut__label {
  font-size: 0.875rem;
  line-height: 1.4;
  position: absolute;
  text-align: center;
  z-index: 2;
}

.c-donut__label strong {
  -webkit-text-stroke: 2px currentColor;
  color: #FFFFFF;
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
}

.c-donut__label span {
  font-size: 1.55125rem;
}

@media screen and (min-width: 768px) {
  .c-donut__label {
    font-size: 1.625rem;
  }

  .c-donut__label strong {
    font-size: 1.5rem;
  }
}

.c-donut__label--main strong {
  -webkit-text-stroke: 0.375rem #ef7000;
  color: #FFFFFF;
  font-size: 1.825rem;
  font-weight: 900;
  line-height: 1.1;
}

@media screen and (min-width: 768px) {
  .c-donut__label--main strong {
    font-size: 2.5rem;
  }
}

.c-donut__label--sub strong {
  -webkit-text-stroke: 0.375rem #1e588f;
  color: #FFFFFF;
  font-size: 1.825rem;
  font-weight: 900;
  line-height: 1.1;
}

@media screen and (min-width: 768px) {
  .c-donut__label--sub strong {
    font-size: 2.5rem;
  }
}

small {
  font-size: 1.18625rem;
}

@media screen and (min-width: 768px) {
  small {
    font-size: 1.625rem;
  }
}

.p-reason {
  background: #d6e3f1;
  padding: 3.375rem 0 3.1875rem;
}

@media screen and (min-width: 768px) {
  .p-reason {
    padding: 4.75rem 0 4.5rem;
  }
}

.p-reason__inner {
  padding: 0;
}

.p-reason__title {
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-reason__title {
    margin-bottom: 4.875rem;
    margin-left: 0.625rem;
  }
}

.p-reason__title .c-title__jp {
  letter-spacing: 0.03em;
  margin-top: 0.125rem;
}

@media screen and (min-width: 768px) {
  .p-reason__title .c-title__jp {
    letter-spacing: 0.08em;
    margin-bottom: -1.75rem;
    margin-left: 1.25rem;
    margin-top: 0.3125rem;
  }
}

.p-reason__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .p-reason__list {
    gap: 3.75rem;
  }
}

.p-reason__item {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .p-reason__item {
    align-items: stretch;
    flex-direction: row;
    gap: 0;
    padding: 0;
  }
}

.p-reason__box {
  background: #FFFFFF;
  margin-right: 1.75rem;
  padding: 1.5rem 1rem 8.125rem 1.0625rem;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .p-reason__box {
    flex: 1;
    height: 15.5rem;
    margin: 0;
    margin-left: calc(50% - 50vw);
    margin-right: 0;
    margin-right: calc(50% - 47vw);
    min-height: 15.25rem;
    overflow: hidden;
    padding: 1.875rem 11.75rem 0.75rem 15.875rem;
    position: relative;
    width: calc(100% + 80px);
    z-index: 1;
  }
}

.p-reason__item--reverse .p-reason__box {
  margin-left: 1.75rem;
  margin-right: 0;
  padding: 1.5rem 0.625rem 9rem 1.0625rem;
}

@media screen and (min-width: 768px) {
  .p-reason__item--reverse .p-reason__box {
    margin-left: -23.5rem;
    padding: 2.0625rem 15.75rem 0 12.3125rem;
    right: 4.0625rem;
  }
}

.p-reason__item--offer .p-reason__box {
  margin-right: 1.8125rem;
  padding: 1.4375rem 0.625rem 9.5625rem 1.0625rem;
}

@media screen and (min-width: 768px) {
  .p-reason__item--offer .p-reason__box {
    margin-right: -8.75rem;
    padding: 2.125rem 11.875rem 0 15.8125rem;
  }
}

.p-reason__text {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 0.5625rem;
  column-gap: 0.5625rem;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .p-reason__text {
    -moz-column-gap: 1.625rem;
    column-gap: 1.625rem;
  }
}

.p-reason__number {
  color: #e6eef6;
  flex-shrink: 0;
  font-family: "Lato", sans-serif;
  font-size: 3.125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .p-reason__number {
    font-size: 4.005625rem;
  }
}

.p-reason__heading {
  color: #000000;
  flex: 1;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.4;
  margin-left: -0.1875rem;
  margin-top: -0.125rem;
  min-width: 0;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

@media screen and (min-width: 768px) {
  .p-reason__heading {
    font-size: 1.5rem;
  }
}

.p-reason__heading--left {
  transform: translateX(-40px);
}

.p-reason__heading--right {
  transform: translateX(40px);
}

.p-reason__heading.is-active {
  opacity: 1;
  transform: translateX(0);
}

.p-reason__item--reverse .p-reason__heading {
  letter-spacing: 0.05em;
  margin-left: 0;
  margin-top: 0.1875rem;
}

.p-reason__item--offer .p-reason__heading {
  letter-spacing: 0.05em;
  margin: 0;
}

.p-reason__description {
  color: #000000;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.56;
  margin: 0.5625rem -0.1875rem 0;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-reason__description {
    letter-spacing: -0.03em;
    line-height: 1.625;
    margin-top: 1.0625rem;
  }
}

.p-reason__image {
  display: block;
  margin: -7rem 0.5625rem 0 1.5rem;
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .p-reason__image {
    align-self: center;
    flex: 0 0 25rem;
    margin: 0;
    position: relative;
    z-index: 2;
  }

  .p-reason__image img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    aspect-ratio: 376/255;
    display: block;
    object-fit: cover;
  }
}

.p-reason__image img {
  display: block;
  height: auto;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

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

@media screen and (min-width: 768px) {
  .p-reason__item:nth-child(even) {
    flex-direction: row-reverse;
  }

  .p-reason__item:nth-child(odd) .p-reason__box {
    margin-left: calc(50% - 50vw);
    margin-right: -3.75rem;
    padding: 1.875rem 5rem 1.875rem 15.875rem;
  }
}

@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-reason__item:nth-child(odd) .p-reason__box {
    padding: 1.875rem 5rem 1.875rem 15.875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-reason__item:nth-child(even) .p-reason__box {
    margin-left: -3.75rem;
    margin-right: calc(50% - 55vw);
    padding: 1.875rem 15.875rem 1.875rem 5rem;
  }
}

@media screen and (min-width: 768px) and (min-width: 1440px) {
  .p-reason__item:nth-child(even) .p-reason__box {
    padding: 1.875rem 15.875rem 1.875rem 9.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-reason__item:nth-child(odd) .p-reason__image img {
    margin-left: -1.5625rem;
    margin-top: 1.875rem;
  }

  .p-reason__item:nth-child(even) .p-reason__image img {
    margin-left: 1.625rem;
    margin-top: 1.5rem;
  }
}

.p-schedule {
  background: #f6f6f6;
  padding: 2.75rem 0 3.875rem;
}

@media screen and (min-width: 768px) {
  .p-schedule {
    padding: 5.3125rem 0 5.75rem;
  }
}

.p-schedule__inner {
  padding: 0 0.875rem;
}

@media screen and (min-width: 768px) {
  .p-schedule__inner {
    margin: 0 auto;
    max-width: 62.5rem;
    padding: 0;
  }
}

.p-schedule__title {
  margin: 0.375rem 0 1.625rem 0.125rem;
}

.p-schedule__title .c-title__en {
  margin: 0.4375rem 0.75rem 0 0;
}

@media screen and (min-width: 768px) {
  .p-schedule__title .c-title__en {
    margin: 0.625rem 0.125rem 0 0;
  }
}

.p-schedule__title .c-title__jp {
  letter-spacing: -0.01em;
  margin-left: -0.25rem;
  margin-top: 0.4375rem;
}

@media screen and (min-width: 768px) {
  .p-schedule__title .c-title__jp {
    letter-spacing: -0.06em;
    margin-left: 0.875rem;
    margin-top: 0.1875rem;
  }
}

.p-schedule__list {
  display: flex;
  flex-direction: column;
  gap: 1.8125rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .p-schedule__list {
    gap: 0;
    margin-top: 3.125rem;
  }
}

.p-schedule__item {
  background: #e6eef6;
  display: grid;
  grid-template-columns: 5.3125rem 1fr;
  grid-template-rows: auto auto auto;
  overflow: hidden;
  width: 21.5625rem;
  -moz-column-gap: 0.25rem;
  align-items: stretch;
  column-gap: 0.25rem;
  margin-left: auto;
  margin-right: auto;
  row-gap: 0.125rem;
}

@media screen and (min-width: 768px) {
  .p-schedule__item {
    grid-template-columns: 8.75rem 8.75rem 1fr 12.5rem;
    grid-template-rows: auto auto;
    -moz-column-gap: 0.3125rem;
    border-bottom: 5px solid #f6f6f6;
    column-gap: 0.3125rem;
    width: 100%;
  }
}

.p-schedule__item:nth-child(1) .p-schedule__date {
  padding: 1.875rem 0.5rem;
}

@media screen and (min-width: 768px) {
  .p-schedule__item:nth-child(1) .p-schedule__date {
    padding: 1.25rem 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-schedule__item:nth-child(1) .p-schedule__buttons {
    padding-top: 0.25rem;
  }
}

.p-schedule__item:nth-child(3) {
  padding-top: 0.25rem;
}

@media screen and (min-width: 768px) {
  .p-schedule__item:nth-child(3) {
    padding-top: 0;
  }
}

.p-schedule__item:nth-child(3) .p-schedule__buttons {
  padding: 0.9375rem 1.25rem 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-schedule__item:nth-child(3) .p-schedule__buttons {
    padding: 0;
    padding-top: 1.875rem;
  }
}

.p-schedule__item:nth-child(4) {
  padding-top: 0.25rem;
}

@media screen and (min-width: 768px) {
  .p-schedule__item:nth-child(4) {
    padding-top: 0;
  }
}

.p-schedule__item:nth-child(5) {
  padding-top: 0.25rem;
}

@media screen and (min-width: 768px) {
  .p-schedule__item:nth-child(5) {
    padding-top: 0;
  }
}

.p-schedule__date {
  align-items: center;
  background: #2a6eae;
  color: #FFFFFF;
  display: flex;
  font-size: 1rem;
  font-weight: 700;
  grid-column: 1;
  grid-row: 1;
  justify-content: center;
  padding: 0.875rem 0.5rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-schedule__date {
    align-items: flex-start;
    font-size: 1.25rem;
    grid-row: 1/3;
    height: 100%;
    justify-content: flex-start;
    letter-spacing: 0.04em;
    padding: 1.25rem 0.5rem;
    padding-left: 1.375rem;
    padding-top: 1.25rem;
    width: 8.8125rem;
  }
}

.p-schedule__date time {
  display: block;
}

.p-schedule__time {
  align-items: center;
  background: #6096c8;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  font-weight: 700;
  grid-column: 1;
  grid-row: 2;
  justify-content: flex-start;
  padding: 2rem 0.5rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-schedule__time {
    align-items: flex-start;
    font-size: 1.125rem;
    grid-column: 2;
    grid-row: 1;
    grid-row: 1/3;
    height: 100%;
    justify-content: center;
    justify-content: flex-start;
    letter-spacing: 0.04em;
    padding: 1.25rem 0.5rem;
    padding-left: 1rem;
    padding-top: 2.125rem;
    width: 8.5rem;
  }
}

.p-schedule__time time {
  display: block;
  line-height: 0;
}

.p-schedule__time-inner {
  text-align: left;
}

.p-schedule__content {
  display: grid;
  gap: 0.5rem;
  grid-column: 2;
  grid-row: 1/3;
  grid-template-rows: 1fr 1fr;
  letter-spacing: 0.03em;
  overflow: hidden;
  padding: 0.5rem 0.875rem 0.625rem;
}

@media screen and (min-width: 768px) {
  .p-schedule__content {
    align-self: center;
    gap: 0.5rem;
    grid-column: 3;
    grid-row: 1;
    letter-spacing: 0.08em;
    margin-right: -0.875rem;
    padding: 1.25rem 0 0.75rem 1.0625rem;
  }
}

.p-schedule__item-title {
  color: #000000;
  display: -webkit-box;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

@media screen and (min-width: 768px) {
  .p-schedule__item-title {
    display: block;
    font-size: 1.25rem;
    overflow: visible;
  }
}

.p-schedule__text {
  color: #000000;
  display: -webkit-box;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.4;
  margin: 0.25rem -0.25rem 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

@media screen and (min-width: 768px) {
  .p-schedule__text {
    display: block;
    font-size: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.6;
    margin: 0;
    overflow: visible;
  }
}

.p-schedule__buttons {
  background: #e6eef6;
  display: flex;
  gap: 0.375rem;
  grid-column: 1/-1;
  grid-row: 3;
  height: 100%;
  justify-content: center;
  padding: 0.75rem 1.25rem 1.25rem;
  right: 0.1875rem;
}

@media screen and (min-width: 768px) {
  .p-schedule__buttons {
    align-items: center;
    flex-direction: column;
    gap: 0.5rem;
    grid-column: 4;
    grid-row: 1/3;
    justify-content: center;
    margin-left: 1.875rem;
    padding: 1.875rem 0 0 0;
    width: 9.6875rem;
  }
}

.p-schedule__buttons .c-button {
  align-items: center;
  display: flex;
  font-size: 1rem;
  height: 2.8125rem;
  justify-content: center;
  letter-spacing: 0.09em;
  padding: 0;
  width: 9.375rem;
}

@media screen and (min-width: 768px) {
  .p-schedule__buttons .c-button {
    bottom: 0.75rem;
    flex: 0 0 auto;
    height: 2.4375rem;
    left: 0.25rem;
    width: 8.5625rem;
  }
}

.c-button.c-button--black {
  font-size: 1rem;
  height: 2.8125rem;
  letter-spacing: 1.1em;
  padding-left: 0.75rem;
  width: 9.375rem;
}

@media screen and (min-width: 768px) {
  .c-button.c-button--black {
    height: 2.4375rem;
    margin-right: 0;
    width: 8.5625rem;
  }
}

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

/* ===============================
   p-voice
=============================== */
.p-voice {
  background: #FFFFFF;
  padding: 0.3125rem 0 3.875rem 0;
}

@media screen and (min-width: 768px) {
  .p-voice {
    padding: 0.5rem 0 6.625rem 0;
  }
}

.p-voice__inner {
  padding-left: 1rem;
  padding-right: 0;
}

.p-voice__title {
  margin-bottom: 1.875rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-voice__title {
    margin-bottom: 4rem;
  }
}

.p-voice__title .c-title__jp {
  margin-left: -1rem;
  margin-top: 0.25rem;
}

@media screen and (min-width: 768px) {
  .p-voice__title .c-title__jp {
    margin-bottom: -1.875rem;
    margin-left: 1rem;
  }
}

.p-voice__title .c-title__en {
  margin-left: -1rem;
  margin-left: -0.25rem;
}

/* ===============================
   スライダー
=============================== */
.p-voice__slider {
  cursor: pointer;
  overflow: hidden;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-voice__slider {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
  }
}

/* ===============================
   カード（c-card調整）
=============================== */
.c-card {
  background: #e6eef6;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  width: 13.3125rem;
}

@media screen and (min-width: 768px) {
  .c-card {
    height: 20.1875rem;
    width: 14.375rem;
  }
}

.c-card__link {
  color: inherit;
  display: block;
  text-decoration: none;
}

.c-card__media {
  position: relative;
}

.c-card__img {
  display: block;
  height: auto;
  width: 100%;
}

.c-card__badge {
  background: #1e588f;
  color: #FFFFFF;
  font-size: 1.1875rem;
  font-weight: 700;
  padding: 0.375rem 1.25rem;
  position: absolute;
  right: 0;
  top: 0;
}

@media screen and (min-width: 768px) {
  .c-card__badge {
    font-size: 1.375rem;
    padding: 0.4375rem 1.25rem;
  }
}

.c-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  margin-left: -0.0625rem;
}

@media screen and (min-width: 768px) {
  .c-card__title {
    font-size: 1.125rem;
    margin-bottom: 0.625rem;
    margin-left: 0.25rem;
  }
}

.c-card__text {
  color: #000000;
  display: -webkit-box;
  font-size: 0.875rem;
  margin-top: -0.25rem;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .c-card__text {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.63;
    padding: 0 0.25rem;
  }
}

.js-voice-slider:hover {
  cursor: pointer;
}

.p-voice__track {
  animation: voice-scroll 20s linear infinite;
  display: flex;
  gap: 1.1875rem;
  width: -moz-max-content;
  width: max-content;
}

@media screen and (min-width: 768px) {
  .p-voice__track {
    gap: 1.75rem;
  }
}

.p-voice__slider:hover .p-voice__track {
  animation-play-state: paused;
}

@keyframes voice-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.u-pc {
  display: none;
}

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

@media screen and (min-width: 768px) {
  .u-sp {
    display: none;
  }
}
/*# sourceMappingURL=styles.css.map */
