@charset "UTF-8";
html {
  font-size: 1vw;
}
@media (max-width: 767px) {
  html {
    font-size: 4.1025641026vw;
  }
}

body {
  font-family: "Noto SansJP", sans-serif;
  color: #221F20;
  font-weight: 500;
  font-style: normal;
  background-color: #faf3e7;
}
body.is-fixed {
  overflow: hidden;
  height: 100vh;
}

a,
button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover,
button:hover {
  opacity: 0.7;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  a:hover,
  button:hover {
    opacity: 1;
  }
}

button,
a {
  color: #221F20;
}

.grecaptcha-badge {
  display: none;
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          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 {
  list-style: none;
  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]) {
  text-decoration-skip-ink: auto;
}

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

/* 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;
}

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

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.bg-anime {
  position: relative;
  overflow: hidden;
  opacity: 0; /* 最初は透明 */
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; /* スクロール時にフェードイン */
}
.bg-anime .bg-anime__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%; /* 初期状態で背景色は非表示 */
  height: 100%;
  background-color: #d3c4b0;
  z-index: 1;
  -webkit-transition: width 0.5s ease;
  transition: width 0.5s ease; /* 背景色のスライドイン */
}
.bg-anime img {
  opacity: 0; /* 最初は透明 */
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%); /* 画像が左から入る */
  -webkit-transition: opacity 0.4s ease 0.5s, -webkit-transform 0.4s ease 0.5s;
  transition: opacity 0.4s ease 0.5s, -webkit-transform 0.4s ease 0.5s;
  transition: opacity 0.4s ease 0.5s, transform 0.4s ease 0.5s;
  transition: opacity 0.4s ease 0.5s, transform 0.4s ease 0.5s, -webkit-transform 0.4s ease 0.5s; /* 遅れて画像が表示される */
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .bg-anime img.u-desktop {
    display: none;
  }
}
.bg-anime img.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .bg-anime img.u-mobile {
    display: block;
  }
}
.bg-anime.active {
  opacity: 1; /* 要素が表示される */
}
.bg-anime.active .bg-anime__cover {
  width: 100%; /* 背景色をスライドイン */
}
.bg-anime.active img {
  opacity: 1; /* 画像が表示される */
  -webkit-transform: translateX(0);
          transform: translateX(0); /* 画像がスライドイン */
}

.bg-anime-video {
  position: relative;
  overflow: hidden;
  opacity: 0; /* 最初は透明 */
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; /* スクロール時にフェードイン */
}
.bg-anime-video .bg-anime__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%; /* 初期状態で背景色は非表示 */
  height: 100%;
  background-color: #d3c4b0;
  z-index: 1;
  -webkit-transition: width 0.5s ease;
  transition: width 0.5s ease; /* 背景色のスライドイン */
}
.bg-anime-video img {
  opacity: 0; /* 最初は透明 */
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%); /* 画像が左から入る */
  -webkit-transition: opacity 0.4s ease 0.5s, -webkit-transform 0.4s ease 0.5s;
  transition: opacity 0.4s ease 0.5s, -webkit-transform 0.4s ease 0.5s;
  transition: opacity 0.4s ease 0.5s, transform 0.4s ease 0.5s;
  transition: opacity 0.4s ease 0.5s, transform 0.4s ease 0.5s, -webkit-transform 0.4s ease 0.5s; /* 遅れて画像が表示される */
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .bg-anime-video img.u-desktop {
    display: none;
  }
}
.bg-anime-video img.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .bg-anime-video img.u-mobile {
    display: block;
  }
}

.contact {
  color: #fff;
  position: relative;
  z-index: 3;
}
.contact__bg {
  position: absolute;
  width: 100%;
  height: 100%;
}
.contact__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact .c-heading2 span {
  color: rgba(255, 255, 255, .33);
  letter-spacing: 0.05em;
}
.contact__inner {
  padding: 15.375rem 9.0625rem 14.125rem;
  max-width: 100rem;
  margin-inline: auto;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .contact__inner {
    padding: 6.8125rem 1.5625rem 6.75rem;
  }
}
.contact__wrap {
  max-width: 65.4375rem;
  padding-right: 4.5rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .contact__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-right: 0;
  }
}
.contact__text {
  margin-top: 5.125rem;
  line-height: 1.9375;
  letter-spacing: 0.05em;
  width: 26.125rem;
}
@media screen and (max-width: 767px) {
  .contact__text {
    width: 100%;
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-top: 1.375rem;
  }
}
.contact__main {
  width: 30.6875rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.34375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 4.0625rem;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .contact__main {
    width: 100%;
    margin-left: 0;
    margin-top: 1.3125rem;
    gap: 0.4375rem;
  }
}
.contact__link {
  width: 100%;
  padding: 2.3125rem 0 2.5rem;
  position: relative;
  border-radius: 64px;
  border: 1px solid rgba(255, 255, 255, .39);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__link {
    padding: 1.25rem 0 1.0625rem 0;
  }
}
.contact__link span {
  display: block;
  font-size: 1.0625rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .contact__link span {
    font-size: 1rem;
    line-height: 1.5625;
  }
}
@media screen and (max-width: 767px) {
  .contact__link span:nth-of-type(1) {
    font-size: 0.9375rem;
    line-height: 1;
  }
}
.contact__link span + span {
  margin-top: 0.875rem;
}
@media screen and (max-width: 767px) {
  .contact__link span + span {
    margin-top: 0.5rem;
  }
}
.contact__link::before {
  content: "";
  position: absolute;
  background-image: url("../images/common/arrow.svg");
  width: 1.0375rem;
  height: 0.6875rem;
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1.6625rem;
}
@media screen and (max-width: 767px) {
  .contact__link:nth-of-type(1) {
    height: 5.5rem;
  }
}

.contents {
  background-image: url("../images/common/contents-bg.png");
  background-size: cover;
  margin-bottom: -8.0625rem;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .contents {
    background-image: url("../images/common/contents-bg_sp.png");
    margin-bottom: -3.875rem;
  }
}
.contents__inner {
  padding: 12.4375rem 6.375rem 12.125rem;
  max-width: 94.75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .contents__inner {
    padding: 5.375rem 1.5625rem 4.875rem;
  }
}
.contents__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto; /* 2段に分割 */
  gap: 2.125rem 1.8125rem;
  margin-top: 2.75rem;
  margin-right: 5.25rem;
}
@media screen and (max-width: 767px) {
  .contents__items {
    margin-right: 0;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.625rem;
    margin-top: 0.9375rem;
  }
}
.contents__item:nth-child(5) {
  grid-column: span 2;
}
@media screen and (max-width: 767px) {
  .contents__item:nth-child(5) {
    grid-column: span 1;
  }
}
.contents__item {
  position: relative;
}
.contents__item a {
  border: 1px solid #707070;
  border-radius: 100px;
  display: block;
  padding: 1.3125rem 0 1.4375rem;
  text-align: center;
  line-height: 1;
  font-size: 1.0625rem;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .contents__item a {
    line-height: 1.4705882353;
    padding: 1.0625rem 0 1.0625rem;
    min-height: 3.875rem;
  }
}
.contents__item::before {
  content: "";
  background-image: url("../images/common/arrow-black.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.0375rem;
  height: 0.6875rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1.65625rem;
}

.footer {
  position: relative;
  margin-top: -3.625rem;
  z-index: 2;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .footer {
    margin-top: -4.25rem;
  }
}
.footer__logo {
  width: 25.0625rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 19.1875rem;
  }
}
.footer__line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 9.375rem;
}
@media screen and (max-width: 767px) {
  .footer__line {
    height: 2.25rem;
  }
}
.footer__line img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .footer.-front .footer__inner {
    padding: 6.375rem 1.375rem 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .footer.-entry {
    padding-bottom: 0;
  }
}
.footer__inner {
  padding: 8.4375rem 9.0625rem 0;
  max-width: 100rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    padding: 5.5rem 1.5rem 3.75rem;
    margin-right: 0.375rem;
  }
}
.footer__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-right: 4.8125rem;
  margin-top: 4.9375rem;
}
@media screen and (max-width: 767px) {
  .footer__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: 0;
    margin-top: 2.125rem;
  }
}
.footer__nav {
  width: 45rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.0625rem;
  }
}
.footer__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .footer__items {
    gap: 1.1875rem;
  }
}
.footer__items.-items2 {
  margin-left: 3.1875rem;
}
@media screen and (max-width: 767px) {
  .footer__items.-items2 {
    margin-left: 0;
  }
}
.footer__items.-items3 {
  margin-left: 5.6875rem;
}
@media screen and (max-width: 767px) {
  .footer__items.-items3 {
    margin-left: 0;
  }
}
.footer__item {
  position: relative;
  padding-left: 1.75rem;
  line-height: 1;
  font-size: 0.875rem;
  letter-spacing: 0;
  color: rgba(34, 31, 32, .8);
}
.footer__item::before {
  content: "";
  position: absolute;
  top: 0.125rem;
  left: 0;
  background-image: url("../images/common/footer-arrow.svg");
  width: 1rem;
  height: 0.6875rem;
  background-repeat: no-repeat;
  background-size: contain;
}
.footer__item ul {
  margin-top: 0.6875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer__item ul li a {
  font-size: 0.875rem;
  line-height: 1.7857142857;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .footer__entry {
    width: 100%;
    margin-top: 1.1875rem;
  }
}
.footer__entry a {
  padding: 2rem 0 1.6875rem;
  display: inline-block;
  width: 26.9375rem;
  height: auto;
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1;
  border-radius: 100px;
  border: 1px solid rgba(112, 112, 112, .5);
}
@media screen and (max-width: 767px) {
  .footer__entry a {
    width: 100%;
    padding: 1.4375rem 0 0.9375rem;
  }
}
.footer__entry a span {
  display: block;
  margin-top: 0.6875rem;
  font-size: 1.375rem;
  letter-spacing: 0.044em;
}
.footer__copy {
  position: relative;
  margin-top: 2.75rem;
  padding-top: 1.3125rem;
  padding-bottom: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .footer__copy {
    margin-top: 2.1875rem;
    padding-bottom: 3.375rem;
  }
}
.footer__copy p {
  font-size: 0.78125rem;
  text-align: right;
  padding-right: 4.625rem;
  letter-spacing: 0.02em;
  color: rgba(34, 31, 32, .33);
}
@media screen and (max-width: 767px) {
  .footer__copy p {
    padding-right: 0;
    text-align: left;
    font-size: 0.71875rem;
    line-height: 1.5652173913;
  }
}
.footer__copy::before {
  content: "";
  width: 100vw;
  height: 0.0625rem;
  background-color: rgba(112, 112, 112, .18);
  position: absolute;
  top: 0;
  left: -9.0625rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .footer__copy::before {
    left: -1.375rem;
    text-align: left;
  }
}

.g-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(33, 22, 8, .9);
  color: #fff;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: -1;
}
.g-nav.is-active {
  opacity: 1;
  z-index: 100;
}
.g-nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100% - 4.75rem);
  height: inherit;
}
@media screen and (max-width: 767px) {
  .g-nav__inner {
    width: 100%;
    padding: 3.9375rem 1.5rem 6.25rem;
    display: block;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    overflow: scroll;
  }
}
.g-nav__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 51.1875rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .g-nav__wrap {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .g-nav__item {
    display: block;
    padding: 1.6875rem 0;
    border-bottom: 1px solid #707070;
  }
}
.g-nav__item p {
  font-size: 1.6875rem;
  letter-spacing: 0.02em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .g-nav__item p {
    font-size: 0.875rem;
    margin-top: 0.4375rem;
  }
}
.g-nav__item span {
  font-size: 0.8125rem;
  line-height: 1;
  margin-top: 0.5rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .g-nav__item span {
    font-size: 1rem;
    margin-top: 0;
  }
}
.g-nav__item .-child {
  margin-top: 1.4375rem;
  margin-bottom: -0.8125rem;
}
@media screen and (max-width: 767px) {
  .g-nav__item .-child {
    margin-top: 1.25rem;
    margin-bottom: -0.5625rem;
  }
}
.g-nav__item .-child li a {
  display: block;
  font-size: 0.9375rem;
  line-height: 1.9333333333;
  padding-left: 1.5625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .g-nav__item .-child li a {
    padding-left: 1.5rem;
  }
}
.g-nav__item .-child li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.6875rem;
  height: 0.8125rem;
  background-image: url("../images/common/g-nav-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.g-nav__item + .g-nav__item {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .g-nav__item + .g-nav__item {
    margin-top: 0;
  }
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1020;
}
@media screen and (max-width: 767px) {
  .header {
    width: 100%;
  }
}
.header.is-active {
  position: fixed;
}
.header__inner {
  padding: 2.5625rem 2.625rem 0;
}
@media screen and (max-width: 767px) {
  .header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0.75rem 0.8125rem 0;
  }
}
.header__logo {
  display: block;
  width: 25.625rem;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 18.125rem;
  }
}
.header__logo .-logo1_pc {
  display: block;
  opacity: 1;
  z-index: 1;
  position: absolute;
  top: 2.5625rem;
  left: 2.625rem;
  -webkit-transition: 0s all;
  transition: 0s all;
}
@media screen and (max-width: 767px) {
  .header__logo .-logo1_pc {
    display: none;
    pointer-events: none;
  }
}
.header__logo .-logo1_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__logo .-logo1_sp {
    display: block;
    width: 18.125rem;
  }
}
.header__logo .-logo2 {
  opacity: 0;
  z-index: -1;
  width: 13.75rem;
  position: absolute;
  top: 1.25rem;
  left: 2.75rem;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .header__logo .-logo2 {
    opacity: 0;
    top: 0.8125rem;
    left: 0.8125rem;
  }
}
.header__logo .-front {
  width: 31.1875rem;
}
.header.-front .header__inner {
  padding: 2.8125rem 2.625rem 0;
}
@media screen and (max-width: 767px) {
  .header.-front .header__inner {
    padding: 0.875rem 0.9375rem;
  }
}
.header.-front .header__logo .-logo1 {
  width: 31.1875rem;
}
@media screen and (max-width: 767px) {
  .header.is-active .scroll-nav__button p {
    color: #221F20;
  }
  .header.is-active .scroll-nav__button span {
    background-color: #221F20;
  }
}
.header.is-active .scroll-nav__button.is-active p {
  color: #fff;
}
.header.is-active .scroll-nav__button.is-active span {
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .header.is-active .-logo1_sp {
    opacity: 0;
  }
}
@media screen and (max-width: 767px) {
  .header.is-active .-logo2 {
    opacity: 1;
  }
}

.js-interview-modal__content {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1032;
  overflow-y: auto; /* 縦スクロールを有効にする */
}
.js-interview-modal__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(34, 31, 32, .9);
  z-index: 1030;
}
.js-interview-modal__close {
  cursor: pointer;
  width: 2.625rem;
  margin-left: auto;
}
.js-interview-modal__close img {
  margin-left: auto;
}

.js-modal__content {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1031;
}
.js-modal__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(34, 31, 32, .9);
  z-index: 1030;
}
.js-modal__close {
  cursor: pointer;
  width: 2.625rem;
  margin-left: auto;
}
.js-modal__close img {
  margin-left: auto;
}

.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1600px;
}
.movie-modal__content {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  overflow-y: auto; /* 縦スクロールを有効にする */
}
.movie-modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(34, 31, 32, .9);
  z-index: 1030;
}
.movie-modal__close {
  cursor: pointer;
  width: 2.625rem;
  margin-left: auto;
}
.movie-modal__close img {
  margin-left: auto;
}

#global-movie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  overflow-y: auto;
}

.page-top {
  position: relative;
  width: 100%;
  height: 30.25rem;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .page-top {
    height: 12.75rem;
  }
}
.page-top__title {
  padding-top: 14.0625rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .page-top__title {
    padding-top: 6.375rem;
    letter-spacing: 0.05em;
  }
}
.page-top__title-ja {
  font-size: 2rem;
  letter-spacing: 0.08em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .page-top__title-ja {
    font-size: 1.0625rem;
    line-height: 1.2941176471;
  }
}
.page-top__title-en {
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.052em;
  font-family: Marcellus, serif;
  display: block;
}
@media screen and (max-width: 767px) {
  .page-top__title-en {
    font-size: 0.75rem;
    line-height: 1.0833333333;
    margin-top: 0.6875rem;
  }
}
@media screen and (max-width: 767px) {
  .page-top__title-en.-line2 {
    line-height: 1.2380952381;
  }
}
.page-top.-about {
  background-image: url("../images/about/page-top.png");
}
@media screen and (max-width: 767px) {
  .page-top.-about {
    background-image: url("../images/about/page-top_sp.png");
    height: 15.25rem;
  }
}
.page-top.-exam {
  background-image: url("../images/exam/page-top.png");
  height: 32.625rem;
}
@media screen and (max-width: 767px) {
  .page-top.-exam {
    background-image: url("../images/exam/page-top_sp.png");
    height: 15.25rem;
  }
}
.page-top.-interview {
  background-image: url("../images/exam/interview-top.png");
  height: 31.25rem;
  background-position: bottom left;
}
@media screen and (max-width: 767px) {
  .page-top.-interview {
    background-image: url("../images/exam/interview-top_sp.png");
    height: 15.875rem;
  }
}
.page-top.-news {
  background-image: url("../images/news/page-top.png");
  height: 23.75rem;
}
@media screen and (max-width: 767px) {
  .page-top.-news {
    background-image: url("../images/news/page-top_sp.png");
    height: 12.75rem;
  }
}
.page-top.-news .page-top__title {
  padding-top: 12.5625rem;
}
@media screen and (max-width: 767px) {
  .page-top.-news .page-top__title {
    padding-top: 5.75rem;
  }
}
.page-top.-member {
  background-image: url("../images/member/page-top.png");
  height: 37.3125rem;
}
@media screen and (max-width: 767px) {
  .page-top.-member {
    background-image: url("../images/member/page-top_sp.png");
    height: 15.25rem;
  }
}
.page-top.-member .page-top__title {
  padding-top: 13.8125rem;
}
@media screen and (max-width: 767px) {
  .page-top.-member .page-top__title {
    padding-top: 6.375rem;
  }
}
.page-top.-faq {
  background-image: url("../images/faq/page-top.png");
  height: 23.9375rem;
}
@media screen and (max-width: 767px) {
  .page-top.-faq {
    background-image: url("../images/faq/page-top_sp.png");
    height: 13rem;
  }
}
.page-top.-faq .page-top__title {
  padding-top: 12.6875rem;
}
@media screen and (max-width: 767px) {
  .page-top.-faq .page-top__title {
    padding-top: 5.75rem;
  }
}
.page-top.-contact {
  background-image: url("../images/contact/page-top.png");
  height: 31.625rem;
}
@media screen and (max-width: 767px) {
  .page-top.-contact {
    background-image: url("../images/contact/page-top_sp.png");
    height: 12.8125rem;
  }
}
.page-top.-contact .page-top__title {
  padding-top: 12.625rem;
}
@media screen and (max-width: 767px) {
  .page-top.-contact .page-top__title {
    padding-top: 5.75rem;
  }
}
.page-top.-book {
  background-image: url("../images/book/page-top.png");
  height: 37.3125rem;
}
@media screen and (max-width: 767px) {
  .page-top.-book {
    background-image: url("../images/book/page-top_sp.png");
    height: 15.3125rem;
  }
}
.page-top.-exam.-sub {
  background-image: url("../images/exam/page-top-sub.png");
}
@media screen and (max-width: 767px) {
  .page-top.-exam.-sub {
    height: 16.0625rem;
    background-image: url("../images/exam/page-top-sub_sp.png");
  }
}
@media screen and (max-width: 767px) {
  .page-top.-exam.-sub.-entry {
    background-image: url("../images/exam/page-top-sub-exam_sp.png");
    height: 17.125rem;
  }
}
.page-top.-exam.-sub .page-top__label {
  border-top: 1px solid white;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.0625rem;
  letter-spacing: 0.1em;
  padding-top: 0.75rem;
  line-height: 1;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .page-top.-exam.-sub .page-top__label {
    font-size: 0.78125rem;
    padding-top: 0.5rem;
    margin-bottom: 0.9375rem;
  }
}
.page-top.-exam.-sub .page-top__title {
  padding-top: 12rem;
}
@media screen and (max-width: 767px) {
  .page-top.-exam.-sub .page-top__title {
    padding-top: 5.125rem;
  }
}
@media screen and (max-width: 767px) {
  .page-top.-exam.-sub .page-top__title-en {
    font-size: 0.65625rem;
    margin-top: 0.25rem;
  }
}
@media screen and (max-width: 767px) {
  .page-top.-sub {
    height: 16.0625rem;
  }
}
.page-top.-sub .page-top__label {
  border-top: 1px solid white;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.0625rem;
  letter-spacing: 0.1em;
  padding-top: 0.75rem;
  line-height: 1;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .page-top.-sub .page-top__label {
    font-size: 0.78125rem;
    padding-top: 0.5rem;
    margin-bottom: 1.1875rem;
  }
}
.page-top.-sub .page-top__title {
  padding-top: 12rem;
}
@media screen and (max-width: 767px) {
  .page-top.-sub .page-top__title {
    padding-top: 5.125rem;
  }
}
@media screen and (max-width: 767px) {
  .page-top.-sub .page-top__title-en {
    font-size: 0.65625rem;
  }
}
.page-top.-not-found {
  background-image: url("../images/not-found/page-top.png");
  height: 31.625rem;
}
@media screen and (max-width: 767px) {
  .page-top.-not-found {
    background-image: url("../images/not-found/page-top_sp.png");
    height: 12.75rem;
  }
}
.page-top.-not-found .page-top__title {
  padding-top: 12.6875rem;
}
@media screen and (max-width: 767px) {
  .page-top.-not-found .page-top__title {
    padding-top: 5.625rem;
  }
}
@media screen and (max-width: 767px) {
  .page-top.-not-found .page-top__title-en {
    margin-top: 0.3125rem;
  }
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.pagination__prev, .pagination__next {
  width: 0.625rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.pagination__prev {
  left: 0;
}
.pagination__next {
  right: 0;
}
.pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
  font-size: 1.0625rem;
  letter-spacing: 0;
  line-height: 1;
  position: relative;
  padding-left: 4.8125rem;
  padding-right: 4.8125rem;
}
.pagination__item {
  font-size: 1.0625rem;
}
.pagination__item.current button {
  color: rgba(34, 31, 32, .4);
}

.scroll-nav {
  position: fixed;
  width: 4.75rem;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 1000;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  color: #221F20;
  background-color: #FAF3E7;
}
@media screen and (max-width: 767px) {
  .scroll-nav {
    width: 100%;
    bottom: 0;
    top: auto;
    border-top: 1px solid #221F20;
    height: 5.6875rem;
    text-align: center;
    background-color: #FAF3E7;
    bottom: -100%;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
  }
}
.scroll-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0.3125rem;
  bottom: 0;
  background-image: url("../images/common/scroll-nav-line-black.png");
  background-size: contain;
  background-repeat: repeat-y;
  width: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .scroll-nav::before {
    width: 100%;
    height: 0.125rem;
    top: 0.3125rem;
    left: 0;
    background-image: url("../images/common/scroll-nav-line_sp.png");
  }
}
.scroll-nav::after {
  content: "";
  width: 0.0625rem;
  height: 100%;
  background-color: #221F20;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (max-width: 767px) {
  .scroll-nav::after {
    display: none;
  }
}
.scroll-nav__inner {
  width: inherit;
  height: inherit;
  padding: 2.0625rem 0;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .scroll-nav__inner {
    padding: 0;
  }
}
.scroll-nav__button {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .scroll-nav__button {
    margin-left: auto;
    margin-right: 0;
  }
}
.scroll-nav__button p {
  color: #221F20;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  line-height: 1;
  font-family: Marcellus, serif;
}
@media screen and (max-width: 767px) {
  .scroll-nav__button p {
    font-size: 0.78125rem;
    color: #fff;
  }
}
.scroll-nav__button .-line {
  margin-top: 0.625rem;
  width: 2.66875rem;
  height: 0.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .scroll-nav__button .-line {
    width: 2.375rem;
    margin-top: 0.4375rem;
  }
}
.scroll-nav__button span {
  width: 2.66875rem;
  height: 0.0625rem;
  position: absolute;
  left: 0;
  display: block;
  background-color: #221F20;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (max-width: 767px) {
  .scroll-nav__button span {
    width: 2.375rem;
    background-color: #fff;
  }
}
.scroll-nav__button span:nth-of-type(1) {
  top: 0;
}
.scroll-nav__button span:nth-of-type(2) {
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .scroll-nav__button.is-change p {
    color: #221F20;
  }
  .scroll-nav__button.is-change span {
    background-color: #221F20;
  }
}
@media screen and (max-width: 767px) {
  .scroll-nav__button.is-active p {
    color: #fff;
  }
  .scroll-nav__button.is-active span {
    background-color: #fff;
  }
}
.scroll-nav__button.is-active span:nth-of-type(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(15deg);
          transform: translateY(-50%) rotate(15deg);
  color: #fff;
}
.scroll-nav__button.is-active span:nth-of-type(2) {
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-15deg);
          transform: translateY(50%) rotate(-15deg);
  background-color: #fff;
}
.scroll-nav__entry {
  width: 100%;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  letter-spacing: 0.12em;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .scroll-nav__entry {
    font-size: 0.84375rem;
    letter-spacing: 0.1em;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    display: block;
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: translate(0);
            transform: translate(0);
    padding: 1.375rem 0;
  }
}
.scroll-nav__entry .-link {
  font-size: 1.1875rem;
  line-height: 1.6315789474;
  letter-spacing: 0.118em;
  padding: 1.5625rem 0 1.375rem;
  border-top: 1px solid #221F20;
  border-bottom: 1px solid #221F20;
  margin-top: 1.125rem;
  font-family: Marcellus, serif;
}
@media screen and (max-width: 767px) {
  .scroll-nav__entry .-link {
    font-size: 1.5625rem;
    letter-spacing: 0.11em;
    margin-top: 0.375rem;
    border: none;
  }
}
.scroll-nav.-front {
  background-color: transparent;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .scroll-nav.-front {
    background-color: #FAF3E7;
    color: #221F20;
  }
}
.scroll-nav.-front::before {
  background-image: url("../images/common/scroll-nav-line.png");
}
@media screen and (max-width: 767px) {
  .scroll-nav.-front::before {
    background-image: url("../images/common/scroll-nav-line_sp.png");
  }
}
.scroll-nav.-front::after {
  background-color: #fff;
}
.scroll-nav.-front .scroll-nav__entry .-link {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .scroll-nav.-front .scroll-nav__entry .-link {
    border: none;
  }
}
.scroll-nav.-front .scroll-nav__button p {
  color: #fff;
}
.scroll-nav.-front .scroll-nav__button span {
  background-color: #fff;
}
.scroll-nav.-front .scroll-nav__button.is-change p {
  color: #221F20;
}
.scroll-nav.-front .scroll-nav__button.is-change span {
  background-color: #221F20;
}
@media screen and (max-width: 767px) {
  .scroll-nav.-entry {
    display: none;
  }
}
.scroll-nav.is-active {
  color: #221F20;
  background-color: #FAF3E7;
}
@media screen and (max-width: 767px) {
  .scroll-nav.is-active {
    bottom: 0;
  }
}
.scroll-nav.is-active::after {
  background-color: #221F20;
}
.scroll-nav.is-active::before {
  background-image: url("../images/common/scroll-nav-line-black.png");
}
@media screen and (max-width: 767px) {
  .scroll-nav.is-active::before {
    background-image: url("../images/common/scroll-nav-line_sp.png");
  }
}
.scroll-nav.is-active .scroll-nav__button p {
  color: #221F20;
}
.scroll-nav.is-active .scroll-nav__button span {
  background-color: #221F20;
}
.scroll-nav.is-active .scroll-nav__entry .-link {
  border-color: #221F20;
}
@media screen and (max-width: 767px) {
  .scroll-nav.is-active .scroll-nav__entry .-link {
    border: none;
  }
}
.scroll-nav.is-open {
  color: #fff;
  background-color: rgba(33, 22, 8, .83);
}
@media screen and (max-width: 767px) {
  .scroll-nav.is-open {
    bottom: 0;
  }
}
.scroll-nav.is-open::before {
  background-image: url("../images/common/scroll-nav-line-black.png");
}
@media screen and (max-width: 767px) {
  .scroll-nav.is-open::before {
    background-image: url("../images/common/scroll-nav-line_sp.png");
  }
}
.scroll-nav.is-open::after {
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .scroll-nav.is-open::after {
    display: none;
  }
}
.scroll-nav.is-open .scroll-nav__button p {
  color: #fff;
}
.scroll-nav.is-open .scroll-nav__button span {
  background-color: #fff;
}
.scroll-nav.is-open .scroll-nav__entry .-link {
  border-color: #fff;
}
@media screen and (max-width: 767px) {
  .scroll-nav.is-open .scroll-nav__entry .-link {
    border: none;
  }
}

@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

.u-en {
  font-family: Marcellus, serif;
  font-weight: 500;
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}

.c-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 25.0625rem;
  height: 3.875rem;
  padding: 0 1.6875rem;
  border-radius: 100px;
  border: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .c-btn {
    width: 100%;
    height: 3.375rem;
    padding: 0 1.4375rem;
  }
}
.c-btn__en {
  font-size: 1.375rem;
  line-height: 1;
  letter-spacing: 0.044em;
  font-family: Marcellus, serif;
}
@media screen and (max-width: 767px) {
  .c-btn__en {
    font-size: 1.25rem;
  }
}
.c-btn__ja {
  font-size: 0.8125rem;
  line-height: 1;
  margin-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-btn__ja {
    margin-left: 0.75rem;
  }
}
.c-btn::before {
  content: "";
  width: 1.0625rem;
  height: 0.75rem;
  background-image: url("../images/common/btn-arrow.svg");
  background-repeat: no-repeat;
  position: absolute;
  background-size: contain;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1.625rem;
}
@media screen and (max-width: 767px) {
  .c-btn::before {
    right: 1rem;
  }
}

.c-form {
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  line-height: 1;
  /* チェック状態のスタイル */
}
.c-form input {
  border: none;
  outline: none;
  padding: 0 0.9375rem;
}
.c-form input::-webkit-input-placeholder {
  color: #919191;
}
.c-form input::-moz-placeholder {
  color: #919191;
}
.c-form input::-ms-input-placeholder {
  color: #919191;
}
.c-form input::placeholder {
  color: #919191;
}
.c-form input[type=text] {
  min-height: 3.25rem;
  padding: 0 0.625rem;
  width: 100%;
}
.c-form input[type=email] {
  width: 34.4375rem;
  min-height: 3.25rem;
}
@media screen and (max-width: 767px) {
  .c-form input[type=email] {
    width: 100%;
  }
}
.c-form input[type=radio] {
  width: 1.125rem;
  height: 1.125rem;
  -moz-appearance: auto;
       appearance: auto; /* 標準のラジオボタンの見た目に戻す場合 */
  -webkit-appearance: radio; /* iOS用 */
  margin: 0 0.5rem 0 0;
  padding: 0;
}
.c-form input[type=tel] {
  width: 34.4375rem;
  min-height: 3.25rem;
}
@media screen and (max-width: 767px) {
  .c-form input[type=tel] {
    width: 16.5rem;
  }
}
.c-form input[type=checkbox] {
  appearance: none; /* デフォルトスタイルを無効化 */
  -webkit-appearance: none; /* Safari対応 */
  -moz-appearance: none; /* Firefox対応 */
  width: 1.375rem;
  height: 1.375rem;
  border: 1px solid #707070; /* 枠線を追加 */
  border-radius: 0; /* 丸みをなくす */
  background-color: #fff;
  cursor: pointer;
  margin: 0 0.875rem 0 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .c-form input[type=checkbox] {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.c-form input[type=checkbox]:checked {
  position: relative;
}
.c-form input[type=checkbox]:checked::before {
  content: "";
  width: 0.9375rem;
  height: 0.9375rem;
  background-color: #007bff; /* チェック時の背景色 */
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-form textarea {
  width: 100%;
  min-height: 22.25rem;
  border: none;
  padding: 0.5625rem 1rem;
  line-height: 1.5;
}
.c-form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.5625rem 0 1.6875rem;
  border-top: 1px solid rgba(112, 112, 112, .5);
}
@media screen and (max-width: 767px) {
  .c-form .form-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-form .form-group.-mail {
  padding-bottom: 1.5rem;
  letter-spacing: 0;
}
.c-form .form-group.-mail label {
  display: block;
  line-height: 1.5;
}
.c-form .form-group.-mail .-flex {
  margin-top: 0.625rem;
}
.c-form .form-group.-mail .form-item:not(:first-of-type) {
  margin-top: 1.125rem;
  padding-top: 1.125rem;
  border-top: 1px solid rgba(112, 112, 112, .5);
}
.c-form .form-group.-privacy {
  padding: 2rem 0;
}
.c-form .form-group.-privacy .-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-form .form-group.-center {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.c-form .form-group.-center .form-title {
  margin-top: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .c-form .form-group.-center .form-title {
    margin-top: 0;
  }
}
.c-form .form-group.-address-confirm .form-title {
  margin-top: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .c-form .form-group.-address-confirm .form-title {
    margin-top: 0;
  }
}
.c-form .form-title {
  width: 12.6875rem;
  letter-spacing: 0.05em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1.4666666667;
}
@media screen and (max-width: 767px) {
  .c-form .form-title {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-height: 2.8125rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0.75rem 0.9375rem;
    font-weight: bold;
  }
}
.c-form .form-title span {
  background-color: #ed1d23;
  color: #fff;
  font-size: 0.78125rem;
  line-height: 1.21875rem;
  padding: 0 0.25rem;
  border-radius: 2px;
  display: inline-block;
  font-weight: 600;
  margin-left: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .c-form .form-title span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.c-form .form-title.-small {
  font-size: 0.9375rem;
}
.c-form .form-item {
  width: 100%;
}
.c-form .form-item.-zipcode {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875rem;
}
.c-form .form-item.-zipcode span {
  display: block;
  font-size: 1rem;
}
.c-form .form-item.-zipcode input[type=text] {
  width: 16.4375rem;
}
.c-form .form-item.-zipcode + .form-item {
  margin-top: 0.8125rem;
}
.c-form .form-main {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-form .form-main {
    padding: 0.8125rem 0 1.1875rem;
  }
}
.c-form .form-button {
  width: 25.0625rem;
  height: 4.625rem;
  position: relative;
  border-radius: 100px;
  display: block;
  margin: 2.8125rem auto 0;
  border: 1px solid #221f20;
  font-size: 1.0625rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-form .form-button {
    width: 100%;
    margin-top: 0rem;
    height: 3.375rem;
    font-size: 0.9375rem;
    letter-spacing: 0.04em;
  }
}
.c-form .form-button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("../images/common/arrow-black.svg");
  background-size: cover;
  width: 1rem;
  height: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .c-form .form-button::before {
    right: 1rem;
  }
}
.c-form__recaptcha {
  font-size: 14px;
  text-align: center;
  margin-top: 20px;
  color: #8d8d8d;
}
@media screen and (max-width: 1440px) {
  .c-form__recaptcha {
    font-size: clamp(11px, 14px - (1440px - 100vw) * 0.05, 14px);
  }
}

.file-names-list {
  margin-top: 0.625rem;
  font-size: 0.8125rem;
}

.c-heading h2 {
  font-size: 1.8125rem;
  line-height: 1.5172413793;
  letter-spacing: 0.08em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-heading h2 {
    font-size: 1.1875rem;
  }
}
@media screen and (max-width: 767px) {
  .c-heading.-front h2 {
    font-size: 1.5rem;
    line-height: 1.4583333333;
  }
}
@media screen and (max-width: 767px) {
  .c-heading.-front span {
    font-size: 0.875rem;
    line-height: 1.4285714286;
    margin-top: 0.0625rem;
    margin-top: 0.5rem;
  }
}
.c-heading span {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1;
  opacity: 0.33;
  font-family: Marcellus, serif;
  margin-top: 0.625rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-heading span {
    font-size: 0.75rem;
  }
}
.c-heading span.-line2 {
  line-height: 1.625;
}
@media screen and (max-width: 767px) {
  .c-heading span.-line2 {
    line-height: 1.4285714286;
  }
}

.c-heading2 span {
  display: block;
  font-size: 3.0625rem;
  line-height: 1;
  font-family: Marcellus, serif;
  letter-spacing: 0.1em;
  color: rgba(34, 31, 32, .33);
}
@media screen and (max-width: 767px) {
  .c-heading2 span {
    font-size: 2.125rem;
    letter-spacing: 0.1em;
  }
}
.c-heading2 h2 {
  font-size: 1.1875rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  line-height: 1;
  margin-top: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .c-heading2 h2 {
    font-size: 0.9375rem;
    margin-top: 0.75rem;
  }
}

.c-heading3 h2 {
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.c-heading3 span {
  display: block;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1;
  opacity: 0.33;
  font-family: Marcellus, serif;
  margin-top: 0.625rem;
  font-weight: 400;
}

.c-interview-card__body {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .c-interview-card__body {
    margin-top: 0.3125rem;
  }
}
.c-interview-card__body h3 {
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.4705882353;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-interview-card__body h3 {
    font-size: 0.9375rem;
    line-height: 1.5333333333;
  }
}
.c-interview-card__body p {
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-top: 0.875rem;
  color: rgba(34, 31, 32, .8);
}
@media screen and (max-width: 767px) {
  .c-interview-card__body p {
    font-size: 0.875rem;
  }
}
.c-interview-card__image {
  width: 100%;
  aspect-ratio: 1/1;
}
.c-interview-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .c-interview-card__btn {
    border: 1px solid #707070;
    border-radius: 1.6875rem;
    width: 100%;
    height: 44;
    position: relative;
    font-size: 0.8125rem;
    letter-spacing: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 0.875rem;
  }
  .c-interview-card__btn::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 1rem;
    background-image: url("../images/common/btn-arrow.svg");
    background-size: contain;
    width: 1rem;
    height: 0.6875rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.c-section-inner {
  padding: 0 9.0625rem;
  max-width: 100rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .c-section-inner {
    padding: 0 1.375rem;
  }
}

.c-video-card__image img {
  border-radius: 6px;
  aspect-ratio: 404/259;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-video-card__image img {
    aspect-ratio: 289/185;
  }
}
.c-video-card h3 {
  margin-top: 1.0625rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.625;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-video-card h3 {
    margin-top: 1.375rem;
  }
}

.error-message {
  color: #ed1d23;
  font-size: 0.875rem;
  margin-top: 0.3125rem;
  display: block;
}

.not-found__inner {
  margin-top: -4.8125rem;
  margin-right: 5.1875rem;
  padding-bottom: 8.5rem;
}
@media screen and (max-width: 767px) {
  .not-found__inner {
    margin-right: 0;
    margin-top: 0.625rem;
    padding-bottom: 0.5rem;
  }
}
.not-found__title {
  font-size: 2.8125rem;
  line-height: 1;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .not-found__title {
    font-size: 2.1875rem;
  }
}
.not-found__text {
  font-size: 0.9375rem;
  line-height: 1.8666666667;
  letter-spacing: 0.05em;
  text-align: center;
  color: rgba(34, 31, 32, .8);
  margin-top: 1.75rem;
}
@media screen and (max-width: 767px) {
  .not-found__text {
    font-size: 0.875rem;
    line-height: 1.6428571429;
    text-align: left;
    margin-top: 1rem;
  }
}
.not-found__button {
  text-align: center;
  margin-top: 5.125rem;
}
@media screen and (max-width: 767px) {
  .not-found__button {
    margin-top: 2.125rem;
  }
}
.not-found__button .c-btn {
  width: 25.0625rem;
  height: 4.625rem;
  font-size: 1.0625rem;
  line-height: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .not-found__button .c-btn {
    height: 3.375rem;
    width: 100%;
    font-size: 0.9375rem;
  }
}

.main-actives__inner {
  padding-top: 1.0625rem;
  padding-bottom: 2.125rem;
  margin-right: 5.25rem;
}
@media screen and (max-width: 767px) {
  .main-actives__inner {
    margin-right: 0;
    padding-top: 3.5rem;
    padding-bottom: 3.25rem;
  }
}
.main-actives__wrap {
  margin-top: 3.9375rem;
}
@media screen and (max-width: 767px) {
  .main-actives__wrap {
    margin-top: 1.75rem;
  }
}
.main-actives__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5.4375rem 6.0625rem;
}
@media screen and (max-width: 767px) {
  .main-actives__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5625rem;
  }
}
.main-actives__item {
  padding-top: 2rem;
  border-top: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .main-actives__item {
    padding-top: 1.125rem;
  }
}
.main-actives__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  padding-left: 4.4375rem;
  position: relative;
  font-size: 1.1875rem;
  letter-spacing: 0.07em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .main-actives__title {
    font-size: 1.0625rem;
    padding-left: 3.6875rem;
  }
}
.main-actives__title span {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .main-actives__title span {
    left: 0.5rem;
  }
  .main-actives__title span img {
    height: 1.9375rem;
    width: auto;
  }
}
.main-actives__text {
  margin-top: 1.5625rem;
  line-height: 1.9375;
  letter-spacing: 0.05em;
  color: rgba(34, 31, 32, .8);
}
@media screen and (max-width: 767px) {
  .main-actives__text {
    margin-top: 1.1875rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    letter-spacing: 0.03em;
  }
}
.main-actives__link {
  margin-top: 0.9375rem;
  color: #ED1D23;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .main-actives__link {
    font-size: 0.9375rem;
    margin-top: 0.4375rem;
    gap: 0.5625rem;
  }
}

.our-commitment {
  background-image: url("../images/about/our-commitment.png");
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .our-commitment {
    background-image: url("../images/about/our-commitment_sp.png");
  }
}
@media screen and (max-width: 767px) {
  .our-commitment .c-heading h2 {
    line-height: 1;
  }
}
.our-commitment__inner {
  padding-top: 7.5rem;
  padding-bottom: 11.25rem;
}
@media screen and (max-width: 767px) {
  .our-commitment__inner {
    padding-top: 4.3125rem;
    padding-bottom: 4.75rem;
  }
}
.our-commitment__wrap {
  margin-right: 5.1875rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .our-commitment__wrap {
    margin-right: 0;
    margin-top: 1.75rem;
  }
}
.our-commitment__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.9375rem;
}
@media screen and (max-width: 767px) {
  .our-commitment__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.75rem;
  }
}
.our-commitment__head {
  font-size: 1.1875rem;
  letter-spacing: 0.07em;
  font-weight: 500;
  line-height: 1;
  padding: 1.75rem 0;
  text-align: center;
  border-top: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .our-commitment__head {
    font-size: 1.0625rem;
    padding: 1.125rem 0;
  }
}
.our-commitment__image img {
  aspect-ratio: 388/238;
  -o-object-fit: cover;
     object-fit: cover;
}
.our-commitment__text {
  margin-top: 1.3125rem;
  line-height: 1.9375;
  letter-spacing: 0.05em;
  color: rgba(34, 31, 32, .8);
}
@media screen and (max-width: 767px) {
  .our-commitment__text {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-top: 0.625rem;
  }
}

.page-about__about {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .page-about__about {
    margin-top: -0.375rem;
  }
}
@media screen and (max-width: 767px) {
  .page-about__about .c-heading span {
    line-height: 1.5833333333;
  }
}
.page-about__about-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 5.125rem;
  padding-bottom: 4.9375rem;
}
@media screen and (max-width: 767px) {
  .page-about__about-inner {
    padding-top: 0;
    padding-bottom: 2.125rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.page-about__about-left {
  width: 42.0625rem;
}
@media screen and (max-width: 767px) {
  .page-about__about-left {
    width: 100%;
  }
}
.page-about__about-text {
  margin-top: 2.6875rem;
  letter-spacing: 0.05em;
  line-height: 1.9375;
  color: rgba(34, 31, 32, .8);
}
@media screen and (max-width: 767px) {
  .page-about__about-text {
    margin-top: 2.4375rem;
    font-size: 0.9375rem;
    letter-spacing: 0.03em;
  }
}
.page-about__about-right {
  width: 22.4375rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: -23.125rem;
  margin-right: 6rem;
}
@media screen and (max-width: 767px) {
  .page-about__about-right {
    width: 6.9375rem;
    margin-top: 0;
    margin-right: 0;
    position: absolute;
    right: 1.375rem;
    top: -5.875rem;
  }
}

.book-confirm__inner {
  margin-right: 5.25rem;
  margin-top: -2.9375rem;
  padding-bottom: 7.5625rem;
}
@media screen and (max-width: 767px) {
  .book-confirm__inner {
    margin-right: 0;
    margin-top: 0.25rem;
    padding: 0 1.5rem 5.4375rem;
  }
}
.book-confirm .page-book__main {
  margin-top: 0;
}
.book-confirm .form-group {
  padding: 1.5625rem 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .book-confirm .form-group {
    padding: 0;
    border: none;
  }
}
.book-confirm .form-group.-books .-pieces {
  margin-left: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .book-confirm .form-group.-books .-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.book-confirm .form-group.address {
  line-height: 1.5;
}
.book-confirm .form-group.-textarea .form-item p {
  font-size: 0.9375rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .book-confirm .form-group.-textarea .form-item p {
    line-height: 1.5333333333;
  }
}
.book-confirm .form-title {
  width: 14.375rem;
}
@media screen and (max-width: 767px) {
  .book-confirm .form-title {
    width: 100%;
    border-top: 1px solid rgba(112, 112, 112, .5);
    border-bottom: 1px solid rgba(112, 112, 112, .5);
    padding: 0.75rem 0 0.6875rem;
  }
}
.book-confirm .form-button {
  margin-top: 2.5625rem;
}
@media screen and (max-width: 767px) {
  .book-confirm .form-button {
    margin-top: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .book-confirm .form-main {
    padding: 0.5625rem 0 1.8125rem;
  }
}
.book-confirm .c-form .form-item.-zipcode {
  gap: 0.125rem;
}
.book-confirm .c-form .form-item.-zipcode + .form-item {
  margin-top: 0;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .book-confirm .c-form .form-item.-zipcode + .form-item {
    line-height: 1.5333333333;
  }
}

.page-book__inner {
  margin-right: 5.125rem;
  padding-bottom: 4.625rem;
}
@media screen and (max-width: 767px) {
  .page-book__inner {
    margin-right: 0;
    padding-bottom: 3.375rem;
  }
}
.page-book__about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 10;
  margin-top: -6.0625rem;
  margin-right: 0.875rem;
}
@media screen and (max-width: 767px) {
  .page-book__about {
    margin-top: -9.1875rem;
    margin-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.page-book__about p {
  width: 42.625rem;
  letter-spacing: 0.05em;
  line-height: 1.9375;
  color: rgba(34, 31, 32, .8);
}
@media screen and (max-width: 767px) {
  .page-book__about p {
    width: 100%;
    margin-top: 1.4375rem;
    font-size: 0.9375rem;
    line-height: 1.9333333333;
    letter-spacing: 0.03em;
  }
}
.page-book__about-image {
  width: 22.4375rem;
  margin-top: -18.75rem;
}
@media screen and (max-width: 767px) {
  .page-book__about-image {
    width: 6.9375rem;
    margin-top: 0;
    margin-left: auto;
  }
}
.page-book__books {
  margin-top: 7.8125rem;
}
@media screen and (max-width: 767px) {
  .page-book__books {
    margin-top: 4.0625rem;
  }
}
.page-book__books h2 {
  font-size: 1.4375rem;
  letter-spacing: 0.07em;
  line-height: 1;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .page-book__books h2 {
    font-size: 1.1875rem;
    line-height: 1;
    letter-spacing: 0.08em;
  }
}
.page-book__books p {
  color: rgba(34, 31, 32, .8);
}
.page-book__books ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5625rem;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .page-book__books ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.5625rem;
    margin-top: 1.3125rem;
  }
}
.page-book__books ul li {
  padding: 1rem 1.75rem 1rem 1.125rem;
  background-color: #fffaf0;
}
@media screen and (max-width: 767px) {
  .page-book__books ul li {
    padding: 1.3125rem 1.3125rem 1.6875rem;
  }
}
.page-book__books ul li .-book-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .page-book__books ul li .-book-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.8125rem;
    background-color: #fffaf0;
    border-radius: 5px;
  }
}
.page-book__books ul li p {
  margin-top: 1.125rem;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  line-height: 1.7692307692;
}
.page-book__books .-image {
  width: 16.8125rem;
}
@media screen and (max-width: 767px) {
  .page-book__books .-image {
    width: 11.1875rem;
    margin-inline: auto;
  }
}
.page-book__books .-body {
  width: 15.0625rem;
  padding-top: 6.0625rem;
}
@media screen and (max-width: 767px) {
  .page-book__books .-body {
    width: 100%;
    padding-top: 0;
    text-align: center;
  }
}
.page-book__books .-body h3 {
  font-size: 1.125rem;
  line-height: 1.7222222222;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .page-book__books .-body h3 {
    font-size: 1.0625rem;
    line-height: 1.8235294118;
  }
}
.page-book__books .-body p {
  font-size: 0.8125rem;
  line-height: 1.7692307692;
  letter-spacing: 0.05em;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .page-book__books .-body p {
    font-size: 0.875rem;
    line-height: 1.6428571429;
    margin-top: 0.375rem;
    font-weight: 500;
    text-align: left;
  }
}
.page-book__books-text {
  margin-top: 1.0625rem;
  text-align: right;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .page-book__books-text {
    margin-top: 0.5625rem;
    text-align: left;
  }
}
.page-book__books .news__member {
  margin-left: 0;
  margin-bottom: 0.3125rem;
}
.page-book__prices {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .page-book__prices {
    gap: 0.8125rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-inline: auto;
    margin-top: 0.6875rem;
  }
}
.page-book__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .page-book__price {
    gap: 1.375rem;
  }
}
.page-book__price span {
  display: block;
  line-height: 1;
}
.page-book__price .-member {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .page-book__price .-member {
    font-size: 0.875rem;
  }
}
.page-book__price .-price {
  font-size: 1.375rem;
}
@media screen and (max-width: 767px) {
  .page-book__price .-price {
    font-size: 1.25rem;
  }
}
.page-book__price .-tax {
  font-size: 1rem;
  margin-left: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .page-book__price .-tax {
    font-size: 0.875rem;
  }
}
.page-book__price .-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.page-book__price .-price-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.page-book__main {
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .page-book__main {
    margin-top: 5.4375rem;
  }
}
.page-book__main h2 {
  font-size: 1.4375rem;
  letter-spacing: 0.07em;
  line-height: 1;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .page-book__main h2 {
    font-size: 1.1875rem;
    letter-spacing: 0.04em;
  }
}
.page-book__main-text {
  margin-top: 2rem;
  font-size: 0.9375rem;
  line-height: 1.8666666667;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .page-book__main-text {
    margin-top: 1.125rem;
    font-size: 0.875rem;
    line-height: 1.6428571429;
  }
}
.page-book__form {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .page-book__form {
    margin-top: 1.875rem;
  }
}
.page-book__form textarea {
  min-height: 10.8125rem;
  height: 10.8125rem;
}
@media screen and (max-width: 767px) {
  .page-book__form textarea {
    width: 100%;
    height: 10.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .page-book .c-form .form-title {
    background-color: transparent;
    border-top: 1px solid rgba(112, 112, 112, .5);
    border-bottom: 1px solid rgba(112, 112, 112, .5);
    padding: 0.8125rem 0 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .page-book .form-group {
    border-top: none;
    padding: 0;
  }
}
.page-book .form-group.-books {
  padding: 1.75rem 0 2.1875rem;
}
@media screen and (max-width: 767px) {
  .page-book .form-group.-books {
    padding: 0;
  }
}
.page-book .form-group.-books .form-main .-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5625rem;
}
@media screen and (max-width: 767px) {
  .page-book .form-group.-books .form-main .-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.1875rem;
    padding: 0.8125rem 0 1.5625rem;
  }
}
.page-book .form-group.-books .form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .page-book .form-group.-books .form-item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1.625rem;
    width: 100%;
  }
}
.page-book .form-group.-books .form-item .-image {
  width: 7.9375rem;
}
@media screen and (max-width: 767px) {
  .page-book .form-group.-books .form-item .-image {
    width: 3.75rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.page-book .form-group.-books .form-item .-body {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .page-book .form-group.-books .form-item .-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 0.4375rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.page-book .form-group.-books .form-item .-title {
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-top: 1.375rem;
}
@media screen and (max-width: 767px) {
  .page-book .form-group.-books .form-item .-title {
    margin-top: 0.3125rem;
  }
}
.page-book .form-group.-books .form-item .-text {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .page-book .form-group.-books .form-item .-text {
    white-space: nowrap;
  }
}
.page-book .form-group.-books .form-item .-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.125rem;
}
@media screen and (max-width: 767px) {
  .page-book .form-group.-books .form-item .-flex {
    margin-top: 0.625rem;
  }
}
.page-book .form-group.-books .form-item .-price-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .page-book .form-group.-books .form-item .-price-flex {
    margin-top: 0.5rem;
  }
}
.page-book .form-group.-books .form-item label {
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.page-book .form-group.-books .form-item input[type=text] {
  width: 5.375rem;
  margin-left: 0.8125rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .page-book .form-group.-books .form-item input[type=text] {
    width: 9.75rem;
  }
}
.page-book .form-group.-books .form-item span {
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  display: block;
  margin-left: 0.8125rem;
}
.page-book .form-group.-books .news__member {
  margin-left: 0;
}
.page-book .form-group.-books .news__member span {
  margin-left: 0;
}
.page-book .form-group.-books .news__member + .-title {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .page-book .form-group.-books .news__member + .-title {
    margin-top: 0;
  }
}
.page-book .form-group.-address {
  padding: 1.75rem 0 1.875rem;
}
@media screen and (max-width: 767px) {
  .page-book .form-group.-address {
    padding: 0;
  }
}
.page-book .form-group.-address .form-title {
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .page-book .form-group.-address .form-title {
    margin-top: 0;
  }
}
.page-book .form-group.-address .-zipcode {
  margin-bottom: 0.9375rem;
  margin-top: 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .page-book .form-group.-address .-zipcode {
    gap: 1rem;
    margin-bottom: 0.8125rem;
  }
}
.page-book .form-group.-address .-zipcode .-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.125rem;
}
@media screen and (max-width: 767px) {
  .page-book .form-group.-address .-zipcode .-flex {
    gap: 1rem;
  }
}
.page-book .form-group.-address .-zipcode span {
  font-size: 1rem;
  line-height: 1;
}
.page-book .form-group.-address .-zipcode input {
  width: 16.4375rem;
}
@media screen and (max-width: 767px) {
  .page-book .form-group.-address .-zipcode input {
    width: 14rem;
  }
}
.page-book .form-group.-receive .form-item + .form-item {
  margin-top: 1.25rem;
}
.page-book .form-group.-member .form-item .-flex + .-flex {
  margin-top: 1.25rem;
}
.page-book .form-group:last-of-type {
  border-bottom: 1px solid rgba(112, 112, 112, .5);
}
.page-book .form-main .-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-book .form-main .-place {
  background-color: #f0e9de;
  border-radius: 4px;
  padding: 0.5625rem 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.375rem;
  margin-top: 0.5625rem;
  margin-left: 2.125rem;
}
@media screen and (max-width: 767px) {
  .page-book .form-main .-place {
    margin-left: 0;
    padding: 0.625rem 1.25rem 1.1875rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.page-book .form-main .-place h4 {
  line-height: 1.5333333333;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .page-book .form-main .-place h4 {
    font-size: 0.90625rem;
    line-height: 1.5862068966;
  }
}
.page-book .form-main .-place p {
  line-height: 1.4666666667;
}
@media screen and (max-width: 767px) {
  .page-book .form-main .-place p {
    font-size: 0.875rem;
    line-height: 1.5714285714;
    letter-spacing: -0.03em;
  }
}
@media screen and (max-width: 767px) {
  .page-book .c-form .form-button {
    margin-top: 1rem;
    letter-spacing: -0.03em;
  }
}

.contact-confirm__inner {
  margin-right: 5.25rem;
  margin-top: -2.9375rem;
  padding-bottom: 7.5625rem;
}
@media screen and (max-width: 767px) {
  .contact-confirm__inner {
    margin-right: 0;
    margin-top: 0.25rem;
    padding: 0 1.5rem 5.4375rem;
  }
}
.contact-confirm__text {
  font-size: 0.9375rem;
  line-height: 1.8666666667;
  letter-spacing: 0.05em;
  color: rgba(34, 31, 32, .8);
}
@media screen and (max-width: 767px) {
  .contact-confirm__text {
    font-size: 0.875rem;
    line-height: 1.6428571429;
  }
}
.contact-confirm__form {
  margin-top: 2rem;
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .contact-confirm__form {
    margin-top: 2.1875rem;
    line-height: 1.5333333333;
  }
}
.contact-confirm__form .form-group {
  padding: 1.5625rem 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .contact-confirm__form .form-group {
    padding: 0;
    border: none;
  }
}
.contact-confirm__form .form-group.-type .form-main span {
  display: block;
}
@media screen and (max-width: 767px) {
  .contact-confirm__form .form-group.-type .form-main span {
    line-height: 1;
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
  }
}
.contact-confirm__form .form-group:last-of-type {
  border-bottom: 1px solid rgba(112, 112, 112, .5);
}
.contact-confirm__form .form-title {
  width: 14.375rem;
}
@media screen and (max-width: 767px) {
  .contact-confirm__form .form-title {
    width: 100%;
    border-top: 1px solid rgba(112, 112, 112, .5);
    border-bottom: 1px solid rgba(112, 112, 112, .5);
    padding: 0.75rem 0 0.6875rem;
  }
}
.contact-confirm__form .form-button {
  margin-top: 2.5625rem;
}
@media screen and (max-width: 767px) {
  .contact-confirm__form .form-button {
    margin-top: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .contact-confirm__form .form-main {
    padding: 0.5625rem 0 1.8125rem;
  }
}
.contact-confirm .form-buttons {
  padding-top: 3.125rem;
  border-top: 1px solid rgba(112, 112, 112, .5);
}
@media screen and (max-width: 767px) {
  .contact-confirm .form-buttons {
    margin-top: 1.3125rem;
  }
}

.contact-thanks__inner {
  margin-top: -2.8125rem;
  margin-right: 5.25rem;
  padding-bottom: 9.0625rem;
}
@media screen and (max-width: 767px) {
  .contact-thanks__inner {
    margin-top: 0.5625rem;
    padding-bottom: 6.875rem;
    margin-right: 0;
  }
}
.contact-thanks p {
  font-size: 0.9375rem;
  line-height: 1.8666666667;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .contact-thanks p {
    font-size: 0.875rem;
    line-height: 1.6428571429;
  }
}
.contact-thanks__button {
  margin-top: 4.125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-thanks__button {
    margin-top: 1.375rem;
  }
}
.contact-thanks__button .c-btn {
  width: 25.0625rem;
  height: 4.625rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100px;
  font-size: 1.0625rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .contact-thanks__button .c-btn {
    width: 100%;
    font-size: 0.9375rem;
    height: 3.375rem;
    letter-spacing: 0.04em;
  }
}

.page-contact__inner {
  padding-bottom: 9.1875rem;
}
@media screen and (max-width: 767px) {
  .page-contact__inner {
    padding-bottom: 6.0625rem;
  }
}
.page-contact__main {
  margin-top: -2.6875rem;
}
@media screen and (max-width: 767px) {
  .page-contact__main {
    margin-top: 0.5625rem;
  }
}
.page-contact__main-text {
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  color: rgba(34, 31, 32, .8);
}
@media screen and (max-width: 767px) {
  .page-contact__main-text {
    font-size: 0.875rem;
  }
}
.page-contact__form {
  margin-top: 2.1875rem;
  margin-right: 5.125rem;
}
@media screen and (max-width: 767px) {
  .page-contact__form {
    margin-right: 0;
  }
}
.page-contact .form-title {
  width: 14.375rem;
}
@media screen and (max-width: 767px) {
  .page-contact .form-title {
    width: 100%;
  }
}
.page-contact .form-title.-textarea {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .page-contact .form-group {
    padding: 0;
    border: none;
  }
}
.page-contact .form-group:last-of-type {
  border-bottom: 1px solid rgba(112, 112, 112, .5);
}
@media screen and (max-width: 767px) {
  .page-contact .form-title {
    background-color: transparent;
    border-top: 1px solid rgba(112, 112, 112, .5);
    border-bottom: 1px solid rgba(112, 112, 112, .5);
    padding: 0.625rem 0;
  }
}
.page-contact .form-item.-item1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.125rem;
}
@media screen and (max-width: 767px) {
  .page-contact .form-item.-item1 {
    gap: 1rem;
  }
}
.page-contact .form-item.-item1 .form-radio {
  margin-left: 2.1875rem;
  margin-top: 0.75rem;
  padding-bottom: 0.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.4375rem;
}
@media screen and (max-width: 767px) {
  .page-contact .form-item.-item1 .form-radio {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.0625rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 1rem;
  }
}
.page-contact .form-check-item .-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-contact .form-radio .-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .page-contact .c-form input[type=tel] {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .page-contact .c-form textarea {
    min-height: 10.5625rem;
    height: 10.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .page-contact .exam-entry__privacy {
    background-color: transparent;
    padding: 0.5625rem 1rem;
    height: 10.5rem;
  }
}
@media screen and (max-width: 767px) {
  .page-contact .c-form .form-group.-privacy {
    padding: 0;
  }
}
.page-contact__button {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .page-contact .c-form .form-button {
    margin-top: 1.1875rem;
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .page-contact .footer__inner {
    padding-top: 5.4375rem;
  }
}

.application__inner {
  padding-top: 4.5625rem;
  padding-bottom: 4.5rem;
}
@media screen and (max-width: 767px) {
  .application__inner {
    padding-top: 0;
    padding-bottom: 1.875rem;
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
  }
}
.application .c-heading h2 {
  font-size: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .application .c-heading h2 {
    font-size: 1.1875rem;
  }
}
.application .c-heading span {
  margin-top: 0.0625rem;
}
@media screen and (max-width: 767px) {
  .application .c-heading span {
    margin-top: 0.25rem;
  }
}
.application__main {
  margin-top: 3.4375rem;
  margin-right: 5.25rem;
}
@media screen and (max-width: 767px) {
  .application__main {
    margin-top: 1.9375rem;
    margin-right: 0;
  }
}
.application__table {
  border-top: 1px solid rgba(112, 112, 112, .5);
  border-spacing: 0;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .application__table {
    border-top: none;
  }
}
@media screen and (max-width: 767px) {
  .application__table tr {
    border-top: 1px solid rgba(112, 112, 112, .5);
  }
}
.application__table th {
  width: 12.0625rem;
  text-align: left;
  vertical-align: top;
  font-size: 0.9375rem;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  font-weight: 500;
  border-bottom: 1px solid rgba(112, 112, 112, .5);
  padding: 1.125rem 0;
}
@media screen and (max-width: 767px) {
  .application__table th {
    display: block;
    width: 100%;
    border-left: 4px solid #221F20;
    border-bottom: none;
    font-weight: 600;
    line-height: 1;
    padding: 0.1875rem 0 0.25rem 0.4375rem;
    margin-top: 1.1875rem;
  }
}
.application__table th span {
  display: block;
  font-size: 0.875rem;
  line-height: 1.5714285714;
  letter-spacing: 0.05em;
  font-weight: 500;
  width: 9.125rem;
  margin-top: 0.375rem;
  color: rgba(34, 31, 32, .8);
}
@media screen and (max-width: 767px) {
  .application__table th span {
    width: 100%;
    margin-top: 0.4375rem;
    line-height: 1;
  }
}
.application__table td {
  width: 64.5625rem;
  font-size: 0.875rem;
  line-height: 1.5714285714;
  letter-spacing: 0.05em;
  font-weight: 500;
  border-bottom: 1px solid rgba(112, 112, 112, .5);
  color: rgba(34, 31, 32, .8);
  padding: 1.125rem 0;
}
@media screen and (max-width: 767px) {
  .application__table td {
    display: block;
    width: 100%;
    padding: 1.1875rem 0 1.4375rem;
    border: none;
  }
}
@media screen and (max-width: 767px) {
  .application__table td p {
    letter-spacing: 0.02em;
  }
}
@media screen and (max-width: 767px) {
  .application__table td.-slim {
    padding: 0.625rem 0 1.375rem;
  }
}
.application__table td p.-head {
  color: #221f20;
  font-size: 0.9375rem;
  line-height: 1.6666666667;
}
@media screen and (max-width: 767px) {
  .application__table td p.-head {
    font-weight: 600;
  }
}
.application__table td p.-head + p {
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .application__table td p.-head + p {
    margin-top: 0;
    margin-bottom: 0.375rem;
  }
}
.application__table td p + div {
  margin-top: 0.25rem;
}
@media screen and (max-width: 767px) {
  .application__table td p + div {
    margin-top: 0.375rem;
  }
}
.application__table td li {
  list-style: none;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.application__table td li::before {
  content: "・";
  display: block;
}
@media screen and (max-width: 767px) {
  .application__table td li:first-of-type {
    margin-top: 0.4375rem;
  }
}
@media screen and (max-width: 767px) {
  .application__table td li:last-of-type {
    margin-bottom: 0.4375rem;
  }
}
.application__table td span {
  display: block;
  font-size: 0.75rem;
  line-height: 1.5;
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  .application__table td p.-arrow {
    position: relative;
    font-size: 0.875rem;
    line-height: 1;
    padding-left: 1.0625rem;
    letter-spacing: 0.02em;
  }
  .application__table td p.-arrow::before {
    content: "";
    width: 0.625rem;
    height: 0.625rem;
    background-color: #221F20;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.application__table td .-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.625rem 1.03125rem;
}
@media screen and (max-width: 767px) {
  .application__table td .-btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
  }
}
.application__table td .-btn + p {
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .application__table td .-btn + p {
    font-size: 0.78125rem;
    line-height: 1.44;
  }
}
.application__table td .-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100px;
  border: 1px solid #ed1d23;
  padding: 0.8125rem 0;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1;
  min-width: 22.875rem;
  padding: 0.8125rem 4.0625rem;
  color: #ed1d23;
}
@media screen and (max-width: 767px) {
  .application__table td .-btn a {
    width: 100%;
    min-width: auto;
    padding: 0.9375rem 0;
    display: block;
  }
}
.application__table td .-btn a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .application__table td .-btn a span {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.application__table td .-btn a span img {
  width: 1.1875rem;
  margin-right: 0.75rem;
}
.application__table td .-btn a p {
  font-size: 0.8125rem;
  margin-top: 0.0625rem;
}
@media screen and (max-width: 767px) {
  .application__table td .-btn a p {
    text-align: center;
    margin-top: 0.1875rem;
  }
}
.application__table td .-line {
  display: block;
  border-top: 1px solid #707070;
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .application__table td .-line {
    margin-top: 0;
    margin-bottom: 0;
    border: none;
    height: 1.4375rem;
  }
}
.application__table td .application__table-entry {
  display: block;
  width: 46.8125rem;
  padding: 1.25rem 0;
  border-radius: 100px;
  border: 1px solid #ed1d23;
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
  color: #ed1d23;
  margin-top: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .application__table td .application__table-entry {
    width: 100%;
    margin-top: 0.5rem;
    padding: 1.375rem 0;
  }
}
.application__table td .application__table-entry::before {
  content: "";
  width: 1rem;
  height: 0.6875rem;
  background-image: url("../images/common/btn-arrow-red.svg");
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.application__table td dl {
  width: 100%;
  border: 1px solid #cecece;
}
@media screen and (max-width: 767px) {
  .application__table td dl {
    border: none;
  }
}
.application__table td dl .-pair {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: inherit;
}
@media screen and (max-width: 767px) {
  .application__table td dl .-pair {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border: 1px solid #cecece;
  }
}
.application__table td dl .-pair + .-pair {
  border-top: 1px solid #cecece;
}
@media screen and (max-width: 767px) {
  .application__table td dl .-pair + .-pair {
    margin-top: 0.375rem;
  }
}
.application__table td dl .-pair dt {
  width: 6.5625rem;
  background-color: #fff9db;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ed1d23;
  letter-spacing: 0.03em;
  padding: 0.6875rem 0;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .application__table td dl .-pair dt {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 0.625rem 0 0.5625rem 0.875rem;
  }
}
.application__table td dl .-pair dd {
  background-color: white;
  width: 58rem;
  border-left: 1px solid #cecece;
  padding: 0.6875rem 0.9375rem;
  font-size: 0.9375rem;
  line-height: 1.7857142857;
  color: #221f20;
}
@media screen and (max-width: 767px) {
  .application__table td dl .-pair dd {
    width: 100%;
    border-top: 1px solid #cecece;
    border-left: none;
    letter-spacing: 0.02em;
  }
}
.application__table td dl .-pair dd span {
  display: block;
  font-size: 0.875rem;
  line-height: 1.5714285714;
  letter-spacing: 0.05em;
  color: rgba(34, 31, 32, .8);
  margin-top: 0.125rem;
}
@media screen and (max-width: 767px) {
  .application__table td dl .-pair dd span {
    letter-spacing: 0.02em;
    line-height: 1.4285714286;
  }
}
@media screen and (max-width: 767px) {
  .application__table td dl .-pair dd span.u-desktop {
    display: none;
  }
}
.application__table td dl + p {
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .application__table td dl + p {
    font-size: 0.875rem;
    line-height: 1.5714285714;
    letter-spacing: 0.02em;
    margin-top: 0.4375rem;
  }
}

.entry-thanks {
  margin-top: 3.3125rem;
}
@media screen and (max-width: 767px) {
  .entry-thanks {
    margin-top: 1.9375rem;
  }
}
.entry-thanks p {
  font-size: 0.9375rem;
  line-height: 1.8666666667;
  letter-spacing: 0.05em;
  color: rgba(34, 31, 32, .8);
}
@media screen and (max-width: 767px) {
  .entry-thanks p {
    font-size: 0.875rem;
    line-height: 1.6428571429;
  }
}
.entry-thanks__button {
  margin-top: 6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .entry-thanks__button {
    margin-top: 1.25rem;
  }
}
.entry-thanks__button .c-btn {
  width: 25.0625rem;
  height: 4.625rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100px;
  font-size: 1.0625rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .entry-thanks__button .c-btn {
    width: 100%;
    font-size: 0.9375rem;
    height: 3.375rem;
    letter-spacing: 0.04em;
  }
}

.exam-about__inner {
  padding-top: 5.375rem;
}
@media screen and (max-width: 767px) {
  .exam-about__inner {
    padding-top: 0;
    margin-top: -0.25rem;
    padding-bottom: 2.4375rem;
  }
}
.exam-about__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-right: 5rem;
}
@media screen and (max-width: 767px) {
  .exam-about__wrap {
    margin-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.4375rem;
  }
}
.exam-about__wrap h2 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.625rem;
  letter-spacing: 0.08em;
  line-height: 1.5384615385;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .exam-about__wrap h2 {
    font-size: 1.1875rem;
    line-height: 1.5263157895;
  }
}
.exam-about__wrap p {
  width: 42.0625rem;
  line-height: 1.9375;
  letter-spacing: 0.05em;
  color: rgba(34, 31, 32, .8);
}
@media screen and (max-width: 767px) {
  .exam-about__wrap p {
    font-size: 0.9375rem;
    line-height: 1.9333333333;
    letter-spacing: 0.03em;
    width: 100%;
  }
}

.exam-confirm .c-heading h2 {
  font-size: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .exam-confirm .c-heading h2 {
    font-size: 1.1875rem;
  }
}
.exam-confirm .c-heading span {
  margin-top: 0.25rem;
}
.exam-confirm__inner {
  margin-right: 5.25rem;
  padding-top: 4.5rem;
  padding-bottom: 6.1875rem;
}
@media screen and (max-width: 767px) {
  .exam-confirm__inner {
    margin-right: 0;
    padding-top: 0.1875rem;
  }
}
.exam-confirm .form-group {
  padding: 1.5rem 0 1.5rem;
}
.exam-confirm .form-group:last-of-type {
  border-bottom: 1px solid rgba(112, 112, 112, .5);
}
.exam-confirm .form-group.-date .form-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.8125rem;
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group.-date .form-main {
    gap: 1.25rem;
  }
}
.exam-confirm .form-group.-address {
  padding: 1.6875rem 0 1.5625rem;
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group.-address {
    padding: 0 0 0.375rem;
  }
}
.exam-confirm .form-group.-address .exam-entry__address-item .-zipcode {
  gap: 0.125rem;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group.-address .exam-entry__address-item .-zipcode {
    margin: 0 0 0.0625rem;
    line-height: 1;
  }
}
.exam-confirm .form-group.-address .exam-entry__address-item span {
  margin-top: 0;
}
.exam-confirm .form-group.-company-address .form-item + .form-item {
  padding-top: 1.625rem;
  border-top: 1px solid rgba(112, 112, 112, .5);
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group.-company-address .form-item + .form-item {
    padding-top: 0.75rem;
  }
}
.exam-confirm .form-group.-company-address .form-item + .form-item p {
  line-height: 1.7;
}
.exam-confirm .form-group.-company-address .exam-entry__address-item .-zipcode {
  gap: 0.125rem;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group.-company-address .exam-entry__address-item .-zipcode {
    margin: 0 0 0.0625rem;
    line-height: 1;
  }
}
.exam-confirm .form-group.-company-address .exam-entry__address-item span {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group.-company-address .-head {
    position: relative;
    padding-left: 1.0625rem;
    line-height: 1;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0;
  }
  .exam-confirm .form-group.-company-address .-head::before {
    content: "";
    width: 0.625rem;
    height: 0.625rem;
    background-color: #221F20;
    position: absolute;
    top: 0.4375rem;
    left: 0;
  }
}
.exam-confirm .form-group.-mailing-address p {
  margin-top: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group.-mailing-address p {
    margin-left: 1.125rem;
    margin-top: 0.3125rem;
  }
}
.exam-confirm .form-group.-mailing-address .-item {
  padding: 1.3125rem 0 1.4375rem;
  border-bottom: 1px solid rgba(112, 112, 112, .5);
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group.-mailing-address .-item {
    padding: 0.875rem 0;
  }
}
.exam-confirm .form-group.-mailing-address .-item:first-child {
  padding-bottom: 1.1875rem;
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group.-mailing-address .-item:first-child {
    padding-bottom: 0.8125rem;
  }
}
.exam-confirm .form-group.-mailing-address .-item:last-child {
  padding-bottom: 0.6875rem;
  padding-top: 1.1875rem;
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group.-mailing-address .-category {
    position: relative;
    line-height: 1.2857142857;
    letter-spacing: 0;
    font-size: 0.875rem;
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .exam-confirm .form-group.-mailing-address .-category::before {
    content: "";
    width: 0.625rem;
    height: 0.625rem;
    background-color: #221F20;
    display: block;
    margin-right: 0.5625rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-top: 0.25rem;
  }
}
.exam-confirm .form-group.-syokureki {
  padding-bottom: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group.-syokureki {
    padding: 0 0 0.375rem;
  }
}
.exam-confirm .form-group.-syokureki .exam-entry__syokureki-table tr th:first-child,
.exam-confirm .form-group.-syokureki .exam-entry__syokureki-table tr td:first-child {
  width: 17.3125rem;
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group.-syokureki .exam-entry__syokureki-table tr th:first-child,
  .exam-confirm .form-group.-syokureki .exam-entry__syokureki-table tr td:first-child {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group.-syokureki .exam-entry__syokureki-table {
    background-color: #faf3e7;
    padding: 0.9375rem;
    border: 1px solid rgba(112, 112, 112, .5);
    margin-top: 0.875rem;
    letter-spacing: 0.02em;
  }
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group.-syokureki .exam-entry__syokureki-table table {
    border-bottom: 1px solid rgba(112, 112, 112, .5);
  }
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group.-syokureki .exam-entry__syokureki table tr {
    display: block;
    padding-bottom: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group.-syokureki .exam-entry__syokureki table tr.u-desktop {
    display: none;
  }
}
.exam-confirm .form-group.-syokureki .exam-entry__syokureki table th {
  padding: 0.8125rem 0;
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group.-syokureki .exam-entry__syokureki table th {
    background: #fff9db;
    border-top: 1px solid rgba(112, 112, 112, .5);
    border-bottom: 1px solid rgba(112, 112, 112, .5);
    font-size: 0.875rem;
    padding: 0.5625rem 0;
    margin-bottom: 0.875rem;
  }
}
.exam-confirm .form-group.-syokureki .exam-entry__syokureki table td {
  padding: 1.1875rem 0 0.9375rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group.-syokureki .exam-entry__syokureki table td {
    padding: 0;
  }
}
.exam-confirm .form-group.-syokureki .-total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.0625rem 0 1.5625rem;
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group.-syokureki .-total {
    font-size: 0.9375rem;
    padding: 1.6875rem 0 0.4375rem;
    gap: 0.625rem;
  }
}
.exam-confirm .form-group.-syokureki .-total span {
  display: block;
  letter-spacing: 0.02em;
}
.exam-confirm .form-group.-syokureki .-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group.-syokureki .exam-entry__syokureki .-head::before {
    top: 0.3125rem;
  }
}
.exam-confirm .form-group.-entry-past {
  line-height: 1;
}
.exam-confirm .form-group.-entry-past .-items {
  padding: 1.5rem 0 0.0625rem;
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group.-entry-past .-items {
    padding: 1rem 0 0.0625rem;
  }
}
.exam-confirm .form-group.-entry-past .-items:first-of-type {
  padding-bottom: 1.4375rem;
  padding-top: 0;
  border-bottom: 1px solid rgba(112, 112, 112, .5);
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group.-entry-past .-items:first-of-type {
    padding-bottom: 0.875rem;
  }
}
.exam-confirm .form-group.-entry-past .-items:first-of-type h4 {
  margin-bottom: 0.5625rem;
  font-weight: 500;
}
.exam-confirm .form-group.-entry-past .-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group.-entry-past .-item {
    margin-left: 1.125rem;
  }
}
.exam-confirm .form-group.-entry-past .-item h4 {
  margin-right: 1.125rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group.-entry-past .-item h4 {
    margin-right: 1rem;
  }
}
.exam-confirm .form-group.-entry-past .-item + .-item {
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group.-entry-past .-item + .-item {
    margin-top: 0.25rem;
  }
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group.-entry-past .-head {
    position: relative;
    padding-left: 1.0625rem;
    line-height: 1;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0;
  }
  .exam-confirm .form-group.-entry-past .-head::before {
    content: "";
    width: 0.625rem;
    height: 0.625rem;
    background-color: #221F20;
    position: absolute;
    top: 0.125rem;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group.-entry-past .form-main {
    padding: 0.875rem 0.8125rem 1.125rem;
  }
}
.exam-confirm .form-group.-partipants {
  padding: 1.8125rem 0 1.625rem;
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group.-partipants {
    padding: 0 0 0.375rem;
  }
}
.exam-confirm .form-group.-partipants .-item {
  padding: 1.5rem 0 0;
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group.-partipants .-item {
    padding: 1.125rem 0 0;
  }
}
.exam-confirm .form-group.-partipants .-item:first-child {
  padding-top: 0;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(112, 112, 112, .5);
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group.-partipants .-item:first-child {
    padding-bottom: 0.875rem;
  }
}
.exam-confirm .form-group.-partipants .-item h4 {
  margin-bottom: 0.375rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group.-partipants .-item h4 {
    margin-bottom: 0.125rem;
  }
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group.-partipants .-item p {
    letter-spacing: 0.02em;
  }
}
.exam-confirm .form-group.-file {
  padding: 1.875rem 0;
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group.-file {
    padding: 0 0 0.375rem;
  }
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group.-mail {
    padding-bottom: 0.375rem;
  }
}
.exam-confirm .form-group.-mail h4 {
  font-weight: 500;
  margin-bottom: 0.5625rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group.-mail h4 {
    line-height: 1.6;
    margin-bottom: 0.3125rem;
  }
}
.exam-confirm .form-group.-mail .-item {
  padding: 1.25rem 0 0.375rem;
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group.-mail .-item {
    padding: 0.8125rem 0 0;
  }
}
.exam-confirm .form-group.-mail .-item:first-child {
  padding-top: 0;
  padding-bottom: 1.3125rem;
  border-bottom: 1px solid rgba(112, 112, 112, .5);
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group.-mail .-item:first-child {
    padding-bottom: 0.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group.-mail .form-main {
    padding: 0.6875rem 1.1875rem 1.25rem;
  }
}
.exam-confirm .form-group.-privacy {
  border-bottom: 1px solid rgba(112, 112, 112, .5);
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group.-privacy {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-group {
    padding: 0 0 0.375rem;
    border: none;
  }
}
.exam-confirm .form-title {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-title {
    font-size: 0.9375rem;
    background-color: #e0ceb2;
  }
}
.exam-confirm .form-main {
  font-size: 1rem;
  line-height: 1.375;
}
@media screen and (max-width: 767px) {
  .exam-confirm .form-main {
    font-size: 0.9375rem;
    background-color: #f4e6d0;
    padding: 1.0625rem 1.0625rem 1.0625rem;
  }
}
.exam-confirm__text {
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  line-height: 1.8666666667;
  margin-top: 3.125rem;
  color: rgba(34, 31, 32, .8);
}
@media screen and (max-width: 767px) {
  .exam-confirm__text {
    font-size: 0.875rem;
    line-height: 1.6428571429;
    margin-top: 1.75rem;
  }
}
.exam-confirm__form {
  margin-top: 2.6875rem;
}
@media screen and (max-width: 767px) {
  .exam-confirm__form {
    margin-top: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .exam-confirm__form .exam-entry__address-item {
    gap: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    line-height: 1.6;
  }
  .exam-confirm__form .exam-entry__address-item span {
    margin-top: 0;
    margin-left: 0;
  }
  .exam-confirm__form .exam-entry__address-item + .exam-entry__address-item {
    margin-top: 0rem;
    gap: 0.875rem;
  }
}
.exam-confirm__form .exam-entry__address-item:not(:nth-child(1)) {
  padding: 1.75rem 0;
}
@media screen and (max-width: 767px) {
  .exam-confirm__form .exam-entry__address-item:not(:nth-child(1)) {
    padding: 0;
  }
}
.exam-confirm__form .exam-entry__address-item:last-child {
  padding: 1.75rem 0 0;
}
@media screen and (max-width: 767px) {
  .exam-confirm__form .exam-entry__address-item:last-child {
    padding: 0;
  }
}
.exam-confirm__form .exam-entry__address .-zipcode {
  margin-bottom: 0;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .exam-confirm__form .exam-entry__address .-zipcode {
    margin-bottom: 0.1875rem;
    margin-top: 0;
    line-height: 1;
    margin-top: 0;
    gap: 0;
  }
  .exam-confirm__form .exam-entry__address .-zipcode span {
    margin-left: 0;
    margin-top: 0;
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .exam-confirm__form .exam-entry__address .-address {
    line-height: 1.6;
    margin-bottom: 0.5rem;
  }
}
.exam-confirm .c-form .form-button {
  margin-top: 2.5625rem;
}
@media screen and (max-width: 767px) {
  .exam-confirm .c-form .form-button {
    margin-top: 1.25rem;
  }
}

.exam-entry {
  letter-spacing: 0.05em;
}
.exam-entry__inner {
  padding-top: 4.5625rem;
  padding-bottom: 6.25rem;
  margin-right: 5.25rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__inner {
    margin-right: 0;
    padding-top: 0.1875rem;
  }
}
.exam-entry label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.exam-entry .c-heading h2 {
  font-size: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .exam-entry .c-heading h2 {
    letter-spacing: 0.05em;
    font-size: 1.1875rem;
  }
}
.exam-entry .c-heading span {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .exam-entry .c-heading span {
    margin-top: 0.3125rem;
  }
}
.exam-entry input {
  border: none;
  outline: none;
}
.exam-entry input[type=text] {
  min-height: 3.25rem;
  padding: 0.625rem;
  width: 100%;
}
.exam-entry input[type=email] {
  width: 34.4375rem;
  min-height: 3.25rem;
}
@media screen and (max-width: 767px) {
  .exam-entry input[type=email] {
    width: 100%;
  }
}
.exam-entry input[type=radio] {
  width: 1.25rem;
  height: 1.25rem;
}
@media screen and (max-width: 767px) {
  .exam-entry input[type=radio] {
    width: 1.125rem;
    height: 1.125rem;
  }
}
.exam-entry__text {
  margin-top: 3.4375rem;
  line-height: 1.8;
  color: rgba(34, 31, 32, .8);
}
@media screen and (max-width: 767px) {
  .exam-entry__text {
    margin-top: 1.875rem;
    font-size: 0.875rem;
    line-height: 1.6428571429;
    letter-spacing: 0.05em;
  }
}
.exam-entry__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
  }
}
.exam-entry__btn {
  width: 27.8125rem;
  border: 1px solid #ed1d23;
  border-radius: 100px;
  color: #ed1d23;
  font-size: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__btn {
    width: 100%;
  }
}
.exam-entry__btn span {
  display: block;
}
.exam-entry__btn img {
  width: 1.1875rem;
}
.exam-entry__btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.8125rem;
  padding: 0.875rem 0;
}
.exam-entry__form {
  margin-top: 3.0625rem;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__form {
    margin-top: 2.125rem;
    font-size: 0.9375rem;
    line-height: 1.2;
  }
}
.exam-entry__form-exam .-category {
  width: 11.125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: inline-block;
}
.exam-entry__form-exam label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .exam-entry__form-exam label {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.exam-entry__age {
  margin-left: 6.6875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .exam-entry__age {
    margin-left: 0;
    margin-top: 0.5625rem;
  }
}
.exam-entry__age .-flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.exam-entry__age label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.exam-entry__age input[type=text] {
  width: 6.8125rem;
  margin-left: 1.6875rem;
}
.exam-entry__age span {
  display: block;
  margin-left: 1.1875rem;
}
.exam-entry__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.exam-entry__modal-button {
  border-radius: 100px;
  color: #ed1d23;
  border: 1px solid #ed1d23;
  color: #ed1d23;
  text-align: center;
  padding: 1.0625rem 0 1.0625rem;
  margin-top: 0.625rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .exam-entry__modal-button {
    height: 2.375rem;
    padding: 0.5625rem 0;
    margin-top: 0.875rem;
    background-color: #fff;
  }
}
.exam-entry .-red {
  color: #ed1d23;
  font-size: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .exam-entry .-red {
    font-size: 0.875rem;
    letter-spacing: 0;
    line-height: 1.3571428571;
  }
}
.exam-entry .form-item .-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.exam-entry .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.5625rem 0 1.6875rem;
  border-top: 1px solid rgba(112, 112, 112, .5);
}
@media screen and (max-width: 767px) {
  .exam-entry .form-group {
    display: block;
    border: none;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .exam-entry .form-group:not(:first-of-type) {
    padding-top: 0.5rem;
  }
}
.exam-entry .form-group:last-of-type {
  border-bottom: 1px solid rgba(112, 112, 112, .5);
}
.exam-entry .form-group.-center {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.exam-entry .form-group.-center .form-title {
  margin-top: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .exam-entry .form-group.-center .form-title {
    margin-top: 0;
  }
}
.exam-entry .form-group .-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .exam-entry .form-group .-flex {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.exam-entry .form-group.-address .form-title {
  margin-top: 1.125rem;
}
@media screen and (max-width: 767px) {
  .exam-entry .form-group.-address .form-title {
    margin-top: 0;
  }
}
.exam-entry .form-group.-company-address {
  padding-bottom: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .exam-entry .form-group.-company-address {
    padding-bottom: 0;
  }
}
.exam-entry .form-group.-company-address .form-title {
  margin-top: 1.1875rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .exam-entry .form-group.-company-address .form-title {
    margin-top: 0;
  }
}
.exam-entry .form-group.-mailing-address {
  padding: 35px 0 23px;
}
@media screen and (max-width: 767px) {
  .exam-entry .form-group.-mailing-address {
    padding: 0.3125rem 0 0;
  }
}
.exam-entry .form-group.-partipants {
  padding: 1.875rem 0 1.625rem;
}
@media screen and (max-width: 767px) {
  .exam-entry .form-group.-partipants {
    padding: 0.6875rem 0 0;
  }
}
.exam-entry .form-group.-partipants label {
  width: 6.3125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .exam-entry .form-group.-partipants label {
    line-height: 1.3333;
  }
}
.exam-entry .form-group.-partipants .form-item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .exam-entry .form-group.-partipants .form-main {
    padding: 0.5625rem 0.9375rem 1.3125rem;
  }
}
.exam-entry .form-group.-partipants .form-item:nth-of-type(1) {
  margin-top: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .exam-entry .form-group.-partipants .form-item:nth-of-type(1) {
    margin-top: 0.375rem;
  }
}
.exam-entry .form-group.-partipants .form-item:not(:first-of-type) {
  padding: 1.625rem 0 0;
  border-top: 1px solid rgba(112, 112, 112, .5);
  margin-top: 1.375rem;
}
@media screen and (max-width: 767px) {
  .exam-entry .form-group.-partipants .form-item:not(:first-of-type) {
    border: none;
    margin-top: 0.6875rem;
    padding-top: 0;
  }
}
.exam-entry .form-group.-partipants input {
  width: 56.75rem;
}
@media screen and (max-width: 767px) {
  .exam-entry .form-group.-partipants input {
    width: 100%;
  }
}
.exam-entry .form-group.-partipants .-flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.exam-entry .form-group.-date {
  padding: 1.8125rem 0 1.5625rem;
}
@media screen and (max-width: 767px) {
  .exam-entry .form-group.-date {
    padding: 0.5rem 0 0;
  }
}
.exam-entry .form-group.-date .form-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .exam-entry .form-group.-date .form-main {
    display: block;
  }
}
.exam-entry .form-group.-syokureki {
  padding-top: 1.625rem;
  padding-bottom: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .exam-entry .form-group.-syokureki {
    padding-top: 0.25rem;
  }
}
.exam-entry .form-group.-entry-past {
  padding-top: 1.875rem;
  padding-bottom: 2.125rem;
}
@media screen and (max-width: 767px) {
  .exam-entry .form-group.-entry-past {
    padding-bottom: 0;
    padding-top: 0;
  }
}
.exam-entry .form-group.-file {
  padding: 2rem 0 1.75rem;
}
@media screen and (max-width: 767px) {
  .exam-entry .form-group.-file {
    padding: 0.375rem 0 0 0;
  }
}
.exam-entry .form-group.-file .-text {
  letter-spacing: 0;
}
.exam-entry .form-group.-file .-text span {
  font-size: 0.75rem;
  line-height: 1.5;
  display: block;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .exam-entry .form-group.-file .form-main {
    padding: 0.625rem 0.9375rem 1rem;
  }
}
.exam-entry .form-group.-mail {
  padding-bottom: 1.8125rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .exam-entry .form-group.-mail {
    letter-spacing: 0.01em;
    padding-bottom: 0;
  }
}
.exam-entry .form-group.-mail label {
  display: block;
}
.exam-entry .form-group.-mail .-flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.125rem;
}
@media screen and (max-width: 767px) {
  .exam-entry .form-group.-mail .-flex {
    margin-top: 0.875rem;
  }
}
.exam-entry .form-group.-mail .form-item:not(:first-of-type) {
  margin-top: 1.125rem;
  padding-top: 1.125rem;
  border-top: 1px solid rgba(112, 112, 112, .5);
}
@media screen and (max-width: 767px) {
  .exam-entry .form-group.-mail .form-item:not(:first-of-type) {
    padding-top: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .exam-entry .form-group.-mail .form-main {
    padding: 0.625rem 0.9375rem 1.1875rem;
  }
}
.exam-entry .form-group.-privacy {
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .exam-entry .form-group.-privacy {
    padding-bottom: 1.3125rem;
  }
}
.exam-entry .form-title {
  width: 12.6875rem;
  letter-spacing: 0.09em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .exam-entry .form-title {
    width: 100%;
    background-color: #e0ceb2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 0.9375rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-height: 2.8125rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0.75rem 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.03em;
  }
}
.exam-entry .form-title span {
  background-color: #ed1d23;
  color: #fff;
  font-size: 0.78125rem;
  line-height: 1.21875rem;
  padding: 0 0.25rem;
  border-radius: 2px;
  display: inline-block;
  font-weight: 600;
  margin-left: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .exam-entry .form-title span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.exam-entry .form-title.-small {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 0.9375rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .exam-entry .form-title.-small {
    letter-spacing: 0.05em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.exam-entry .form-main {
  width: 64rem;
}
@media screen and (max-width: 767px) {
  .exam-entry .form-main {
    width: 100%;
    padding: 0.875rem 1.125rem 1.0625rem;
    background-color: #f4e6d0;
  }
}
.exam-entry .radio-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.4375rem 0;
  border-top: 1px solid rgba(112, 112, 112, .5);
}
@media screen and (max-width: 767px) {
  .exam-entry .radio-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.9375rem;
    padding: 0.875rem 0;
  }
}
.exam-entry .radio-item:nth-child(1) {
  padding: 0 0 1.625rem;
  border-top: none;
}
@media screen and (max-width: 767px) {
  .exam-entry .radio-item:nth-child(1) {
    padding: 0 0 1.0625rem;
  }
}
.exam-entry .radio-item:nth-child(1) .-main {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.375rem 0;
}
@media screen and (max-width: 767px) {
  .exam-entry .radio-item:nth-child(1) .-main {
    gap: 1rem;
  }
}
.exam-entry .radio-item:nth-child(2) .-main {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.375rem 3.9375rem;
}
@media screen and (max-width: 767px) {
  .exam-entry .radio-item:nth-child(2) .-main {
    gap: 1rem;
  }
}
.exam-entry .radio-item:nth-child(3) .-main {
  display: block;
}
.exam-entry .radio-item:nth-child(3) .-main div {
  gap: 1.375rem 4.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .exam-entry .radio-item:nth-child(3) .-main div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
.exam-entry .radio-item:nth-child(3) .-main div + div {
  margin-top: 1.25rem;
}
.exam-entry .radio-item .-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .exam-entry .radio-item .-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
.exam-entry .radio-item .-main .-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.375rem 3.6875rem;
}
@media screen and (max-width: 767px) {
  .exam-entry .radio-item .-main .-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.8125rem;
  }
}
.exam-entry__date {
  display: inline-block;
  width: 13.8125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-height: 3.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .exam-entry__date {
    width: 100%;
  }
}
.exam-entry__date::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 0.1875rem solid transparent;
  border-right: 0.25rem solid transparent;
  border-top: 0.4375rem solid black; /* 三角形の色を指定 */
}
.exam-entry__date input[type=text] {
  width: 13.8125rem;
  min-height: 3.25rem;
  padding: 0.5em;
  padding-right: 2.5em;
  padding-left: 1.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: #221f20;
}
@media screen and (max-width: 767px) {
  .exam-entry__date input[type=text] {
    width: 100%;
    font-size: 0.875rem;
    padding-left: 0.875rem;
  }
}
.exam-entry__date input[type=text]::-webkit-input-placeholder {
  color: #221F20;
}
.exam-entry__date input[type=text]::-moz-placeholder {
  color: #221F20;
}
.exam-entry__date input[type=text]::-ms-input-placeholder {
  color: #221F20;
}
.exam-entry__date input[type=text]::placeholder {
  color: #221F20;
}
.exam-entry__gender {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.5rem;
  margin-top: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__gender {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.75rem;
    margin-top: 0;
  }
}
.exam-entry__gender label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.exam-entry__gender label span {
  display: block;
  margin-left: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__gender label span {
    margin-left: 0;
  }
}
.exam-entry__gender label input {
  margin-top: 0;
}
.exam-entry__address {
  width: 63.9375rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__address {
    width: 100%;
  }
}
.exam-entry__address span {
  font-size: 0.8125rem;
  line-height: 1;
  display: block;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .exam-entry__address span {
    line-height: 1.3846153846;
    margin-top: 1rem;
    margin-left: -0.3125rem;
    letter-spacing: 0;
  }
}
.exam-entry__address label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.exam-entry__address input {
  width: 100%;
}
.exam-entry__address-item {
  width: 100%;
}
.exam-entry__address-item span {
  font-size: 0.8125rem;
  line-height: 1;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__address-item span {
    font-size: 0.9375rem;
    margin-top: 0.625rem;
    line-height: 1.3846153846;
  }
}
.exam-entry__address-item .-zipcode {
  margin-bottom: 0.9375rem;
  margin-top: 0.25rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__address-item .-zipcode {
    gap: 1rem;
    margin-bottom: 0.8125rem;
  }
}
.exam-entry__address-item .-zipcode .-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.125rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__address-item .-zipcode .-flex {
    gap: 1rem;
  }
}
.exam-entry__address-item .-zipcode span {
  font-size: 1rem;
  line-height: 1;
}
.exam-entry__address-item .-zipcode input {
  width: 16.4375rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__address-item .-zipcode input {
    width: 14rem;
  }
}
.exam-entry__address-item:nth-child(1) {
  padding: 0 0 1.5rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__address-item:nth-child(1) {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .exam-entry__address-item + .exam-entry__address-item {
    margin-top: 0.8125rem;
  }
}
.exam-entry__address-item:not(:nth-child(1)) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.375rem 0;
  border-top: 1px solid rgba(112, 112, 112, .5);
}
@media screen and (max-width: 767px) {
  .exam-entry__address-item:not(:nth-child(1)) {
    gap: 0.5rem;
    border: none;
    padding: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.exam-entry__address-item:nth-child(4) {
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__address-item:nth-child(4) {
    gap: 0.5rem;
    padding-bottom: 0;
  }
}
.exam-entry__address-item input {
  min-height: 3.25rem;
  width: 32.4375rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__address-item input {
    width: 16.5rem;
  }
}
.exam-entry__address-item.-company {
  padding-bottom: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .exam-entry__address-item.-company {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.8125rem;
    padding-top: 0;
    margin-top: 1.6875rem;
  }
}
.exam-entry__address-item.-company label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .exam-entry__address-item.-company label {
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    padding-left: 1.0625rem;
    position: relative;
  }
  .exam-entry__address-item.-company label::before {
    content: "";
    width: 0.625rem;
    height: 0.625rem;
    background-color: #221F20;
    position: absolute;
    left: 0;
    top: 2px;
  }
}
.exam-entry__address-item.-company input {
  width: 45.5rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__address-item.-company input {
    width: 100%;
  }
}
.exam-entry__mailing-address {
  width: 63.9375rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__mailing-address {
    width: 100%;
  }
}
.exam-entry__mailing-address .-category {
  font-weight: 600;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__mailing-address .-category {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.4375rem;
    font-size: 0.875rem;
  }
  .exam-entry__mailing-address .-category::before {
    content: "";
    width: 0.625rem;
    height: 0.625rem;
    display: block;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-top: 0.25rem;
    background-color: #221f20;
  }
}
.exam-entry__mailing-address .radio-group .-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5625rem;
  margin-top: 1.1875rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__mailing-address .radio-group .-flex {
    display: block;
    margin-top: 0.8125rem;
  }
  .exam-entry__mailing-address .radio-group .-flex label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .exam-entry__mailing-address .radio-group .-flex label + label {
    margin-top: 0.9375rem;
  }
}
.exam-entry__mailing-address .radio-group .-flex input {
  margin-right: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__mailing-address .radio-group .-flex input {
    margin-right: 0.375rem;
  }
}
.exam-entry__mailing-address .radio-group:nth-child(1) {
  padding: 0 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__mailing-address .radio-group:nth-child(1) {
    padding: 0 0 1.125rem;
  }
}
.exam-entry__mailing-address .radio-group:not(:nth-child(1)) {
  padding: 1.5625rem 0 1.5625rem;
  border-top: 1px solid rgba(112, 112, 112, .5);
}
@media screen and (max-width: 767px) {
  .exam-entry__mailing-address .radio-group:not(:nth-child(1)) {
    padding: 0.875rem 0 1.125rem;
  }
}
.exam-entry__mailing-address .radio-group:last-child {
  padding-bottom: 0;
}
.exam-entry__syokureki {
  width: 63.9375rem;
  padding-bottom: 1.125rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__syokureki {
    width: 100%;
    padding-bottom: 0.625rem;
  }
}
.exam-entry__syokureki .-head {
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .exam-entry__syokureki .-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.4375rem;
    font-size: 0.875rem;
    position: relative;
    padding-left: 1.0625rem;
  }
  .exam-entry__syokureki .-head::before {
    content: "";
    width: 0.625rem;
    height: 0.625rem;
    display: block;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    background-color: #221f20;
    position: absolute;
    top: 0.1875rem;
    left: 0;
  }
}
.exam-entry__syokureki .-text {
  color: #ed1d23;
  font-size: 0.9375rem;
  line-height: 1.5333333333;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__syokureki .-text {
    font-size: 0.875rem;
    line-height: 1.3571428571;
    margin-top: 0.5rem;
    letter-spacing: 0;
  }
}
.exam-entry__syokureki table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  border: 1px solid rgba(112, 112, 112, .5);
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__syokureki table {
    border: none;
    margin-top: 0;
  }
}
.exam-entry__syokureki table th,
.exam-entry__syokureki table td {
  border-bottom: 1px solid rgba(112, 112, 112, .5);
}
.exam-entry__syokureki table th:not(:nth-child(1)),
.exam-entry__syokureki table td:not(:nth-child(1)) {
  border-left: 1px solid rgba(112, 112, 112, .5);
}
@media screen and (max-width: 767px) {
  .exam-entry__syokureki table th:not(:nth-child(1)),
  .exam-entry__syokureki table td:not(:nth-child(1)) {
    border-left: none;
  }
}
.exam-entry__syokureki table th {
  background-color: #fff9db;
  font-weight: 500;
  padding: 1.0625rem 0 1rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__syokureki table th {
    display: block;
    width: 100%;
    border-top: 1px solid rgba(112, 112, 112, .5);
    border-bottom: 1px solid rgba(112, 112, 112, .5);
    font-size: 0.875rem;
    padding: 0.6875rem;
  }
}
.exam-entry__syokureki table th:nth-of-type(1) {
  width: 22.4375rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__syokureki table th:nth-of-type(1) {
    width: 100%;
  }
}
.exam-entry__syokureki table td {
  padding: 0.875rem 1.375rem 0.9375rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__syokureki table td {
    display: block;
    width: 100%;
    border: none;
    padding: 0.625rem 0 0.5625rem;
  }
}
.exam-entry__syokureki table td:first-child {
  width: 22.3125rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__syokureki table td:first-child {
    width: 100%;
  }
}
.exam-entry__syokureki table td input[type=text] {
  padding: 0.3125rem 1.125rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__syokureki table td input[type=text] {
    padding: 0.3125rem 0.75rem;
  }
}
.exam-entry__syokureki table .-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__syokureki table .-flex {
    display: block;
  }
}
.exam-entry__syokureki input[type=number] {
  width: 6.0625rem;
  height: 3.25rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__syokureki input[type=number] {
    width: 5.0625rem;
  }
}
@media screen and (max-width: 767px) {
  .exam-entry__syokureki p.-total {
    padding-top: 1.875rem;
    border-top: 1px solid #CECECE;
  }
}
.exam-entry__syokureki-item + .exam-entry__syokureki-item {
  border-top: 1px solid rgba(112, 112, 112, .5);
  padding-top: 1.625rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__syokureki-item + .exam-entry__syokureki-item {
    padding-top: 1.3125rem;
    margin-top: 1.3125rem;
    border: none;
    position: relative;
  }
  .exam-entry__syokureki-item + .exam-entry__syokureki-item::before {
    content: "";
    width: calc(100% + 2rem);
    height: 0.0625rem;
    background-color: rgba(112, 112, 112, .5);
    left: -1rem;
    top: 0;
    position: absolute;
  }
}
.exam-entry__syokureki-item:nth-child(2) .exam-entry__syokureki-total {
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .exam-entry__syokureki-table {
    background-color: #faf3e7;
    display: block;
    padding: 0.8125rem;
    margin-top: 0.625rem;
  }
}
.exam-entry__syokureki-table table tr td:nth-of-type(2) input::-webkit-input-placeholder {
  color: transparent;
}
.exam-entry__syokureki-table table tr td:nth-of-type(2) input::-moz-placeholder {
  color: transparent;
}
.exam-entry__syokureki-table table tr td:nth-of-type(2) input::-ms-input-placeholder {
  color: transparent;
}
.exam-entry__syokureki-table table tr td:nth-of-type(2) input::placeholder {
  color: transparent;
}
@media screen and (max-width: 767px) {
  .exam-entry__syokureki-table table tr td:nth-of-type(2) input::-webkit-input-placeholder {
    color: #919191;
  }
  .exam-entry__syokureki-table table tr td:nth-of-type(2) input::-moz-placeholder {
    color: #919191;
  }
  .exam-entry__syokureki-table table tr td:nth-of-type(2) input::-ms-input-placeholder {
    color: #919191;
  }
  .exam-entry__syokureki-table table tr td:nth-of-type(2) input::placeholder {
    color: #919191;
  }
}
.exam-entry__syokureki-total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0.75rem 0 1.125rem;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__syokureki-total {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 1.125rem;
    padding-bottom: 0.625rem;
  }
}
.exam-entry__syokureki-total input[type=text] {
  width: 5.78125rem;
}
.exam-entry__syokureki-total p {
  margin-right: 1.5rem;
}
.exam-entry__syokureki-total .-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.exam-entry__syokureki-total .-item:nth-child(1) label {
  margin-right: 1.8125rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__syokureki-total .-item:nth-child(1) label {
    margin-right: 0;
  }
}
.exam-entry__syokureki-total .-item span {
  display: block;
  margin-left: 1.375rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__syokureki-total .-item span {
    margin-left: 0.8125rem;
  }
}
.exam-entry__past {
  width: 100%;
}
.exam-entry__past .form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.625rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__past .form-item {
    margin-top: 0;
    display: block;
  }
}
.exam-entry__past .form-item + .form-item {
  padding-top: 1.375rem;
  border-top: 1px solid rgba(112, 112, 112, .5);
}
@media screen and (max-width: 767px) {
  .exam-entry__past .form-item + .form-item {
    border: none;
    padding-top: 0;
    margin-top: 0.6875rem;
  }
}
.exam-entry__past-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .exam-entry__past-item {
    margin-top: 1.0625rem;
  }
}
.exam-entry__past .-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .exam-entry__past .-flex {
    margin-top: 0.625rem;
  }
}
.exam-entry__past .-past-type {
  margin-left: 5.75rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__past .-past-type {
    margin-left: 0;
    margin-top: 0.6875rem;
  }
}
@media screen and (max-width: 767px) {
  .exam-entry__past-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.4375rem;
    margin-top: 0.9375rem;
  }
  .exam-entry__past-text::before {
    content: "";
    width: 0.625rem;
    height: 0.625rem;
    margin-top: 0.25rem;
    background-color: #221F20;
    display: block;
  }
}
.exam-entry__past-text p {
  margin-bottom: 1.375rem;
}
.exam-entry__past span {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.exam-entry__past label {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.exam-entry__past .-year {
  margin-left: 3.5625rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__past .-year {
    margin-left: 0;
  }
}
.exam-entry__past .-year-input[type=text] {
  width: 6.6875rem;
  height: 3.25rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__past .-year-input[type=text] {
    width: 12.1875rem;
  }
}
.exam-entry__past .-class-input[type=text] {
  width: 6.375rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__past .-class-input[type=text] {
    width: 12.1875rem;
  }
}
.exam-entry__past .-type-input[type=text] {
  width: 40.375rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__past .-type-input[type=text] {
    width: 14.6875rem;
  }
}
.exam-entry__past .-year2 {
  margin-left: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__past .-year2 {
    margin-left: 0.625rem;
  }
}
.exam-entry__past .-year2 input {
  width: 6.375rem;
}
.exam-entry__past .-grade {
  margin-left: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__past .-grade {
    margin-left: 0.625rem;
    margin-right: 1em;
  }
}
.exam-entry__past input {
  margin-left: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__past input {
    margin-left: auto;
  }
}
.exam-entry__past input input {
  width: 40.375rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__past input input {
    width: 100%;
  }
}
.exam-entry__file-wrap {
  width: 63.875rem;
  height: 11.25rem;
  background-color: #e8e2d8;
  padding: 3.1875rem 0;
  text-align: center;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__file-wrap {
    width: 100%;
    display: contents;
  }
}
.exam-entry__file-wrap .exam-entry__file-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .exam-entry__file-wrap .exam-entry__file-text {
    display: none;
  }
}
.exam-entry__file-button {
  display: block;
  width: 13.4375rem;
  background-color: #fff;
  font-size: 0.9375rem;
  padding: 0.5625rem 1.25rem 0.6875rem;
  border-radius: 7px;
  display: inline-block;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  margin-inline: auto;
  margin-top: 0.875rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__file-button {
    width: 100%;
  }
}
.exam-entry__file-button input {
  display: none;
}
.exam-entry__privacy {
  width: 64rem;
  height: 11.6875rem;
  overflow: hidden;
  padding: 1.375rem 1rem 1.375rem 0.6875rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border: 1px solid #cccccc;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__privacy {
    width: 100%;
    background-color: #fff;
    padding: 0.75rem 0.75rem;
    height: 10.5625rem;
  }
}
.exam-entry__privacy .-inner {
  overflow: scroll;
  height: 100%;
}
.exam-entry__privacy ol {
  padding-left: 1.5rem;
  padding: 1.25rem 0 0 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
}
.exam-entry__privacy p {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.02em;
  color: rgba(34, 31, 32, .8);
}
@media screen and (max-width: 767px) {
  .exam-entry__privacy p {
    letter-spacing: 0;
  }
}
.exam-entry__modal-inner {
  width: 100%;
  height: 100%;
  padding: 4rem 0;
  position: relative;
  z-index: 1040;
}
@media screen and (max-width: 767px) {
  .exam-entry__modal-inner {
    padding: 1.75rem 0;
  }
}
.exam-entry__modal-wrap {
  margin-inline: auto;
  width: 64.375rem;
  height: calc(100% - 8rem);
  position: relative;
  z-index: 1040;
}
@media screen and (max-width: 767px) {
  .exam-entry__modal-wrap {
    width: 21.375rem;
    height: calc(100% - 3.5rem);
  }
}
.exam-entry__modal-close {
  position: relative;
  z-index: 100;
  cursor: pointer;
  margin-left: auto;
  width: 2.625rem;
}
.exam-entry__modal-close img {
  display: inline-block;
}
.exam-entry__modal-content {
  background-color: #faf3e7;
  border: 1px solid #707070;
  padding: 3.3125rem 3.8125rem;
  z-index: 100;
  position: relative;
  margin-top: 1.125rem;
  overflow-y: auto;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .exam-entry__modal-content {
    padding: 2.0625rem 1.25rem 2.0625rem 1.375rem;
    margin-top: 0.9375rem;
  }
}
.exam-entry__modal-free h3 {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__modal-free h3 {
    font-size: 1.0625rem;
    letter-spacing: 0.03em;
  }
}
.exam-entry__modal-free ul {
  margin-top: 2.0625rem;
  border-bottom: 1px solid rgba(112, 112, 112, .7);
}
@media screen and (max-width: 767px) {
  .exam-entry__modal-free ul {
    margin-top: 1.125rem;
  }
}
.exam-entry__modal-free ul li {
  border-top: 1px solid rgba(112, 112, 112, .7);
  padding: 1.25rem 0 1.3125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .exam-entry__modal-free ul li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.375rem;
    padding: 0.375rem 0;
  }
}
.exam-entry__modal-free ul li .-class {
  width: 7.8125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  padding-top: 0.375rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .exam-entry__modal-free ul li .-class {
    font-size: 1rem;
  }
}
.exam-entry__modal-free ul li p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media screen and (max-width: 767px) {
  .exam-entry__modal-free ul li p {
    font-size: 0.9375rem;
  }
}
.exam-entry__modal-free ul li .-price {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.6111111111;
  font-weight: 600;
  letter-spacing: 0;
  margin-left: 1.0625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .exam-entry__modal-free ul li .-price {
    font-size: 1.0625rem;
  }
}
.exam-entry__modal-free ul li .-tax {
  font-size: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__modal-free ul li .-tax {
    font-size: 0.875rem;
  }
}
.exam-entry__modal-free ul li .-red {
  color: #ed1d23;
  font-size: 0.9375rem;
  line-height: 1.5333333333;
  letter-spacing: 0.04em;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__modal-free ul li .-red {
    font-size: 0.875rem;
    line-height: 1.5;
    letter-spacing: 0.03em;
  }
}
.exam-entry__modal-free ul h4 {
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .exam-entry__modal-free ul h4 {
    font-size: 1.0625rem;
  }
}
.exam-entry__modal-transfer {
  margin-top: 4.8125rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__modal-transfer {
    margin-top: 3.25rem;
  }
}
.exam-entry__modal-transfer .-top-text {
  margin-top: 1.8125rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .exam-entry__modal-transfer .-top-text {
    margin-top: 0.8125rem;
    letter-spacing: 0.03em;
    line-height: 1.8;
  }
}
@media screen and (max-width: 767px) {
  .exam-entry__modal-transfer .-top-text .br {
    display: block;
    line-height: 1.5;
    margin-top: 1.0625rem;
  }
}
.exam-entry__modal-transfer .-top-text .-bold {
  font-size: 1.1875rem;
  font-weight: 600;
  margin-right: 0.625rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__modal-transfer .-top-text .-bold {
    font-size: 1.125rem;
    letter-spacing: 0.03em;
    margin-right: 0.125rem;
  }
}
.exam-entry__modal-transfer .-bottom-text {
  margin-top: 2.4375rem;
  line-height: 1.8125;
}
@media screen and (max-width: 767px) {
  .exam-entry__modal-transfer .-bottom-text {
    font-size: 0.9375rem;
    line-height: 1.6666666667;
  }
}
.exam-entry__modal-transfer .-bottom-text .-red {
  margin-top: 0.625rem;
  letter-spacing: 0.12em;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .exam-entry__modal-transfer .-bottom-text .-red {
    margin-top: 0.1875rem;
    letter-spacing: 0.03em;
  }
}
.exam-entry__modal-transfer h3 {
  letter-spacing: 0.03em;
}
.exam-entry__modal-transfer-wrap {
  border: 1px solid rgba(112, 112, 112, .7);
  padding: 2rem 1.25rem 2.875rem;
  margin-top: 1.625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .exam-entry__modal-transfer-wrap {
    margin-top: 0.625rem;
    padding: 0.625rem 0.8125rem;
  }
}
.exam-entry__modal-transfer-wrap h4 {
  width: 7.9375rem;
  text-align: center;
  font-weight: 500;
  padding-bottom: 0.375rem;
  border-bottom: 1px solid rgba(112, 112, 112, .6);
  margin-inline: auto;
}
.exam-entry__modal-transfer-wrap table {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: left;
  margin-top: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__modal-transfer-wrap table {
    margin-top: 0.875rem;
  }
}
.exam-entry__modal-transfer-wrap table td,
.exam-entry__modal-transfer-wrap table th {
  padding-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__modal-transfer-wrap table th {
    display: block;
    width: 100%;
    padding-top: 0;
  }
}
.exam-entry__modal-transfer-wrap table td {
  padding-left: 1.8125rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__modal-transfer-wrap table td {
    padding-left: 0;
    display: block;
    width: 100%;
    padding-top: 0.1875rem;
    line-height: 1.3;
  }
}
@media screen and (max-width: 767px) {
  .exam-entry__modal-transfer-wrap table td span {
    font-size: 0.8125rem;
  }
}
.exam-entry__modal-transfer-wrap table td:first-child {
  width: 22.4375rem;
}
@media screen and (max-width: 767px) {
  .exam-entry__modal-transfer-wrap table tr:nth-of-type(2) th {
    padding-top: 1.1875rem;
  }
}
.exam-entry .c-form .form-button {
  margin-top: 3.8125rem;
}
@media screen and (max-width: 767px) {
  .exam-entry .c-form .form-button {
    margin-top: 1.3125rem;
  }
}

.form-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.375rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .form-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 0.5rem;
  }
}
.form-buttons .form-button {
  width: 23.125rem;
  height: 4.625rem;
  border: 1px solid #707070;
  border-radius: 100px;
  position: relative;
  display: block;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .form-buttons .form-button {
    width: 100%;
  }
}
.form-buttons .form-button::before {
  content: "";
  width: 0.9375rem;
  height: 0.6875rem;
  position: absolute;
  background-size: contain;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .form-buttons .form-button::before {
    width: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .form-buttons .form-button.-prev {
    height: 2.225rem;
  }
}
.form-buttons .form-button.-prev::before {
  left: 1.5rem;
  background-image: url("../images/common/btn-arrow-prev.svg");
}
@media screen and (max-width: 767px) {
  .form-buttons .form-button.-prev::before {
    left: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .form-buttons .form-button.-next {
    height: 3.375rem;
  }
}
.form-buttons .form-button.-next::before {
  right: 1.5rem;
  background-image: url("../images/common/arrow-black.svg");
}
@media screen and (max-width: 767px) {
  .form-buttons .form-button.-next::before {
    right: 0.875rem;
  }
}

.exam-feature {
  background-image: url("../images/exam/exam-feature-bg.png");
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .exam-feature {
    background-image: url("../images/exam/exam-feature-bg_sp.png");
  }
}
.exam-feature__inner {
  padding-top: 10.75rem;
  padding-bottom: 15.6875rem;
}
@media screen and (max-width: 767px) {
  .exam-feature__inner {
    padding-top: 4.8125rem;
    padding-bottom: 5.75rem;
  }
}
.exam-feature__wrap {
  margin-top: 4.5rem;
  margin-right: 5rem;
}
@media screen and (max-width: 767px) {
  .exam-feature__wrap {
    margin-right: 0;
    margin-top: 1.8125rem;
  }
}
.exam-feature__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.9375rem;
}
@media screen and (max-width: 767px) {
  .exam-feature__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.75rem;
  }
}
.exam-feature__item h3 {
  padding-top: 1.8125rem;
  font-size: 1.1875rem;
  line-height: 1;
  letter-spacing: 0.07em;
  font-weight: 500;
  text-align: center;
  border-top: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .exam-feature__item h3 {
    font-size: 1.0625rem;
    padding-top: 1.1875rem;
  }
}
.exam-feature__item p {
  margin-top: 1.375rem;
  line-height: 1.9375;
  letter-spacing: 0.05em;
  color: rgba(34, 31, 32, .8);
}
@media screen and (max-width: 767px) {
  .exam-feature__item p {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-top: 0.625rem;
    letter-spacing: 0.02em;
  }
}
.exam-feature__image {
  margin-top: 1.75rem;
}
@media screen and (max-width: 767px) {
  .exam-feature__image {
    margin-top: 1.0625rem;
  }
}

.exam-main {
  position: relative;
  overflow: hidden;
  margin-bottom: -12.5rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .exam-main {
    margin-bottom: -11.8125rem;
    background-image: url("../images/exam/exam-main-bg_sp.png");
    background-size: cover;
  }
}
.exam-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + 12.375rem);
  aspect-ratio: 1798/1789;
  -webkit-transform: rotate(4.5deg);
          transform: rotate(4.5deg);
  background-color: #f2eee6;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .exam-main::before {
    display: none;
  }
}
.exam-main__inner {
  position: relative;
  z-index: 4;
  padding-top: 7.0625rem;
  padding-bottom: 15.75rem;
}
@media screen and (max-width: 767px) {
  .exam-main__inner {
    padding-top: 3.75rem;
  }
}
.exam-main__inner .c-heading span {
  margin-top: 0.25rem;
}
.exam-main__wrap {
  margin-top: 3.09375rem;
  margin-right: 5rem;
}
@media screen and (max-width: 767px) {
  .exam-main__wrap {
    margin-right: 0;
    margin-top: 2.125rem;
  }
}
.exam-main__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5.375rem 2.875rem;
}
@media screen and (max-width: 767px) {
  .exam-main__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.0625rem;
  }
}
.exam-main__head {
  font-size: 1.1875rem;
  line-height: 1;
  font-weight: 500;
  padding-top: 1.625rem;
  letter-spacing: 0.05em;
  border-top: 1px solid #707070;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .exam-main__head {
    font-size: 1.0625rem;
    line-height: 1.2;
    letter-spacing: 0.07em;
    padding-top: 1.1875rem;
  }
}
.exam-main__image {
  margin-top: 1.375rem;
}
@media screen and (max-width: 767px) {
  .exam-main__image {
    margin-top: 0.875rem;
  }
  .exam-main__image img {
    aspect-ratio: 342/210;
  }
}
.exam-main__text {
  margin-top: 1.375rem;
  font-size: 0.875rem;
  line-height: 1.7857142857;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .exam-main__text {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-top: 0.8125rem;
  }
}
.exam-main__btn {
  margin-top: 1.8125rem;
}
@media screen and (max-width: 767px) {
  .exam-main__btn {
    margin-top: 0.625rem;
  }
}
.exam-main__button {
  width: 100%;
  display: block;
  margin-top: 5.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #a51717;
  position: relative;
  height: 5.8125rem;
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  .exam-main__button {
    text-align: center;
    display: block;
    border-radius: 7px;
    padding: 1.25rem 0.5rem 1.25rem 0;
    height: auto;
    margin-top: 2.4375rem;
  }
}
.exam-main__button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("../images/common/arrow.svg");
  width: 1rem;
  height: 0.6875rem;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .exam-main__button::before {
    right: 1rem;
  }
}
.exam-main__button span {
  font-size: 1.8125rem;
  line-height: 1;
  letter-spacing: 0.07em;
  font-family: Marcellus, serif;
}
@media screen and (max-width: 767px) {
  .exam-main__button span {
    font-size: 1.6875rem;
  }
}
.exam-main__button p {
  font-size: 1rem;
  letter-spacing: 0.07em;
  margin-left: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .exam-main__button p {
    font-size: 0.875rem;
    line-height: 1.4285714286;
    margin-left: 0;
    letter-spacing: 0.05em;
    margin-top: 0.3125rem;
  }
}

.exam-news {
  position: relative;
}
.exam-news__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 3.75rem;
  padding-bottom: 2.0625rem;
}
@media screen and (max-width: 767px) {
  .exam-news__inner {
    display: block;
    padding-top: 1.5625rem;
    padding-bottom: 4.90625rem;
  }
}
.exam-news__main {
  width: 52rem;
  margin-right: 4.875rem;
  margin-top: -0.375rem;
}
@media screen and (max-width: 767px) {
  .exam-news__main {
    width: 100%;
    margin-right: 0;
    margin-top: 0;
  }
}
.exam-news__main .news__items {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .exam-news__main .news__items {
    margin-top: 1.375rem;
  }
}
@media screen and (max-width: 767px) {
  .exam-news .news__btn {
    margin-top: 1.1875rem;
  }
}

.flow {
  background-image: url("../images/exam/flow.png");
  margin-bottom: -8.0625rem;
}
.flow__inner {
  padding-top: 6.25rem;
  padding-bottom: 9.125rem;
}
@media screen and (max-width: 767px) {
  .flow__inner {
    padding: 3.1875rem 1.5625rem 8.875rem;
  }
}
.flow .c-heading span {
  margin-top: 0.125rem;
}
.flow__main {
  margin-top: 4.25rem;
}
@media screen and (max-width: 767px) {
  .flow__main {
    margin-top: 1.4375rem;
  }
}
.flow__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 2.875rem;
  position: relative;
  margin-left: -0.3125rem;
}
@media screen and (max-width: 767px) {
  .flow__item {
    margin-left: 0;
    padding-bottom: 1.3125rem;
  }
}
.flow__item::before {
  content: "";
  width: 0.0625rem;
  height: calc(100% - 4.0625rem);
  position: absolute;
  top: 3.125rem;
  left: 1.125rem;
  background-color: #221f20;
}
@media screen and (max-width: 767px) {
  .flow__item::before {
    left: 0.875rem;
    top: 2.4375rem;
    height: calc(100% - 3.375rem);
  }
}
.flow__item::after {
  content: "";
  width: 1.415625rem;
  height: 0.7075rem;
  background-image: url("../images/exam/flow-label.png");
  background-size: cover;
  position: absolute;
  bottom: 0.90625rem;
  left: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .flow__item::after {
    width: 1rem;
    height: 0.5rem;
    left: 0.39375rem;
  }
}
.flow__item:last-of-type::before, .flow__item:last-of-type::after {
  display: none;
}
.flow__item .-label {
  display: block;
  width: 2.375rem;
  height: 2.375rem;
  border-radius: 100px;
  border: 1px solid #707070;
  color: #221f20;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .flow__item .-label {
    width: 1.875rem;
    height: 1.875rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: 1.0625rem;
  }
}
.flow__item .-content {
  margin-left: 1.375rem;
  font-size: 0.9375rem;
  line-height: 1.9333333333;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .flow__item .-content {
    margin-left: 0.6875rem;
  }
}
.flow__item .-content h3 {
  margin-bottom: 0.875rem;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .flow__item .-content h3 {
    font-size: 1.0625rem;
    line-height: 1.875rem;
    margin-bottom: 0.375rem;
    font-weight: 600;
  }
}
.flow__item .-content p {
  color: rgba(34, 31, 32, .8);
}
@media screen and (max-width: 767px) {
  .flow__item .-content p {
    font-size: 0.875rem;
    line-height: 1.5714285714;
    letter-spacing: 0.03em;
  }
}
.flow__item .-content p + p {
  margin-top: 1.0625rem;
}
.flow__item .-content .-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .flow__item .-content .-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.4375rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.flow__item .-content .-item span {
  display: inline-block;
  color: #ed1d23;
  border: 1px solid #ed1d23;
  font-size: 0.9375rem;
  line-height: 1.5rem;
  letter-spacing: 0.03em;
  border-radius: 4px;
  width: 9.1875rem;
  padding: 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .flow__item .-content .-item span {
    font-size: 0.875rem;
    width: 100%;
  }
}
.flow__item .-content .-item + .-item {
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .flow__item .-content .-item + .-item {
    margin-top: 0.75rem;
  }
}
.flow__item .-content .-item + p {
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .flow__item .-content .-item + p {
    margin-top: 1.125rem;
    padding-top: 0.625rem;
    border-top: 1px solid rgba(112, 112, 112, .5);
  }
}

.interviews__inner {
  padding-top: 5.6875rem;
  padding-bottom: 4.6875rem;
  margin-right: 5.0625rem;
}
@media screen and (max-width: 767px) {
  .interviews__inner {
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 3.75rem;
  }
}
.interviews__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5625rem 1.375rem;
}
@media screen and (max-width: 767px) {
  .interviews__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.0625rem;
    width: 21.375rem;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .interviews .c-interview-card__link {
    display: contents;
  }
}
.interviews .c-interview-card__btn {
  display: none;
}
@media screen and (max-width: 767px) {
  .interviews .c-interview-card__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 2.75rem;
    position: relative;
  }
  .interviews .c-interview-card__btn::before {
    content: "";
  }
}
.interviews .c-interview-card__body {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .interviews .c-interview-card__image {
    aspect-ratio: 342/228;
    overflow: hidden;
  }
}
.interviews .c-interview-card__body {
  margin-top: 0.8125rem;
}
.interviews .c-interview-card__body h3 {
  font-size: 1.125rem;
  line-height: 1.5555555556;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .interviews .c-interview-card__body h3 {
    font-size: 1.0625rem;
  }
}
.interviews .c-interview-card__body p {
  font-size: 1.0625rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .interviews .c-interview-card__body p {
    font-size: 0.9375rem;
    margin-top: 0.625rem;
  }
}
.interviews__modal {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1032;
  width: 64.375rem;
}
@media screen and (max-width: 767px) {
  .interviews__modal {
    width: 100%;
    padding: 1.75rem 1.5rem;
    height: 100vh;
    position: relative;
    margin-inline: auto;
    -webkit-transform: translate(0);
            transform: translate(0);
    top: 0;
    left: 0;
  }
}
.interviews__modal-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: rgba(34, 31, 32, .8);
  margin-top: 1.625rem;
  -webkit-transform: 0.5s all;
          transform: 0.5s all;
}
@media screen and (max-width: 767px) {
  .interviews__modal-content {
    display: block;
    margin-top: 1.375rem;
    height: calc(100% - 6.25rem);
  }
}
.interviews__modal-image {
  width: 28.6875rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .interviews__modal-image {
    width: 100%;
    aspect-ratio: 342/240;
  }
}
.interviews__modal-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.interviews__modal-body {
  padding: 4.375rem 3.125rem 2.9375rem;
  background-color: #faf3e7;
}
@media screen and (max-width: 767px) {
  .interviews__modal-body {
    padding: 1.125rem 1.4375rem 1.9375rem;
    overflow: auto;
    height: calc(100% - 15rem);
  }
}
.interviews__modal-body h3 {
  font-size: 1.1875rem;
  line-height: 1.6315789474;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .interviews__modal-body h3 {
    font-size: 1.0625rem;
  }
}
.interviews__modal-body span {
  display: block;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-top: 1.625rem;
}
@media screen and (max-width: 767px) {
  .interviews__modal-body span {
    font-size: 1rem;
    margin-top: 1.25rem;
  }
}
.interviews__modal-body p {
  margin-top: 2.0625rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(112, 112, 112, .32);
  letter-spacing: 0.05em;
  line-height: 1.8125;
  color: rgba(34, 31, 32, .8);
}
@media screen and (max-width: 767px) {
  .interviews__modal-body p {
    font-size: 0.875rem;
    line-height: 1.5714285714;
    margin-top: 1.875rem;
    padding-top: 1.0625rem;
  }
}
.interviews__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1.59375rem;
  margin-top: 1.34375rem;
}
.interviews__pagination button {
  width: 2.40625rem;
}
.interviews__pagination button img {
  width: 100%;
}

.movie__inner {
  padding-top: 3.75rem;
  padding-bottom: 3.5rem;
  margin-right: 4.5rem;
}
@media screen and (max-width: 767px) {
  .movie__inner {
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 3.8125rem;
  }
}
.movie__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.6875rem 1.9375rem;
  margin-bottom: 5.875rem;
}
@media screen and (max-width: 767px) {
  .movie__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    width: 18.75rem;
    margin-inline: auto;
    margin-bottom: 3.75rem;
  }
}
.movie__item {
  cursor: pointer;
}
.movie__item-thumb {
  width: 100%;
  aspect-ratio: 391/251;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.movie__item-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.movie__item-thumb::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .1);
  position: absolute;
  top: 0;
  left: 0;
}
.movie__item-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 3.875rem;
  height: 3.875rem;
  z-index: 10;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .movie__item-button {
    width: 2.98125rem;
    height: 2.98125rem;
  }
}
.movie__item-button img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.movie__item-title {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.625;
  margin-top: 0.875rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .movie__item-title {
    font-size: 0.90625rem;
    line-height: 1.5172413793;
    margin-top: 0.5rem;
  }
}
.movie__item-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 53.75rem;
  z-index: 100;
  text-align: right;
  z-index: 1032;
}
@media screen and (max-width: 767px) {
  .movie__item-wrap {
    width: 22.75rem;
  }
}
.movie__item-wrap .js-modal__close {
  margin-left: auto;
  width: 2.625rem;
}
.movie__item-movie {
  width: 100%;
  aspect-ratio: 860/549;
  margin-top: 1.625rem;
}
.movie__item-movie video, .movie__item-movie img {
  aspect-ratio: 860/549;
  -o-object-fit: cover;
     object-fit: cover;
}
.movie__item-movie iframe {
  width: 100%;
  height: 100%;
}

.page-exam-about .interview__inner {
  padding-top: 5rem;
  padding-bottom: 4.5rem;
}
@media screen and (max-width: 767px) {
  .page-exam-about .interview__inner {
    padding-top: 1.875rem;
    padding-bottom: 3.5rem;
  }
}
@media screen and (max-width: 767px) {
  .page-exam-about .interview__wrap {
    margin-top: 1.75rem;
  }
}

@media screen and (max-width: 767px) {
  .page-exam-entry .footer {
    margin-top: -3.375rem;
  }
}
@media screen and (max-width: 767px) {
  .page-exam-entry .footer__inner {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .page-exam-entry .footer__copy {
    padding-bottom: 1.3125rem;
  }
}

.page-exam-thanks .exam-entry__inner {
  padding-bottom: 8.9375rem;
}
@media screen and (max-width: 767px) {
  .page-exam-thanks .exam-entry__inner {
    padding-bottom: 6.875rem;
  }
}
@media screen and (max-width: 767px) {
  .page-exam-thanks .c-heading h2 {
    font-size: 1.1875rem;
  }
}

.page-exam .contents {
  margin-bottom: -8.4375rem;
}
@media screen and (max-width: 767px) {
  .page-exam .contents {
    margin-bottom: -3.75rem;
  }
}

.page-faq__inner {
  padding-top: 4rem;
  padding-bottom: 6rem;
  margin-right: 5.125rem;
}
@media screen and (max-width: 767px) {
  .page-faq__inner {
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 3.875rem;
    margin-top: 0.5rem;
  }
}
.page-faq__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .page-faq__links {
    display: block;
  }
}
.page-faq__link {
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .page-faq__link {
    font-size: 0.84375rem;
    position: relative;
    width: 100%;
    padding: 1rem 0 1rem 0.1875rem;
    display: block;
  }
  .page-faq__link::before {
    content: "";
    width: 0.8125rem;
    height: 0.4375rem;
    background-image: url("../images/faq/faq-link.svg");
    position: absolute;
    top: 50%;
    right: 0.625rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.page-faq__link:first-of-type {
  padding-right: 2.125rem;
}
@media screen and (max-width: 767px) {
  .page-faq__link:first-of-type {
    border-bottom: 1px solid rgba(112, 112, 112, .4);
    padding: 1rem 0 1rem 0.1875rem;
  }
}
.page-faq__link:not(:first-of-type) {
  padding: 0 2.1875rem 0 2.125rem;
  border-left: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .page-faq__link:not(:first-of-type) {
    border-left: none;
    border-bottom: 1px solid rgba(112, 112, 112, .4);
    padding: 1rem 0 1rem 0.1875rem;
  }
}
.page-faq__link:last-of-type {
  padding-right: 0;
}
.page-faq__main {
  margin-top: 6.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8rem;
}
@media screen and (max-width: 767px) {
  .page-faq__main {
    margin-top: 4.3125rem;
    gap: 3.9375rem;
  }
}
.page-faq__items {
  position: relative;
  margin-top: 1.875rem;
  border-bottom: 1px solid rgba(112, 112, 112, .4);
}
@media screen and (max-width: 767px) {
  .page-faq__items {
    margin-top: 1.25rem;
  }
}
.page-faq__item {
  border-top: 1px solid rgba(112, 112, 112, .4);
  padding: 1.625rem 0 1.4375rem;
  color: rgba(34, 31, 32, .8);
}
@media screen and (max-width: 767px) {
  .page-faq__item {
    padding: 0.875rem 0 0.8125rem;
  }
}
.page-faq__title {
  font-weight: 500;
  font-size: 1.3125rem;
  letter-spacing: 0.06em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .page-faq__title {
    font-size: 1.0625rem;
    letter-spacing: 0.04em;
  }
}
.page-faq__item-button {
  width: 1.125rem;
  height: 1.125rem;
  position: absolute;
  top: 1.625rem;
  right: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .page-faq__item-button {
    top: 1.375rem;
    right: -0.25rem;
  }
}
.page-faq__item-button span {
  width: 1.125rem;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #221f20;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.page-faq__item-button span:nth-child(2) {
  -webkit-transform: rotate(90deg) translate(-50%, calc(-50% + 0.5px));
          transform: rotate(90deg) translate(-50%, calc(-50% + 0.5px));
}
.page-faq__item-title {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  position: relative;
  padding: 0 0.875rem 0 4.375rem;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .page-faq__item-title {
    font-size: 0.9375rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
    padding-right: 1.875rem;
    padding-left: 2.375rem;
    position: relative;
  }
}
.page-faq__item-title span {
  display: block;
  font-family: Marcellus, serif;
  font-size: 1.9375rem;
  line-height: 1;
  letter-spacing: 0.04em;
  color: rgba(34, 31, 32, .33);
  position: absolute;
  top: -0.3125rem;
  left: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .page-faq__item-title span {
    font-size: 1.4375rem;
    position: absolute;
    top: -0.125rem;
    left: 0.1875rem;
  }
}
.page-faq__item-title.is-active .page-faq__item-button span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.page-faq__item-content {
  display: none;
}
.page-faq__item-content .-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 1.25rem;
  padding-bottom: 0.3125rem;
  gap: 1.6875rem;
  padding: 1.5rem 0.9375rem 0.0625rem 4.375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-faq__item-content .-flex {
    padding: 0.8125rem 0 0 2.375rem;
  }
}
.page-faq__item-content p {
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  line-height: 2.0666666667;
}
@media screen and (max-width: 767px) {
  .page-faq__item-content p {
    line-height: 1.4666666667;
    letter-spacing: 0.05em;
  }
}
.page-faq__item-content a {
  border-bottom: 1px solid #221F20;
}
.page-faq__item-content a.pc-link-none {
  pointer-events: none;
  border: none;
}
@media screen and (max-width: 767px) {
  .page-faq__item-content a.pc-link-none {
    pointer-events: auto;
    border-bottom: 1px solid #221F20;
  }
}
.page-faq__item-content span {
  font-family: Marcellus, serif;
  font-size: 1.9375rem;
  line-height: 1;
  letter-spacing: 0.04em;
  color: rgba(34, 31, 32, .33);
  position: absolute;
  top: 1.4375rem;
  left: 1.1875rem;
}
@media screen and (max-width: 767px) {
  .page-faq__item-content span {
    font-size: 1.4375rem;
    position: absolute;
    top: 0.75rem;
    left: 0.375rem;
  }
}

.about {
  position: relative;
}
.about::before {
  content: "";
  position: absolute;
  bottom: 6.8125rem;
  left: 0;
  width: 100%;
  height: 8.4375rem;
  background-image: url("../images/front/about-line.png");
  background-size: contain;
  background-repeat: repeat;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .about::before {
    background-image: url("../images/front/about-line_sp.png");
    height: 2.125rem;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
.about__inner {
  padding-top: 5.5rem;
  padding-bottom: 4.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .about__inner {
    display: block;
    padding-top: 3rem;
  }
}
.about__left {
  margin-top: 7.9375rem;
}
@media screen and (max-width: 767px) {
  .about__left {
    margin-top: 0;
  }
}
.about__text {
  margin-top: 5.1875rem;
  max-width: 33.0625rem;
  line-height: 1.9375;
  letter-spacing: 0.05em;
  color: rgba(34, 31, 32, .8);
}
@media screen and (max-width: 767px) {
  .about__text {
    font-size: 0.9375rem;
    line-height: 1.9333333333;
    letter-spacing: 0.03em;
    margin-top: 0.9375rem;
  }
}
.about__btn {
  margin-top: 1.625rem;
  margin-left: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .about__btn {
    margin-top: 1.1875rem;
    margin-left: 0;
  }
}
.about__right {
  width: 36.25rem;
  margin-right: 0.625rem;
}
@media screen and (max-width: 767px) {
  .about__right {
    width: 100%;
    margin-top: 2.625rem;
    margin-right: 0;
  }
}
.about__right .-image01 {
  width: 24.25rem;
}
@media screen and (max-width: 767px) {
  .about__right .-image01 {
    width: 13.75rem;
  }
  .about__right .-image01 img {
    aspect-ratio: 220/162;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.about__right .-image02 {
  width: 24.625rem;
  margin-top: 3.6875rem;
  margin-left: auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .about__right .-image02 {
    width: 15.1875rem;
    margin-top: 0.9375rem;
    aspect-ratio: 243/131;
    margin-right: -1.375rem;
  }
}

.book__inner {
  padding-top: 20.125rem;
  padding-bottom: 5.3125rem;
}
@media screen and (max-width: 767px) {
  .book__inner {
    padding-top: 6.125rem;
    padding-bottom: 2.5rem;
  }
}
.book__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7.5625rem;
  max-width: 65.375rem;
  margin-inline: auto;
  padding-right: 4.5rem;
}
@media screen and (max-width: 767px) {
  .book__wrap {
    display: block;
    padding-right: 0;
  }
}
.book__image {
  width: 20.75rem;
}
@media screen and (max-width: 767px) {
  .book__image {
    width: 9.875rem;
    margin: 1.5rem auto 0;
  }
}
.book__main {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .book__main {
    margin-top: 0;
  }
}
.book__heading span {
  letter-spacing: 0.05em;
}
.book__text {
  width: 32.6875rem;
  margin-top: 5.625rem;
  letter-spacing: 0.05em;
  line-height: 1.9375;
}
@media screen and (max-width: 767px) {
  .book__text {
    width: 100%;
    margin-top: 1rem;
    font-size: 0.9375rem;
    line-height: 1.8;
  }
}
.book__btn {
  margin-top: 2.4375rem;
  margin-left: -0.3125rem;
}
@media screen and (max-width: 767px) {
  .book__btn {
    margin-top: 0.8125rem;
    margin-left: 0;
  }
}

.details__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 7.5625rem;
  padding-bottom: 7.25rem;
}
@media screen and (max-width: 767px) {
  .details__inner {
    padding-top: 3.375rem;
    padding-bottom: 2.625rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 0;
  }
}
.details__images {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.3125rem;
  width: 43.5rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-transform: translateX(4.3125rem);
          transform: translateX(4.3125rem);
}
@media screen and (max-width: 767px) {
  .details__images {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    width: calc(100vw - 1.375rem);
    margin-top: 1.25rem;
    gap: 0.1875rem;
  }
}
.details__main {
  width: 38.5rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .details__main {
    width: 100%;
    margin-top: 0.8125rem;
  }
}
.details__head {
  margin-top: 4.21875rem;
  padding-top: 1.84375rem;
  font-size: 1.3125rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .details__head {
    margin-top: 10px;
    font-size: 1.1875rem;
    line-height: 1.5789473684;
    letter-spacing: 0.03em;
    padding-top: 0;
  }
}
.details__text {
  margin-top: 1.75rem;
  line-height: 1.8125;
  letter-spacing: 0.05em;
  color: rgba(34, 31, 32, .8);
}
@media screen and (max-width: 767px) {
  .details__text {
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-top: 0.625rem;
  }
}
.details__btn {
  margin-top: 1.8125rem;
}
@media screen and (max-width: 767px) {
  .details__btn {
    margin-top: 1.25rem;
  }
}

.exam {
  background-image: url("../images/front/exam-bg.png");
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .exam {
    background-image: url("../images/front/exam-bg_sp.png");
    background-repeat: no-repeat;
    margin-top: 5.9375rem;
  }
}
.exam__inner {
  padding-top: 0.875rem;
  padding-bottom: 12.6875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.625rem;
  -webkit-transform: translateX(-3.8125rem);
          transform: translateX(-3.8125rem);
}
@media screen and (max-width: 767px) {
  .exam__inner {
    display: block;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    padding-top: 2.25rem;
    padding-bottom: 0;
    -webkit-transform: translateY(-5.9375rem);
            transform: translateY(-5.9375rem);
  }
}
.exam__images {
  width: 42.375rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .exam__images {
    width: 100%;
    margin-top: 0.9375rem;
    margin-left: 0.125rem;
    gap: 0.125rem;
  }
}
@media screen and (max-width: 767px) {
  .exam__images img {
    aspect-ratio: 344/127;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.exam__main {
  margin-top: 12.5rem;
}
@media screen and (max-width: 767px) {
  .exam__main {
    margin-top: 1.375rem;
  }
}
.exam__head {
  font-size: 1.3125rem;
  line-height: 1.6666666667;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-top: 6.875rem;
}
@media screen and (max-width: 767px) {
  .exam__head {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.03em;
    margin-top: 0;
  }
}
.exam__text {
  margin-top: 1.125rem;
  max-width: 33.75rem;
  line-height: 1.9375;
  letter-spacing: 0.05em;
  color: rgba(34, 31, 32, .8);
}
@media screen and (max-width: 767px) {
  .exam__text {
    font-size: 0.9375rem;
    line-height: 1.8;
    letter-spacing: 0.03em;
    margin-top: 0.8125rem;
  }
}
.exam__btn {
  margin-top: 2.375rem;
}
@media screen and (max-width: 767px) {
  .exam__btn {
    margin-top: 0.875rem;
  }
}

.front-page {
  background-color: #faf3e7;
}
@media screen and (max-width: 767px) {
  .front-page .footer {
    margin-top: -2.1875rem;
  }
}
@media screen and (max-width: 767px) {
  .front-page .footer__inner {
    padding-top: 5.5625rem;
  }
}
.front-page .contact__inner {
  padding: 15.5625rem 9.0625rem 13.6875rem;
}
@media screen and (max-width: 767px) {
  .front-page .contact__inner {
    padding: 4.8125rem 1.375rem 4.5625rem;
  }
}

.interview {
  overflow: hidden;
}
.interview__inner {
  padding-top: 9.8125rem;
  padding-bottom: 16.6875rem;
}
@media screen and (max-width: 767px) {
  .interview__inner {
    padding-top: 2.0625rem;
    padding-bottom: 6.125rem;
  }
}
.interview__slider {
  margin-top: 2.5rem;
  position: relative;
  width: 100vw;
  overflow: hidden;
  margin-right: calc(50vw - 50%);
}
@media screen and (max-width: 767px) {
  .interview__slider {
    margin-top: 1.375rem;
  }
}
.interview__slider-item {
  width: 21.5rem;
  margin-right: 1.09375rem;
}
@media screen and (max-width: 767px) {
  .interview__slider-item {
    width: 13.96875rem;
    margin-right: 1.1875rem;
  }
}
.interview__slider-next {
  position: absolute;
  top: 11.25rem;
  left: 77.125rem;
  width: 2.625rem;
}
@media screen and (max-width: 767px) {
  .interview__slider-next {
    left: 19.8125rem;
    top: 7rem;
    width: 1.8125rem;
  }
}
.interview__slider-next img {
  width: inherit;
}
.interview__btn {
  margin-top: 3.8125rem;
  text-align: right;
  margin-right: 4.3125rem;
}
@media screen and (max-width: 767px) {
  .interview__btn {
    text-align: left;
    margin-top: 1.75rem;
    margin-right: 0;
  }
}

.mv {
  position: relative;
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 767px) {
  .mv {
    height: 43.75rem;
  }
}
.mv__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.mv__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv__image::before {
  content: "";
  background-color: rgba(0, 0, 0, .33);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mv__inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 3.25rem;
  max-width: 93.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .mv__inner {
    padding: 0;
  }
}
.mv__catch {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .mv__catch {
    margin-left: 0.125rem;
    margin-top: 0rem;
    padding: 0 1.375rem;
    left: 0.25rem;
    top: calc(50% - 5rem);
  }
}
.mv__catch-en {
  font-size: 2.0625rem;
  line-height: 1.3333333333;
  letter-spacing: 0.07em;
  font-family: Marcellus, serif;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .mv__catch-en {
    font-size: 1.75rem;
    line-height: 1.5;
    letter-spacing: 0.052em;
  }
}
.mv__catch-ja {
  font-size: 1.0625rem;
  line-height: 1.2941176471;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-top: 1.375rem;
}
@media screen and (max-width: 767px) {
  .mv__catch-ja {
    font-size: 1.0625rem;
    line-height: 1.5882352941;
    margin-top: 1.5rem;
  }
}
.mv__topics {
  position: absolute;
  bottom: 1.125rem;
  left: 0;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .mv__topics {
    bottom: 0;
    padding: 1.1875rem 1.4375rem 1.125rem;
    background-color: rgba(0, 0, 0, .4);
  }
}
.mv__topics-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .mv__topics-item {
    display: block;
  }
}
.mv__topics .-label {
  font-size: 0.96875rem;
  line-height: 1.7419354839;
  border: 1px solid #fff;
  padding: 0 0.625rem;
  letter-spacing: 0.08em;
  font-family: Marcellus, serif;
}
@media screen and (max-width: 767px) {
  .mv__topics .-label {
    padding: 0 0.5rem;
  }
}
.mv__topics .-time {
  font-size: 0.90625rem;
  margin-left: 1.125rem;
}
@media screen and (max-width: 767px) {
  .mv__topics .-time {
    margin-left: 0.875rem;
  }
}
.mv__topics p {
  font-size: 0.90625rem;
  margin-left: 1rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv__topics p {
    line-height: 1.5172413793;
    margin-left: 0;
    margin-top: 0.4375rem;
  }
}
.mv__topics .-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mv__icon {
  width: 1.125rem;
}
@media screen and (max-width: 767px) {
  .mv__icon {
    width: 1rem;
  }
}
.mv__icon img {
  width: 100%;
  height: auto;
}

.news {
  background-color: #fffdf8;
  background-size: cover;
  position: relative;
}
.news::before {
  content: "";
  position: absolute;
  top: -12.75rem;
  left: 0;
  width: 100%;
  height: 12.75rem;
  background-image: url("../images/front/news-before.png");
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .news::before {
    background-image: url("../images/front/news-before_sp.png");
    height: 3.375rem;
    top: -3.375rem;
  }
}
.news::after {
  content: "";
  position: absolute;
  bottom: -14.25rem;
  left: 0;
  background-image: url("../images/front/news-after.png");
  background-size: cover;
  width: 100%;
  height: 14.25rem;
}
@media screen and (max-width: 767px) {
  .news::after {
    background-image: url("../images/front/news-after_sp.png");
    height: 4.625rem;
    bottom: -4.625rem;
  }
}
.news__inner {
  min-height: 15.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 2.125rem;
}
@media screen and (max-width: 767px) {
  .news__inner {
    display: block;
    padding-top: 2.25rem;
    padding-bottom: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .news__heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.news__main {
  width: 56.875rem;
  margin-right: 5.1875rem;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .news__main {
    width: 100%;
  }
}
.news__btn {
  text-align: right;
  margin-right: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .news__btn {
    margin-right: 0;
  }
}
.news__btn a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .news__btn a {
    font-size: 0.8125rem;
  }
}
.news__btn .-arrow {
  width: 1.75rem;
}
@media screen and (max-width: 767px) {
  .news__btn .-arrow {
    width: 1.25rem;
  }
}
.news__btn .-arrow img {
  width: inherit;
}
.news__items {
  border-top: 1px solid rgba(112, 112, 112, .4);
  margin-top: 2.0625rem;
}
@media screen and (max-width: 767px) {
  .news__items {
    margin-top: 1.8125rem;
  }
}
.news__item {
  border-bottom: 1px solid rgba(112, 112, 112, .4);
  color: rgba(34, 31, 32, .8);
}
.news__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 1.3125rem 4.6875rem 1.3125rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .news__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0.5625rem 0 0.5625rem;
  }
}
.news__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .news__wrapper {
    display: block;
  }
}
.news__meta {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.news__time {
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .news__time {
    font-size: 0.875rem;
    letter-spacing: 0;
  }
}
.news__cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 2px;
  font-size: 0.84375rem;
  line-height: 1.4375rem;
  min-width: 6.5625rem;
  min-height: 1.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 0.875rem;
  letter-spacing: 0.03em;
  padding: 0 0.3125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border: 1px solid #B4B4B4;
}
@media screen and (max-width: 767px) {
  .news__cat {
    min-width: 5.96875rem;
    min-height: 1.375rem;
    line-height: 1.375rem;
    margin-left: 0.4375rem;
    font-size: 0.8125rem;
  }
}
.news__title {
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-left: 1.125rem;
  width: 37.625rem;
}
@media screen and (max-width: 767px) {
  .news__title {
    margin-left: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-top: 0.25rem;
    width: calc(100% - 1.25rem);
  }
}
.news__member {
  border: 1px solid #ed1d23;
  color: #ed1d23;
  border-radius: 2px;
  min-width: 5.25rem;
  min-height: 1.5rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.3125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.78125rem;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-left: 0.875rem;
  padding: 0 0.3125rem;
}
@media screen and (max-width: 767px) {
  .news__member {
    min-width: 5.0625rem;
    min-height: 1.5rem;
    line-height: 1.375rem;
    margin-left: 0.25rem;
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .news__member.u-desktop {
    display: none;
  }
}
.news__member.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .news__member.u-mobile {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
.news__member span {
  width: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .news__member span {
    width: 0.5625rem;
  }
}
.news__member span img {
  width: inherit;
}
.news__member.-right {
  width: 6.8rem;
  margin-left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .news__member.-right {
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .news__member.u-desktop {
    display: none;
  }
}
.news__icon {
  position: absolute;
  right: 0.625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.1875rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .news__icon {
    width: 0.8125rem;
    right: 0;
    margin-left: 1.25rem;
    display: block;
  }
}
.news__icon.-link {
  width: 1rem;
}
@media screen and (max-width: 767px) {
  .news__icon.-link {
    width: 0.8125rem;
  }
}
.news__icon.-member {
  width: 1.375rem;
}
.news__icon.-member img {
  width: 0.6875rem;
  margin-inline: auto;
}
.news__icon.-member p {
  font-size: 0.6875rem;
  line-height: 1.0909090909;
  color: #ed1d23;
}

.video {
  width: 100%;
  overflow: hidden;
  background-image: url("../images/front/video-bg.png");
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .video {
    background-image: url("../images/front/video-bg_sp.png");
  }
}
.video__inner {
  padding-top: 10.4375rem;
  padding-bottom: 11rem;
}
@media screen and (max-width: 767px) {
  .video__inner {
    padding-top: 5.0625rem;
    padding-bottom: 3.875rem;
  }
}
.video__heading {
  text-align: right;
  padding-right: 4.75rem;
}
@media screen and (max-width: 767px) {
  .video__heading {
    text-align: left;
    margin-right: 0;
  }
}
.video__heading h2 {
  letter-spacing: 0.05em;
}
.video__wrap {
  position: relative;
}
.video__slider {
  overflow: hidden;
  width: 100vw;
  margin-right: calc(50vw - 50%);
  position: relative;
  margin-top: 3.875rem;
}
@media screen and (max-width: 767px) {
  .video__slider {
    margin-top: 1.5625rem;
  }
}
.video__slider-item {
  width: 25.3125rem;
  margin-right: 1.9375rem;
}
@media screen and (max-width: 767px) {
  .video__slider-item {
    width: 18.0625rem;
    margin-right: 1.375rem;
  }
}
.video__slider-next {
  position: absolute;
  top: 8rem;
  left: 75rem;
  width: 2.625rem;
  z-index: 80;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .video__slider-next {
    left: 19.75rem;
    top: 5.75rem;
    width: 1.8125rem;
  }
}
.video__slider-next img {
  width: inherit;
}
.video__btn {
  margin-top: 1.9375rem;
  margin-right: 4.75rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .video__btn {
    text-align: left;
    margin-top: 1.5rem;
    margin-right: 0;
  }
}

.page-member .-grey {
  color: rgba(34, 31, 32, .8);
}
.page-member__inner {
  margin-top: -6rem;
}
@media screen and (max-width: 767px) {
  .page-member__inner {
    margin-top: 1.375rem;
  }
}
.page-member__about {
  margin-top: 2.3125rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .page-member__about {
    margin-top: 0;
    padding-bottom: 2.3125rem;
  }
}
.page-member__about .c-heading h2 {
  font-size: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .page-member__about .c-heading h2 {
    letter-spacing: 0.08em;
    font-size: 1.1875rem;
  }
}
.page-member__about .c-heading span {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .page-member__about .c-heading span {
    margin-top: 0.3125rem;
  }
}
.page-member__about-main {
  margin-top: 2.1875rem;
  margin-right: 5rem;
}
@media screen and (max-width: 767px) {
  .page-member__about-main {
    margin-right: 0;
  }
}
.page-member__about-main table {
  border-top: 1px solid rgba(112, 112, 112, .5);
  border-collapse: collapse;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  line-height: 1.7333333333;
}
@media screen and (max-width: 767px) {
  .page-member__about-main table {
    display: block;
    line-height: 1.4666666667;
  }
}
.page-member__about-main table th,
.page-member__about-main table td {
  padding: 0.9375rem 0;
  border-bottom: 1px solid rgba(112, 112, 112, .5);
}
@media screen and (max-width: 767px) {
  .page-member__about-main table th,
  .page-member__about-main table td {
    padding: 0.6875rem 0;
  }
}
.page-member__about-main table th {
  width: 9.5625rem;
  text-align: left;
  vertical-align: top;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .page-member__about-main table th {
    width: 100%;
    display: block;
    padding: 0.8125rem 0;
    font-weight: 600;
  }
}
@media screen and (max-width: 767px) {
  .page-member__about-main table td {
    display: block;
    width: 100%;
    padding: 0.9375rem 0 1.125rem;
  }
}
.page-member__about-main table td a {
  border-bottom: 1px solid #707070;
  position: relative;
  padding-right: 1.625rem;
  margin-top: 1.375rem;
  letter-spacing: 0.03em;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .page-member__about-main table td a {
    margin-top: 0.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .page-member__about-main table td a.u-desktop {
    display: none;
  }
}
.page-member__about-main table td a.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .page-member__about-main table td a.u-mobile {
    display: block;
  }
}
.page-member__about-main table td a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  background-image: url("../images/common/btn-arrow.svg");
  width: 1rem;
  height: 0.6875rem;
  background-size: cover;
  -webkit-transform: translateY(calc(-50% - 0.0625rem));
          transform: translateY(calc(-50% - 0.0625rem));
}
.page-member__about-main table td .-item + .-item {
  margin-top: 1.125rem;
}
@media screen and (max-width: 767px) {
  .page-member__about-main table td .-item + .-item {
    margin-top: 1.625rem;
  }
}
.page-member__about-main table .-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .page-member__about-main table .-flex {
    display: block;
  }
}
.page-member__about-main table .-map {
  width: 39.625rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .page-member__about-main table .-map {
    width: 100%;
    margin-top: 0.875rem;
  }
}
.page-member__about-main table .-map iframe,
.page-member__about-main table .-map img {
  width: 100%;
  aspect-ratio: 634/341;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .page-member__about-main table .-map iframe,
  .page-member__about-main table .-map img {
    aspect-ratio: 342/225;
  }
}
.page-member__about-main table .-business {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.625rem;
  margin-top: 1.6875rem;
  margin-bottom: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .page-member__about-main table .-business {
    width: 15.6875rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.5rem;
    margin-inline: auto;
    margin-top: 0.8125rem;
  }
}
.page-member__about-main table .-business li {
  border: 1px solid #c3c3c3;
  border-radius: 12px;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 7.625rem;
}
@media screen and (max-width: 767px) {
  .page-member__about-main table .-business li {
    height: 5.625rem;
  }
}
.page-member__introduction {
  background-image: url("../images/member/member-bg.png");
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  z-index: 1;
  position: relative;
  padding-top: 6.75rem;
}
@media screen and (max-width: 767px) {
  .page-member__introduction {
    background-image: url("../images/member/member-bg_sp.png");
    padding-top: 3.6875rem;
  }
}
.page-member__introduction .c-heading h2 {
  font-size: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .page-member__introduction .c-heading h2 {
    letter-spacing: 0.05em;
    font-size: 1.1875rem;
  }
}
.page-member__introduction .c-heading span {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .page-member__introduction .c-heading span {
    margin-top: 0.3125rem;
  }
}
.page-member__introduction-inner {
  margin-right: 5.875rem;
  padding-bottom: 11.125rem;
  margin-bottom: -7.5rem;
}
@media screen and (max-width: 767px) {
  .page-member__introduction-inner {
    margin-right: 0;
    padding-bottom: 10.4375rem;
  }
}
.page-member__introduction-text {
  margin-top: 2.8125rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.9375;
  color: rgba(34, 31, 32, .8);
}
@media screen and (max-width: 767px) {
  .page-member__introduction-text {
    margin-top: 1.4375rem;
    font-size: 0.9375rem;
    line-height: 1.4666666667;
  }
}
.page-member__introduction-main {
  margin-top: 3.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6.09375rem;
}
@media screen and (max-width: 767px) {
  .page-member__introduction-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.6875rem;
    margin-top: 0.875rem;
  }
}
.page-member__introduction-main .-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.25rem 1.5625rem;
  border: 1px solid #c3c3c3;
  border-radius: 12px;
  gap: 1.75rem;
  width: 31.6875rem;
  height: 7.8125rem;
}
@media screen and (max-width: 767px) {
  .page-member__introduction-main .-item {
    width: 19rem;
    gap: 0.8125rem;
    padding: 0.9375rem 0.5rem;
    height: 5.1875rem;
  }
}
.page-member__introduction-main .-item .-image {
  width: 5.625rem;
}
@media screen and (max-width: 767px) {
  .page-member__introduction-main .-item .-image {
    width: 2.8125rem;
  }
}
.page-member__introduction-main .-item .-body {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .page-member__introduction-main .-item .-body {
    margin-top: 0;
  }
}
.page-member__introduction-main .-item h3 {
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .page-member__introduction-main .-item h3 {
    font-size: 0.9375rem;
  }
}
.page-member__introduction-main .-item p {
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: rgba(34, 31, 32, .5);
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .page-member__introduction-main .-item p {
    font-size: 0.6875rem;
  }
}
.page-member__introduction-main .-item a {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  padding-right: 1.8rem;
  display: block;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .page-member__introduction-main .-item a {
    margin-top: 0.625rem;
    padding-right: 1rem;
  }
}
.page-member__introduction-main .-item a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("../images/common/btn-arrow.svg");
  width: 1rem;
  height: 0.6875rem;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .page-member__introduction-main .-item a::before {
    width: 0.6875rem;
    height: 0.4375rem;
  }
}
.page-member__introduction-main .-item + .-item {
  margin-top: 2.75rem;
}
@media screen and (max-width: 767px) {
  .page-member__introduction-main .-item + .-item {
    margin-top: 0.625rem;
  }
}
.page-member__introduction-main .-right {
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-member__introduction-main .-right {
    margin-left: auto;
  }
}
.page-member__introduction-main .-right::before {
  content: "";
  top: 50%;
  left: -2.5rem;
  width: 2.5rem;
  height: 10.6875rem;
  border-bottom: 1px solid #b4b4b4;
  border-left: 1px solid #b4b4b4;
  border-top: 1px solid #b4b4b4;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
}
@media screen and (max-width: 767px) {
  .page-member__introduction-main .-right::before {
    width: 0.875rem;
    height: 5.625rem;
    left: -0.875rem;
  }
}
.page-member__introduction-main .-right .-logo2 {
  width: 5.625rem;
}
@media screen and (max-width: 767px) {
  .page-member__introduction-main .-right .-logo2 {
    width: 2.8125rem;
    margin-top: 0.3125rem;
  }
}
.page-member__introduction-main .-right .-logo3 {
  width: 5.625rem;
}
@media screen and (max-width: 767px) {
  .page-member__introduction-main .-right .-logo3 {
    width: 2.8125rem;
    margin-top: 0.625rem;
  }
}
.page-member__introduction-main .-left {
  width: 27.25rem;
  position: relative;
  margin-top: -0.4375rem;
}
@media screen and (max-width: 767px) {
  .page-member__introduction-main .-left {
    margin-top: 0;
    width: 100%;
  }
}
.page-member__introduction-main .-left::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -3.625rem;
  width: 3.625rem;
  height: 0.0625rem;
  background-color: #b4b4b4;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .page-member__introduction-main .-left::before {
    top: auto;
    width: 0.75rem;
    height: 6.25rem;
    right: auto;
    left: 0.9375rem;
    bottom: -6.25rem;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    background-color: transparent;
    border-left: 1px solid #b4b4b4;
    border-bottom: 1px solid #b4b4b4;
  }
}
.page-member__introduction-main .-left .-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.40625rem;
  width: 27.25rem;
  height: 6.9375rem;
}
@media screen and (max-width: 767px) {
  .page-member__introduction-main .-left .-item {
    width: 100%;
    height: 4.4375rem;
    gap: 0.9375rem;
    padding: 0.8125rem 0.8125rem 0.8125rem;
  }
}
.page-member__introduction-main .-left .-item .-image {
  width: 4.125rem;
}
@media screen and (max-width: 767px) {
  .page-member__introduction-main .-left .-item .-image {
    width: 2.125rem;
  }
}
.page-member__introduction-main .-left p {
  margin-top: 0.28125rem;
}

.login {
  margin-right: 4.8125rem;
}
@media screen and (max-width: 767px) {
  .login {
    margin-right: 0;
  }
}
.login__inner {
  width: 100%;
  max-width: 62.5rem;
  padding: 5rem 3.125rem 4rem;
}
@media screen and (max-width: 767px) {
  .login__inner {
    padding: 0.625rem 1.5rem 4.0625rem;
  }
}
.login__text {
  font-size: 0.9375rem;
  line-height: 1.8666666667;
  letter-spacing: 0.05em;
  color: rgba(34, 31, 32, .8);
}
@media screen and (max-width: 767px) {
  .login__text {
    font-size: 0.875rem;
    line-height: 1.6428571429;
  }
}
.login__form {
  margin-top: 1.875rem;
  font-size: 0.9375rem;
  line-height: 1.8666666667;
  letter-spacing: 0.05em;
  border-top: 1px solid rgba(112, 112, 112, .5);
}
@media screen and (max-width: 767px) {
  .login__form {
    border-top: none;
  }
}
.login__item {
  padding: 1.75rem 4.5rem 1.5625rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid rgba(112, 112, 112, .5);
}
@media screen and (max-width: 767px) {
  .login__item {
    padding: 0;
    display: block;
    border: none;
  }
}
@media screen and (max-width: 767px) {
  .login__item:not(:first-child) {
    margin-top: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(112, 112, 112, .5);
  }
}
@media screen and (max-width: 767px) {
  .login__item label {
    display: block;
    padding: 0.5625rem 0 0.4375rem;
    border-bottom: 1px solid rgba(112, 112, 112, .5);
    border-top: 1px solid rgba(112, 112, 112, .5);
    margin-bottom: 0.8125rem;
  }
}
.login__item input {
  width: 41.4375rem;
  height: 3.25rem;
  padding: 0 0.9375rem;
  margin-left: auto;
  border: none;
}
@media screen and (max-width: 767px) {
  .login__item input {
    width: 100%;
  }
}
.login__button {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 25.0625rem;
  height: 4.625rem;
  border-radius: 100px;
  font-size: 1.0625rem;
  margin: 3.125rem auto 0;
  display: block;
}
@media screen and (max-width: 767px) {
  .login__button {
    width: 100%;
    margin-top: 1.375rem;
    height: 3.375rem;
  }
}

.news-post__inner {
  padding-top: 2.75rem;
  padding-bottom: 6.5625rem;
  margin-right: 5.125rem;
}
@media screen and (max-width: 767px) {
  .news-post__inner {
    margin-right: 0;
    padding-top: 1.3125rem;
    padding-bottom: 3.375rem;
  }
}
.news-post__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .news-post__wrap {
    display: block;
  }
}
.news-post__main {
  width: 57rem;
}
@media screen and (max-width: 767px) {
  .news-post__main {
    width: 100%;
  }
}
.news-post__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgba(34, 31, 32, .8);
  gap: 0.875rem;
}
@media screen and (max-width: 767px) {
  .news-post__meta {
    margin-bottom: 0.75rem;
  }
}
.news-post__time {
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .news-post__time {
    font-size: 0.8125rem;
  }
}
.news-post__cat {
  min-width: 5.25rem;
  padding: 0.3125rem 0.3125rem;
  font-size: 0.78125rem;
  letter-spacing: 0.02em;
  line-height: 1;
  border-radius: 2px;
  text-align: center;
  border: 1px solid #ed1d23;
  color: #ed1d23;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgba(34, 31, 32, .8);
  border: 1px solid #B4B4B4;
  gap: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .news-post__cat {
    font-size: 0.8125rem;
    min-width: 5.96875rem;
  }
}
.news-post__cat.-member {
  border: 1px solid #ed1d23;
  color: #ed1d23;
}
.news-post__cat img {
  width: 0.6875rem;
}
.news-post__thumb {
  width: 100%;
  margin-top: 1.75rem;
  margin-bottom: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .news-post__thumb {
    margin-bottom: 0.8125rem;
    margin-top: 0.8125rem;
  }
}
.news-post__content {
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .news-post__content {
    padding-bottom: 1.6875rem;
  }
}
.news-post__content .-member {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #ed1d23;
  border-radius: 2px;
  color: #ed1d23;
  font-size: 0.78125rem;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.375rem;
  min-width: 6.5625rem;
  padding: 0.25rem 0.3125rem;
}
@media screen and (max-width: 767px) {
  .news-post__content .-member {
    position: relative;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    font-size: 0.8125rem;
  }
}
.news-post__content .-member.u-desktop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .news-post__content .-member.u-desktop {
    display: none;
  }
}
.news-post__content .-member.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .news-post__content .-member.u-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.news-post__content .-member span {
  width: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .news-post__content .-member span {
    width: 0.5625rem;
  }
}
.news-post__content h2 {
  font-size: 1.125rem;
  line-height: 1.7222222222;
  letter-spacing: 0.05em;
  position: relative;
  font-weight: 500;
  margin-bottom: 1.75rem;
  margin-top: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .news-post__content h2 {
    font-size: 1.0625rem;
    line-height: 1.4117647059;
    margin-bottom: 0.9375rem;
  }
}
.news-post__content h3 {
  font-size: 1.0625rem;
  line-height: 1.8235294118;
  letter-spacing: 0.03em;
  margin-top: 1.25rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .news-post__content h3 {
    font-size: 1.03125rem;
    line-height: 1.4545454545;
  }
}
.news-post__content p {
  font-size: 0.90625rem;
  line-height: 2;
  letter-spacing: 0.03em;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 767px) {
  .news-post__content p {
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-top: 0.75rem;
    margin-bottom: 1rem;
  }
}
.news-post__content p .-red {
  color: #ed1d23;
}
.news-post__content p .-grey {
  color: rgba(34, 31, 32, .5);
}
.news-post__content a {
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0.03em;
  padding-right: 1.75rem;
  color: rgba(34, 31, 32, .8);
  border-bottom: 1px solid #707070;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
  margin-top: 1.625rem;
  margin-bottom: 1.625rem;
}
@media screen and (max-width: 767px) {
  .news-post__content a {
    padding-bottom: 0.4375rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
.news-post__content a::before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 0.6875rem;
  top: 0.1875rem;
  right: 0;
  background-image: url("../images/common/arrow-black.svg");
  background-size: cover;
}
.news-post__content .news-post__link {
  border: 1px solid rgba(34, 31, 32, .4);
  border-radius: 100px;
  padding: 0.9375rem 1.875rem 1.1875rem;
  width: 25.0625rem;
  position: relative;
  margin-top: 1.4375rem;
  margin-bottom: 1.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .news-post__content .news-post__link {
    width: 100%;
    min-height: 3.875rem;
    font-size: 0.9375rem;
    margin-top: 2.9375rem;
    margin-bottom: 2.9375rem;
    padding: 0.3125rem 1.25rem;
  }
}
.news-post__content .news-post__link div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
}
.news-post__content .news-post__link .-icon {
  width: 1.0625rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .news-post__content .news-post__link .-icon {
    width: 0.8125rem;
  }
}
.news-post__content .news-post__link .-icon img {
  width: 100%;
}
.news-post__content .news-post__link::before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 0.6875rem;
  top: 50%;
  right: 1.875rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("../images/common/arrow-black.svg");
  background-size: cover;
}
.news-post__video {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .news-post__video {
    margin-top: 1rem;
  }
}
.news-post__video video,
.news-post__video img,
.news-post__video iframe {
  aspect-ratio: 912/473;
}
@media screen and (max-width: 767px) {
  .news-post__video video,
  .news-post__video img,
  .news-post__video iframe {
    aspect-ratio: 342/228;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.news-post__video iframe {
  width: 100%;
  height: auto;
}
.news-post__front-btn {
  border-top: 1px solid rgba(112, 112, 112, .4);
  padding-top: 2.0625rem;
  font-size: 1.0625rem;
  letter-spacing: 0.05em;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .news-post__front-btn {
    padding-top: 1.4375rem;
    gap: 0.875rem;
    font-size: 0.9375rem;
    letter-spacing: 0.04em;
  }
}
.news-post__front-btn::before {
  display: none;
}
.news-post__front-btn img {
  width: 1.0625rem;
}
.news-post__sidebar {
  width: 13.0625rem;
}

.news-sidebar {
  width: 13.0625rem;
}
@media screen and (max-width: 767px) {
  .news-sidebar {
    width: 100%;
  }
}
.news-sidebar__item {
  border-top: 1px solid rgba(112, 112, 112, .4);
  padding: 0.8125rem 0 2.4375rem;
}
@media screen and (max-width: 767px) {
  .news-sidebar__item {
    padding: 0.8125rem 0 0.8125rem;
  }
}
.news-sidebar__item h3 {
  font-family: Marcellus, serif;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: rgba(34, 31, 32, .85);
}
@media screen and (max-width: 767px) {
  .news-sidebar__item h3 {
    cursor: pointer;
    font-size: 1rem;
    position: relative;
  }
  .news-sidebar__item h3::before {
    content: "";
    width: 0.71875rem;
    height: 0.345rem;
    background-image: url("../images/news/news-button.svg");
    position: absolute;
    top: 50%;
    right: 0.375rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-size: contain;
    background-repeat: no-repeat;
  }
}
.news-sidebar__item h3.-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .news-sidebar__item h3.-flex {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.news-sidebar__item h3 .-cat-member {
  min-width: 5.25rem;
  padding: 0 0.5625rem;
  height: 1.5625rem;
  border: 1px solid #ed1d23;
  color: #ed1d23;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.3125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.78125rem;
  letter-spacing: 0.02em;
  line-height: 1;
  border-radius: 2px;
  font-family: "Noto SansJP", sans-serif;
}
@media screen and (max-width: 767px) {
  .news-sidebar__item h3 .-cat-member {
    margin-left: 0.75rem;
    min-width: 4.375rem;
    height: 1.3125rem;
    font-size: 0.625rem;
  }
}
.news-sidebar__item h3 .-cat-member span {
  width: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .news-sidebar__item h3 .-cat-member span {
    width: 0.5625rem;
  }
}
.news-sidebar__item ul {
  margin-top: 0.9375rem;
  margin-left: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .news-sidebar__item ul {
    display: none;
    border-top: 1px solid #b4b4b4;
    margin-left: 0;
    margin-top: 1rem;
    padding-top: 0.5625rem;
  }
}
.news-sidebar__item ul li {
  font-size: 0.9375rem;
  line-height: 1.8666666667;
  letter-spacing: 0.05em;
  color: rgba(34, 31, 32, .8);
}
@media screen and (max-width: 767px) {
  .news-sidebar__item ul li {
    font-size: 0.875rem;
    line-height: 2.1428571429;
  }
}
.news-sidebar__item ul li a {
  display: block;
  line-height: inherit;
}
.news-sidebar__item ul li .-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
.news-sidebar__item ul li .-flex .-member {
  width: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .news-sidebar__item:last-child {
    border-bottom: 1px solid #b4b4b4;
  }
}

@media screen and (max-width: 767px) {
  .page-news-post__sidebar {
    display: none;
  }
}

.page-news__inner {
  padding-top: 2.75rem;
  padding-bottom: 7.0625rem;
  margin-right: 5.25rem;
}
@media screen and (max-width: 767px) {
  .page-news__inner {
    margin-right: 0;
    padding: 0rem 1.375rem 5.1875rem;
  }
}
@media screen and (max-width: 767px) {
  .page-news h2 {
    font-size: 1.0625rem;
    line-height: 1;
    font-weight: 500;
  }
}
.page-news__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .page-news__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 2.625rem;
  }
}
.page-news__main {
  width: 56.875rem;
}
@media screen and (max-width: 767px) {
  .page-news__main {
    width: 100%;
  }
}
.page-news__items {
  margin-bottom: 2.875rem;
  border-top: 1px solid rgba(112, 112, 112, .4);
}
@media screen and (max-width: 767px) {
  .page-news__items {
    margin-top: 0.75rem;
    margin-bottom: 1.875rem;
  }
}
.page-news .news__link {
  padding-left: 0.875rem;
  padding-bottom: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .page-news .news__link {
    padding-left: 0;
    padding-bottom: 0.5625rem;
  }
}
.page-news .news__time {
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgba(34, 31, 32, .5);
}
.page-news .news__cat {
  width: 6.8rem;
  min-height: 1.5rem;
  color: rgba(34, 31, 32, .8);
  border: 1px solid #B4B4B4;
  margin-left: 0.625rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 0.78125rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .page-news .news__cat {
    width: auto;
    min-height: 1.5rem;
    font-size: 0.75rem;
  }
}
.page-news .news__title {
  font-size: 0.9375rem;
  width: 37.375rem;
}
@media screen and (max-width: 767px) {
  .page-news .news__title {
    font-size: 0.875rem;
    width: calc(100% - 1.625rem);
  }
}
@media screen and (max-width: 767px) {
  .page-news .news__icon {
    right: 0.375rem;
  }
}
.page-news__side {
  width: 13.0625rem;
}
.page-news__side-item {
  border-top: 1px solid rgba(112, 112, 112, .4);
  padding: 0.8125rem 0 2.4375rem;
}
.page-news__side-item h3 {
  font-family: Marcellus, serif;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.page-news__side-item h3.-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-news__side-item h3 .-cat-member {
  width: 5.25rem;
  height: 1.5625rem;
  border: 1px solid #ed1d23;
  color: #ed1d23;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.3125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.78125rem;
  letter-spacing: 0.02em;
  line-height: 1;
  border-radius: 2px;
}
.page-news__side-item h3 .-cat-member span {
  width: 0.6875rem;
}
.page-news__side-item ul {
  margin-top: 0.9375rem;
  margin-left: 0.9375rem;
}
.page-news__side-item ul li {
  font-size: 0.9375rem;
  line-height: 1.8666666667;
  letter-spacing: 0.05em;
}
.page-news__side-item ul li.-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
.page-news__side-item ul li.-flex .-member {
  width: 0.6875rem;
}
/*# sourceMappingURL=styles.css.map */
