@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:wght@400;500;700&display=swap");
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  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 {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

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

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

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

/* Remove all animations and transitions 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;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.5238095238vw;
  }
}
@media (min-width: 1050px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

.l-application {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .l-application {
    margin-top: 4rem;
  }
}

.l-faq {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .l-faq {
    margin-top: 5.5rem;
  }
}

.l-feature {
  margin-top: 2.25rem;
}
@media screen and (min-width: 768px) {
  .l-feature {
    margin-top: 5rem;
  }
}

.l-footer {
  margin-top: 2.5rem;
  margin-bottom: 4.625rem;
}
@media screen and (min-width: 768px) {
  .l-footer {
    margin-top: 5rem;
    margin-bottom: 0;
  }
}

.l-hero {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .l-hero {
    margin-top: 5rem;
  }
}

.l-inner {
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .l-inner {
    padding: 0 25px;
    max-width: 1050px;
  }
}

@media screen and (min-width: 768px) {
  .p-mv__inner.l-inner {
    max-width: initial;
  }
}

@media screen and (min-width: 768px) {
  .p-header__inner.l-inner {
    max-width: 86.125rem;
  }
}

.l-voices {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .l-voices {
    margin-top: 3rem;
  }
}

.c-btn__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.3;
  font-weight: 700;
  color: #881125;
  padding: 0.25rem 0.25rem 0.25rem 0.625rem;
  border: 1px solid #881125;
  border-radius: 2rem;
  transition: all 0.2s ease;
}
.p-application-detail__btnWrap--modal .c-btn__link {
  background: #fff;
}
@media screen and (min-width: 768px) {
  .c-btn__link {
    padding: 0.40625rem 0.25rem 0.40625rem 0.75rem;
  }
}
.c-btn__link img {
  transition: all 0.3s ease;
  max-width: 1rem;
  max-height: 1rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-btn__link img {
    max-width: 1.25rem;
    max-height: 1.25rem;
  }
}
.c-btn__link:hover {
  background-color: #881125;
  color: #fff;
  opacity: 1;
}

.c-title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
  text-align: center;
  color: #881125;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .c-title {
    gap: 1.125rem;
  }
}

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

.c-title__en {
  font-size: 1.125rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

.c-title__ja {
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-title__ja {
    font-size: 2rem;
  }
}

.p-accordion__item + .p-accordion__item {
  margin-top: 1.125rem;
}

.p-accordion__question {
  position: relative;
  text-indent: -0.75rem;
  cursor: pointer;
  padding: 1rem 2.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: #881125;
}
@media screen and (min-width: 768px) {
  .p-accordion__question {
    text-indent: -1rem;
    padding: 1.0625rem 5.5rem 1.0625rem 3.6875rem;
    font-size: 1.125rem;
  }
}

.p-accordion__question::before,
.p-accordion__question::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(0%);
  width: 0.875rem;
  height: 0.125rem;
  background: #881125;
  right: 0.9375rem;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-accordion__question::before,
  .p-accordion__question::after {
    right: 1.875rem;
    width: 1.125rem;
    height: 0.1875rem;
  }
}

.p-accordion__question::after {
  transform: rotate(90deg);
}

.p-accordion__question.is-open::after {
  transform: rotate(0deg);
}

.p-accordion__question span {
  margin-right: 0.5rem;
  display: inline-block;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-accordion__question span {
    font-size: 1.5rem;
    margin-right: 1rem;
  }
}

.p-accordion__answer {
  display: none;
  padding: 0 2.25rem 1rem 2.25rem;
  font-size: 0.875rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-accordion__answer {
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 5.5rem 1rem 3.6875rem;
  }
}
.p-accordion__answer a {
  text-decoration: underline;
  color: #881125;
  word-break: break-all;
}

.p-application {
  padding: 3.375rem 0 3.5rem;
  background-color: #fff1f3;
}

.p-application-target {
  margin-top: 2.25rem;
}

.p-application__header {
  line-height: 1.3;
  font-size: 1.125rem;
  padding: 0.5rem 0.75rem;
  font-weight: 700;
  color: #fff;
  background-color: #881125;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-application__header {
    line-height: 1.2916666667;
    font-size: 1.5rem;
    padding: 1rem;
  }
}

.p-application-target__body {
  padding: 1.5rem 0.75rem;
  background-color: #fff;
  box-shadow: 0 0.25rem 1rem 0 rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 768px) {
  .p-application-target__body {
    padding: 1.25rem 5rem 1.5rem;
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    gap: 1rem;
  }
}

.p-application-target__period {
  padding: 0.625rem 1rem;
}
@media screen and (min-width: 768px) {
  .p-application-target__period {
    padding: 1.5rem;
  }
}
.p-application-target__period:nth-child(1) {
  background-color: #fff0f0;
}
.p-application-target__period:nth-child(1) .p-application-target__title {
  color: #df0615;
}
@media screen and (min-width: 768px) {
  .p-application-target__period:nth-child(1)
    .p-application-target__period-before,
  .p-application-target__period:nth-child(1)
    .p-application-target__period-after {
    padding-left: 3.125rem;
  }
}
.p-application-target__period:nth-child(2) {
  background-color: #f6f6f6;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-application-target__period:nth-child(2) {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-application-target__period:nth-child(2)
    .p-application-target__period-before,
  .p-application-target__period:nth-child(2)
    .p-application-target__period-after {
    padding-left: 5rem;
  }
}

.p-application-target__title {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  border-bottom: 1px solid #881125;
}
@media screen and (min-width: 768px) {
  .p-application-target__title {
    font-size: 1.25rem;
  }
}

.p-application-target__period-before {
  margin-top: 0.3125rem;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-application-target__period-before {
    text-align: left;
    font-size: 1.125rem;
    margin-top: 0.625rem;
    padding-left: 4rem;
  }
}
.p-application-target__period-before span {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-application-target__period-before span {
    font-size: 2.5rem;
  }
}
.p-application-target__period-before::before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -0.9375rem;
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  border-bottom: 0.125rem solid #333;
  border-right: 0.125rem solid #333;
  transform: translateX(-50%) rotate(45deg);
}
@media screen and (min-width: 768px) {
  .p-application-target__period-before::before {
    bottom: -0.75rem;
  }
}

.p-application-target__period:nth-child(1) {
  color: #881125;
}
.p-application-target__period:nth-child(1)
  .p-application-target__period-before::before {
  border-color: #881125;
}

.p-application-target__period-after {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-application-target__period-after {
    margin-top: 0.625rem;
    text-align: left;
    font-size: 1.125rem;
    padding-left: 4rem;
  }
}
.p-application-target__period-after span {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-application-target__period-after span {
    font-size: 2.5rem;
  }
}

.p-application-target__comment {
  font-size: 0.75rem;
  line-height: 1.3;
  text-align: center;
  margin-top: 0.25rem;
  color: #5d5d5d;
}
@media screen and (min-width: 768px) {
  .p-application-target__comment {
    margin-top: 0;
  }
}

.p-application-target__next {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  flex-direction: column;
  font-size: 0.75rem;
  line-height: 1.3;
  color: #5d5d5d;
}
@media screen and (min-width: 768px) {
  .p-application-target__next {
    margin-top: 0.9375rem;
    gap: 0.5rem;
    flex-direction: row;
  }
}
.p-application-target__next span:nth-child(1) {
  font-weight: 700;
}

.p-application__detail {
  margin-top: 3rem;
}

.p-application-detail__body {
  padding: 1rem 0.75rem 1.5rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-application-detail__body {
    padding: 1.5rem 2rem 1.5rem;
  }
}

.p-application-detail__intro {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-application-detail__intro {
    text-align: center;
    font-size: 1rem;
  }
}
.p-application-detail__intro span {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  display: inline-block;
  background-color: #dcb015;
  line-height: 1.5714285714;
  padding: 0 0.375rem;
  margin: 0 0.125rem;
}
@media screen and (min-width: 768px) {
  .p-application-detail__intro span {
    margin: 0 0.25rem;
    padding: 0 0.40625rem;
  }
}
.p-application-detail__intro span:nth-child(2) {
  background-color: #c80054;
}

.p-application-detail__list {
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-application-detail__list {
    margin-top: 1.625rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.p-application-detail-item {
  background-color: #f7f7f7;
}
.p-application-detail-item:nth-child(2) {
  margin-top: 1rem;
}
.p-application-detail-item:nth-child(2) .p-application-detail-item__header {
  background-color: #c80054;
}
@media screen and (min-width: 768px) {
  .p-application-detail-item:nth-child(2) {
    margin-top: 0;
  }
}

.p-application-detail-item__header {
  padding: 0.375rem 0.5rem;
  font-size: 0.875rem;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #fff;
  background-color: #dcb015;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-application-detail-item__header {
    cursor: initial;
    font-size: 1rem;
    padding: 0.78125rem 1.25rem;
    pointer-events: none;
  }
}
.p-application-detail-item__header span {
  display: inline-block;
  margin-left: 0.5rem;
  padding-left: 0.5rem;
  font-size: 1rem;
  border-left: 1px solid #fff;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-application-detail-item__header span {
    margin-left: 1rem;
    padding-left: 1rem;
    font-size: 1.25rem;
  }
}

.p-application-detail-item__header::before,
.p-application-detail-item__header::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.9375rem;
  width: 0.875rem;
  height: 0.125rem;
  background: #fff;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-application-detail-item__header::before,
  .p-application-detail-item__header::after {
    display: none;
  }
}

.p-application-detail-item__header::after {
  transform: rotate(90deg);
}

.p-application-detail-item__header.is-open::after {
  transform: rotate(0deg);
}

.p-application-detail-item__body {
  padding: 0.75rem 1rem 1.25rem;
}
@media screen and (min-width: 800px) {
  .p-application-detail-item__body {
    padding: 1.25rem 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-application-detail-item__body {
    padding: 1.25rem 1.125rem;
  }
}

.p-application-detail-item__place {
  margin: 0 auto;
  display: block;
  width: 100%;
  max-width: 6.25rem;
  max-height: 4.4375rem;
}
@media screen and (min-width: 768px) {
  .p-application-detail-item__place {
    max-width: 8.75rem;
    max-height: 6.25rem;
  }
}

.p-application-detail-item__title {
  font-weight: 700;
  text-align: center;
  color: #881125;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-application-detail-item__title {
    margin-top: 1.125rem;
  }
}

.p-application-detail-item__text {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-application-detail-item__text {
    margin-top: 0.5rem;
    height: 4.125rem;
  }
}

.p-application-detail__btnWrap {
  max-width: 18.125rem;
  margin: 2rem auto 0;
  display: grid;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-application-detail__btnWrap {
    max-width: 39rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
.p-application-detail__btnWrap .c-btn__link:not(:root) {
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-application-detail__btnWrap .c-btn__link:not(:root) {
    padding: 0.65625rem 0.25rem 0.65625rem 0.75rem;
  }
}
.p-application-detail__btnWrap img {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%);
  z-index: 10;
}
.p-application-detail__btnWrap span {
  display: inline-block;
  margin-left: -1.375rem;
}

.p-application-detail__btnWrap--modal {
  margin-top: 1rem;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-application-detail__btnWrap--modal {
    margin-top: 0.75rem;
    gap: 0.5rem;
  }
  .p-application-detail__btnWrap img.under {
    max-width: 1.5rem;
    max-height: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-application-detail__btnWrap--modal .c-btn__link:not(:root) {
    padding: 0.40625rem 0.25rem 0.40625rem 0.75rem;
  }
}
.p-application-detail__btnWrap--modal img {
  right: 0.375rem;
}

.p-application-detail-item__price {
  background-color: #fff;
  padding: 0.5rem 0.75rem;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-application-detail-item__price {
    padding: 1.25rem;
  }
}

.p-application-detail-item__text--price {
  font-size: 0.875rem;
  margin-top: 0;
  line-height: 1.6;
  height: auto;
}
.p-application-detail-item__text--price span {
  font-size: 0.857em;
}
@media screen and (min-width: 768px) {
  .p-application-detail-item__text--price {
    font-size: 1rem;
    margin-top: 0.3125rem;
  }
  .p-application-detail-item__text--price span {
    font-size: initial;
  }
}

.p-application-detail-item__price .p-application-detail-item__title {
  text-align: left;
  margin-top: 0;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-application-detail-item__price .p-application-detail-item__title {
    font-size: 1rem;
  }
}

.p-application-detail__requirement-list {
  border-bottom: 1px solid #d1d1d1;
  margin-top: 1.75rem;
  padding-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #5d5d5d;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.p-application-detail__requirement-list:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .p-application-detail__requirement-list {
    flex-direction: row;
    margin-top: 2.625rem;
    gap: 1.5rem;
  }
}

.p-application-detail__requirement-list
  + .p-application-detail__requirement-list {
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-application-detail__requirement-list
    + .p-application-detail__requirement-list {
    margin-top: 0.875rem;
    padding-right: 1.5rem;
  }
}

.p-application-detail__requirement-term {
  width: 100%;
  flex-shrink: 0;
  color: #881125;
  font-weight: 700;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-application-detail__requirement-term {
    max-width: 9.375rem;
    color: #5d5d5d;
    padding-left: 0.3125rem;
  }
}

.p-application-detail__requirement-description a {
  color: #881125;
  text-decoration: underline;
}

.p-application-detail__requirement-description {
  flex-grow: 1;
}

.p-application-detail__requirement-list--child {
  margin-top: 0;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed #d1d1d1;
  max-width: 46.125rem;
  gap: 0;
}
@media screen and (min-width: 768px) {
  .p-application-detail__requirement-list--child {
    gap: 0.5rem;
  }
}

.p-application-detail__requirement-list--child
  + .p-application-detail__requirement-list--child {
  margin-top: 0.75rem;
  border-bottom: none;
  padding-bottom: 0;
}

.p-application-detail__requirement-term--child {
  max-width: 4rem;
  font-weight: 700;
  color: #5d5d5d;
}

.p-application-detail__requirement-term--ibt {
  color: #fff;
  background-color: #dcb015;
  max-height: 1.375rem;
  padding: 0 0.1875rem;
  text-align: center;
}

.p-application-detail__requirement-term--cbt {
  color: #fff;
  background-color: #c80054;
  max-height: 1.375rem;
  padding: 0 0.1875rem;
  text-align: center;
}

.p-application__detail__btn {
  margin-top: 2.8125rem;
  text-align: center;
}

.p-application__detail__btn-link {
  display: inline-block;
  padding: 1rem;
  max-width: 21.4375rem;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  background-color: #032394;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 5px 0 0 #000a2c;
}
@media screen and (min-width: 768px) {
  .p-application__detail__btn-link {
    max-width: 20rem;
    padding: 1rem 5.5rem;
  }
}
.p-application__detail__btn-link:hover {
  opacity: 0.5;
  box-shadow: none;
  transform: translateY(5px);
}

.p-application-detail-list__modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: scroll;
  z-index: 1000;
}

.p-accordion__answer-indent {
  display: inline-block;
  text-indent: -1em;
  padding-left: 1em;
}

.p-faq__list {
  margin-top: 2.25rem;
}

.p-faq-list__item {
  background-color: #f6f6f6;
}

.p-feature {
  background-color: #881125;
  padding: 2rem 0 2.5rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-feature {
    padding: 2.8125rem 0 4rem;
  }
}

.p-feature__list {
  display: grid;
  margin-top: 2.25rem;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-feature__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }
}

.p-feature__item {
  color: #881125;
  background-color: #fff;
  padding: 1.25rem 0.75rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-feature__item {
    padding: 1.25rem;
  }
}

.p-feature-item__num {
  position: absolute;
  left: -3.5%;
  top: -13%;
  font-size: 7.5rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  opacity: 0.06;
  color: #881125;
}
@media screen and (min-width: 768px) {
  .p-feature-item__num {
    left: -4%;
    top: -12%;
  }
}

.p-feature__item-img {
  margin-top: 1rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-feature__item-img {
    margin-top: 0.75rem;
  }
}
.p-feature__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 278/158;
  position: relative;
}

.p-feature__item-title {
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-feature__item-title {
    height: 3.25rem;
    font-size: 1.23rem;
  }
}

.p-feature-item__text {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-feature-item__text {
    font-size: 1rem;
  }
}

.p-fixed-btn {
  position: fixed;
  padding: 0.5rem 1rem;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.5);
  text-align: center;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  .p-fixed-btn {
    text-align: right;
    left: initial;
    bottom: initial;
    padding: 0;
    right: 0;
    background-color: initial;
    top: 11.5625rem;
  }
}
.p-fixed-btn a {
  padding: 1rem;
  width: 100%;
  text-align: center;
  max-width: 21.4375rem;
  color: #fff;
  background-color: #032394;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  border-radius: 0.5rem;
  display: inline-block;
  box-shadow: 0 5px 0 0 #000a2c;
}
@media screen and (min-width: 768px) {
  .p-fixed-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    padding: 1.5rem 0;
    border-radius: 0.5rem 0 0 0.5rem;
    writing-mode: vertical-lr;
    box-shadow: none;
  }
}
.p-fixed-btn a:hover {
  opacity: 0.75;
}

.p-flow {
  padding: 3rem 0;
  background-color: #881125;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-flow {
    padding: 4.125rem 0;
  }
}
.p-flow::before {
  width: 100%;
  height: 19.625rem;
  left: 0;
  top: 0;
  background: url("../images/top/flow-bg.png") no-repeat center top/cover;
  position: absolute;
  content: "";
}
@media screen and (min-width: 768px) {
  .p-flow::before {
    height: 22.9375rem;
  }
}
.p-flow .c-title {
  color: #fff;
  position: relative;
}

.p-flow__list {
  margin-top: 2rem;
}

.p-flow-list__item {
  background-color: #fff1f3;
  position: relative;
}
.p-flow-list__item .p-accordion__question span {
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
  line-height: 1;
  display: inline-block;
  transform: translateY(1px);
}
@media screen and (min-width: 768px) {
  .p-flow-list__item .p-accordion__question span {
    font-size: 1.5rem;
    transform: translateY(1.8px);
  }
}
.p-flow-list__item .p-accordion__answer {
  padding: 0 0.75rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-flow-list__item .p-accordion__answer {
    padding: 0 2.5rem 2rem;
  }
}

.p-flow-list__btn {
  cursor: pointer;
}
.p-flow-list__btn .c-btn__link {
  position: relative;
  cursor: pointer;
}
.p-flow-list__btn img {
  position: absolute;
  top: 50%;
  right: 0.375rem;
  transform: translateY(-50%);
}
.p-flow-list__btn span {
  display: inline-block;
  margin-left: -1.375rem;
}

.p-flow-list__item-answer {
  position: relative;
}
.p-flow-list__item-answer::before {
  position: absolute;
  content: "";
  width: 0.25rem;
  background-color: #dcb015;
  height: calc(100% - 140px);
  z-index: 1;
  top: 4.375rem;
  left: 24.3%;
}
@media screen and (min-width: 768px) {
  .p-flow-list__item-answer::before {
    left: 16.25rem;
  }
}
.p-flow-list__item-answer::after {
  position: absolute;
  content: "";
  width: 0.25rem;
  background-color: #c80054;
  height: calc(100% - 140px);
  z-index: 1;
  top: 4.375rem;
  right: 24.3%;
}
@media screen and (min-width: 768px) {
  .p-flow-list__item-answer::after {
    right: 16.25rem;
  }
}

.p-flow-list__boxWrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .p-flow-list__boxWrap {
    gap: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-flow-list__boxWrap + .p-flow-list__boxWrap {
    margin-top: 0.5rem;
  }
}

.p-flow-list__header {
  position: relative;
  z-index: 2;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
  text-align: center;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-size: 1rem;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-flow-list__header {
    padding: 0.6875rem 1.25rem;
    font-size: 1.25rem;
    flex-direction: row;
    gap: 1rem;
  }
}
.p-flow-list__header span {
  display: inline-block;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-flow-list__header span {
    font-size: 1rem;
    padding-right: 1rem;
    border-right: 1px solid #fff;
  }
}
.p-flow-list__header:nth-child(1) {
  background-color: #dcb015;
}
.p-flow-list__header:nth-child(2) {
  background-color: #c80054;
}

.p-flow-list__box {
  position: relative;
  z-index: 2;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 0.25rem 1rem 0 rgba(0, 0, 0, 0.05);
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-flow-list__box {
    display: block;
    padding: 1.5rem 1.25rem;
  }
}

.p-flow-list__title {
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
  color: #881125;
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 0.75rem;
}
.p-flow-list__title span {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-flow-list__title span {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .p-flow-list__title {
    font-size: 1.125rem;
    line-height: 1.3;
    border: none;
    padding-bottom: 0;
  }
}

.p-flow-list__text {
  font-size: 0.875rem;
  line-height: 1.6;
  text-align: left;
  margin-top: 0.5rem;
  margin-bottom: auto;
}
@media screen and (min-width: 768px) {
  .p-flow-list__text {
    text-align: center;
  }
}
.p-flow-list__text a {
  font-weight: 700;
  text-decoration: underline;
  color: #881125;
}

.p-flow-list__btn {
  max-width: 12.625rem;
  width: 100%;
  margin: 0.75rem auto 0;
}
.p-flow-list__btn a {
  text-decoration: none;
}

.p-footer__logo-img {
  display: block;
  margin: 0 auto;
  max-width: 13.25rem;
  width: 100%;
}

.p-footer__bottom {
  margin-top: 2.1875rem;
  padding: 1rem;
  background-color: #881125;
  color: #fff;
  text-align: center;
  font-family: "Roboto", sans-serif;
  line-height: 1.2;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-footer__bottom {
    margin-top: 3.5rem;
    padding: 1.5rem;
  }
}

.p-header__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}
@media screen and (min-width: 768px) {
  .p-header__body {
    padding: 0.8125rem 0;
  }
}

.p-header__btn {
  white-space: nowrap;
  min-width: 13.4375rem;
}
.p-header__btn span {
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-header__btn span {
    font-size: 0.875rem;
  }
}

.p-header__logo {
  display: block;
  max-width: 7.45rem;
  width: 100%;
  margin-left: -0.4375rem;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    max-width: 26.3125rem;
  }
}
.p-header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 112/24;
}
@media screen and (min-width: 768px) {
  .p-header__logo img {
    aspect-ratio: 421/36;
  }
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    margin-left: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-hero {
    text-align: center;
  }
}

.p-hero__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2916666667;
}
@media screen and (min-width: 768px) {
  .p-hero__title {
    font-size: 1.5rem;
  }
}
.p-hero__title strong {
  font-size: 1.8125rem;
  margin-bottom: 0.75rem;
}
.p-hero__title strong span {
  color: #881125;
}
@media screen and (min-width: 768px) {
  .p-hero__title strong {
    color: #333;
    margin-bottom: 0;
    font-size: 2.5rem;
  }
}
.p-hero__title .p-hero__title-about {
  display: block;
  margin-top: 7px;
}
.p-hero__title .p-hero__title-exam {
  font-weight: 700;
  background-color: #881125;
  color: #fff;
  padding: 0 0.34375rem;
  font-size: 2.25rem;
  line-height: 1.6;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  display: inline;
}
@media screen and (min-width: 768px) {
  .p-hero__title .p-hero__title-exam {
    display: inline-block;
    line-height: 1;
    padding: 2px 8px 8px;
    font-size: 2.5rem;
    margin: 0.8125rem 0.5rem 0;
    transform: translateY(-3px);
  }
  .p-hero__title .p-hero__title-about {
    margin-top: 0;
  }
}

.p-hero__text {
  margin-top: 1.25rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-hero__text {
    margin-top: 2.5rem;
    font-size: 1rem;
  }
}

.p-modal {
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  overflow-y: auto;
  align-items: center;
  padding: 2rem 0;
}
@media screen and (min-width: 768px) {
  .p-modal {
    padding: 6.25rem 0;
  }
}

.p-modal__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.p-modal__close-button {
  position: absolute;
  cursor: pointer;
  top: 0.375rem;
  right: 0.375rem;
}
.p-modal__close-button img {
  max-width: 1.5rem;
  max-height: 1.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-modal__close-button img {
    max-width: 2rem;
    max-height: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .p-modal__close-button {
    top: 0.5rem;
    right: 0.25rem;
  }
}

.p-modal__inner {
  background-color: #fff;
  position: relative;
  box-shadow: 0 0.25rem 1rem 0 rgba(0, 0, 0, 0.05);
  overflow-x: hidden;
  z-index: 99;
  height: 100%;
  margin: 0;
  width: calc(100% - 64px);
}
@media screen and (min-width: 768px) {
  .p-modal__inner {
    width: initial;
  }
  .p-modal__inner.h-auto {
    height: auto;
  }
}

.p-modal__body {
  margin: auto;
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
  width: 100%;
  padding: 0 0.75rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-modal__body {
    width: 45rem;
    padding: 1.25rem 1.25rem 2rem;
  }
}
.p-modal__body::-webkit-scrollbar {
  border-radius: 0.25rem;
  background-color: #d1d1d1;
  width: 0.375rem;
}
.p-modal__body::-webkit-scrollbar-thumb {
  border-radius: 0.25rem;
  background-color: rgba(0, 0, 0, 0.2);
  width: 0.375rem;
}

.p-modal__header {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background-color: #dcb015;
  padding: 0.5rem;
  text-align: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-modal__header {
    width: 100%;
    margin-left: 0;
    font-size: 1.125rem;
  }
}
.p-modal__header:not(:first-child) {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-modal__header:not(:first-child) {
    margin-top: 2rem;
  }
}

.p-modal__header--blue {
  background-color: #c80054;
}

.p-modal__title {
  font-size: 1rem;
  font-weight: 700;
  color: #881125;
  line-height: 1.3;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #881125;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-modal__title {
    margin-top: 2rem;
    font-size: 1.125rem;
  }
}
.p-modal__title span {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-modal__title span {
    font-size: 1rem;
  }
}

.p-modal__content {
  width: 17.25rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-modal__content {
    width: 100%;
    padding: 0 1.25rem;
  }
}

.p-modal__boxWrap {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-modal__boxWrap {
    gap: 2rem;
    flex-direction: row;
    align-items: flex-start;
  }
}

.p-modal__box {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.p-modal__box:nth-child(1) {
  max-width: 17.25rem;
}

.p-modal__text-bold {
  font-size: 0.875rem;
  line-height: 1.3;
  font-weight: 700;
}

.p-modal__text-top {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-modal__text-top {
    margin-top: 1.25rem;
  }
}

.p-modal__text {
  font-size: 0.75rem;
  line-height: 1.3;
  font-weight: 400;
}

.p-modal__text-blue {
  font-size: 0.75rem;
  line-height: 1.3;
  font-weight: 400;
  margin-top: 1rem;
  color: #881125;
}
.p-modal__text-blue a {
  text-decoration: underline;
}

.p-modal__list + .p-modal__text-blue {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-modal__list + .p-modal__text-blue {
    padding-right: 0;
    padding-left: 1.25rem;
  }
}

.p-modal__list {
  margin-top: 1rem;
  padding: 0 0.75rem 0 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-modal__list {
    padding: 0 1.25rem 0 2.25rem;
  }
}

.p-modal__list-item {
  position: relative;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.2857142857;
  font-weight: 500;
}
.p-modal__list-item::before {
  position: absolute;
  content: "";
  left: -0.875rem;
  top: 0.375rem;
  width: 0.375rem;
  background-color: #881125;
  height: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-modal__list-item {
    font-weight: 800;
  }
}
.p-modal__list-item span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
}

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

.p-mv__inner {
  background-color: #881125;
  color: #fff;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .p-mv__inner {
    padding: 1.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-mv__inner {
    padding: 3rem;
  }
}

.p-mv__right,
.p-mv__left {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-mv__right,
  .p-mv__left {
    display: block;
  }
}

.p-mv__content {
  max-width: 62.5rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-mv__content {
    gap: 0;
    flex-direction: row;
  }
}

.p-mv__title {
  gap: 0.3125rem;
  margin-top: -1.125rem;
}
@media screen and (min-width: 768px) {
  .p-mv__title {
    margin-top: 0.75rem;
    display: flex;
  }
}
.p-mv__title img {
  max-width: 18.3125rem;
  max-height: 4.875rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-mv__title img {
    max-width: 33.4375rem;
    max-height: 8.875rem;
  }
}

.p-mv__title-num {
  font-size: 1.25rem;
  font-weight: 700;
}
.p-mv__title-num span {
  writing-mode: initial;
}
@media screen and (min-width: 768px) {
  .p-mv__title-num {
    writing-mode: vertical-lr;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -0.625rem;
  }
}

.p-mv__box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-mv__box {
    margin-top: 1.25rem;
    justify-content: flex-start;
  }
}

.p-mv__left-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0;
  order: 1;
}
@media screen and (min-width: 768px) {
  .p-mv__left-box {
    display: block;
  }
}

.p-mv__intro {
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 1rem;
  padding: 0.25rem 0.375rem;
  writing-mode: vertical-lr;
  display: inline-block;
  background-color: #fff0f0;
  color: #df0615;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-mv__intro {
    font-size: 1.25rem;
    writing-mode: initial;
    padding: 5px 0.75rem;
    line-height: normal;
  }
}

.p-mv__date {
  order: 3;
  font-weight: 700;
  font-size: 1.125rem;
  text-align: center;
}
.p-mv__date span {
  font-size: 1rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-mv__date span {
    display: inline-block;
    font-size: 2.25rem;
    margin: 0 3px;
  }
}
@media screen and (min-width: 768px) {
  .p-mv__date {
    margin-top: 0.25rem;
    text-align: left;
  }
}

.p-mv__date-box {
  display: inline-block;
}

.p-mv__date-box + .p-mv__date-box {
  position: relative;
  margin-left: 0.5rem;
  padding-left: 0.5rem;
}
.p-mv__date-box + .p-mv__date-box::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -0.5rem;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.p-mv__featureWrap {
  order: 4;
}

.p-mv__feature {
  padding: 0.28125rem;
  flex-grow: 1;
  font-size: 0.875rem;
  text-align: center;
  line-height: 1.3;
  border: 1px solid #fff;
  max-width: 10.3125rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-mv__feature {
    max-width: initial;
    line-height: 1;
    padding: 0.5rem 1.25rem;
    font-size: 1.25rem;
  }
}

.p-mv__about {
  font-weight: 500;
  text-align: center;
  display: block;
  background-color: #fff1f3;
  padding: 0.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.24em;
  color: #881125;
  line-height: 1.5;
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
}

.p-mv__about-annotation {
  text-align: center;
  font-size: 0.6875rem;
  margin-top: 4px;
}
@media screen and (min-width: 768px) {
  .p-mv__about {
    margin-top: 1.5rem;
    line-height: normal;
    color: #fff;
    background-color: #790000;
    padding: 5px 0 7px;
    margin-top: 1.5rem;
    font-size: 1.125rem;
  }

  .p-mv__about-annotation {
    text-align: right;
    font-size: 0.75rem;
    margin-top: 4px;
  }
}
.p-mv__about span {
  font-weight: 700;
  font-size: 1rem;
  margin-right: 1em;
  position: relative;
}
.p-mv__about span::before {
  content: "※";
  font-size: 11px;
  position: absolute;
  top: 0;
  right: -1.5em;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-mv__about span {
    font-size: 1.25rem;
  }
}

.p-mv__countdown {
  order: 2;
  background-color: #fff;
  color: #881125;
  padding: 1rem 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-mv__countdown {
    padding: 2.5rem 2rem 2rem;
  }
}

.p-mv-countdown__top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-mv-countdown__top {
    display: block;
  }
}

.p-mv-countdown__top-title {
  line-height: 1.4;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-mv-countdown__top-title {
    line-height: 1;
  }
}
.p-mv-countdown__top-title span {
  font-size: 1.5rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-mv-countdown__top-title span {
    font-size: 1.75rem;
    display: inline-block;
  }
}

.p-mv-countdown__area {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-mv-countdown__area {
    margin-top: 1rem;
  }
}

.p-mv-countdown__date {
  font-size: 4rem;
  padding: 0 0.4375rem 0.40625rem;
  font-weight: 800;
  color: #df0615;
  display: inline-block;
  line-height: 1;
  border: 1px solid #881125;
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-mv-countdown__date {
    font-size: 5.5rem;
    padding: 0.125rem 0.75rem 0.6875rem;
  }
}

.p-mv-countdown__date-kanji {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-mv-countdown__date-kanji {
    font-size: 2rem;
  }
}

.p-mv-countdown__bottom-title {
  font-size: 0.875rem;
  max-width: 18.9375rem;
  margin: 0.75rem auto 0;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-mv-countdown__bottom-title {
    max-width: initial;
    margin-top: 1.5rem;
    font-size: 1.125rem;
  }
}
.p-mv-countdown__bottom-title::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #d1d1d1;
}
.p-mv-countdown__bottom-title span {
  display: inline-block;
  background-color: #fff;
  letter-spacing: 0.2em;
  color: #333;
  padding: 0 0.75rem;
  position: relative;
}

.p-mv-countdown__bottom-date {
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  color: #df0615;
}
@media screen and (min-width: 768px) {
  .p-mv-countdown__bottom-date {
    font-size: 1.125rem;
  }
}
.p-mv-countdown__bottom-date span {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-mv-countdown__bottom-date span {
    font-size: 2rem;
  }
}

.p-mv-countdown__bottom-text {
  font-size: 0.6875rem;
  max-width: 20.3125rem;
  margin: 0 auto;
  text-align: center;
  color: #5d5d5d;
}
@media screen and (min-width: 768px) {
  .p-mv-countdown__bottom-text {
    max-width: initial;
    font-size: 1rem;
  }
}

.p-voices__list {
  display: grid;
  margin-top: 2rem;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-voices__list {
    margin-top: 5.25rem;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.666875rem;
  }
}

.p-voices__item {
  box-shadow: 0 0.25rem 1rem 0 rgba(0, 0, 0, 0.05);
  padding: 0.8125rem 0.75rem 0.8125rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-voices__item {
    margin-left: 0;
    display: block;
    padding: 0 1.25rem 1.5rem;
  }
}

.p-voices__item-img {
  max-width: 4.5rem;
  margin-left: -2.25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-voices__item-img {
    margin-left: 0;
    max-width: 6.5rem;
    margin: -3.25rem auto 0;
  }
}
.p-voices__item-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 104/104;
}

.p-voices__who {
  text-align: center;
  font-size: 0.875rem;
  color: #881125;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #881125;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-voices__who {
    text-align: center;
    padding-bottom: 0;
    border: none;
    margin-top: 0.75rem;
  }
}

.p-voices__item-text {
  margin-top: 0.1875rem;
  font-weight: 700;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-voices__item-text {
    font-size: 1rem;
    margin-top: 0.5rem;
  }
}

.u-accordion-answer-indent {
  display: block;
  margin-left: 0.5em;
  text-indent: 0;
}
@media screen and (min-width: 768px) {
  .u-accordion-answer-indent {
    margin-left: 0;
  }
}

.u-flow-list-mt:not(:root) {
  margin-top: 2rem;
}

.u-hero-position {
  transform: translate(5px, 5px);

  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .u-hero-position {
    display: inline;
    font-size: 1.5rem;
  }
}

.u-modal-inner:not(:root) {
  height: auto;
}

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

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

.u-text-left {
  text-align: left;
}

.u-text-red {
  color: #df0615;
}
/*# sourceMappingURL=style.css.map */