@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

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

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

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

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

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

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media (min-width: 320px) and (max-width: 750px) {
  html {
    font-size: 2.1333333333vw;
  }
}
@media screen and (min-width: 751px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #1a1a1a;
}

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

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

/*===========
section-fadeIn
===========*/
.l-fadeIn {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.l-fadeIn.is-show {
  opacity: 1;
  transform: translateY(0);
}

.l-inner {
  width: 100%;
  max-width: 40rem;
  margin-inline: auto;
}
@media screen and (min-width: 751px) {
  .l-inner {
    max-width: 65.625rem;
    padding: 0 1.5625rem;
  }
}

@media screen and (min-width: 751px) {
  .l-inner.l-inner--medium {
    max-width: 59.375rem;
  }
}

.l-oc__inner {
  width: 100%;
  max-width: 42.5rem;
  margin-inline: auto;
  padding: 0 1.25rem;
}
@media screen and (min-width: 751px) {
  .l-oc__inner {
    max-width: 59.375rem;
    padding: 0 1.5625rem;
  }
}

.l-about__inner {
  width: 100%;
  max-width: 40rem;
  margin-inline: auto;
  padding: 0 1.25rem;
}
@media screen and (min-width: 751px) {
  .l-about__inner {
    max-width: 59.375rem;
    padding: 0 1.5625rem;
  }
}

.c-about-scroll {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2.5rem;
  cursor: pointer;
}
@media screen and (min-width: 751px) {
  .c-about-scroll {
    padding-bottom: 0;
  }
}

@media screen and (min-width: 751px) {
  .c-about-scroll.c-about-scroll--pc {
    padding-bottom: 1.3125rem;
  }
}

.c-about-scroll::-webkit-scrollbar {
  height: 0.25rem;
}

.c-about-scroll::-webkit-scrollbar-track {
  background-color: #e5e5e5;
}

.c-about-scroll::-webkit-scrollbar-thumb {
  background: #4d4d4d;
  border: none;
}

.c-about-scroll img {
  display: block;
  max-width: none;
  height: auto;
}

.c-about-scroll {
  cursor: grab;
}

.c-about-scroll.active {
  cursor: grabbing;
}

.c-arrow {
  position: relative;
  width: 1.6625rem;
  transition: transform 0.3s ease;
}

.c-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.625rem;
  height: 0.1875rem;
  background-color: #595757;
}
@media screen and (min-width: 751px) {
  .c-arrow::before {
    width: 1.625rem;
  }
}

.c-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% + 0.25rem);
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0.9375rem;
  height: 0.9375rem;
  border-right: 0.1875rem solid #595757;
  border-top: 0.1875rem solid #595757;
}

.c-arrow.c-arrow--black::before {
  background-color: #1a1a1a;
}

.c-arrow.c-arrow--black::after {
  border-right: 0.1875rem solid #1a1a1a;
  border-top: 0.1875rem solid #1a1a1a;
}

@media screen and (min-width: 751px) {
  .c-arrow.c-arrow--medium {
    width: 0.9375rem;
  }
}

@media screen and (min-width: 751px) {
  .c-arrow.c-arrow--medium::before {
    width: 0.875rem;
    top: calc(50% - 0.125rem);
    left: calc(50% - 0.125rem);
  }
}

@media screen and (min-width: 751px) {
  .c-arrow.c-arrow--medium::after {
    width: 0.5625rem;
    height: 0.5625rem;
    top: calc(50% - 0.125rem);
    left: calc(50% + 0.0625rem);
  }
}

@media screen and (min-width: 751px) {
  .c-arrow.c-arrow--regular {
    width: 0.8125rem;
  }
}

@media screen and (min-width: 751px) {
  .c-arrow.c-arrow--regular::before {
    left: calc(50% + 0.0625rem);
    width: 0.75rem;
    height: 0.125rem;
  }
}

@media screen and (min-width: 751px) {
  .c-arrow.c-arrow--regular::after {
    width: 0.4375rem;
    height: 0.4375rem;
    border-right: 0.125rem solid #1a1a1a;
    border-top: 0.125rem solid #1a1a1a;
  }
}

.c-arrow.c-arrow--small {
  position: relative;
  width: 0.6875rem;
}

.c-arrow.c-arrow--small::before {
  width: 0.6875rem;
  height: 0.125rem;
}

.c-arrow.c-arrow--small::after {
  left: calc(50% + 0.125rem);
  width: 0.5rem;
  height: 0.5rem;
  border-right: 0.125rem solid #1a1a1a;
  border-top: 0.125rem solid #1a1a1a;
}

.c-arrow-btn {
  position: relative;
  display: inline-block;
  width: 4.375rem;
  height: 4.375rem;
  background-color: #0094d6;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 751px) {
  .c-arrow-btn {
    width: 2.875rem;
    height: 2.875rem;
  }
}

.c-arrow-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% - 0.125rem);
  transform: translate(-50%, -50%);
  width: 1.5rem;
  height: 0.1875rem;
  background-color: #fff;
}
@media screen and (min-width: 751px) {
  .c-arrow-btn::before {
    left: calc(50% - 0.125rem);
    width: 1rem;
    height: 0.125rem;
  }
}

.c-arrow-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% + 0.125rem);
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0.9375rem;
  height: 0.9375rem;
  border-right: 0.1875rem solid #fff;
  border-top: 0.1875rem solid #fff;
}
@media screen and (min-width: 751px) {
  .c-arrow-btn::after {
    left: calc(50% + 0.0625rem);
    width: 0.625rem;
    height: 0.625rem;
    border-right: 0.15625rem solid #fff;
    border-top: 0.15625rem solid #fff;
  }
}

@media screen and (min-width: 751px) {
  .c-arrow-btn.c-arrow-btn--medium {
    width: 2.25rem;
    height: 2.25rem;
  }
}

@media screen and (min-width: 751px) {
  .c-arrow-btn.c-arrow-btn--medium::before {
    width: 0.75rem;
  }
}

@media screen and (min-width: 751px) {
  .c-arrow-btn.c-arrow-btn--medium::after {
    width: 0.5rem;
    height: 0.5rem;
  }
}

.c-arrow-btn.c-arrow-btn--small {
  width: 2.5rem;
  height: 2.5rem;
}
@media screen and (min-width: 751px) {
  .c-arrow-btn.c-arrow-btn--small {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.c-arrow-btn.c-arrow-btn--small.c-arrow-btn--white {
  background-color: #ffffff;
}

.c-arrow-btn.c-arrow-btn--small::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.875rem;
  height: 0.125rem;
  background-color: #fff;
}
@media screen and (min-width: 751px) {
  .c-arrow-btn.c-arrow-btn--small::before {
    width: 0.5625rem;
    height: 0.125rem;
  }
}

.c-arrow-btn.c-arrow-btn--small.c-arrow-btn--white::before {
  background-color: #0093d5;
}

.c-arrow-btn.c-arrow-btn--small::after {
  top: 50%;
  left: calc(50% + 0.125rem);
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0.5rem;
  height: 0.5rem;
  border-right: 0.125rem solid #fff;
  border-top: 0.125rem solid #fff;
}
@media screen and (min-width: 751px) {
  .c-arrow-btn.c-arrow-btn--small::after {
    left: calc(50% + 0.0625rem);
    width: 0.375rem;
    height: 0.375rem;
    border-right: 0.125rem solid #fff;
    border-top: 0.125rem solid #fff;
  }
}

.c-arrow-btn.c-arrow-btn--small.c-arrow-btn--white::after {
  border-right: 0.1875rem solid #0093d5;
  border-top: 0.1875rem solid #0093d5;
}
@media screen and (min-width: 751px) {
  .c-arrow-btn.c-arrow-btn--small.c-arrow-btn--white::after {
    border-right: 0.125rem solid #0093d5;
    border-top: 0.125rem solid #0093d5;
  }
}

.c-arrow-btn.c-arrow-btn--border {
  width: 3.75rem;
  height: 3.75rem;
  border: 1px solid #003570;
  background-color: transparent;
}
@media screen and (min-width: 751px) {
  .c-arrow-btn.c-arrow-btn--border {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.c-arrow-btn.c-arrow-btn--border::before {
  top: 50%;
  left: calc(50% - 0.125rem);
  transform: translate(-50%, -50%);
  width: 1.5625rem;
  height: 0.1875rem;
  background-color: #003570;
}
@media screen and (min-width: 751px) {
  .c-arrow-btn.c-arrow-btn--border::before {
    left: calc(50% - 0.0625rem);
    width: 0.9375rem;
    height: 0.125rem;
  }
}

.c-arrow-btn.c-arrow-btn--border::after {
  top: 50%;
  left: calc(50% + 0.1875rem);
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0.9375rem;
  height: 0.9375rem;
  border-right: 0.1875rem solid #003570;
  border-top: 0.1875rem solid #003570;
}
@media screen and (min-width: 751px) {
  .c-arrow-btn.c-arrow-btn--border::after {
    left: calc(50% + 0.125rem);
    width: 0.5625rem;
    height: 0.5625rem;
    border-right: 0.125rem solid #003570;
    border-top: 0.125rem solid #003570;
  }
}

.c-arrow-btn.c-arrow-btn--border.c-arrow-btn--border-white {
  border: 1px solid #ffffff;
}

.c-arrow-btn.c-arrow-btn--border.c-arrow-btn--border-white::before {
  background-color: #ffffff;
}

.c-arrow-btn.c-arrow-btn--border.c-arrow-btn--border-white::after {
  border-right: 0.1875rem solid #ffffff;
  border-top: 0.1875rem solid #ffffff;
}
@media screen and (min-width: 751px) {
  .c-arrow-btn.c-arrow-btn--border.c-arrow-btn--border-white::after {
    border-right: 0.125rem solid #ffffff;
    border-top: 0.125rem solid #ffffff;
  }
}

.c-section__btn {
  display: inline-flex;
  align-items: center;
  margin-right: 0.625rem;
  font-size: 1.875rem;
  line-height: 2.2;
  letter-spacing: -0.05em;
  border-bottom: 0.125rem solid #0094d6;
}
@media screen and (min-width: 751px) {
  .c-section__btn {
    font-size: 0.9375rem;
    line-height: 3.55;
    letter-spacing: 0;
    border-bottom: 0.0625rem solid #0094d6;
  }
}

.c-section__btn.c-section__btn--green {
  border-bottom: 0.125rem solid #6ab19f;
}
@media screen and (min-width: 751px) {
  .c-section__btn.c-section__btn--green {
    border-bottom: 0.0625rem solid #6ab19f;
  }
}

.c-section__btn.c-section__btn--pink {
  border-bottom: 0.125rem solid #f5cde0;
}
@media screen and (min-width: 751px) {
  .c-section__btn.c-section__btn--pink {
    border-bottom: 0.0625rem solid #f5cde0;
  }
}

.c-section__btn.c-section__btn--purple {
  border-bottom: 0.125rem solid #9477ac;
}
@media screen and (min-width: 751px) {
  .c-section__btn.c-section__btn--purple {
    border-bottom: 0.0625rem solid #9477ac;
  }
}

.c-section__btn.c-section__btn--yellow {
  border-bottom: 0.125rem solid #f3c400;
}
@media screen and (min-width: 751px) {
  .c-section__btn.c-section__btn--yellow {
    border-bottom: 0.0625rem solid #f3c400;
  }
}

.c-arrow--section {
  margin-left: 2.25rem;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 751px) {
  .c-arrow--section {
    margin-left: 0.9375rem;
  }
}

.c-section__btn:hover .c-arrow--section {
  transform: translateX(5px);
}

.c-oc__btn {
  display: block;
  width: 37.5rem;
  padding: 1.875rem;
  font-size: 1.875rem;
  line-height: 1;
  color: #ffffff;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .c-oc__btn {
    width: 18.75rem;
    padding: 0.9375rem;
    font-size: 0.9375rem;
  }
}

.c-oc__btn--green {
  background-color: #00896c;
}

.c-oc__btn--blue {
  background-color: #0094d6;
}

.c-oc__btn--pink {
  background-color: #eb92bb;
}

.c-oc__btn--purple {
  background-color: #9477ac;
}

.c-oc__btn--yellow {
  background-color: #f3c400;
}

.c-oc__btn--line {
  background-color: #5ac363;
}

.c-about-btn {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 37.5rem;
  padding: 1.8125rem 0;
  font-size: 1.875rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #000000;
  border-radius: 62.4375rem;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .c-about-btn {
    max-width: 18.75rem;
    padding: 0.875rem 0;
    font-size: 0.9375rem;
  }
}

.c-about-btn.c-about-btn--medium {
  width: 25rem;
  letter-spacing: -0.1em;
}
@media screen and (min-width: 751px) {
  .c-about-btn.c-about-btn--medium {
    width: 12.5rem;
  }
}

.c-about-btn.c-about-btn--white {
  color: #ffffff;
  background-color: #0093d5;
  border: 0;
}

.c-about-btn.c-about-btn--hotel {
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-about-btn__arrow {
  position: absolute;
  top: 50%;
  right: 1.4375rem;
  transform: translateY(-50%);
}
@media screen and (min-width: 751px) {
  .c-about-btn__arrow {
    right: 0.625rem;
  }
}

.c-about-btn__img {
  width: 1.625rem;
  height: 1.625rem;
  margin-left: 1.25rem;
}
@media screen and (min-width: 751px) {
  .c-about-btn__img {
    width: 0.8125rem;
    height: 0.8125rem;
    margin-left: 0.625rem;
  }
}

.c-change-btn {
  position: relative;
  width: 3.425rem;
  height: 3.425rem;
  border: 1px solid #ffffff;
  background-color: transparent;
  border-radius: 50%;
}
@media screen and (min-width: 751px) {
  .c-change-btn {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.c-change-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.51875rem;
  height: 0.1875rem;
  background-color: #ffffff;
}
@media screen and (min-width: 751px) {
  .c-change-btn::before {
    left: calc(50% - 0.125rem);
    width: 1rem;
  }
}

.c-change-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% + 0.1875rem);
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0.9375rem;
  height: 0.9375rem;
  border-right: 0.1875rem solid #ffffff;
  border-top: 0.1875rem solid #ffffff;
}
@media screen and (min-width: 751px) {
  .c-change-btn::after {
    left: calc(50% + 0.125rem);
    width: 0.625rem;
    height: 0.625rem;
  }
}

.c-top-section__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 1.875rem;
  line-height: 2.2;
  letter-spacing: -0.05em;
  border-bottom: 0.125rem solid #0094d6;
}
@media screen and (min-width: 751px) {
  .c-top-section__btn {
    font-size: 0.9375rem;
    line-height: 3.55;
    letter-spacing: 0;
  }
}

.c-top-section__arrow {
  position: relative;
  right: 0.625rem;
  display: inline-block;
  margin-left: 3.8125rem;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 751px) {
  .c-top-section__arrow {
    top: 0.125rem;
    right: 0.4375rem;
    margin-left: 3rem;
  }
}

.c-top-section__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% - 0.1875rem);
  transform: translate(-50%, -50%);
  width: 1.4375rem;
  height: 0.1875rem;
  background-color: #1a1a1a;
}
@media screen and (min-width: 751px) {
  .c-top-section__arrow::before {
    width: 1.0625rem;
    height: 0.1875rem;
    left: calc(50% - 0.25rem);
  }
}

.c-top-section__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0.9375rem;
  height: 0.9375rem;
  border-right: 0.1875rem solid #1a1a1a;
  border-top: 0.1875rem solid #1a1a1a;
}
@media screen and (min-width: 751px) {
  .c-top-section__arrow::after {
    width: 0.625rem;
    height: 0.625rem;
  }
}

.c-top-section__btn:hover .c-top-section__arrow {
  transform: translateX(5px);
}

.c-event-bullet {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  margin-right: 1.25rem;
}
@media screen and (min-width: 751px) {
  .c-event-bullet {
    width: 0.75rem;
    height: 0.75rem;
    margin-right: 0.625rem;
  }
}

.c-event-bullet.c-event-bullet--blue {
  background-color: #0094d6;
}

.c-event-bullet.c-event-bullet--green {
  background-color: #00896c;
}

.c-event-bullet.c-event-bullet--pink {
  background-color: #eb92bb;
}

.c-event-bullet.c-event-bullet--yellow {
  background-color: #f3c400;
}

.c-event-bullet.c-event-bullet--purple {
  background-color: #9477ac;
}

.c-event-bullet.c-event-bullet--medium {
  width: 1.4625rem;
  height: 1.4625rem;
}
@media screen and (min-width: 751px) {
  .c-event-bullet.c-event-bullet--medium {
    width: 0.73125rem;
    height: 0.73125rem;
    margin-right: 0.625rem;
  }
}

.c-guide-bullet {
  display: inline-block;
  width: 1.6875rem;
  height: 1.6875rem;
  border-radius: 50%;
  background-color: #36bdef;
  margin-right: 0.3125rem;
}
@media screen and (min-width: 751px) {
  .c-guide-bullet {
    width: 0.84375rem;
    height: 0.84375rem;
    margin-right: 0.15625rem;
  }
}

.c-circle {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 13.75rem;
  height: 13.75rem;
  font-size: 1.75rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  background-color: #0094d6;
  color: #ffffff;
  border-radius: 50%;
}
@media screen and (min-width: 751px) {
  .c-circle {
    width: 9rem;
    height: 9rem;
    font-size: 1.15rem;
  }
}

.c-circle.c-circle--large {
  width: 15.125rem;
  height: 15.125rem;
  font-size: 1.875rem;
  border: 0.1875rem solid #ffffff;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .c-circle.c-circle--large {
    width: 11.625rem;
    height: 11.625rem;
    font-size: 1.375rem;
    border: 0.125rem solid #ffffff;
  }
}

.c-circle.c-circle--blue {
  background-color: #3fa9f5;
  text-align: center;
}

.c-circle__number {
  font-size: 3.75rem;
  font-weight: 700;
}
@media screen and (min-width: 751px) {
  .c-circle__number {
    font-size: 2.46875rem;
  }
}

.c-circle__number.c-circle__number--large {
  font-size: 4.125rem;
}
@media screen and (min-width: 751px) {
  .c-circle__number.c-circle__number--large {
    font-size: 3.25rem;
  }
}

.c-circle__percent {
  font-size: 2.5rem;
}
@media screen and (min-width: 751px) {
  .c-circle__percent {
    font-size: 1.64375rem;
  }
}

.c-circle__percent.c-circle__percent--large {
  font-size: 2.75rem;
}
@media screen and (min-width: 751px) {
  .c-circle__percent.c-circle__percent--large {
    font-size: 2.125rem;
  }
}

.c-event-circle {
  position: absolute;
  left: 1.375rem;
  bottom: 1.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9.375rem;
  height: 9.375rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.567;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .c-event-circle {
    left: 0.75rem;
    bottom: 0.75rem;
    width: 4.6875rem;
    height: 4.6875rem;
    font-size: 0.9375rem;
  }
}

.c-event-circle.c-event-circle--large {
  width: 10.625rem;
  height: 10.625rem;
}
@media screen and (min-width: 751px) {
  .c-event-circle.c-event-circle--large {
    width: 5.3125rem;
    height: 5.3125rem;
  }
}

.c-event-circle::before {
  content: "";
  position: absolute;
  top: 51%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7.5rem;
  height: 0.125rem;
  background-color: #ffffff;
}
@media screen and (min-width: 751px) {
  .c-event-circle::before {
    width: 3.75rem;
    height: 0.0625rem;
  }
}

.c-event-circle--green {
  background-color: #00896c;
}

.c-event-circle--pink {
  background-color: #eb92bb;
}

.c-event-circle--yellow {
  background-color: #f3c400;
}

.c-class__circle-wrapper {
  display: flex;
  align-items: center;
}

.c-class__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.875rem;
  height: 6.875rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  background-color: #0094d6;
  border: 0.3125rem solid #ffffff;
  border-radius: 50%;
}
@media screen and (min-width: 751px) {
  .c-class__circle {
    width: 3.4375rem;
    height: 3.4375rem;
    font-size: 0.9375rem;
    border: 0.125rem solid #ffffff;
  }
}

.c-class__circle:not(:first-child) {
  margin-left: -1.25rem;
}
@media screen and (min-width: 751px) {
  .c-class__circle:not(:first-child) {
    margin-left: -0.625rem;
  }
}

.c-class__circle span {
  font-size: 1.625rem;
  font-weight: 400;
}
@media screen and (min-width: 751px) {
  .c-class__circle span {
    font-size: 0.8125rem;
  }
}

.c-class__circle.c-class__circle--blue {
  background-color: #36bdef;
}

.c-circle__overseas {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12.5rem;
  height: 12.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .c-circle__overseas {
    width: 6.25rem;
    height: 6.25rem;
    font-size: 1.25rem;
  }
}

.c-circle__overseas--blue {
  background-color: #62baea;
}

.c-circle__overseas--pink {
  background-color: #de96b9;
}

.c-circle__overseas--purple {
  background-color: #8f78a9;
}

.c-circle__overseas--yellow {
  background-color: #ebc533;
}

.c-major-icon {
  width: 2.5rem;
  height: auto;
}
@media screen and (min-width: 751px) {
  .c-major-icon {
    width: 1.3125rem;
  }
}

.c-major-icon.c-major-icon--small {
  width: 2rem;
}
@media screen and (min-width: 751px) {
  .c-major-icon.c-major-icon--small {
    width: 1rem;
  }
}

.c-major-icon.c-major-icon--large {
  width: 3.25rem;
}
@media screen and (min-width: 751px) {
  .c-major-icon.c-major-icon--large {
    width: 1.625rem;
  }
}

.c-oc-fukidashi {
  position: relative;
  width: 17.1875rem;
}
@media screen and (min-width: 751px) {
  .c-oc-fukidashi {
    width: 8.59375rem;
  }
}

.c-oc-fukidashi--large {
  width: 22.5625rem;
}
@media screen and (min-width: 751px) {
  .c-oc-fukidashi--large {
    width: 11.28125rem;
  }
}

.c-oc-fukidashi--long {
  width: 24.8125rem;
}
@media screen and (min-width: 751px) {
  .c-oc-fukidashi--long {
    width: 12.403125rem;
  }
}

.c-oc-fukidashi--small {
  width: 15rem;
}
@media screen and (min-width: 751px) {
  .c-oc-fukidashi--small {
    width: 7.5rem;
  }
}

.c-oc-fukidashi span {
  position: absolute;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
  color: #231815;
  white-space: nowrap;
}
@media screen and (min-width: 751px) {
  .c-oc-fukidashi span {
    top: 0.625rem;
    font-size: 0.9375rem;
  }
}

.c-oc-head {
  position: relative;
  width: 100%;
  height: 2.5rem;
}

.c-oc-head.c-oc-head--medium {
  height: 1.25rem;
}

.c-oc-head.c-oc-head--green {
  background-color: #d4e5df;
}

.c-oc-head.c-oc-head--blue {
  background-color: #e2f2fb;
}

.c-oc-head.c-oc-head--pink {
  background-color: #f9dfeb;
}

.c-oc-head.c-oc-head--purple {
  background-color: #efe8f9;
}

.c-oc-head.c-oc-head--yellow {
  background-color: #fcedc0;
}

.scroll-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 50;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
  font-family: sans-serif;
  background-color: rgba(51, 51, 51, 0.7);
  padding: 3.125rem 1.875rem;
  border-radius: 0.375rem;
  display: inline-block;
  white-space: nowrap;
}
@media screen and (min-width: 751px) {
  .scroll-hint {
    padding: 1.5625rem 0.9375rem;
  }
}

.scroll-hint::before {
  content: "スクロール可能";
  font-size: 1.875rem;
  color: #ffffff;
  margin-right: 0.375rem;
}
@media screen and (min-width: 751px) {
  .scroll-hint::before {
    font-size: 0.9375rem;
    margin-right: 0.1875rem;
  }
}

.scroll-hint::after {
  content: "→";
  display: inline-block;
  font-size: 1.875rem;
  color: #ffffff;
  animation: arrow-move-x 1.2s infinite ease-in-out;
}
@media screen and (min-width: 751px) {
  .scroll-hint::after {
    font-size: 0.9375rem;
  }
}

@keyframes arrow-move-x {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(0.375rem);
  }
}
@media screen and (min-width: 751px) {
  .scroll-hint.is-sp {
    display: none;
  }
}

.scroll-hint.is-all {
  display: inline-block;
}

.c-tag {
  display: inline-block;
  width: 14.4rem;
  padding: 0.5rem 0.3125rem;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 300;
  color: #ffffff;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .c-tag {
    width: 8.5rem;
    font-size: 0.875rem;
    padding: 0.3125rem;
  }
}

.c-tag--pink {
  background-color: #eb92bb;
}

.c-tag--blue {
  background-color: #0094d6;
}

.c-tag--purple {
  background-color: #9477ac;
}

.c-tag--navy {
  background-color: #003570;
}

.c-tag--brown {
  background-color: #998675;
}

/* お知らせ pink */
.c-tag.category_news {
  background-color: #eb92bb;
}

/* 内定速報 blue */
.c-tag.category_job {
  background-color: #0094d6;
}

/* 授業・実習 purple */
.c-tag.category_class {
  background-color: #9477ac;
}

/* イベント purple */
.c-tag.category_event {
  background-color: #9477ac;
}

/* オープンキャンパス yellow */
.c-tag.category_open {
  background-color: #f3c400;
}

/* 在校生の声 green */
.c-tag.category_voice {
  background-color: #6ab19f;
}

/* ブライダル brown */
.c-tag.category_bridal {
  background-color: #998675;
}

/* ホテル navy */
.c-tag.category_hotel {
  background-color: #003570;
}

.c-text {
  font-size: 1.875rem;
  line-height: 1.833;
}
@media screen and (min-width: 751px) {
  .c-text {
    font-size: 0.9375rem;
  }
}

.c-text--bold {
  font-weight: 700;
}

.c-section__lead {
  font-size: 2.125rem;
  line-height: 1.618;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .c-section__lead {
    font-size: 1.0625rem;
  }
}

.c-about__lead {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  color: #0094d6;
}
@media screen and (min-width: 751px) {
  .c-about__lead {
    font-size: 1.875rem;
    line-height: 1.45;
  }
}

.c-about__lead.c-about__lead--purple {
  color: #532881;
}

.c-about__text {
  font-size: 1.875rem;
  line-height: 1.8;
}
@media screen and (min-width: 751px) {
  .c-about__text {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.c-hotel__lead {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.45;
  color: #0093d5;
}
@media screen and (min-width: 751px) {
  .c-hotel__lead {
    font-size: 1.25rem;
  }
}

.c-hotel__lead.c-hotel__lead--purple {
  color: #532881;
}

.c-guide__text {
  font-size: 1.875rem;
  line-height: 1.833;
}
@media screen and (min-width: 751px) {
  .c-guide__text {
    font-size: 0.9375rem;
  }
}

.c-guide__text.c-guide__text--medium {
  font-weight: 500;
}

.c-guide__text.c-guide__text--bold {
  font-weight: 700;
}

.c-guide__text-margin {
  margin-top: 1.5625rem;
}
@media screen and (min-width: 751px) {
  .c-guide__text-margin {
    margin-top: 0.8125rem;
  }
}

.c-guide__label {
  display: block;
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.706;
  color: #003570;
}
@media screen and (min-width: 751px) {
  .c-guide__label {
    font-size: 1.0625rem;
  }
}

.c-section__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.c-section__title--en {
  display: inline-block;
  font-size: 5.625rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #d4edfa;
  text-transform: uppercase;
}
@media screen and (min-width: 751px) {
  .c-section__title--en {
    font-size: 3.125rem;
  }
}

.c-section__title--jp {
  display: inline-block;
  margin-top: -1.875rem;
  font-size: 3.375rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #000000;
}
@media screen and (min-width: 751px) {
  .c-section__title--jp {
    margin-top: -0.875rem;
    font-size: 1.875rem;
  }
}

.c-oc-section__title {
  position: relative;
  z-index: 2;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1.75;
  color: #231815;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .c-oc-section__title {
    font-size: 1.5625rem;
  }
}

.c-oc-section__title::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: 0.25rem;
  transform: translateX(-50%);
  width: 30.5625rem;
  height: 1.75rem;
  background-color: #f9db78;
}
@media screen and (min-width: 751px) {
  .c-oc-section__title::before {
    width: 15.28125rem;
    height: 0.875rem;
  }
}

.c-oc-section__title--medium::before {
  width: 22.5rem;
}
@media screen and (min-width: 751px) {
  .c-oc-section__title--medium::before {
    width: 11.25rem;
  }
}

.c-oc-section__title--green::before {
  background-color: #d4e5df;
}

.c-oc-section__title--blue::before {
  background-color: #e3f3fc;
}

.c-oc-section__title--pink::before {
  background-color: #f9dfeb;
}

.c-oc-section__title--purple::before {
  background-color: #efe8f9;
}

.c-oc-section__title--yellow::before {
  background-color: #fdf4d6;
}

.c-oc-section__title--note::after,
.c-oc-section__title--star::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
}

.c-oc-section__title--note::after {
  top: -1.0625rem;
  max-width: 31.5625rem;
  height: 9.125rem;
  background-image: url("../images/oc/oc-title-note.png");
}
@media screen and (min-width: 751px) {
  .c-oc-section__title--note::after {
    max-width: 18.625rem;
    height: 5.85625rem;
  }
}

.c-oc-section__title--not-yellow::after {
  background-image: url("../images/oc/oc-title-note--yellow.png");
}

.c-oc-section__title--star::after {
  top: -1.875rem;
  max-width: 36.9375rem;
  height: 11.8125rem;
  background-image: url("../images/oc/oc-title-star.png");
}
@media screen and (min-width: 751px) {
  .c-oc-section__title--star::after {
    top: -1.0625rem;
    max-width: 18.625rem;
    height: 5.91875rem;
  }
}

.c-oc-section__title-sub {
  font-size: 2.125rem;
  line-height: 1.8;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .c-oc-section__title-sub {
    font-size: 1.0625rem;
    line-height: 2.1;
  }
}

.c-about__title {
  text-align: center;
}
@media screen and (min-width: 751px) {
  .c-about__title {
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.c-about__title-jp {
  position: relative;
  font-size: 3.125rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 600;
  line-height: 1.6;
  color: #000000;
}
@media screen and (min-width: 751px) {
  .c-about__title-jp {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 1.875rem;
  }
}

.c-about__title-jp span {
  margin-left: 2.1875rem;
  flex-grow: 1;
  height: 1px;
  background-color: #000;
}

.c-about__title-jp::before,
.c-about__title-jp::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.925rem;
  height: 1px;
  background-color: #000000;
}
@media screen and (min-width: 751px) {
  .c-about__title-jp::before,
  .c-about__title-jp::after {
    content: unset;
  }
}

.c-about__title-jp.c-about__title-jp--large::before,
.c-about__title-jp.c-about__title-jp--large::after {
  width: 8.8rem;
}

.c-about__title-jp.c-about__title-jp--medium::before,
.c-about__title-jp.c-about__title-jp--medium::after {
  width: 4.55rem;
}

.c-about__title-jp::before {
  left: -1.25rem;
}

.c-about__title-jp::after {
  right: -1.25rem;
}

.c-about__title-en {
  font-size: 1.5rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 600;
  line-height: 1.75;
  color: #0093d5;
  text-transform: uppercase;
}
@media screen and (min-width: 751px) {
  .c-about__title-en {
    font-size: 0.9375rem;
  }
}

.c-about__title-en.c-about__title-en--purple {
  color: #532881;
}

.c-about__title-en.c-about__title-en--hotel {
  text-transform: capitalize;
  letter-spacing: 0.055em;
}

.c-about__title-medium {
  position: relative;
  padding-left: 1.8125rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.09em;
  color: #003570;
}
@media screen and (min-width: 751px) {
  .c-about__title-medium {
    padding-left: 0.9375rem;
    font-size: 1.25rem;
  }
}

.c-about__title-medium::before {
  content: "";
  position: absolute;
  top: 0.0625rem;
  left: 0;
  width: 0.5125rem;
  height: 3.66875rem;
  background: linear-gradient(180deg, #2e91cf 0%, #2e91cf 50%, #62b9e9 50%, #62b9e9 100%);
}
@media screen and (min-width: 751px) {
  .c-about__title-medium::before {
    width: 0.25625rem;
    height: 1.83125rem;
  }
}

.c-about__title-medium.c-about__title-medium--purple {
  color: #532882;
}

.c-about__title-medium.c-about__title-medium--blue {
  color: #0093d5;
}

.c-about__title-medium.c-about__title-medium--purple::before {
  background: linear-gradient(180deg, #532882 0%, #532882 50%, #9477ac 50%, #9477ac 100%);
}

.p-about-fv {
  margin-top: 3.4375rem;
}
@media screen and (min-width: 751px) {
  .p-about-fv {
    margin-top: 0;
  }
}

.p-about-fv__inner {
  width: 100%;
  max-width: 46.875rem;
  margin-inline: auto;
}
@media screen and (min-width: 751px) {
  .p-about-fv__inner {
    max-width: 75rem;
  }
}

.p-about-fv__wrapper {
  position: relative;
}

.p-about-fv__img {
  width: 100%;
}
@media screen and (min-width: 751px) {
  .p-about-fv__img {
    width: 43.75rem;
    margin-left: auto;
  }
}

.p-about-fv__img img {
  aspect-ratio: 750/420;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 751px) {
  .p-about-fv__img img {
    aspect-ratio: 700/400;
  }
}

.p-about-fv__title {
  position: relative;
  padding: 4.1875rem 4.6875rem 3.625rem;
  background-color: #3fa9f5;
}
@media screen and (min-width: 751px) {
  .p-about-fv__title {
    position: absolute;
    top: 55%;
    left: 0;
    transform: translateY(-50%);
    width: 37.5rem;
    padding: 3.75rem 4.6875rem 3.75rem 9.1875rem;
  }
}

@media screen and (min-width: 751px) {
  .p-about-fv__title.p-about-fv__title--large {
    width: 42.5rem;
    padding: 3.75rem 3.4375rem 3.75rem 9.1875rem;
  }
}

.p-about-fv__title-number {
  position: absolute;
  top: -5rem;
  left: 4.625rem;
  padding: 1.875rem 1.6875rem;
  font-size: 3.375rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 600;
  line-height: 1;
  color: #0094d6;
  background-color: #ffffff;
  border-radius: 1.25rem 0 1.25rem 0;
}
@media screen and (min-width: 751px) {
  .p-about-fv__title-number {
    top: -2.9375rem;
    left: 9.125rem;
    padding: 1.5rem 1.03125rem;
    font-size: 2rem;
    box-shadow: 0.25rem 0.25rem 0rem rgba(0, 145, 208, 0.8);
  }
}

.p-about-fv__title-sub {
  font-size: 2.5rem;
  line-height: 1.5;
  color: #ffffff;
}
@media screen and (min-width: 751px) {
  .p-about-fv__title-sub {
    font-size: 1.875rem;
  }
}

.p-about-fv__title-main {
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #ffffff;
}
@media screen and (min-width: 751px) {
  .p-about-fv__title-main {
    font-size: 2.5rem;
  }
}

.p-about-fv__circle {
  position: absolute;
  top: 2.1875rem;
  left: 4.6875rem;
}
@media screen and (min-width: 751px) {
  .p-about-fv__circle {
    left: 57%;
    transform: translateX(-50%);
    border: 0.125rem solid #ffffff;
  }
}

.p-about-lead {
  margin: 4.375rem 0;
}
@media screen and (min-width: 751px) {
  .p-about-lead {
    margin: 4.5625rem 0;
    text-align: center;
  }
}

.p-about-lead__text {
  margin-top: 1.25rem;
}
@media screen and (min-width: 751px) {
  .p-about-lead__text {
    margin-top: 1.6875rem;
  }
}

.p-hotel-lead {
  margin: 2.8125rem 0 6.75rem;
}
@media screen and (min-width: 751px) {
  .p-hotel-lead {
    margin: 4.0625rem 0 4.6875rem;
    text-align: center;
  }
}

.p-hotel-lead.p-hotel-lead--major {
  margin: 2.8125rem 0 4.4375rem;
}
@media screen and (min-width: 751px) {
  .p-hotel-lead.p-hotel-lead--major {
    margin: 4.0625rem 0 4.6875rem;
  }
}

.p-hotel-lead__text {
  margin-top: 1.25rem;
}
@media screen and (min-width: 751px) {
  .p-hotel-lead__text {
    margin-top: 0.9375rem;
  }
}

.p-hotel-lead__text--major {
  letter-spacing: -0.05em;
}

.p-about-list {
  margin-top: 6.5625rem;
}
@media screen and (min-width: 751px) {
  .p-about-list {
    margin-top: 4.5rem;
  }
}

@media screen and (min-width: 751px) {
  .p-about-list__inner {
    max-width: 43.125rem;
  }
}

.p-about-list__wrapper {
  margin-top: 3.625rem;
}
@media screen and (min-width: 751px) {
  .p-about-list__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 1.5625rem;
  }
}

.p-about-list__title {
  font-size: 2.5rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #000000;
}
@media screen and (min-width: 751px) {
  .p-about-list__title {
    font-size: 1.25rem;
    text-align: center;
  }
}

.p-about-list__items:not(:first-child) {
  margin-top: 1.75rem;
}
@media screen and (min-width: 751px) {
  .p-about-list__items:not(:first-child) {
    margin-top: 0;
  }
}

.p-about-list__item {
  border-bottom: 1px solid #666666;
}

.p-about-list__item:not(:first-child) {
  margin-top: 1.75rem;
}
@media screen and (min-width: 751px) {
  .p-about-list__item:not(:first-child) {
    margin-top: 0.625rem;
  }
}

.p-about-list__item-link {
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 2.1875rem;
}
@media screen and (min-width: 751px) {
  .p-about-list__item-link {
    padding-bottom: 1.0625rem;
  }
}

.p-about-list__item-number {
  display: inline-block;
  padding: 1.0875rem 1.04375rem;
  font-size: 2.2rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
  background-color: #3fa9f5;
  border-radius: 0.875rem 0 0.875rem 0;
}
@media screen and (min-width: 751px) {
  .p-about-list__item-number {
    padding: 0.54375rem 0.5225rem;
    font-size: 1.1rem;
    border-radius: 0.875rem 0 0.875rem 0;
  }
}

.p-about-list__item-title {
  margin-left: 2.1875rem;
}
@media screen and (min-width: 751px) {
  .p-about-list__item-title {
    margin-left: 0.9375rem;
  }
}

.p-about-list__item-title span {
  font-size: 1.75rem;
  line-height: 1.429;
  color: #000000;
}
@media screen and (min-width: 751px) {
  .p-about-list__item-title span {
    font-size: 0.875rem;
  }
}

.p-about-list__item-title p {
  font-size: 2.25rem;
  line-height: 1.3;
  letter-spacing: 0.025em;
  color: #000000;
}
@media screen and (min-width: 751px) {
  .p-about-list__item-title p {
    font-size: 1.125rem;
  }
}

.p-about-list__arrow {
  position: absolute;
  right: 1.5625rem;
}
@media screen and (min-width: 751px) {
  .p-about-list__arrow {
    right: 0.9375rem;
  }
}

.p-about-nav__items {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.375rem 0 2.5rem;
  background-color: #f2f9fc;
  border-top: 1px solid #0093d5;
  border-bottom: 1px solid #0093d5;
}
@media screen and (min-width: 751px) {
  .p-about-nav__items {
    padding: 1.25rem 0;
  }
}

.p-about-nav__items.p-major-nav__items {
  background-color: #efeaf9;
  border-top: 1px solid #532881;
  border-bottom: 1px solid #532881;
}

.p-about-nav__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 11.5625rem;
  min-height: 5rem;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-about-nav__item {
    align-items: center;
    min-width: 10rem;
    min-height: 2.5rem;
    border-left: 1px solid #0093d5;
  }
}

@media screen and (min-width: 751px) {
  .p-about-nav__item.p-hotel-nav__item {
    padding: 0.125rem 1.375rem 0;
  }
}

@media screen and (min-width: 751px) {
  .p-about-nav__item.p-major-nav__item {
    border-left: 1px solid #532881;
  }
}

.p-about-nav__item.p-all-nav__item {
  min-width: 11.25rem;
  justify-content: center;
  border-right: 1px solid #0093d5;
}
@media screen and (min-width: 751px) {
  .p-about-nav__item.p-all-nav__item {
    min-width: 10rem;
    padding: 0.3125rem 0 0;
  }
}

.p-about-nav__item.p-all-nav__item:first-child {
  border-left: 1px solid #0093d5;
}

.p-about-nav__item::before {
  content: "";
  position: absolute;
  bottom: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.79375rem;
  height: 0.79375rem;
  border-right: 0.25rem solid #0094d6;
  border-top: 0.25rem solid #0094d6;
  transform: rotate(135deg);
}
@media screen and (min-width: 751px) {
  .p-about-nav__item::before {
    bottom: -0.625rem;
    width: 0.53125rem;
    height: 0.53125rem;
    border-right: 0.1875rem solid #0094d6;
    border-top: 0.1875rem solid #0094d6;
  }
}

.p-about-nav__item.p-major-nav__item::before {
  border-right: 0.25rem solid #9377ab;
  border-top: 0.25rem solid #9377ab;
}
@media screen and (min-width: 751px) {
  .p-about-nav__item.p-major-nav__item::before {
    border-right: 0.1875rem solid #9377ab;
    border-top: 0.1875rem solid #9377ab;
  }
}

.p-about-nav__item:not(:last-child) {
  border-right: 1px solid #0093d5;
}
@media screen and (min-width: 751px) {
  .p-about-nav__item:not(:last-child) {
    border-right: 0;
  }
}

.p-about-nav__item.p-major-nav__item:not(:last-child) {
  border-right: 1px solid #532881;
}
@media screen and (min-width: 751px) {
  .p-about-nav__item.p-major-nav__item:not(:last-child) {
    border-right: 0;
  }
}

@media screen and (min-width: 751px) {
  .p-about-nav__item:last-child {
    border-right: 1px solid #0093d5;
  }
}

@media screen and (min-width: 751px) {
  .p-about-nav__item.p-major-nav__item:last-child {
    border-right: 1px solid #532881;
  }
}

.p-about-nav__item a {
  display: block;
  font-size: 1.5rem;
  line-height: 1.333;
}
@media screen and (min-width: 751px) {
  .p-about-nav__item a {
    font-size: 0.875rem;
    line-height: 1.429;
  }
}

.p-about-point {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .p-about-point {
    width: 100%;
    margin: 0;
  }
}

.p-about-point--blue {
  background-color: #e3f3fc;
}

@media screen and (min-width: 751px) {
  .p-about-point--blue-pc {
    background-color: #e3f3fc;
  }
}

.p-about-point__wrapper {
  width: 100%;
  max-width: 40rem;
  margin-inline: auto;
}
@media screen and (min-width: 751px) {
  .p-about-point__wrapper {
    max-width: 100%;
  }
}

.p-about-point__tag {
  display: inline-block;
  width: 10rem;
  padding: 0.375rem 0;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1;
  color: #003570;
  border: 1px solid #003570;
  background-color: #ffffff;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-about-point__tag {
    width: 5rem;
    padding: 0.15625rem 0;
    font-size: 0.8125rem;
  }
}

.p-about-point__title {
  margin-top: 1.25rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.07em;
  color: #003570;
}
@media screen and (min-width: 751px) {
  .p-about-point__title {
    margin-top: 0.625rem;
    font-size: 1.25rem;
  }
}

.p-about-point__text {
  margin-top: 1.25rem;
  font-size: 1.96125rem;
  line-height: 1.667;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 751px) {
  .p-about-point__text {
    max-width: 31.925rem;
    margin-top: 0.5rem;
    font-size: 0.9375rem;
  }
}

.p-about-point__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 3.75rem;
}
@media screen and (min-width: 751px) {
  .p-about-point__btn {
    margin-top: 1.3125rem;
  }
}

.p-about-point__btn a:not(:first-child) {
  margin-top: 1.25rem;
}
@media screen and (min-width: 751px) {
  .p-about-point__btn a:not(:first-child) {
    margin-top: 0.625rem;
  }
}

.p-about-point__wrapper--trust {
  padding: 4.9375rem 1.25rem 6.3125rem;
}
@media screen and (min-width: 751px) {
  .p-about-point__wrapper--trust {
    padding: 2.25rem 3.125rem 3.75rem;
  }
}

@media screen and (min-width: 751px) {
  .p-about-point__trust-flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.p-about-point__trust-swiper {
  margin-top: 3.4375rem;
}
@media screen and (min-width: 751px) {
  .p-about-point__trust-swiper {
    margin-top: 1.5rem;
  }
}

.p-about-point__trust-img {
  margin-top: 2.75rem;
  width: 100%;
}
@media screen and (min-width: 751px) {
  .p-about-point__trust-img {
    margin-top: 0;
    width: 16.3rem;
  }
}

@media screen and (min-width: 751px) {
  .p-about-point__trust-img--03 {
    flex-shrink: 0;
  }
}

.p-about-point__trust-img img {
  aspect-ratio: 600/360;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 751px) {
  .p-about-point__trust-img.p-about-point__trust-img--03 img {
    aspect-ratio: 260.8/224.4;
  }
}

@media screen and (min-width: 751px) {
  .p-about-point__trust-contents {
    display: flex;
    align-items: flex-end;
  }
}

@media screen and (min-width: 751px) {
  .p-about-point__trust-contents--03 {
    flex-direction: row-reverse;
  }
}

.p-about-point__trust-contents__wrapper {
  padding: 3.4375rem 2.5rem 5.25rem;
  background-color: #ffffff;
}
@media screen and (min-width: 751px) {
  .p-about-point__trust-contents__wrapper {
    margin-top: 1.5625rem;
    padding: 1.8125rem 1.25rem 3.4375rem;
  }
}

.p-about-point__trust-contents__title {
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1;
  color: #003570;
}
@media screen and (min-width: 751px) {
  .p-about-point__trust-contents__title {
    font-size: 1.0625rem;
  }
}

.p-about-point__trust-contents__items {
  margin-top: 1.25rem;
}
@media screen and (min-width: 751px) {
  .p-about-point__trust-contents__items {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0.75rem;
  }
}

.p-about-point__trust-contents__item:not(:first-child) {
  margin-top: 2.875rem;
}
@media screen and (min-width: 751px) {
  .p-about-point__trust-contents__item:not(:first-child) {
    margin-top: 0;
  }
}

.p-about-point__trust-contents__item-title {
  position: relative;
  padding-left: 2.1875rem;
  font-size: 1.875rem;
  line-height: 2;
  border-bottom: 1px solid #1a1a1a;
}
@media screen and (min-width: 751px) {
  .p-about-point__trust-contents__item-title {
    padding-left: 1.125rem;
    font-size: 0.875rem;
  }
}

.p-about-point__trust-contents__item-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.4625rem;
  height: 1.4625rem;
  border-radius: 50%;
  background-color: #0094d6;
}
@media screen and (min-width: 751px) {
  .p-about-point__trust-contents__item-title::before {
    width: 0.73125rem;
    height: 0.73125rem;
  }
}

.p-about-point__trust-contents__item-text {
  margin-top: 1.5rem;
  line-height: 1.667;
}
@media screen and (min-width: 751px) {
  .p-about-point__trust-contents__item-text {
    margin-top: 0.8125rem;
    font-size: 0.875rem;
  }
}

.p-about-point__wrapper--recruiting {
  padding: 4.9375rem 1.25rem 6.3125rem;
}
@media screen and (min-width: 751px) {
  .p-about-point__wrapper--recruiting {
    padding: 1.875rem 3.125rem 2.1875rem;
  }
}

.p-about-point__recruiting {
  margin-top: 5.3125rem;
}
@media screen and (min-width: 751px) {
  .p-about-point__recruiting {
    margin-top: 2.8125rem;
  }
}

.p-about-point__recruiting-title {
  position: relative;
  display: block;
  width: 100%;
  max-width: 33.75rem;
  margin-inline: auto;
  padding: 1.4375rem;
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  background-color: #3fa8f4;
  text-align: center;
  border-radius: 62.4375rem;
}
@media screen and (min-width: 751px) {
  .p-about-point__recruiting-title {
    max-width: 20rem;
    padding: 0.8125rem;
    font-size: 1.0625rem;
  }
}

.p-about-point__recruiting-contents {
  margin-top: -2.5rem;
  padding: 3.3125rem 0 11.5625rem;
  background-color: #ffffff;
}
@media screen and (min-width: 751px) {
  .p-about-point__recruiting-contents {
    width: 100%;
    max-width: 40rem;
    margin-inline: auto;
    margin-top: -1.375rem;
    padding: 2.3125rem 0 11.5625rem;
  }
}

.p-about-point__recruiting-text {
  font-size: 1.875rem;
  font-weight: 300;
  line-height: 1.775;
  color: #231815;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-about-point__recruiting-text {
    font-size: 0.9375rem;
  }
}

.p-about-point__recruiting-img {
  margin-top: 3.3125rem;
  width: 100%;
  max-width: 29.75rem;
  margin-inline: auto;
}
@media screen and (min-width: 751px) {
  .p-about-point__recruiting-img {
    margin-top: 1.4375rem;
    max-width: 14.875rem;
  }
}

.p-about-point__recruiting-img--03 {
  width: 100%;
  margin-top: 2.5rem;
}
@media screen and (min-width: 751px) {
  .p-about-point__recruiting-img--03 {
    width: 18.75rem;
    margin-top: 1.25rem;
  }
}

.p-about-point__recruiting-img--03 img {
  aspect-ratio: 600/360;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 751px) {
  .p-about-point__recruiting-img--03 img {
    aspect-ratio: 300/180;
  }
}

@media screen and (min-width: 751px) {
  .p-about-point__recruiting-flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.1875rem;
    margin-top: 0.1875rem;
  }
}

.p-about-point__recruiting-accordion {
  margin: -7.1875rem -1.25rem 0;
  padding: 2.8125rem 2.5rem 0;
  background-color: #fdf4d6;
}
@media screen and (min-width: 751px) {
  .p-about-point__recruiting-accordion {
    margin: -9.125rem 0 0;
    padding: 2.5rem 2.375rem;
  }
}

.p-about-point__recruiting-accordion__head {
  position: relative;
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1;
  color: #003570;
  padding-bottom: 2.8125rem;
  cursor: pointer;
}
@media screen and (min-width: 751px) {
  .p-about-point__recruiting-accordion__head {
    font-size: 1.0625rem;
    padding-bottom: 0.8125rem;
    cursor: none;
  }
}

.p-about-point__recruiting-accordion__head::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 0.9375rem;
  right: 0;
  width: 0.8125rem;
  height: 0.8125rem;
  border-right: 0.1875rem solid #000000;
  border-bottom: 0.1875rem solid #000000;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
@media screen and (min-width: 751px) {
  .p-about-point__recruiting-accordion__head::before {
    content: none;
  }
}

.p-about-point__recruiting-accordion__head::after {
  content: "";
  position: absolute;
  top: -6.25rem;
  left: 50%;
  display: inline-block;
  transform: translateX(-50%);
  border: 0.9375rem solid transparent;
  border-bottom: 2.5rem solid #fdf4d6;
}
@media screen and (min-width: 751px) {
  .p-about-point__recruiting-accordion__head::after {
    top: -4.375rem;
    border: 0.625rem solid transparent;
    border-bottom: 1.25rem solid #fdf4d6;
  }
}

.p-about-point__recruiting-accordion__head.is-active::before {
  transform: rotate(225deg);
}

.p-about-point__recruiting-accordion__body {
  display: none;
  text-align: justify;
}
@media screen and (min-width: 751px) {
  .p-about-point__recruiting-accordion__body {
    display: flex;
    align-items: flex-start;
  }
}

.p-about-point__recruiting-accordion__text {
  line-height: 1.83;
}

.p-about-point__recruiting-accordion__img {
  width: 100%;
  max-width: 32.8125rem;
  margin-inline: auto;
}
@media screen and (min-width: 751px) {
  .p-about-point__recruiting-accordion__img {
    position: relative;
    right: -2.375rem;
    bottom: -2.5rem;
    max-width: 16.40625rem;
    flex-shrink: 0;
  }
}

@media screen and (min-width: 751px) {
  .p-about-strengths__point--flex {
    display: grid;
    gap: 0.25rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-about-point__wrapper--education {
  padding: 3.75rem 1.25rem 3rem;
}
@media screen and (min-width: 751px) {
  .p-about-point__wrapper--education {
    padding: 1.5625rem 2.5rem 5.3125rem;
  }
}

.p-about-point__wrapper--class {
  padding: 3.75rem 1.25rem 3rem;
}
@media screen and (min-width: 751px) {
  .p-about-point__wrapper--class {
    padding: 1.5625rem 2.5rem 2.5rem;
  }
}

.p-about-point__wrapper--training {
  padding: 4.125rem 1.25rem 3rem;
}
@media screen and (min-width: 751px) {
  .p-about-point__wrapper--training {
    padding: 1.5625rem 3.125rem 2.5rem;
  }
}

.p-about-point__training--03 {
  padding-bottom: 4.6875rem;
}
@media screen and (min-width: 751px) {
  .p-about-point__training--03 {
    margin-top: 0.1875rem;
    padding-bottom: 1.125rem;
  }
}

@media screen and (min-width: 751px) {
  .p-about-point__training-flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.p-about-point__training-img {
  width: 100%;
  margin-top: 1.75rem;
}
@media screen and (min-width: 751px) {
  .p-about-point__training-img {
    width: 18.75rem;
    margin-top: 0;
  }
}

.p-about-point__training-img img {
  aspect-ratio: 600/465;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 751px) {
  .p-about-point__training-img img {
    aspect-ratio: 300/232.5;
  }
}

.p-about-point__training-accordion-btn {
  position: relative;
  display: block;
  margin-top: 3.75rem;
  padding-bottom: 1.375rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  color: #000000;
  text-align: center;
  border-bottom: 1px solid #000000;
  cursor: pointer;
}

.p-about-point__training-accordion-btn::before {
  content: "";
  position: absolute;
  top: 1.125rem;
  right: 20%;
  width: 0.8125rem;
  height: 0.8125rem;
  border-top: 0.1875rem solid #000000;
  border-left: 0.1875rem solid #000000;
  transform: rotate(225deg);
  transition: transform 0.3s ease;
}

.js-training-accordion.is-open .p-about-point__training-accordion-btn::before {
  transform: rotate(45deg);
}

.p-about-point__training {
  position: relative;
  margin-top: 10.3125rem;
  padding: 4.9375rem 2.3125rem 6.0625rem;
  border: 0.1875rem solid #0093d5;
  background-color: #ffffff;
}
@media screen and (min-width: 751px) {
  .p-about-point__training {
    margin-top: 4.25rem;
    padding: 2.5625rem 3.8125rem 2.375rem;
    border: 0.125rem solid #0093d5;
  }
}

.p-about-point__training-top {
  position: absolute;
  top: -3.125rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  padding: 1.3125rem;
  width: 28.75rem;
  font-size: 2.5rem;
  line-height: 1;
  color: #ffffff;
  background-color: #3fa9f5;
  border-radius: 62.4375rem;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-about-point__training-top {
    top: -1.5625rem;
    padding: 0.5rem 0 0.8125rem;
    width: 14.34375rem;
    font-size: 1.25rem;
  }
}

@media screen and (min-width: 751px) {
  .p-about-point__training-lists {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.p-about-point__training-list:not(:first-child) {
  margin-top: 2rem;
}
@media screen and (min-width: 751px) {
  .p-about-point__training-list:not(:first-child) {
    margin-top: 0;
  }
}

.p-about-point__training-tag {
  display: inline-block;
  padding: 1.0625rem 2.1875rem;
  font-size: 1.875rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000000;
  background-color: #e3f3fc;
}
@media screen and (min-width: 751px) {
  .p-about-point__training-tag {
    padding: 0.5625rem 1.125rem;
    font-size: 0.9375rem;
  }
}

.p-about-point__training-list p {
  margin-top: 1.125rem;
  padding-right: 3.4375rem;
  font-size: 1.875rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #000000;
  text-align: right;
}
@media screen and (min-width: 751px) {
  .p-about-point__training-list p {
    font-size: 0.9375rem;
    padding-right: 0;
    margin-top: 0.3125rem;
  }
}

.p-about-point__training-list p span {
  font-size: 2.5rem;
}
@media screen and (min-width: 751px) {
  .p-about-point__training-list p span {
    font-size: 1.25rem;
  }
}

.p-about-point__training-list-total {
  margin-top: 2.125rem;
  padding-right: 3.4375rem;
  padding-top: 1.875rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #0094d6;
  border-top: 1px solid #000000;
  text-align: right;
}
@media screen and (min-width: 751px) {
  .p-about-point__training-list-total {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.8125rem;
    padding-right: 0;
    padding-top: 0.9375rem;
    font-size: 1.25rem;
    text-align: center;
  }
}

.p-about-point__scroll {
  margin-top: 5rem;
}
@media screen and (min-width: 751px) {
  .p-about-point__scroll {
    margin-top: 1.25rem;
  }
}

.p-about-point__scroll-items {
  display: flex;
  align-items: center;
  width: 91.25rem;
}
@media screen and (min-width: 751px) {
  .p-about-point__scroll-items {
    justify-content: center;
    width: 100%;
  }
}

.p-about-point__scroll-items li:not(:first-child) {
  margin-left: 1.25rem;
}
@media screen and (min-width: 751px) {
  .p-about-point__scroll-items li:not(:first-child) {
    margin-left: 0.9375rem;
    padding-bottom: 0;
  }
}

.p-about-point__scroll-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 10.5125rem;
  padding: 0 3rem;
  font-size: 2.5rem;
  line-height: 1.349;
  color: #2e92d0;
  background-color: #ffffff;
  border: 0.1875rem solid #2e92d0;
}
@media screen and (min-width: 751px) {
  .p-about-point__scroll-item {
    min-width: 11.9375rem;
    height: 5.25rem;
    padding: 0 0.75rem;
    font-size: 1.25rem;
    border: 0.125rem solid #2e92d0;
  }
}

.p-about-point__scroll-item--blue {
  background-color: #2e92d0;
  color: #ffffff;
}

.p-about-point__scroll-item--symbol {
  font-size: 2.529375rem;
  font-weight: 700;
  line-height: 1;
  color: #2e92d0;
}
@media screen and (min-width: 751px) {
  .p-about-point__scroll-item--symbol {
    font-size: 1.265rem;
  }
}

.p-about-point__scroll-item p {
  font-weight: 300;
}

.p-about-point__scroll-item span {
  font-weight: 700;
}

.p-about-point__training-bottom {
  width: 100%;
  max-width: 33.125rem;
  margin-inline: auto;
  margin-top: 4.375rem;
}
@media screen and (min-width: 751px) {
  .p-about-point__training-bottom {
    max-width: 100%;
    margin-top: 1rem;
  }
}

.p-about-point__training-bottom p {
  font-size: 1.875rem;
  line-height: 1.667;
}
@media screen and (min-width: 751px) {
  .p-about-point__training-bottom p {
    font-size: 0.9375rem;
  }
}

@media screen and (min-width: 751px) {
  .p-about-point__training-text {
    text-align: center;
  }
}

.p-about-point__training-bottom__text {
  margin-top: 1.75rem;
  color: #666;
}

.p-about-point__training-btn {
  margin-top: 4.375rem;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-about-point__training-btn {
    margin-top: 2.5rem;
  }
}

.p-about-point__wrapper--overseas {
  padding: 4.125rem 1.25rem 7.5625rem;
}
@media screen and (min-width: 751px) {
  .p-about-point__wrapper--overseas {
    padding: 1.5625rem 3.125rem 2.5rem;
  }
}

.p-about-strengths {
  margin-top: 6.5625rem;
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .p-about-strengths {
    margin-top: 4.5rem;
  }
}

.p-about-strengths__point {
  margin-top: 4.1875rem;
}
@media screen and (min-width: 751px) {
  .p-about-strengths__point {
    margin-top: 2.1875rem;
  }
}

.p-abroad {
  margin-top: 6.6875rem;
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .p-abroad {
    margin-top: 1.9375rem;
  }
}

.p-abroad__wrapper {
  width: 100vw;
  margin: 1.875rem calc(50% - 50vw) 0;
  background-color: #e3f3fc;
  padding: 4.1875rem 0 5rem;
}
@media screen and (min-width: 751px) {
  .p-abroad__wrapper {
    width: 100%;
    margin: 2.125rem 0 0;
    padding: 2.25rem 3.125rem 2.75rem;
  }
}

.p-abroad__contents {
  width: 100%;
  max-width: 37.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 751px) {
  .p-abroad__contents {
    max-width: 100%;
  }
}

.p-abroad__text {
  letter-spacing: 0.05em;
}

.p-abroad__btn {
  display: flex;
  justify-content: center;
  margin-top: 4.3125rem;
}
@media screen and (min-width: 751px) {
  .p-abroad__btn {
    margin-top: 1.625rem;
  }
}

.p-achievements {
  margin-top: 9.25rem;
}
@media screen and (min-width: 751px) {
  .p-achievements {
    margin-top: 4.5rem;
    margin-bottom: 3.8125rem;
  }
}

.p-achievements__contents {
  margin-top: 2.3125rem;
}
@media screen and (min-width: 751px) {
  .p-achievements__contents {
    max-width: 40rem;
    margin-inline: auto;
    margin-top: 2.8125rem;
  }
}

@media screen and (min-width: 751px) {
  .p-support__item-head.p-achievements__head {
    font-size: 1.25rem;
  }
}

.p-achievements__body {
  margin-top: 3.125rem;
}
@media screen and (min-width: 751px) {
  .p-achievements__body {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 1.5625rem;
  }
}

.p-achievements__img {
  width: 100%;
  max-width: 29.0625rem;
  margin-inline: auto;
  margin-top: 4.6875rem;
}
@media screen and (min-width: 751px) {
  .p-achievements__img {
    max-width: 14.5rem;
    margin-top: 0;
    margin-left: 4.375rem;
  }
}

.p-admission-flow {
  margin-top: 4.25rem;
}
@media screen and (min-width: 751px) {
  .p-admission-flow {
    margin-top: 3.75rem;
  }
}

@media screen and (min-width: 751px) {
  .p-admission-flow__inner {
    max-width: 50rem;
    padding: 0 1.5625rem;
  }
}

@media screen and (min-width: 751px) {
  .p-admission-flow__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9.375rem;
  }
}

.p-admission-flow__contents:last-child {
  margin-top: 6.9375rem;
}
@media screen and (min-width: 751px) {
  .p-admission-flow__contents:last-child {
    margin-top: 0;
  }
}

.p-admission-flow__items {
  margin-top: 4.25rem;
}
@media screen and (min-width: 751px) {
  .p-admission-flow__items {
    margin-top: 2rem;
  }
}

.p-admission-flow__item {
  position: relative;
}

.p-admission-flow__item:not(:last-child):before {
  content: "";
  position: absolute;
  bottom: -3.125rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-right: 0.9375rem solid transparent;
  border-left: 0.9375rem solid transparent;
  border-top: 1.875rem solid #999999;
}
@media screen and (min-width: 751px) {
  .p-admission-flow__item:not(:last-child):before {
    bottom: -1.5625rem;
    border-right: 0.46875rem solid transparent;
    border-left: 0.46875rem solid transparent;
    border-top: 0.9375rem solid #999999;
  }
}

.p-admission-flow__item:not(:first-child) {
  margin-top: 4.25rem;
}
@media screen and (min-width: 751px) {
  .p-admission-flow__item:not(:first-child) {
    margin-top: 2.125rem;
  }
}

.p-admission-flow__item--top {
  position: relative;
}

.p-admission-flow__btn {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
}
@media screen and (min-width: 751px) {
  .p-admission-flow__btn {
    right: 0.625rem;
  }
}

.p-admission-flow__item-contents {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 10rem;
  font-size: 2.125rem;
  line-height: 1.471;
  background-color: #fdf4d6;
  text-align: center;
  padding: 1.625rem 0;
}
@media screen and (min-width: 751px) {
  .p-admission-flow__item-contents {
    min-height: 5rem;
    font-size: 1.0625rem;
    padding: 0.8125rem 0;
  }
}

.p-admission-flow__item-contents.p-admission-flow__item-contents--blue {
  background-color: #e3f3fc;
}

.p-admission-flow__item-day {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 751px) {
  .p-admission-flow__item-day {
    font-size: 1.25rem;
    margin-bottom: 0.875rem;
  }
}

.p-admission-flow__item-day--first {
  padding-top: 2.875rem;
}
@media screen and (min-width: 751px) {
  .p-admission-flow__item-day--first {
    padding-top: 1.5rem;
  }
}

.p-admission-flow__item-day--second {
  padding-top: 1.125rem;
}
@media screen and (min-width: 751px) {
  .p-admission-flow__item-day--second {
    padding-top: 0.625rem;
  }
}

.p-admission-flow__item-day--blue {
  padding-top: 2.875rem;
  margin-bottom: 2.4375rem;
}
@media screen and (min-width: 751px) {
  .p-admission-flow__item-day--blue {
    padding-top: 1.4375rem;
    margin-bottom: 1.1875rem;
  }
}

.p-admission-flow__item-day li {
  position: relative;
}

.p-admission-flow__item-day li:not(:first-child) {
  margin-top: 2rem;
}
@media screen and (min-width: 751px) {
  .p-admission-flow__item-day li:not(:first-child) {
    margin-top: 0.9375rem;
  }
}

.p-admission-flow__item-day h3 {
  font-size: 2.5rem;
  letter-spacing: 0.09em;
  padding-left: 2.5rem;
}
@media screen and (min-width: 751px) {
  .p-admission-flow__item-day h3 {
    font-size: 1.25rem;
    padding-left: 1.25rem;
  }
}

.p-admission-flow__item-day p {
  font-weight: 400;
  margin-top: 0.75rem;
}
@media screen and (min-width: 751px) {
  .p-admission-flow__item-day p {
    margin-top: 0.4375rem;
  }
}

.p-admission-flow__item-day span {
  content: "";
  position: absolute;
  top: 0.75rem;
  left: 0;
  width: 1.6875rem;
  height: 1.6875rem;
  background-color: #36bdef;
  border-radius: 50%;
}
@media screen and (min-width: 751px) {
  .p-admission-flow__item-day span {
    top: 0.40625rem;
    width: 0.84375rem;
    height: 0.84375rem;
  }
}

.p-admission-flow__item-contents--medium:first-child {
  border-bottom: 1px solid #000000;
}

.p-all-list {
  margin-top: 9.625rem;
}
@media screen and (min-width: 751px) {
  .p-all-list {
    max-width: 42.5rem;
    margin-inline: auto;
    margin-top: 4.4375rem;
  }
}

.p-all-list__title {
  font-size: 3.125rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.07em;
}
@media screen and (min-width: 751px) {
  .p-all-list__title {
    font-size: 1.875rem;
    text-align: center;
  }
}

.p-all-list__lists {
  margin-top: 1.84375rem;
}
@media screen and (min-width: 751px) {
  .p-all-list__lists {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 2.5rem;
    margin-top: 0.625rem;
  }
}

.p-all-list__list {
  position: relative;
  border-bottom: 1px solid #000000;
  padding-top: 2.71875rem;
}
@media screen and (min-width: 751px) {
  .p-all-list__list {
    padding-top: 1.5625rem;
  }
}

.p-all-list__list a {
  display: block;
  font-size: 2.1875rem;
  padding-bottom: 3.3125rem;
}
@media screen and (min-width: 751px) {
  .p-all-list__list a {
    font-size: 1.09375rem;
    padding-bottom: 1.5625rem;
  }
}

.p-all-list__btn {
  position: absolute;
  top: 50%;
  right: 0.8125rem;
  transform: translateY(-50%);
}

.p-alumni {
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .p-alumni {
    margin-top: 2.3125rem;
  }
}

.p-alumni--recruiting {
  margin-top: 6.25rem;
}
@media screen and (min-width: 751px) {
  .p-alumni--recruiting {
    margin-top: 4.5625rem;
  }
}

.p-alumni__items--recruiting {
  margin-top: 7.5rem;
}
@media screen and (min-width: 751px) {
  .p-alumni__items--recruiting {
    margin-top: 4.5rem;
  }
}

.p-alumni__item:not(:first-child) {
  margin-top: 9.25rem;
}
@media screen and (min-width: 751px) {
  .p-alumni__item:not(:first-child) {
    margin-top: 4.5rem;
  }
}

.p-alumni__item.p-alumni__item--recruiting:not(:first-child) {
  margin-top: 4.5rem;
}
@media screen and (min-width: 751px) {
  .p-alumni__item.p-alumni__item--recruiting:not(:first-child) {
    margin-top: 4.5rem;
  }
}

@media screen and (min-width: 751px) {
  .p-alumni__item-flex {
    display: flex;
    align-items: flex-start;
  }
}

.p-alumni__img {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
@media screen and (min-width: 751px) {
  .p-alumni__img {
    width: 32.5rem;
    margin: 0;
    flex-shrink: 0;
  }
}

.p-alumni__img img {
  width: 100%;
  aspect-ratio: 750/480;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 751px) {
  .p-alumni__img img {
    aspect-ratio: 520/332.8;
  }
}

.p-alumni__contents {
  position: relative;
  z-index: 2;
  margin-top: -2.5rem;
  padding: 3.75rem;
  color: #ffffff;
  background-color: #3fa9f5;
  border-radius: 5.625rem 0 5.625rem 0;
}
@media screen and (min-width: 751px) {
  .p-alumni__contents {
    width: 100%;
    margin-top: 4.5625rem;
    margin-left: -1.25rem;
    padding: 1.875rem 2.5rem;
    border-radius: 2.5rem 0 2.5rem 0;
  }
}

.p-alumni__title {
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 751px) {
  .p-alumni__title {
    font-size: 1.5625rem;
  }
}

.p-alumni__contents-body {
  margin-top: 3.6875rem;
}
@media screen and (min-width: 751px) {
  .p-alumni__contents-body {
    margin-top: 1.875rem;
  }
}

.p-alumni__contents-body-top {
  padding-bottom: 1.625rem;
  border-bottom: 0.125rem solid #ffffff;
}
@media screen and (min-width: 751px) {
  .p-alumni__contents-body-top {
    padding-bottom: 0.8125rem;
  }
}

.p-alumni__contents-body-bottom {
  margin-top: 1.875rem;
}
@media screen and (min-width: 751px) {
  .p-alumni__contents-body-bottom {
    margin-top: 0.9375rem;
  }
}

.p-alumni__accordion {
  margin-top: 3.4375rem;
  padding: 0 1.25rem;
}
@media screen and (min-width: 751px) {
  .p-alumni__accordion {
    margin-top: 0.9375rem;
    padding: 0 4.6875rem;
  }
}

.p-alumni__accordion-head {
  position: relative;
  font-size: 2rem;
  font-weight: 500;
  color: #000000;
  text-align: center;
  border-bottom: 1px solid #000000;
  padding-bottom: 1.0625rem;
}

.p-alumni__accordion-head::before {
  content: "";
  position: absolute;
  top: 1.125rem;
  right: 30%;
  width: 0.8125rem;
  height: 0.8125rem;
  border-top: 0.1875rem solid #000000;
  border-left: 0.1875rem solid #000000;
  transform: rotate(225deg);
  transition: transform 0.3s ease;
}

.p-alumni__accordion.is-open .p-alumni__accordion-head::before {
  transform: rotate(45deg);
}

.p-alumni__accordion-body {
  margin-top: 3.125rem;
}
@media screen and (min-width: 751px) {
  .p-alumni__accordion-body {
    margin-top: 0;
  }
}

.p-alumni__accordion-body h4 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  color: #0093d5;
}
@media screen and (min-width: 751px) {
  .p-alumni__accordion-body h4 {
    font-size: 1.25rem;
  }
}

.p-alumni__accordion-body-text {
  margin-top: 1.375rem;
}
@media screen and (min-width: 751px) {
  .p-alumni__accordion-body-text {
    margin-top: 0.625rem;
  }
}

.p-alumni__accordion-body-text p {
  font-size: 1.875rem;
  line-height: 1.82;
}
@media screen and (min-width: 751px) {
  .p-alumni__accordion-body-text p {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.p-alumni__accordion-body-text p:not(:first-child) {
  margin-top: 3.4375rem;
}
@media screen and (min-width: 751px) {
  .p-alumni__accordion-body-text p:not(:first-child) {
    margin-top: 1.875rem;
  }
}

.p-alumni__btn {
  margin-top: 7.5rem;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-alumni__btn {
    margin-top: 4.75rem;
  }
}

.p-ao-page {
  margin-top: 4.6875rem;
}
@media screen and (min-width: 751px) {
  .p-ao-page {
    margin-top: 4.875rem;
  }
}

.p-ao-page__img {
  width: 100%;
  max-width: 34.375rem;
  margin-inline: auto;
}
@media screen and (min-width: 751px) {
  .p-ao-page__img {
    max-width: 17.1875rem;
  }
}

.p-ao-page__img img {
  width: 100%;
}

.p-ao-page__btn {
  margin-top: 1.6875rem;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-ao-page__btn {
    margin-top: 0.9375rem;
  }
}

.p-banner-top {
  margin-top: 4.5625rem;
}
@media screen and (min-width: 751px) {
  .p-banner-top {
    margin-top: 2.6875rem;
  }
}

.p-banner-top__swiper-slide {
  width: 100%;
}

.p-banner-top__swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 640/400;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 751px) {
  .p-banner-top__swiper-slide img {
    aspect-ratio: 320/200;
  }
}

.p-banner-top__swiper-slide img:hover {
  opacity: 0.5;
}

.p-banner-top__swiper-pagination {
  margin-top: 2.1875rem;
  --swiper-pagination-bullet-size: 1rem;
  --swiper-pagination-bullet-horizontal-gap: 0.6875rem;
}
@media screen and (min-width: 751px) {
  .p-banner-top__swiper-pagination {
    margin-top: 1.375rem;
    --swiper-pagination-bullet-size: 0.75rem;
    --swiper-pagination-bullet-horizontal-gap: 0.5rem;
  }
}

.p-banner-top__swiper-pagination.swiper-pagination {
  position: static;
}

.p-banner-top__swiper-pagination .swiper-pagination-bullet-active {
  background-color: #333333;
}

.p-about-banner {
  margin-top: 7.0625rem;
  margin-bottom: 6.25rem;
}
@media screen and (min-width: 751px) {
  .p-about-banner {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
}

.p-about-banner__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-about-banner__title {
    font-size: 1.25rem;
  }
}

.p-about-banner__contents {
  margin-top: 2.5rem;
}
@media screen and (min-width: 751px) {
  .p-about-banner__contents {
    margin-top: 1.25rem;
  }
}

.p-breadcrumb__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.p-breadcrumb__item {
  font-size: 1.25rem;
  line-height: 1.6;
  text-transform: uppercase;
}
@media screen and (min-width: 751px) {
  .p-breadcrumb__item {
    font-size: 0.75rem;
    line-height: 3.3;
    letter-spacing: -0.01em;
  }
}

.p-breadcrumb__item:not(:first-child) {
  margin-left: 0.3125rem;
}

.p-calendar {
  margin-top: 3.75rem;
}
@media screen and (min-width: 751px) {
  .p-calendar {
    margin-top: 3.375rem;
  }
}

.p-calendar__wrapper {
  position: relative;
}
@media screen and (min-width: 751px) {
  .p-calendar__wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    -moz-column-gap: 3.75rem;
         column-gap: 3.75rem;
    position: relative;
    flex-wrap: wrap;
  }
}

.p-calendar__month {
  width: 39.91875rem;
}
@media screen and (min-width: 751px) {
  .p-calendar__month {
    width: 26.25rem;
  }
}

.p-calendar__header {
  font-size: 2.125rem;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-calendar__header {
    font-size: 1.0625rem;
  }
}

.month-number {
  font-size: 3.75rem;
}
@media screen and (min-width: 751px) {
  .month-number {
    font-size: 1.875rem;
  }
}

.p-calendar__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.875rem;
}
@media screen and (min-width: 751px) {
  .p-calendar__table {
    margin-top: 1.375rem;
  }
}

.p-calendar__table th {
  background-color: #e6f0fa;
  padding: 0.3125rem;
  font-size: 1.875rem;
  font-weight: 700;
  border: 1px solid #000000;
}
@media screen and (min-width: 751px) {
  .p-calendar__table th {
    font-size: 1.125rem;
  }
}

.p-calendar__table td {
  width: 14.28%;
  height: 6.8125rem;
  border: 1px solid #000000;
  vertical-align: top;
  text-align: right;
  position: relative;
  font-size: 1.75rem;
  line-height: 1;
  padding: 0.25rem 0.1875rem;
}
@media screen and (min-width: 751px) {
  .p-calendar__table td {
    height: 4.46875rem;
    font-size: 0.9375rem;
    padding: 0 0.25rem;
  }
}

.event-day {
  position: relative;
}

.event-day::after {
  content: "";
  position: absolute;
  bottom: 0.9375rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2.8125rem;
  height: 2.8125rem;
  background-image: url("../images/top/calendar-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 751px) {
  .event-day::after {
    bottom: 0.625rem;
    width: 1.875rem;
    height: 1.875rem;
  }
}

.event-day.selected::after {
  background-image: url("../images/top/calendar-icon-selected.svg");
}

.selected {
  background-color: #003570;
  color: white;
}

.p-calendar__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 2.1875rem;
  font-size: 1.875rem;
  line-height: 1.23;
}
@media screen and (min-width: 751px) {
  .p-calendar__bottom {
    margin-top: 2rem;
    font-size: 0.9375rem;
  }
}

.p-calendar__bottom img {
  margin-right: 1.25rem;
  width: 3.125rem;
  height: 3.125rem;
}
@media screen and (min-width: 751px) {
  .p-calendar__bottom img {
    margin-right: 0.625rem;
    width: 1.5rem;
    height: 1.5rem;
  }
}

.c-calendar__btn {
  position: absolute;
  top: 1.625rem;
  width: 3.125rem;
  height: 3.125rem;
  background-color: #36bdef;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (min-width: 751px) {
  .c-calendar__btn {
    top: 0.3125rem;
    width: 2rem;
    height: 2rem;
  }
}

.c-calendar__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.5625rem;
  height: 0.1875rem;
  background-color: #fff;
}
@media screen and (min-width: 751px) {
  .c-calendar__btn::before {
    width: 0.9375rem;
    height: 0.125rem;
  }
}

.c-calendar__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% + 0.3125rem);
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0.8125rem;
  height: 0.8125rem;
  border-right: 0.1875rem solid #fff;
  border-top: 0.1875rem solid #fff;
}
@media screen and (min-width: 751px) {
  .c-calendar__btn::after {
    width: 0.5625rem;
    height: 0.5625rem;
    left: calc(50% + 0.125rem);
    border-right: 0.125rem solid #fff;
    border-top: 0.125rem solid #fff;
  }
}

.c-calendar__btn.c-calendar__btn--prev::before {
  left: calc(50% + 0.1875rem);
}
@media screen and (min-width: 751px) {
  .c-calendar__btn.c-calendar__btn--prev::before {
    left: calc(50% + 0.0625rem);
  }
}

.c-calendar__btn.c-calendar__btn--prev::after {
  left: calc(50% - 0.1875rem);
  transform: translate(-50%, -50%) rotate(225deg);
}
@media screen and (min-width: 751px) {
  .c-calendar__btn.c-calendar__btn--prev::after {
    left: calc(50% - 0.125rem);
  }
}

.c-calendar__btn.c-calendar__btn--prev {
  left: 0;
}

.c-calendar__btn.c-calendar__btn--next {
  right: 0;
}

.p-campus-fv__inner {
  width: 100%;
  max-width: 46.875rem;
  margin-inline: auto;
}
@media screen and (min-width: 751px) {
  .p-campus-fv__inner {
    max-width: 75rem;
  }
}

.p-campus-fv__wrapper {
  position: relative;
}
@media screen and (min-width: 751px) {
  .p-campus-fv__wrapper {
    margin-left: auto;
  }
}

@media screen and (min-width: 751px) {
  .p-campus-fv__swiper.swiper {
    width: 50.5rem;
    margin-right: 0;
  }
}

.p-campus-fv__title {
  position: absolute;
  z-index: 2;
  bottom: -11.5625rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 40rem;
  margin-inline: auto;
  padding: 4.6875rem 0 5.625rem;
  color: #003570;
  background-color: #fdf4d6;
  border-radius: 4.6875rem 0 4.6875rem 0;
}
@media screen and (min-width: 751px) {
  .p-campus-fv__title {
    top: 50%;
    bottom: 0;
    left: 3.9375rem;
    transform: translateY(-50%);
    max-width: 27.5rem;
    padding: 8.125rem 0 8.4375rem;
    border-radius: 3.75rem 0 3.75rem 0;
  }
}

.p-campus-fv__title-ja {
  display: block;
  font-size: 2.125rem;
  line-height: 1.618;
}
@media screen and (min-width: 751px) {
  .p-campus-fv__title-ja {
    font-size: 1.1875rem;
  }
}

.p-campus-fv__title-en {
  font-size: 6.875rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
@media screen and (min-width: 751px) {
  .p-campus-fv__title-en {
    font-size: 3.75rem;
  }
}

.p-campus-lead {
  margin-top: 14.5rem;
}
@media screen and (min-width: 751px) {
  .p-campus-lead {
    margin-top: 4.5625rem;
    text-align: center;
  }
}

.p-campus-lead__inner {
  width: 100%;
  max-width: 32.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 751px) {
  .p-campus-lead__inner {
    max-width: 100%;
  }
}

.p-campus-lead__title {
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1.4;
  color: #ecc633;
}
@media screen and (min-width: 751px) {
  .p-campus-lead__title {
    font-size: 1.875rem;
  }
}

.p-campus-lead__title.p-student-lead__title {
  color: #000000;
}

.p-campus-lead__text {
  margin-top: 1.625rem;
  letter-spacing: -0.07em;
}
@media screen and (min-width: 751px) {
  .p-campus-lead__text {
    margin-top: 1.875rem;
  }
}

.p-campus-lead__text p:not(:first-child) {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 751px) {
  .p-campus-lead__text p:not(:first-child) {
    margin-top: 0.4375rem;
  }
}

.p-campus-questionnaire {
  margin-top: 5rem;
}

.p-campus-questionnaire__inner {
  width: 100%;
  max-width: 44.1875rem;
  margin-inline: auto;
}
@media screen and (min-width: 751px) {
  .p-campus-questionnaire__inner {
    max-width: 41.6875rem;
  }
}

.p-campus-questionnaire__wrapper {
  position: relative;
}

.p-campus-questionnaire__img {
  width: 100%;
}

.p-campus-questionnaire__btn {
  position: absolute;
  z-index: 2;
  bottom: 5.625rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 751px) {
  .p-campus-questionnaire__btn {
    bottom: 4.0625rem;
    left: 28%;
  }
}

.p-campus-schedule {
  margin-top: 6.4375rem;
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .p-campus-schedule {
    margin-top: 5.0625rem;
    margin-bottom: 4.25rem;
  }
}

.p-campus-schedule__title {
  width: 100%;
  max-width: 34.46875rem;
  margin-inline: auto;
  margin-left: 0;
}
@media screen and (min-width: 751px) {
  .p-campus-schedule__title {
    max-width: 18.90625rem;
    margin-left: auto;
  }
}

.p-campus-schedule__title img {
  width: 100%;
}

.p-campus-schedule__top {
  position: relative;
  width: 100vw;
  margin: 3.875rem calc(50% - 50vw) 0;
  padding: 1.25rem 7.1875rem 1.625rem;
  background-color: #fcf3d5;
}
@media screen and (min-width: 751px) {
  .p-campus-schedule__top {
    width: 100%;
    margin: 1.375rem 0 0;
    padding: 1.375rem 1.25rem 1.6875rem;
    text-align: center;
  }
}

.p-campus-schedule__top img {
  position: absolute;
  bottom: 0;
  right: 4.6875rem;
  width: 11.25rem;
}
@media screen and (min-width: 751px) {
  .p-campus-schedule__top img {
    right: 13.3125rem;
    width: 5.625rem;
  }
}

.p-campus-schedule__contents {
  margin-top: 3.5625rem;
}
@media screen and (min-width: 751px) {
  .p-campus-schedule__contents {
    margin-top: 2.5rem;
  }
}

@media screen and (min-width: 751px) {
  .p-campus-schedule__items {
    position: relative;
  }
}

@media screen and (min-width: 751px) {
  .p-campus-schedule__items::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 1.875rem;
    left: 2.4375rem;
    width: 0.125rem;
    height: 274.6875rem;
    background-color: #36bcee;
  }
}

.p-campus-schedule__item:not(:last-child) {
  padding-bottom: 4.9375rem;
  border-bottom: 0.125rem solid #0093d5;
}
@media screen and (min-width: 751px) {
  .p-campus-schedule__item:not(:last-child) {
    padding-bottom: 0;
    border-bottom: 0;
  }
}

.p-campus-schedule__item:not(:first-child) {
  margin-top: 4.875rem;
}

.p-campus-schedule__item-list {
  position: relative;
}

.p-campus-schedule__item-list:not(:first-child) {
  margin-top: 6.25rem;
}
@media screen and (min-width: 751px) {
  .p-campus-schedule__item-list:not(:first-child) {
    margin-top: 1.875rem;
  }
}

.p-campus-schedule__item-top {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 751px) {
  .p-campus-schedule__item-top {
    position: absolute;
    top: 0;
    left: 0;
  }
}

.p-campus-schedule__item-month {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7.5rem;
  height: 7.5rem;
  margin-right: 1.5rem;
  font-size: 2.5rem;
  line-height: 1;
  background-color: #36bcee;
  color: #ffffff;
  border-radius: 50%;
}
@media screen and (min-width: 751px) {
  .p-campus-schedule__item-month {
    width: 5rem;
    height: 5rem;
    margin-right: 0;
    font-size: 1.6625rem;
  }
}

.p-campus-schedule__item-month span {
  font-size: 1.875rem;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 751px) {
  .p-campus-schedule__item-month span {
    font-size: 1.25rem;
  }
}

.p-campus-schedule__item-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 751px) {
  .p-campus-schedule__item-title {
    font-size: 1.25rem;
  }
}

.p-campus-schedule__item-flex {
  margin-top: 2.125rem;
}
@media screen and (min-width: 751px) {
  .p-campus-schedule__item-flex {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    margin-top: 0;
    padding-top: 0.6875rem;
    padding-left: 5.875rem;
  }
}

@media screen and (min-width: 751px) {
  .p-campus-schedule__swiper.swiper {
    margin-left: 0;
  }
}

.p-campus-schedule__swiper-slide.swiper-slide {
  width: 100%;
}
@media screen and (min-width: 751px) {
  .p-campus-schedule__swiper-slide.swiper-slide {
    width: 18.75rem;
  }
}

@media screen and (min-width: 751px) {
  .p-campus-schedule__item-body {
    flex-shrink: 0;
    width: 18.75rem;
    margin-top: 0.75rem;
    margin-right: 2.5625rem;
  }
}

.p-campus-schedule__item-text {
  margin-top: 1.5625rem;
  min-height: 6.875rem;
}
@media screen and (min-width: 751px) {
  .p-campus-schedule__item-text {
    margin-top: 0.4375rem;
    min-height: 0;
  }
}

.p-campus-schedule__swiper .p-campus-schedule__swiper-scrollbar.swiper-scrollbar {
  position: static;
  width: 100%;
  height: 0.3125rem;
  background: #e5e5e5;
  margin-top: 2.5625rem;
  border-radius: 0.25rem;
}
@media screen and (min-width: 751px) {
  .p-campus-schedule__swiper .p-campus-schedule__swiper-scrollbar.swiper-scrollbar {
    width: 67%;
    height: 0.15625rem;
    margin-top: 1.3125rem;
  }
}

.p-campus-schedule__swiper-scrollbar .swiper-scrollbar-drag {
  background: #666;
}

.p-campus-schedule__swiper-tag-area {
  position: absolute;
  display: flex;
  z-index: 2;
  top: 0;
  left: 0;
}

.p-campus-schedule__swiper-tag {
  display: block;
  padding: 0.3125rem 1.1875rem 0.625rem;
  font-size: 2.394375rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  background-color: #36bcee;
}
@media screen and (min-width: 751px) {
  .p-campus-schedule__swiper-tag {
    padding: 0.1875rem 0.59375rem;
    font-size: 1.1875rem;
  }
}

.p-campus-schedule__swiper-tag.p-campus-schedule__swiper-tag--pink {
  background-color: #ea91ba;
}

.p-campus-schedule__swiper-tag span {
  font-size: 1.710625rem;
}
@media screen and (min-width: 751px) {
  .p-campus-schedule__swiper-tag span {
    font-size: 0.85rem;
  }
}

.p-campus-schedule__item-btn {
  margin-top: 1.625rem;
}
@media screen and (min-width: 751px) {
  .p-campus-schedule__item-btn {
    margin-top: 2.25rem;
  }
}

.p-career {
  margin-top: 9.375rem;
}
@media screen and (min-width: 751px) {
  .p-career {
    margin-top: 6.4375rem;
  }
}

.p-career__text {
  margin-top: 3rem;
  line-height: 1.833;
}
@media screen and (min-width: 751px) {
  .p-career__text {
    margin-top: 1.6875rem;
  }
}

.p-career__contents {
  margin-top: 5.75rem;
}
@media screen and (min-width: 751px) {
  .p-career__contents {
    margin-top: 4.375rem;
  }
}

.p-career__data {
  width: 100%;
  margin-top: 5.1875rem;
}
@media screen and (min-width: 751px) {
  .p-career__data {
    margin-top: 1.25rem;
  }
}

.p-career__graph {
  width: 100%;
  max-width: 31.875rem;
  margin-top: 5rem;
}
@media screen and (min-width: 751px) {
  .p-career__graph {
    max-width: 100%;
    margin-top: 5.1875rem;
  }
}

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

.p-category__wrapper {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 751px) {
  .p-category__wrapper {
    margin-inline: auto;
    max-width: 21.25rem;
  }
}

.p-category__select {
  display: block;
  width: 100%;
  font-size: 1.625rem;
  padding: 1.25rem 2.125rem;
  border-radius: 0.25rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
@media screen and (min-width: 751px) {
  .p-category__select {
    padding: 0.75rem 1.25rem;
    font-size: 0.8125rem;
  }
}

.p-category__wrapper::before {
  content: "";
  position: absolute;
  top: 2.125rem;
  right: 2rem;
  border: 0.8125rem solid transparent;
  border-top: 0.8125rem solid #b3b3b3;
  pointer-events: none;
}
@media screen and (min-width: 751px) {
  .p-category__wrapper::before {
    top: 1.0625rem;
    right: 1.0625rem;
    border: 0.5rem solid transparent;
    border-top: 0.5rem solid #b3b3b3;
  }
}

.p-change {
  margin-top: 4.375rem;
}
@media screen and (min-width: 751px) {
  .p-change {
    margin-top: 3.75rem;
  }
}

.p-change__inner {
  max-width: 42.5rem;
}
@media screen and (min-width: 751px) {
  .p-change__inner {
    max-width: 65.625rem;
  }
}

.p-change__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.475;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-change__title {
    font-size: 1.25rem;
  }
}

@media screen and (min-width: 751px) {
  .p-change__contents {
    display: flex;
    align-items: flex-start;
    margin-top: 0.9375rem;
  }
}

.p-change__img {
  width: 100%;
  max-width: 40rem;
  margin-top: 2rem;
}
@media screen and (min-width: 751px) {
  .p-change__img {
    max-width: 31.25rem;
    margin-top: 0;
  }
}

.p-change__img img {
  width: 100%;
  aspect-ratio: 640/402.2;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 751px) {
  .p-change__img img {
    aspect-ratio: 500/240;
  }
}

.p-change__body {
  display: block;
  height: 24.5625rem;
  padding: 2.5rem 1.625rem 3.1875rem 2.875rem;
}
@media screen and (min-width: 751px) {
  .p-change__body {
    width: 31.25rem;
    height: 15rem;
    padding: 1.8125rem 3rem 2.0625rem 3.1875rem;
  }
}

.p-change__body--purple {
  background-color: #9477ac;
}

.p-change__body--blue {
  background-color: #3fa9f5;
}

.p-change__body span {
  display: inline-block;
  padding: 0.75rem 1.5625rem;
  font-size: 1.75rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
  border: 1px solid #ffffff;
}
@media screen and (min-width: 751px) {
  .p-change__body span {
    padding: 0.5rem 1.25rem;
    font-size: 0.9375rem;
  }
}

.p-change__body-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.0625rem;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1.097;
  color: #ffffff;
}
@media screen and (min-width: 751px) {
  .p-change__body-title {
    margin-top: 0.75rem;
    font-size: 1.5625rem;
  }
}

.p-change__body-text {
  margin-top: 1.625rem;
  font-size: 1.875rem;
  line-height: 1.676;
  color: #ffffff;
}
@media screen and (min-width: 751px) {
  .p-change__body-text {
    margin-top: 0.75rem;
    font-size: 1rem;
  }
}

.p-class-flow {
  margin-top: 6.5625rem;
}
@media screen and (min-width: 751px) {
  .p-class-flow {
    margin-top: 4.375rem;
    margin-bottom: 2.5rem;
  }
}

.p-class-flow__contents {
  margin-top: 4.1875rem;
}
@media screen and (min-width: 751px) {
  .p-class-flow__contents {
    margin-top: 3.125rem;
  }
}

.p-class-flow__img {
  width: 100%;
}

.p-class-flow__img img {
  width: 174.675rem;
}
@media screen and (min-width: 751px) {
  .p-class-flow__img img {
    width: 100%;
  }
}

.p-class {
  margin-top: 7.125rem;
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .p-class {
    margin-top: 4.6875rem;
  }
}

.p-class__wrapper {
  width: 100vw;
  margin: 4.1875rem calc(50% - 50vw) 0;
  background-color: #e3f3fc;
}
@media screen and (min-width: 751px) {
  .p-class__wrapper {
    width: 100%;
    margin: 4.6875rem 0 0;
    background-color: transparent;
  }
}

.p-class__cards {
  width: 100%;
  max-width: 40rem;
  margin-inline: auto;
  padding: 7.8125rem 1.25rem 7.5rem;
}
@media screen and (min-width: 751px) {
  .p-class__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9375rem;
    max-width: 100%;
    margin-inline: auto;
    padding: 0;
  }
}

.p-class__card {
  position: relative;
  background-color: #ffffff;
  border-top-left-radius: 4.375rem;
  border-bottom-right-radius: 4.375rem;
}
@media screen and (min-width: 751px) {
  .p-class__card {
    background-color: #e3f3fc;
    border-top-left-radius: 2.5rem;
    border-bottom-right-radius: 2.5rem;
  }
}

.p-class__card:not(:first-child) {
  margin-top: 6.5625rem;
}
@media screen and (min-width: 751px) {
  .p-class__card:not(:first-child) {
    margin-top: 0;
  }
}

.p-class__card-circle {
  position: absolute;
  top: -4.0625rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 751px) {
  .p-class__card-circle {
    top: -2.03125rem;
  }
}

.p-class__card-head {
  padding: 4.375rem 0 2.25rem;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-class__card-head {
    padding: 2.125rem 0 1.125rem;
  }
}

.p-class__card-summary,
.p-class__card-time,
.p-class__card-heading,
.p-class__card-title {
  font-weight: 700;
  color: #003570;
}

.p-class__card-summary,
.p-class__card-time {
  font-size: 2.5rem;
  line-height: 1.15;
}
@media screen and (min-width: 751px) {
  .p-class__card-summary,
  .p-class__card-time {
    font-size: 1.25rem;
  }
}

.p-class__card-time span {
  font-size: 6.25rem;
}
@media screen and (min-width: 751px) {
  .p-class__card-time span {
    font-size: 3.125rem;
  }
}

.p-class__card-text {
  margin-top: 0.625rem;
  font-size: 1.875rem;
}
@media screen and (min-width: 751px) {
  .p-class__card-text {
    font-size: 0.9375rem;
  }
}

.p-class__card-heading {
  font-size: 1.875rem;
  line-height: 1.53;
}
@media screen and (min-width: 751px) {
  .p-class__card-heading {
    font-size: 0.9375rem;
  }
}

.p-class__card-title {
  font-size: 2.875rem;
  line-height: 1.522;
}
@media screen and (min-width: 751px) {
  .p-class__card-title {
    font-size: 1.4375rem;
  }
}

.p-class__card-img {
  width: 100%;
}

.p-class__card-img img {
  width: 100%;
  aspect-ratio: 600/241;
  -o-object-fit: cover;
     object-fit: cover;
  border-bottom-right-radius: 4.375rem;
}
@media screen and (min-width: 751px) {
  .p-class__card-img img {
    aspect-ratio: 290/116.4;
    border-bottom-right-radius: 2.5rem;
  }
}

.p-class__work {
  margin-top: 9.375rem;
}
@media screen and (min-width: 751px) {
  .p-class__work {
    margin-top: 3.75rem;
  }
}

.p-class__work-contents:not(:first-child) {
  margin-top: 7.1875rem;
}
@media screen and (min-width: 751px) {
  .p-class__work-contents:not(:first-child) {
    margin-top: 3.5625rem;
  }
}

.p-class__work-title {
  width: 29.4375rem;
  margin-left: calc(-50vw + 50%);
  padding: 0.8125rem 0 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  background-color: #3fa9f5;
  text-align: center;
  border-radius: 0 2.1875rem 2.1875rem 0;
}
@media screen and (min-width: 751px) {
  .p-class__work-title {
    width: 17.5rem;
    margin-left: 0;
    padding: 0.4375rem 0 0.5rem;
    font-size: 1.25rem;
  }
}

.p-class__work-text {
  margin-top: 1.25rem;
}
@media screen and (min-width: 751px) {
  .p-class__work-text {
    margin-top: 0.625rem;
    margin-left: 3.125rem;
  }
}

.p-class__work-img {
  width: 100%;
  margin-inline: auto;
  margin-top: 3.5rem;
}
@media screen and (min-width: 751px) {
  .p-class__work-img {
    width: 25.375rem;
    margin-top: 1.9375rem;
  }
}

.p-class__work-img img {
  aspect-ratio: 608/486.6;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 751px) {
  .p-class__work-img img {
    aspect-ratio: 406/142.8;
  }
}

.p-class__work-slider {
  margin-top: 4.6875rem;
}
@media screen and (min-width: 751px) {
  .p-class__work-slider {
    margin-top: 2.1875rem;
  }
}

.p-class__work-swiper.swiper {
  width: 100%;
  padding-top: 1.25rem;
}
@media screen and (min-width: 751px) {
  .p-class__work-swiper.swiper {
    padding-top: 0.625rem;
  }
}

.p-class__work-slide.swiper-slide {
  width: 33.125rem;
}
@media screen and (min-width: 751px) {
  .p-class__work-slide.swiper-slide {
    width: 16.53125rem;
  }
}

.p-class__work-slide img {
  aspect-ratio: 529/400;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 751px) {
  .p-class__work-slide img {
    aspect-ratio: 264.5/200;
  }
}

.p-class__work-slide__text {
  margin-top: 1.5625rem;
  font-size: 1.75rem;
  line-height: 1.429;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 751px) {
  .p-class__work-slide__text {
    margin-top: 0.875rem;
    font-size: 0.875rem;
  }
}

.p-column-top {
  margin-top: 9.8125rem;
  margin-bottom: 8.25rem;
}
@media screen and (min-width: 751px) {
  .p-column-top {
    margin-top: 4.6875rem;
    margin-bottom: 8.5rem;
  }
}

.p-column-top__inner {
  max-width: 37.5rem;
}
@media screen and (min-width: 751px) {
  .p-column-top__inner {
    max-width: 59.375rem;
  }
}

.p-column-top__lead {
  margin-top: 1.75rem;
}
@media screen and (min-width: 751px) {
  .p-column-top__lead {
    margin-top: 1.4375rem;
  }
}

.p-column-top__contents {
  margin-top: 4.0625rem;
}
@media screen and (min-width: 751px) {
  .p-column-top__contents {
    margin-top: 2.625rem;
  }
}

.p-column-top__column-title {
  position: relative;
  margin-top: 4.375rem;
  padding-left: 1.4375rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 751px) {
  .p-column-top__column-title {
    margin-top: 1.6875rem;
    padding-left: 1.25rem;
    font-size: 1.0625rem;
    line-height: 2;
  }
}

.p-column-top__column-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.5625rem;
  height: 100%;
  background-color: #d4edfa;
}

.p-column-top__items {
  display: none;
  margin-top: 3.625rem;
}
@media screen and (min-width: 751px) {
  .p-column-top__items {
    margin-top: 2.0625rem;
  }
}

.p-column-top__items.all {
  display: block;
}

.p-column-top__item {
  position: relative;
}

.p-column-top__item:not(:first-child) {
  margin-top: 6.6875rem;
}
@media screen and (min-width: 751px) {
  .p-column-top__item:not(:first-child) {
    margin-top: 1.25rem;
  }
}

.p-column-top__link {
  display: flex;
  align-items: flex-start;
}
@media screen and (min-width: 751px) {
  .p-column-top__link {
    align-items: center;
  }
}

.p-column-top__img {
  width: 100%;
  max-width: 11.875rem;
}
@media screen and (min-width: 751px) {
  .p-column-top__img {
    max-width: 7.5rem;
  }
}

.p-column-top__img img {
  aspect-ratio: 190/190;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 751px) {
  .p-column-top__img img {
    aspect-ratio: 120/120;
  }
}

.p-column-top__body {
  margin-left: 1.375rem;
}
@media screen and (min-width: 751px) {
  .p-column-top__body {
    margin-left: 1.9375rem;
  }
}

.p-column-top__item-title {
  position: relative;
  margin-top: 1.125rem;
  padding-right: 3.125rem;
  font-size: 1.875rem;
  line-height: 1.5;
  color: #231815;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .p-column-top__item-title {
    padding-right: 0;
    font-size: 0.9375rem;
  }
}

.p-column-top__item-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #231815;
  transition: width 0.3s ease;
}

.p-column-top__item:hover .p-column-top__item-title::after {
  width: 100%;
}

.p-column-top__item-arrow {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.p-column-top__btn {
  margin-top: 6.6875rem;
  text-align: right;
}
@media screen and (min-width: 751px) {
  .p-column-top__btn {
    margin-top: 1.25rem;
  }
}

.p-column-top__item:hover .c-arrow {
  transform: translateX(5px);
}

.p-conditions {
  margin-top: 4.5rem;
}
@media screen and (min-width: 751px) {
  .p-conditions {
    margin-top: 2rem;
  }
}

.p-conditions__lists {
  margin-top: 3.125rem;
}
@media screen and (min-width: 751px) {
  .p-conditions__lists {
    margin-top: 1.875rem;
  }
}

.p-conditions__list:not(:first-child) {
  margin-top: 0.875rem;
}
@media screen and (min-width: 751px) {
  .p-conditions__list:not(:first-child) {
    margin-top: 0.4375rem;
  }
}

.p-curriculum {
  margin-top: 9.25rem;
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .p-curriculum {
    margin-top: 4.5625rem;
  }
}

.p-curriculum__lead {
  margin-top: 3.125rem;
}
@media screen and (min-width: 751px) {
  .p-curriculum__lead {
    margin-top: 1.4375rem;
  }
}

.p-curriculum__text {
  margin-top: 1.25rem;
  line-height: 1.82;
  letter-spacing: -0.07em;
}
@media screen and (min-width: 751px) {
  .p-curriculum__text {
    margin-top: 0.625rem;
    line-height: 2;
  }
}

.p-curriculum__text span {
  font-size: 1.625rem;
}
@media screen and (min-width: 751px) {
  .p-curriculum__text span {
    font-size: 0.9375rem;
  }
}

.p-curriculum__contents {
  margin-top: 4.4375rem;
}
@media screen and (min-width: 751px) {
  .p-curriculum__contents {
    margin-top: 2.375rem;
  }
}

.p-curriculum__step-img {
  width: 100%;
  margin-top: 3.1875rem;
}
@media screen and (min-width: 751px) {
  .p-curriculum__step-img {
    width: 53.35625rem;
    margin-top: 1.125rem;
  }
}

.p-curriculum__step__btn {
  display: flex;
  justify-content: center;
  margin-top: 4.25rem;
}
@media screen and (min-width: 751px) {
  .p-curriculum__step__btn {
    margin-top: 2.5rem;
  }
}

.p-deadline__table {
  width: 100%;
  border-top: 1px solid #000000;
  border-collapse: collapse;
  margin-top: 4rem;
}
@media screen and (min-width: 751px) {
  .p-deadline__table {
    margin-top: 2.25rem;
  }
}

.p-deadline__table thead {
  font-size: 1.75rem;
  line-height: 1.429;
  font-weight: 700;
  color: #ffffff;
  background-color: #0094d6;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-deadline__table thead {
    font-size: 1.0625rem;
  }
}

.p-deadline__table thead th {
  height: 6.25rem;
}
@media screen and (min-width: 751px) {
  .p-deadline__table thead th {
    height: 3.75rem;
  }
}

.p-deadline__table tbody tr:nth-child(even) td {
  background-color: #e3f3fc;
}

.p-deadline__table tr {
  border-bottom: 1px solid #000000;
}

.p-deadline__table thead th,
.p-deadline__table td {
  border-right: 1px solid #000000;
}

.p-deadline__table thead th:last-child,
.p-deadline__table td:last-child {
  border-right: 0;
}

.p-deadline__table td {
  width: 13.715625rem;
  height: 9.375rem;
  font-size: 1.75rem;
  line-height: 1.429;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-deadline__table td {
    width: 23.4375rem;
    height: 3.75rem;
    font-size: 0.875rem;
  }
}

.p-deadline__table td:first-child {
  width: 10.0625rem;
}
@media screen and (min-width: 751px) {
  .p-deadline__table td:first-child {
    width: 9.375rem;
  }
}

.p-deadline__table td:nth-child(2) {
  line-height: 1.071;
}

.p-deadline {
  margin-top: 5.8125rem;
}
@media screen and (min-width: 751px) {
  .p-deadline {
    margin-top: 4.375rem;
  }
}

.p-department {
  margin-top: 18.75rem;
}
@media screen and (min-width: 751px) {
  .p-department {
    margin-top: 8.125rem;
  }
}

.p-department__inner {
  width: 100%;
  max-width: 46.875rem;
  margin-inline: auto;
  padding: 0 1.5625rem;
}
@media screen and (min-width: 751px) {
  .p-department__inner {
    max-width: 65.625rem;
  }
}

.p-department__wrapper {
  margin-top: 5.8125rem;
}
@media screen and (min-width: 751px) {
  .p-department__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 4.625rem;
  }
}

.p-department__item {
  display: inline-block;
}
@media screen and (min-width: 751px) {
  .p-department__item {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}

.p-department__item:not(:first-child) {
  margin-top: 2.625rem;
}
@media screen and (min-width: 751px) {
  .p-department__item:not(:first-child) {
    margin-top: 0;
  }
}

.p-department__item-img {
  width: 100%;
}

.p-department__item-img img {
  aspect-ratio: 700/440;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 751px) {
  .p-department__item-img img {
    aspect-ratio: 500/310;
  }
}

.p-department__item-contents {
  padding: 2.75rem 1.875rem 5.125rem 3.125rem;
}
@media screen and (min-width: 751px) {
  .p-department__item-contents {
    flex: 1;
    padding: 1.75rem 3.125rem 2.375rem 3.125rem;
  }
}

.p-department__item-contents.p-department__item-contents--01 {
  background-color: #3fa9f5;
}

.p-department__item-contents.p-department__item-contents--02 {
  background-color: #9477ac;
}

.p-department__item-tag {
  display: inline-block;
  padding: 0.75rem 1.375rem;
  font-size: 1.875rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #ffffff;
  border: 1px solid #ffffff;
}
@media screen and (min-width: 751px) {
  .p-department__item-tag {
    padding: 0.5625rem 1.125rem;
    font-size: 0.9375rem;
  }
}

.p-department__item-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  font-size: 3.375rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}
@media screen and (min-width: 751px) {
  .p-department__item-title {
    margin-top: 0.65625rem;
    font-size: 1.5625rem;
  }
}

.p-department__item-text {
  margin-top: 1.6875rem;
  font-size: 2.125rem;
  line-height: 1.618;
  color: #ffffff;
}
@media screen and (min-width: 751px) {
  .p-department__item-text {
    margin-top: 0.75rem;
    font-size: 1rem;
  }
}

.p-department__item:hover .c-arrow-btn {
  transform: translateX(5px);
}

.p-designated {
  margin-top: 8.5625rem;
}
@media screen and (min-width: 751px) {
  .p-designated {
    margin-top: 5rem;
  }
}

.p-designated__title h2 {
  line-height: 1.3;
}
@media screen and (min-width: 751px) {
  .p-designated__title h2 {
    line-height: 1.6;
  }
}

.p-designated__text {
  margin-top: 1.25rem;
}

.p-designated__contents {
  margin-top: 4.5rem;
}
@media screen and (min-width: 751px) {
  .p-designated__contents {
    margin-top: 2.3125rem;
  }
}

.p-drawer__nav {
  margin-top: 13.3125rem;
}

.p-drawer__nav-items {
  width: 100%;
  max-width: 40rem;
  margin-inline: auto;
  padding: 0 1.25rem;
}

.p-drawer__nav-items:not(:first-child) {
  margin-top: 7.0625rem;
}

.p-drawer__nav-item:not(:first-child) {
  padding-top: 2.0625rem;
  border-top: 1px solid #000000;
}

.p-drawer__nav-item:last-child {
  border-bottom: 1px solid #000000;
}

.p-drawer__nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.0625rem;
}

.p-drawer__accordion-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.15625rem;
}

.p-drawer__nav-link,
.p-drawer__accordion-head {
  margin-right: 1.6875rem;
}

.p-drawer__nav-text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #1a1a1a;
}

.p-drawer__nav-text.p-drawer__nav-text--regular {
  font-weight: 400;
  padding-left: 1.75rem;
}

.p-drawer__accordion-btn {
  position: relative;
  display: inline-block;
  width: 1.75rem;
  height: 1.75rem;
}

.p-drawer__accordion-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0.75rem;
  width: 0.25rem;
  height: 1.75rem;
  background-color: #000000;
  transition: all 0.3s;
}

.p-drawer__accordion-head.open .p-drawer__accordion-btn::before {
  transform: rotate(90deg);
  opacity: 0;
}

.p-drawer__accordion-btn::after {
  content: "";
  position: absolute;
  top: 0.6875rem;
  left: 0;
  width: 1.75rem;
  height: 0.25rem;
  background-color: #000000;
}

.p-drawer__accordion-body {
  margin-top: 2rem;
  display: none;
}

.p-drawer__accordion-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.375rem 1.75rem;
  font-size: 1.875rem;
  color: #1a1a1a;
  background-color: #e3f3fc;
  border-top: 1px solid #000000;
}

.p-drawer__nav-btn {
  margin-top: 2.5rem;
  padding: 0 1.25rem;
}

.p-drawer__nav-btn a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 35rem;
  margin-inline: auto;
  padding: 1.8125rem 0.625rem;
  font-size: 1.875rem;
  line-height: 1;
  color: #000000;
  background-color: #d4edfa;
  border: 1px solid #000000;
}

.p-drawer__nav-btn a:not(:first-child) {
  margin-top: 1.25rem;
}

.p-drawer {
  position: fixed;
  z-index: 5000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  display: none;
  padding-bottom: 3.125rem;
  background-color: #fff;
}

.p-drawer__header {
  position: fixed;
  z-index: 5000;
  top: 0;
  left: 0;
  width: 100%;
  height: 8.75rem;
  background-color: #d4edfa;
  padding: 0 1.875rem;
}

.p-education {
  margin-top: 6.5625rem;
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .p-education {
    margin-top: 5.3125rem;
  }
}

.p-education__emphasis {
  margin-top: 4.6875rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 700;
  color: #003570;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-education__emphasis {
    margin-top: 2.8125rem;
  }
}

.p-education__emphasis-lead {
  font-size: 2.5rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 751px) {
  .p-education__emphasis-lead {
    font-size: 1.375rem;
  }
}

.p-education__emphasis-title {
  position: relative;
  margin-top: 2.625rem;
}
@media screen and (min-width: 751px) {
  .p-education__emphasis-title {
    margin-top: 1.375rem;
  }
}

.p-education__emphasis-title::before {
  content: "";
  position: absolute;
  top: 3.8125rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 35.625rem;
  height: 1rem;
  background-color: #f9db78;
}
@media screen and (min-width: 751px) {
  .p-education__emphasis-title::before {
    top: 2.125rem;
    max-width: 19.375rem;
    height: 0.5625rem;
  }
}

.p-education__emphasis-title h3 {
  position: relative;
  font-size: 3.125rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 751px) {
  .p-education__emphasis-title h3 {
    display: inline-block;
    font-size: 1.75rem;
  }
}

.p-education__emphasis-title span {
  display: block;
  font-size: 1.625rem;
  line-height: 2.7;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 751px) {
  .p-education__emphasis-title span {
    font-size: 0.9375rem;
  }
}

.p-education__emphasis-title h3::before,
.p-education__emphasis-title h3::after {
  content: "";
  position: absolute;
  width: 0.9375rem;
  height: 1.98125rem;
}
@media screen and (min-width: 751px) {
  .p-education__emphasis-title h3::before,
  .p-education__emphasis-title h3::after {
    width: 0.5375rem;
    height: 1.125rem;
  }
}

.p-education__emphasis-title h3::before {
  top: 0;
  left: -1.1875rem;
  border-top: 2px solid #003570;
  border-left: 2px solid #003570;
}

.p-education__emphasis-title h3::after {
  bottom: 0;
  right: -1.25rem;
  border-bottom: 2px solid #003570;
  border-right: 2px solid #003570;
}

.p-education__text {
  margin-top: 2.8125rem;
}
@media screen and (min-width: 751px) {
  .p-education__text {
    max-width: 39.875rem;
    margin-top: 1.25rem;
    margin-inline: auto;
  }
}

.p-education__items {
  margin-top: 5.375rem;
}
@media screen and (min-width: 751px) {
  .p-education__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9375rem;
    margin-top: 2.75rem;
  }
}

.p-education__item:not(:first-child) {
  margin-top: 2.5rem;
}
@media screen and (min-width: 751px) {
  .p-education__item:not(:first-child) {
    margin-top: 0;
  }
}

.p-education__item-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 1.0625rem 0;
  font-size: 2.875rem;
  font-weight: 700;
  line-height: 1.304;
  letter-spacing: 0.075em;
  color: #ffffff;
  background-color: #3fa8f4;
  border-top-left-radius: 2.5rem;
}
@media screen and (min-width: 751px) {
  .p-education__item-title {
    font-size: 1.375rem;
    gap: 0.375rem;
    padding: 0.5rem 0;
    border-top-left-radius: 1.25rem;
  }
}

.p-education__item-title span {
  font-size: 1.875rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: capitalize;
}
@media screen and (min-width: 751px) {
  .p-education__item-title span {
    font-size: 0.9375rem;
  }
}

.p-education__item-text {
  padding: 2.25rem 2.5rem 5rem;
  font-size: 1.875rem;
  line-height: 1.833;
  letter-spacing: -0.03em;
  color: #000000;
  background-color: #e3f3fc;
  text-align: justify;
  border-bottom-right-radius: 2.5rem;
}
@media screen and (min-width: 751px) {
  .p-education__item-text {
    min-height: 14.6875rem;
    padding: 1.125rem 1.25rem;
    font-size: 0.9375rem;
    letter-spacing: normal;
    border-bottom-right-radius: 1.25rem;
  }
}

.p-education__message {
  margin-top: 7.5rem;
}
@media screen and (min-width: 751px) {
  .p-education__message {
    margin-top: 5rem;
  }
}

.p-education__message-title {
  position: relative;
  padding-left: 1.875rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.05em;
  color: #003570;
}
@media screen and (min-width: 751px) {
  .p-education__message-title {
    padding-left: 0.9375rem;
    font-size: 1.25rem;
  }
}

.p-education__message-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.5125rem;
  height: 100%;
  background-color: #36bdef;
}
@media screen and (min-width: 751px) {
  .p-education__message-title::before {
    width: 0.25625rem;
  }
}

.p-education__message-contents {
  margin-top: 2.5rem;
}
@media screen and (min-width: 751px) {
  .p-education__message-contents {
    display: flex;
    align-items: center;
  }
}

.p-education__message-img {
  position: relative;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 751px) {
  .p-education__message-img {
    top: -1.25rem;
  }
}

.p-education__message-img img {
  width: 31.25rem;
  aspect-ratio: 500/500;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 751px) {
  .p-education__message-img img {
    width: 17.5rem;
    aspect-ratio: 280/280;
    flex-shrink: 0;
  }
}

.p-education__message-body {
  width: 100vw;
  margin: -14.375rem calc(50% - 50vw) 0;
  padding: 16.875rem 0 3.125rem;
  background-color: #e3f3fc;
}
@media screen and (min-width: 751px) {
  .p-education__message-body {
    width: 100%;
    margin: 0 0 0 -8.125rem;
    padding: 3.75rem 3.125rem 1.875rem 11rem;
  }
}

.p-education__message-text {
  width: 100%;
  max-width: 40rem;
  margin-inline: auto;
  padding: 0 1.25rem;
  font-size: 2.125rem;
  font-family: "Noto Serif JP", sans-serif;
  line-height: 2.06;
  letter-spacing: 0.038em;
  color: #000000;
  color: #c1272d;
}
@media screen and (min-width: 751px) {
  .p-education__message-text {
    max-width: 100%;
    margin-inline: auto;
    padding: 0;
    font-size: 1.0625rem;
    line-height: 2.059;
  }
}

.p-education__message-name {
  margin-top: 4.5rem;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-education__message-name {
    margin-top: 2rem;
    text-align: right;
  }
}

@media screen and (min-width: 751px) {
  .p-education__message-name__flex {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

.p-education__message-name p {
  font-size: 2.125rem;
  font-family: "Noto Serif JP", sans-serif;
  line-height: 2.059;
}
@media screen and (min-width: 751px) {
  .p-education__message-name p {
    margin-right: 1.25rem;
    font-size: 1.0625rem;
  }
}

.p-education__message-name img {
  width: 19.65625rem;
  margin-top: 1rem;
  margin-inline: auto;
}
@media screen and (min-width: 751px) {
  .p-education__message-name img {
    width: 9.8125rem;
    margin-top: 0;
    margin-inline: 0;
  }
}

.p-education__message-name span {
  display: block;
  margin-top: 0.375rem;
  font-size: 1.5rem;
  font-family: "Noto Serif JP", sans-serif;
  line-height: 2.917;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media screen and (min-width: 751px) {
  .p-education__message-name span {
    margin-top: 0;
    margin-right: 0.75rem;
    font-size: 0.75rem;
  }
}

.p-floating {
  position: fixed;
  z-index: 10;
  width: 100%;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (min-width: 751px) {
  .p-floating {
    width: 21rem;
    right: 0;
    bottom: 3.125rem;
  }
}

.p-floating.p-floating--pc {
  right: 0;
  bottom: 20%;
  width: 6.875rem;
}

.p-floating.is-visible {
  opacity: 1;
  visibility: visible;
}

.p-floating__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.p-floating__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0;
  font-size: 1.5rem;
  line-height: 1;
  color: #ffffff;
  background-color: #0094d6;
  transition: opacity 0.3s ease;
}

.p-floating__item.p-floating__item--green {
  background-color: #5ac363;
}

.p-floating__item img {
  margin-bottom: 0.9375rem;
  width: 3.625rem;
  height: auto;
  aspect-ratio: 1/1;
}

.p-floating__item:hover {
  opacity: 0.5;
}

.p-floating__top {
  margin-right: 1.5625rem;
}
@media screen and (min-width: 751px) {
  .p-floating__top {
    margin-right: 6.25rem;
  }
}

.p-floating__top-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.p-floating__top-btn {
  position: relative;
  display: inline-block;
  width: 5rem;
  height: 5rem;
  background-color: #0094d6;
}
@media screen and (min-width: 751px) {
  .p-floating__top-btn {
    width: 3.75rem;
    height: 3.75rem;
    margin-left: 3.125rem;
  }
}

.p-floating__top-btn::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 40%;
  width: 1.125rem;
  height: 1.125rem;
  border-left: 0.1875rem solid #ffffff;
  border-bottom: 0.1875rem solid #ffffff;
  transform: rotate(135deg);
}
@media screen and (min-width: 751px) {
  .p-floating__top-btn::before {
    top: 45%;
    left: 35%;
    width: 0.9375rem;
    height: 0.9375rem;
  }
}

.p-floating__top-link img {
  width: 7.875rem;
  height: 7.875rem;
}

.p-footer {
  padding-top: 5.3125rem;
  padding-bottom: 15rem;
  background-color: #e3f3fc;
}
@media screen and (min-width: 751px) {
  .p-footer {
    padding-top: 3.9375rem;
    padding-bottom: 3.75rem;
  }
}

.p-footer__inner {
  max-width: 37.5rem;
}
@media screen and (min-width: 751px) {
  .p-footer__inner {
    max-width: 65.625rem;
    padding-right: 2.75rem;
  }
}

@media screen and (min-width: 751px) {
  .p-footer__wrapper {
    display: flex;
    align-items: flex-start;
    gap: 3.1875rem;
  }
}

.p-footer__icon {
  width: 100%;
  max-width: 13.6875rem;
}
@media screen and (min-width: 751px) {
  .p-footer__icon {
    max-width: 7.6875rem;
  }
}

.p-footer__icon {
  aspect-ratio: 219/72;
}

.p-footer__title {
  margin-top: 2.3125rem;
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.794;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 751px) {
  .p-footer__title {
    margin-top: 1.3125rem;
    font-size: 1.1875rem;
    line-height: 1.806;
    white-space: nowrap;
  }
}

.p-footer__address {
  margin-top: 0.375rem;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.571;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 751px) {
  .p-footer__address {
    margin-top: 0.1875rem;
    font-size: 0.9375rem;
    line-height: 1.65;
  }
}

.p-footer__contact {
  margin-top: 3.125rem;
}
@media screen and (min-width: 751px) {
  .p-footer__contact {
    margin-top: 1.6875rem;
  }
}

.p-footer__contact-tel,
.p-footer__contact-map {
  display: flex;
  align-items: center;
  font-size: 1.75rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 751px) {
  .p-footer__contact-tel,
  .p-footer__contact-map {
    font-size: 0.9375rem;
  }
}

.p-footer__contact-tel img,
.p-footer__contact-map img {
  margin-right: 1.5625rem;
}
@media screen and (min-width: 751px) {
  .p-footer__contact-tel img,
  .p-footer__contact-map img {
    margin-right: 0.9375rem;
  }
}

.p-footer__contact-tel img {
  width: 1.625rem;
  height: 2.125rem;
}
@media screen and (min-width: 751px) {
  .p-footer__contact-tel img {
    width: 0.91875rem;
    height: 1.1875rem;
  }
}

@media screen and (min-width: 751px) {
  .p-footer__contact-tel {
    pointer-events: none;
  }
}

.p-footer__contact-map {
  margin-top: 1.875rem;
}
@media screen and (min-width: 751px) {
  .p-footer__contact-map {
    margin-top: 1.0625rem;
  }
}

.p-footer__contact-map img {
  width: 1.75rem;
  height: 2.625rem;
}
@media screen and (min-width: 751px) {
  .p-footer__contact-map img {
    width: 0.98125rem;
    height: 1.48125rem;
  }
}

.p-footer__lists {
  margin-top: 3rem;
}
@media screen and (min-width: 751px) {
  .p-footer__lists {
    display: grid;
    gap: 0.4375rem;
    grid-template-columns: repeat(3, 1fr);
    width: 31.25rem;
    margin-top: 4.25rem;
  }
}

.p-footer__list:not(:first-child) {
  margin-top: 0.5625rem;
}
@media screen and (min-width: 751px) {
  .p-footer__list:not(:first-child) {
    margin-top: 0;
  }
}

.p-footer__list-link {
  position: relative;
  padding-left: 2.0625rem;
  font-size: 1.75rem;
  line-height: 1.964;
}
@media screen and (min-width: 751px) {
  .p-footer__list-link {
    padding-left: 0.9375rem;
    font-size: 0.875rem;
  }
}

.p-footer__list-link::before {
  content: "";
  position: absolute;
  top: 35%;
  left: -0.375rem;
  transform: translateY(-50%);
  width: 1.125rem;
  height: 1.125rem;
  border-right: 0.25rem solid #000000;
  border-top: 0.25rem solid #000000;
  transform: rotate(45deg);
}
@media screen and (min-width: 751px) {
  .p-footer__list-link::before {
    left: -0.1875rem;
    width: 0.625rem;
    height: 0.625rem;
    border-right: 0.1875rem solid #000000;
    border-top: 0.1875rem solid #000000;
    transform: rotate(45deg);
  }
}

.p-footer__sns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.75rem;
}
@media screen and (min-width: 751px) {
  .p-footer__sns {
    justify-content: flex-start;
    margin-top: 2.1875rem;
  }
}

.p-footer__sns-icon:not(:first-child) {
  margin-left: 3.4375rem;
}
@media screen and (min-width: 751px) {
  .p-footer__sns-icon:not(:first-child) {
    margin-left: 1.25rem;
  }
}

.p-footer__sns-icon img {
  width: 6.25rem;
  height: 6.25rem;
}
@media screen and (min-width: 751px) {
  .p-footer__sns-icon img {
    width: 2.34375rem;
    height: 2.34375rem;
  }
}

.p-footer__contents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.125rem;
  align-items: flex-start;
}

.p-footer__item:not(:first-child) {
  margin-top: 1.34375rem;
}

.p-footer__item-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 1.25rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #1a1a1a;
}

.p-footer__item-li {
  margin-top: 0.625rem;
}

.p-footer__item-li a {
  display: block;
  font-size: 0.875rem;
  line-height: 1.989;
}

.p-footer__item:hover .p-footer__item-arrow {
  transform: translateX(5px);
}

.p-fv-purpose {
  margin-top: 3.5rem;
}
@media screen and (min-width: 751px) {
  .p-fv-purpose {
    margin-top: 0;
  }
}

.p-fv-purpose__inner {
  width: 100%;
  max-width: 46.875rem;
  margin-inline: auto;
}
@media screen and (min-width: 751px) {
  .p-fv-purpose__inner {
    max-width: 75rem;
  }
}

.p-fv-purpose__wrapper {
  position: relative;
}

.p-fv-purpose__img {
  width: 100%;
}
@media screen and (min-width: 751px) {
  .p-fv-purpose__img {
    width: 43.75rem;
    margin-left: auto;
  }
}

.p-fv-purpose__img img {
  aspect-ratio: 750/440;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 751px) {
  .p-fv-purpose__img img {
    aspect-ratio: 700/400;
  }
}

.p-fv-purpose__title {
  position: relative;
  padding: 4.8125rem 4.375rem 5.6875rem;
  background-color: #3fa9f5;
  border-bottom-right-radius: 8.125rem;
}
@media screen and (min-width: 751px) {
  .p-fv-purpose__title {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 40rem;
    padding: 4.1875rem 0 4.4375rem 9.125rem;
    border-bottom-right-radius: 5rem;
  }
}

.p-fv-purpose__title.p-fv-purpose__title--overseas {
  display: flex;
  align-items: center;
  min-height: 17.5rem;
  padding: 0 4.375rem 0;
}
@media screen and (min-width: 751px) {
  .p-fv-purpose__title.p-fv-purpose__title--overseas {
    min-height: 13.75rem;
    padding: 0 9.1875rem 0;
  }
}

.p-fv-purpose__title-wrapper {
  font-family: "Noto Serif JP", sans-serif;
  color: #ffffff;
}

.p-fv-purpose__title-ja {
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 751px) {
  .p-fv-purpose__title-ja {
    font-size: 2.5rem;
  }
}

.p-fv-purpose__title-ja--overseas {
  font-family: "Noto Sans JP", sans-serif;
}

.p-fv-purpose__title-en {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 751px) {
  .p-fv-purpose__title-en {
    font-size: 0.9375rem;
  }
}

.p-fv-purpose__title-circle {
  position: absolute;
  top: -1.875rem;
  right: 3.75rem;
  background-color: #3fa9f5;
}
@media screen and (min-width: 751px) {
  .p-fv-purpose__title-circle {
    top: -0.625rem;
    right: 2.9375rem;
  }
}

.p-fv {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 14.75rem;
}
@media screen and (min-width: 751px) {
  .p-fv {
    height: 10.625rem;
  }
}

.p-fv.p-fv--large {
  height: 20.625rem;
}
@media screen and (min-width: 751px) {
  .p-fv.p-fv--large {
    height: 10.625rem;
  }
}

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

.p-fv__title-en {
  font-size: 5.625rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 600;
  color: #d4edfa;
  text-transform: uppercase;
  line-height: 1;
}
@media screen and (min-width: 751px) {
  .p-fv__title-en {
    font-size: 3.125rem;
    letter-spacing: 0.05em;
  }
}

.p-fv__title-en.p-fv__title-en--none {
  text-transform: none;
}

.p-fv__title-ja {
  font-size: 3.375rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 700;
  color: #000000;
  line-height: 1;
  margin-top: -1.75rem;
}
@media screen and (min-width: 751px) {
  .p-fv__title-ja {
    font-size: 1.875rem;
    margin-top: -0.75rem;
  }
}

.p-guide-recommend__table {
  width: 87.5rem;
  border-top: 1px solid #000000;
  border-collapse: collapse;
  border-spacing: 0;
}
@media screen and (min-width: 751px) {
  .p-guide-recommend__table {
    width: 100%;
  }
}

.p-guide-recommend__table th,
.p-guide-recommend__table td {
  width: 12.5rem;
width:auto;
  height: 9.375rem;
}
@media screen and (min-width: 751px) {
  .p-guide-recommend__table th,
  .p-guide-recommend__table td {
    width: 7.80625rem;
    height: 5.85rem;
  }
}

.p-guide-recommend__table thead {
  font-size: 1.75rem;
  line-height: 1.429;
  font-weight: 700;
  color: #ffffff;
  background-color: #0094d6;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-guide-recommend__table thead {
    font-size: 1.0625rem;
  }
}

.p-guide-recommend__table tr {
  border-bottom: 1px solid #000000;
}

.p-guide-recommend__table thead th,
.p-guide-recommend__table td {
  border-right: 1px solid #000000;
}

.p-guide-recommend__table thead th:last-child,
.p-guide-recommend__table td:last-child {
  border-right: 0;
}

.p-guide-recommend__table td {
  font-size: 1.75rem;
  line-height: 1.429;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-guide-recommend__table td {
    font-size: 0.875rem;
  }
}

.p-guide-recommend__table td:nth-child(4) {
  line-height: 1.071;
}

.p-guide-recommend__table-point {
  border-right: 1px solid #000000 !important;
  line-height: 1.071 !important;
}

.p-guide-recommend__table-bg td {
  background-color: #e3f3fc;
}

.p-guide-hotel {
  margin-top: 4.25rem;
}
@media screen and (min-width: 751px) {
  .p-guide-hotel {
    margin-top: 4.6875rem;
  }
}

.p-guide {
  margin-top: 1.625rem;
}
@media screen and (min-width: 751px) {
  .p-guide {
    margin-top: 2rem;
  }
}

.p-guide__item:not(:first-child) {
  margin-top: 4.1875rem;
}
@media screen and (min-width: 751px) {
  .p-guide__item:not(:first-child) {
    margin-top: 2.125rem;
  }
}

.p-guide__item-contents {
  margin-top: 1.875rem;
}
@media screen and (min-width: 751px) {
  .p-guide__item-contents {
    margin-top: 0.9375rem;
  }
}

.p-guide__item-btn {
  padding-top: 1.5rem;
}
@media screen and (min-width: 751px) {
  .p-guide__item-btn {
    padding-top: 0.625rem;
  }
}

.p-guide__item-list:not(:first-child) {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 751px) {
  .p-guide__item-list:not(:first-child) {
    margin-top: 0.5rem;
  }
}

.p-guide__item-contents__lists {
  margin-top: 2.6875rem;
}
@media screen and (min-width: 751px) {
  .p-guide__item-contents__lists {
    margin-top: 1.375rem;
  }
}

.p-guide__item-contents__list:not(:first-child) {
  margin-top: 6.625rem;
}
@media screen and (min-width: 751px) {
  .p-guide__item-contents__list:not(:first-child) {
    margin-top: 2.625rem;
  }
}

.p-guide__item-head {
  width: 100%;
  padding: 2.625rem;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  background-color: #3fa9f5;
}
@media screen and (min-width: 751px) {
  .p-guide__item-head {
    padding: 1.3125rem 3.1875rem;
    font-size: 1.125rem;
  }
}

.p-guide__accordion-head {
  position: relative;
  cursor: pointer;
}

.p-guide__accordion-head::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%) rotate(45deg);
  width: 0.79375rem;
  height: 0.79375rem;
  border-right: 0.1875rem solid #ffffff;
  border-bottom: 0.1875rem solid #ffffff;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 751px) {
  .p-guide__accordion-head::before {
    right: 2.625rem;
    width: 0.54375rem;
    height: 0.54375rem;
    border-right: 0.1875rem solid #ffffff;
    border-bottom: 0.1875rem solid #ffffff;
  }
}

.p-guide__item-contents__list.is-open .p-guide__accordion-head::before {
  transform: translateY(-50%) rotate(225deg);
}

.p-guide__item-body {
  margin-top: 1.6875rem;
}

@media screen and (min-width: 751px) {
  .p-guide__text {
    padding: 0 3.125rem;
  }
}

.p-guide__accordion-body {
  display: none;
}

.p-guide__accordion-body.is-open {
  display: block;
}

.p-guide__item-body__list {
  padding-bottom: 3.125rem;
  border-bottom: 1px solid #000000;
}
@media screen and (min-width: 751px) {
  .p-guide__item-body__list {
    padding: 0 3.125rem 2rem;
  }
}

.p-guide__item-body__list:not(:first-child) {
  margin-top: 1.875rem;
}
@media screen and (min-width: 751px) {
  .p-guide__item-body__list:not(:first-child) {
    margin-top: 1.3125rem;
  }
}

.p-guide__item-list-title {
  margin-top: 2.625rem;
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.618;
  color: #000000;
}
@media screen and (min-width: 751px) {
  .p-guide__item-list-title {
    margin-top: 1.1875rem;
    font-size: 1.0625rem;
  }
}

.p-guide__item-contents__btn {
  margin-top: 1.875rem;
}
@media screen and (min-width: 751px) {
  .p-guide__item-contents__btn {
    text-align: center;
  }
}

.p-guide__item-body__list-link {
  position: relative;
}

.p-guide__item-body__list-link::before {
  content: "";
  position: absolute;
  top: 55%;
  right: 0;
  transform: translateY(-50%);
  width: 4.375rem;
  height: 4.375rem;
  border-radius: 50%;
  background-color: #0094d6;
}
@media screen and (min-width: 751px) {
  .p-guide__item-body__list-link::before {
    right: -1.25rem;
    width: 2.1875rem;
    height: 2.1875rem;
  }
}

.p-guide__item-body__list-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5625rem;
  transform: translateY(-50%) rotate(45deg);
  width: 1.25rem;
  height: 1.25rem;
  border-right: 0.3125rem solid #ffffff;
  border-bottom: 0.3125rem solid #ffffff;
}
@media screen and (min-width: 751px) {
  .p-guide__item-body__list-link::after {
    right: -0.5rem;
    width: 0.625rem;
    height: 0.625rem;
    border-right: 0.1875rem solid #ffffff;
    border-bottom: 0.1875rem solid #ffffff;
  }
}

.p-guide__item-body__contents--second {
  margin-top: 3.75rem;
}
@media screen and (min-width: 751px) {
  .p-guide__item-body__contents--second {
    margin-top: 2.375rem;
  }
}

.p-guide__item-body__contents-wrapper {
  margin-top: 0.75rem;
}
@media screen and (min-width: 751px) {
  .p-guide__item-body__contents-wrapper {
    margin-top: 0.375rem;
  }
}

.p-guide__item-body__contents-title {
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.618;
}
@media screen and (min-width: 751px) {
  .p-guide__item-body__contents-title {
    font-size: 1.125rem;
  }
}

.p-guide__item-body__contents-title span {
  font-size: 1.875rem;
}
@media screen and (min-width: 751px) {
  .p-guide__item-body__contents-title span {
    font-size: 0.9375rem;
  }
}

.p-guide__item-body__contents-btn {
  margin-top: 3.375rem;
}
@media screen and (min-width: 751px) {
  .p-guide__item-body__contents-btn {
    max-width: 18.75rem;
    margin-top: 1.3125rem;
    margin-inline: auto;
  }
}

.p-guide__item-body__contents-btn a:not(:first-child) {
  margin-top: 2.75rem;
}
@media screen and (min-width: 751px) {
  .p-guide__item-body__contents-btn a:not(:first-child) {
    margin-top: 1.4375rem;
  }
}

.p-guide__item-body__contents-lists {
  margin-top: 3.4375rem;
}
@media screen and (min-width: 751px) {
  .p-guide__item-body__contents-lists {
    margin-top: 1.75rem;
  }
}

.p-guide__item-body__contents-list:not(:first-child) {
  margin-top: 3.4375rem;
}
@media screen and (min-width: 751px) {
  .p-guide__item-body__contents-list:not(:first-child) {
    margin-top: 1.875rem;
  }
}

.p-guide__item-body__list-child {
  margin-top: 3.5625rem;
}
@media screen and (min-width: 751px) {
  .p-guide__item-body__list-child {
    margin-top: 1.75rem;
  }
}

.p-guide-major {
  margin-top: 6.875rem;
}
@media screen and (min-width: 751px) {
  .p-guide-major {
    margin-top: 4.6875rem;
  }
}

.p-guide-recommend {
  margin-top: 6.875rem;
}
@media screen and (min-width: 751px) {
  .p-guide-recommend {
    margin-top: 4.6875rem;
  }
}

.p-guide-recommend__contents {
  margin-top: 4.0625rem;
}
@media screen and (min-width: 751px) {
  .p-guide-recommend__contents {
    margin-top: 1.875rem;
  }
}

.p-guide-recommend__text {
  margin-top: 1.875rem;
}
@media screen and (min-width: 751px) {
  .p-guide-recommend__text {
    margin-top: 0.9375rem;
  }
}

.p-guide-recommend__scroll {
  margin-top: 4.375rem;
}
@media screen and (min-width: 751px) {
  .p-guide-recommend__scroll {
    margin-top: 2.1875rem;
  }
}

.p-guide-recommend__scroll-img img {
  width: 90.0625rem;
}
@media screen and (min-width: 751px) {
  .p-guide-recommend__scroll-img img {
    width: 56.25rem;
  }
}

.p-guide-recommend__bottom {
  margin-top: 7.5625rem;
  padding: 3.9375rem 2.6875rem;
  background-color: #e3f3fc;
}
@media screen and (min-width: 751px) {
  .p-guide-recommend__bottom {
    margin-top: 2.5rem;
    padding: 2.6875rem 3.125rem;
  }
}

.p-guide-recommend__bottom-list:not(:first-child) {
  margin-top: 3.75rem;
}
@media screen and (min-width: 751px) {
  .p-guide-recommend__bottom-list:not(:first-child) {
    margin-top: 1.875rem;
  }
}

.p-hamburger {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  width: 8.75rem;
  height: 8.75rem;
  cursor: pointer;
}

.p-hamburger.is-active {
  background-color: #d4edfa;
}

.p-hamburger span {
  position: absolute;
  left: 2.6875rem;
  display: inline-block;
  width: 3.375rem;
  height: 0.375rem;
  transition: top 0.3s, transform 0.3s, opacity 0.3s, background-color 0.3s;
  background-color: #5f6368;
}

.p-hamburger.is-active span {
  background-color: #fff;
}

.p-hamburger span:nth-child(1) {
  top: 3.3125rem;
}

.p-hamburger span:nth-child(2) {
  top: 4.25rem;
}

.p-hamburger span:nth-child(3) {
  top: 5.1875rem;
}

.p-hamburger.is-active span:nth-child(1) {
  top: 4.375rem;
  width: 3.375rem;
  transform: rotate(-45deg);
  background-color: #5f6368;
}

.p-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.p-hamburger.is-active span:nth-child(3) {
  top: 4.375rem;
  width: 3.375rem;
  transform: rotate(45deg);
  background-color: #5f6368;
}

.p-header__lists {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.p-header__list {
  font-size: 0;
}

.p-header__list:not(:first-child) {
  margin-left: 1.5rem;
}

.p-header__link {
  position: relative;
  display: inline-block;
  padding: 1.375rem 0.625rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #000000;
  white-space: nowrap;
}

.p-header__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.1875rem;
  background-color: #0094d6;
  transition: width 0.3s ease;
}

.p-header__link:hover::after {
  width: 100%;
}

.p-header__items {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

.p-header__item {
  width: 11.875rem;
  padding: 0 0.625rem;
  border-right: 1px solid #000000;
  background-color: #ffffff;
}

.p-header__item:first-child {
  background-color: #e3f3fc;
}

.p-header__item-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 6.3125rem;
  font-size: 0.875rem;
  color: #000000;
  transition: color 0.3s;
}

.p-header__item-link:hover {
  color: #0094d6;
}

.p-header__item-link.p-header__item-link--top {
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-header__arrow {
  position: relative;
  transition: transform 0.3s ease;
}

.p-header__item-link:hover .p-header__arrow {
  transform: translateX(5px);
  color: #0094d6;
}

.p-header__item-link:hover .c-arrow::before {
  background-color: #0094d6;
}

.p-header__item-link:hover .c-arrow::after {
  border-color: #0094d6;
}

.p-header__items {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  display: flex;
  align-items: center;
  background-color: #fff;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

.p-header__list:hover .p-header__items {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.p-header {
  position: relative;
  width: 100%;
  height: 8.75rem;
}
@media screen and (min-width: 751px) {
  .p-header {
    height: 7.5rem;
  }
}

.p-header__inner {
  height: inherit;
  max-width: 45.625rem;
  padding: 0 1.25rem;
}
@media screen and (min-width: 751px) {
  .p-header__inner {
    max-width: 65rem;
  }
}

.p-header__wrapper {
  height: inherit;
}

.p-header__contents {
  height: inherit;
}
@media screen and (min-width: 751px) {
  .p-header__contents {
    display: flex;
  }
}

.p-header__name {
  width: 100%;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 9.0625rem;
}
@media screen and (min-width: 751px) {
  .p-header__name {
    margin-right: 0;
  }
}

.p-header__name-link {
  height: inherit;
}

.p-header__name-link picture,
.p-header__name-link img {
  height: inherit;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 34.0625rem;
}
@media screen and (min-width: 751px) {
  .p-header__name-link picture,
  .p-header__name-link img {
    max-width: 15.85rem;
  }
}

.p-header__right {
  padding-top: 1.5625rem;
}

.p-header__right-btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.p-header__right-btn a {
  display: inline-block;
  padding: 0.46875rem 0.3125rem;
  width: 9.375rem;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
  background-color: #3fa9f5;
  text-align: center;
}

.p-header__right-btn a:first-child {
  color: #003570;
  background-color: #fdf4d6;
}

.p-header__right-btn a:not(:first-child) {
  margin-left: 0.625rem;
}

.p-header__right-btn a:hover {
  opacity: 0.5;
}

.p-history-timeline {
  margin-top: 5rem;
}

.p-history-timeline__lists {
  position: relative;
}
@media screen and (min-width: 751px) {
  .p-history-timeline__lists {
    padding-bottom: 4.6875rem;
  }
}

.p-history-timeline__lists::before {
  content: "";
  position: absolute;
  top: 5.625rem;
  left: 1.4375rem;
  width: 0.3125rem;
  height: 396.25rem;
  background-color: #3fa9f5;
}
@media screen and (min-width: 751px) {
  .p-history-timeline__lists::before {
    top: 4.375rem;
    left: 4.5625rem;
    width: 0.1875rem;
    height: 140.625rem;
  }
}

@media screen and (min-width: 751px) {
  .p-history-timeline__lists::after {
    content: "";
    z-index: -2;
    position: absolute;
    top: 0;
    left: 0;
    width: 18.75rem;
    height: 100%;
    background-color: #e3f3fc;
  }
}

.p-history-timeline__list {
  position: relative;
}

.p-history-timeline__list:not(:first-child) {
  margin-top: 4.1375rem;
}
@media screen and (min-width: 751px) {
  .p-history-timeline__list:not(:first-child) {
    margin-top: 2.23125rem;
  }
}

.p-history-timeline__list--feature:first-child {
  padding-top: 2.5rem;
}

.p-history-timeline__list--feature:not(:first-child) {
  padding-top: 3.75rem;
}
@media screen and (min-width: 751px) {
  .p-history-timeline__list--feature:not(:first-child) {
    padding-top: 0;
  }
}

.p-history-timeline__img {
  width: 100%;
  margin-top: -2.5rem;
}
@media screen and (min-width: 751px) {
  .p-history-timeline__img {
    position: absolute;
    top: 2.5rem;
    right: 0;
    margin-top: 0;
  }
}

.p-history-timeline__img.p-history-timeline__img--double {
  max-width: 35.5625rem;
  margin-left: auto;
  margin-right: -4.375rem;
}
@media screen and (min-width: 751px) {
  .p-history-timeline__img.p-history-timeline__img--double {
    max-width: 17.125rem;
    margin-right: 0;
  }
}

.p-history-timeline__img.p-history-timeline__img--single {
  width: 15.625rem;
  margin-inline: auto;
}
@media screen and (min-width: 751px) {
  .p-history-timeline__img.p-history-timeline__img--single {
    width: 9.375rem;
    margin-inline: auto;
  }
}

.p-history-timeline__contents {
  margin-top: 1.25rem;
  margin-left: 6.25rem;
}
@media screen and (min-width: 751px) {
  .p-history-timeline__contents {
    margin-left: 6.9375rem;
  }
}

@media screen and (min-width: 751px) {
  .p-history-timeline__contents--flex {
    display: flex;
    align-items: center;
  }
}

.p-history-timeline__year {
  position: relative;
  display: inline-block;
  margin-left: -1.25rem;
  padding: 1.375rem 2.59375rem;
  font-size: 2.25rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  background-color: #3fa9f5;
  border-radius: 62.4375rem;
}
@media screen and (min-width: 751px) {
  .p-history-timeline__year {
    margin-left: 3.125rem;
    padding: 0.6875rem 1.296875rem;
    font-size: 1.125rem;
  }
}

.p-history-timeline__title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.836;
  letter-spacing: 0.07em;
  color: #003570;
  text-align: justify;
}
@media screen and (min-width: 751px) {
  .p-history-timeline__title {
    font-size: 0.9375rem;
  }
}

.p-history-timeline__text {
  margin-top: 0.375rem;
  font-size: 1.875rem;
  line-height: 1.835;
  text-align: justify;
}
@media screen and (min-width: 751px) {
  .p-history-timeline__text {
    max-width: 27.5rem;
    font-size: 0.9375rem;
  }
}

.p-history-timeline__list-bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100vw;
  height: 18.75rem;
  margin: 0 calc(50% - 50vw);
  background-color: #e3f3fc;
}

.p-history-timeline__list-bottom {
  margin-top: 1.625rem;
  margin-left: 6.25rem;
}
@media screen and (min-width: 751px) {
  .p-history-timeline__list-bottom {
    margin-top: 1.4375rem;
    margin-left: 6.9375rem;
  }
}

.p-history {
  margin-top: 6.25rem;
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .p-history {
    margin-top: 5.3125rem;
  }
}

.p-history__head {
  margin-top: 3.375rem;
}
@media screen and (min-width: 751px) {
  .p-history__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 1.375rem;
  }
}

.p-history__text p {
  line-height: 1.8;
}
@media screen and (min-width: 751px) {
  .p-history__text p {
    line-height: 1.9;
    letter-spacing: 0.05em;
  }
}

.p-history__text p:not(:first-child) {
  margin-top: 2.5rem;
}
@media screen and (min-width: 751px) {
  .p-history__text p:not(:first-child) {
    margin-top: 1.625rem;
  }
}

.p-history__img {
  width: 100%;
  margin-top: 1.375rem;
}
@media screen and (min-width: 751px) {
  .p-history__img {
    max-width: 18.75rem;
    margin-top: 0;
  }
}

.p-history__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.5625rem;
}
@media screen and (min-width: 751px) {
  .p-history__btn {
    margin-top: 2.125rem;
  }
}

.p-hotel-fv--sub {
  margin-top: 3.125rem;
}

.p-hotel-fv__inner {
  width: 100%;
  max-width: 46.875rem;
  margin-inline: auto;
}
@media screen and (min-width: 751px) {
  .p-hotel-fv__inner {
    max-width: 75rem;
  }
}

.p-hotel-fv__wrapper {
  position: relative;
}

.p-hotel-fv__img {
  width: 100%;
}
@media screen and (min-width: 751px) {
  .p-hotel-fv__img {
    max-width: 53.125rem;
    margin-left: auto;
  }
}

.p-hotel-fv__img img {
  aspect-ratio: 750/440;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-hotel-fv__title {
  padding: 2.625rem 4.6875rem 3.125rem;
  background-color: #3fa9f5;
  border-bottom-right-radius: 8.125rem;
}
@media screen and (min-width: 751px) {
  .p-hotel-fv__title {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 40rem;
    padding: 2.25rem 0.625rem 3.3125rem 9.4375rem;
    border-bottom-right-radius: 6.25rem;
  }
}

.p-hotel-fv__title.p-hotel-fv__title--major {
  background-color: #9477ac;
}

.p-hotel-fv__title-wrapper {
  font-family: "Noto Serif JP", sans-serif;
  color: #ffffff;
}

.p-hotel-fv__title-tag {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  border: 1px solid #ffffff;
}
@media screen and (min-width: 751px) {
  .p-hotel-fv__title-tag {
    padding: 0.5rem 0.8125rem;
    font-size: 1.25rem;
  }
}

.p-hotel-fv__title-ja {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (min-width: 751px) {
  .p-hotel-fv__title-ja {
    font-size: 2.5rem;
  }
}

.p-hotel-fv__title-en {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 751px) {
  .p-hotel-fv__title-en {
    font-size: 0.9375rem;
  }
}

.p-hotel-fv__bottom {
  margin-top: 4.875rem;
}
@media screen and (min-width: 751px) {
  .p-hotel-fv__bottom {
    margin-top: 1.75rem;
  }
}

.p-hotel-fv__bottom-wrapper {
  display: flex;
  align-items: center;
}

.p-hotel-fv__bottom-title {
  display: inline-block;
  padding: 0.8125rem 0.625rem;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: -0.034em;
  text-align: center;
  background-color: #e3f3fc;
}
@media screen and (min-width: 751px) {
  .p-hotel-fv__bottom-title {
    padding: 2.1875rem 0.4375rem;
    font-size: 0.9375rem;
    line-height: 1.333;
    letter-spacing: normal;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    color: #ffffff;
    background-color: transparent;
  }
}

.p-hotel-fv__bottom-title.p-hotel-fv__bottom-title--major {
  background-color: #efeaf9;
}
@media screen and (min-width: 751px) {
  .p-hotel-fv__bottom-title.p-hotel-fv__bottom-title--major {
    background-color: transparent;
  }
}

.p-hotel-fv__lists {
  margin-top: 0.875rem;
}
@media screen and (min-width: 751px) {
  .p-hotel-fv__lists {
    margin-top: 0;
    margin-left: 1.125rem;
  }
}

.p-hotel-fv__list {
  position: relative;
  padding-left: 2.8125rem;
  font-size: 1.875rem;
  line-height: 2.07;
  letter-spacing: -0.05em;
}
@media screen and (min-width: 751px) {
  .p-hotel-fv__list {
    padding-left: 0.9375rem;
    font-size: 0.875rem;
    line-height: 2;
    color: #ffffff;
  }
}

.p-hotel-fv__list.p-hotel-fv__list--major {
  line-height: 1.78;
}

.p-hotel-fv__list::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background-color: #0094d6;
  border-radius: 50%;
}
@media screen and (min-width: 751px) {
  .p-hotel-fv__list::before {
    width: 0.5625rem;
    height: 0.5625rem;
    background-color: #ffffff;
  }
}

.p-hotel-fv__list.p-hotel-fv__list--major::before {
  top: 30%;
  background-color: #9377ab;
}
@media screen and (min-width: 751px) {
  .p-hotel-fv__list.p-hotel-fv__list--major::before {
    top: 50%;
    background-color: #ffffff;
  }
}

.p-hotel-learning {
  margin-top: 5.125rem;
}
@media screen and (min-width: 751px) {
  .p-hotel-learning {
    margin-top: 2.8125rem;
  }
}

@media screen and (min-width: 751px) {
  .p-hotel-learning__items {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1.875rem;
  }
}

.p-hotel-learning__items--bottom {
  margin-top: 8.4375rem;
}
@media screen and (min-width: 751px) {
  .p-hotel-learning__items--bottom {
    margin-top: 2.5rem;
  }
}

.p-hotel-learning__item {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 751px) {
  .p-hotel-learning__item {
    width: 17.5rem;
  }
}

.p-hotel-learning__item:not(:first-child) {
  margin-top: 6.5625rem;
}
@media screen and (min-width: 751px) {
  .p-hotel-learning__item:not(:first-child) {
    margin-top: 0;
  }
}

.p-hotel-learning__item-head {
  position: relative;
  display: inline-block;
  width: 37.5rem;
  padding: 1.625rem 0 1.75rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  background-color: #3fa8f4;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-hotel-learning__item-head {
    width: 100%;
    padding: 0.4375rem 0 0.5625rem;
    font-size: 1.25rem;
  }
}

.p-hotel-learning__item-head::before {
  content: "";
  position: absolute;
  bottom: -1.875rem;
  left: 50%;
  display: inline-block;
  transform: translateX(-50%);
  border: 0.625rem solid transparent;
  border-top: 1.4375rem solid #3fa8f4;
}
@media screen and (min-width: 751px) {
  .p-hotel-learning__item-head::before {
    bottom: -0.9375rem;
    border: 0.3125rem solid transparent;
    border-top: 0.71875rem solid #3fa8f4;
  }
}

.p-hotel-learning__item-img {
  width: 100vw;
  margin: 3.5rem calc(50% - 50vw) 0;
}
@media screen and (min-width: 751px) {
  .p-hotel-learning__item-img {
    width: 100%;
    margin: 1.1875rem 0 0;
  }
}

@media screen and (min-width: 751px) {
  .p-hotel-learning__item-img img {
    aspect-ratio: 280/160;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.p-hotel-learning__item-title {
  margin-top: 2.75rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.06em;
  color: #0093d5;
}
@media screen and (min-width: 751px) {
  .p-hotel-learning__item-title {
    margin-top: 0.5625rem;
    font-size: 1.25rem;
  }
}

.p-hotel-learning__item-text {
  margin-top: 0.75rem;
  line-height: 1.851;
}
@media screen and (min-width: 751px) {
  .p-hotel-learning__item-text {
    margin-top: 0.5rem;
  }
}

.p-hotel-learning__item-btn {
  margin-top: 0.375rem;
  margin-left: auto;
}
@media screen and (min-width: 751px) {
  .p-hotel-learning__item-btn {
    margin-top: 1.1875rem;
  }
}

.p-hotel-learning__item-btn a {
  display: flex;
  align-items: center;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1;
  color: #000000;
}
@media screen and (min-width: 751px) {
  .p-hotel-learning__item-btn a {
    font-size: 0.9375rem;
  }
}

.p-hotel-learning__item-btn-arrow {
  margin-left: 2rem;
}
@media screen and (min-width: 751px) {
  .p-hotel-learning__item-btn-arrow {
    margin-left: 0.625rem;
  }
}

.p-hotel-pickup__contents {
  margin-top: 4.875rem;
}
@media screen and (min-width: 751px) {
  .p-hotel-pickup__contents {
    margin-top: 2.5rem;
  }
}

.p-hotel-pickup__item {
  position: relative;
  padding-top: 3.125rem;
}
@media screen and (min-width: 751px) {
  .p-hotel-pickup__item {
    display: flex;
    align-items: flex-start;
    padding-top: 0;
  }
}

.p-hotel-pickup__item:not(:first-child) {
  margin-top: 8.75rem;
}
@media screen and (min-width: 751px) {
  .p-hotel-pickup__item:not(:first-child) {
    margin-top: 3rem;
  }
}

.p-hotel-pickup__item::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  height: 20rem;
  background-color: #e2f2fb;
}
@media screen and (min-width: 751px) {
  .p-hotel-pickup__item::before {
    content: none;
  }
}

.p-hotel-pickup__item.p-hotel-pickup__item--purple::before {
  background-color: #efeaf9;
}

@media screen and (min-width: 751px) {
  .p-hotel-pickup__item-wrapper {
    flex: 1;
  }
}

.p-hotel-pickup__item-tag {
  position: absolute;
  display: inline-block;
  top: -0.9375rem;
  left: 0;
  padding: 0.5rem 2.1875rem;
  font-size: 1.5rem;
  line-height: 1;
  color: #ffffff;
  background-color: #0093d5;
}
@media screen and (min-width: 751px) {
  .p-hotel-pickup__item-tag {
    top: -0.625rem;
    left: 1.6875rem;
    padding: 0.25rem 1rem;
    font-size: 0.8125rem;
  }
}

.p-hotel-pickup__item-tag.p-hotel-pickup__item-tag--purple {
  background-color: #9377ab;
}

.p-hotel-pickup__item-title {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.25;
  color: #000000;
}
@media screen and (min-width: 751px) {
  .p-hotel-pickup__item-title {
    padding: 1.375rem 0.3125rem 1.375rem 1.5rem;
    font-size: 1.25rem;
    background-color: #e2f2fb;
  }
}

@media screen and (min-width: 751px) {
  .p-hotel-pickup__item-title.p-hotel-pickup__item-title--purple {
    background-color: #efeaf9;
  }
}

@media screen and (min-width: 751px) {
  .p-hotel-pickup__item-title.p-hotel-pickup__item-title--spacing {
    font-size: 1.125rem;
  }
}

.p-hotel-pickup__item-img {
  width: 100%;
  margin-top: 2.125rem;
}
@media screen and (min-width: 751px) {
  .p-hotel-pickup__item-img {
    margin-top: 0;
    flex: 0.9;
  }
}

.p-hotel-pickup__item-img img {
  width: 100%;
  aspect-ratio: 600/300;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 751px) {
  .p-hotel-pickup__item-img img {
    aspect-ratio: 425/213;
  }
}

.p-hotel-pickup__item-text {
  margin-top: 1.875rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 751px) {
  .p-hotel-pickup__item-text {
    margin-top: 0.9375rem;
    letter-spacing: normal;
  }
}

.p-hotel-pickup__item-text--bold {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  color: #000000;
}
@media screen and (min-width: 751px) {
  .p-hotel-pickup__item-text--bold {
    font-size: 1.25rem;
  }
}

.p-hotel-pickup__item-lists {
  margin-top: 3.75rem;
}
@media screen and (min-width: 751px) {
  .p-hotel-pickup__item-lists {
    margin-top: 1.875rem;
  }
}

@media screen and (min-width: 751px) {
  .p-hotel-pickup__item-text,
  .p-hotel-pickup__item-lists {
    padding: 0 1.75rem;
  }
}

.p-hotel-pickup__item-list {
  line-height: 1.83;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 751px) {
  .p-hotel-pickup__item-list {
    line-height: 2;
    letter-spacing: normal;
  }
}

.p-hotel-pickup__item-deco {
  display: flex;
  align-items: center;
  margin-top: 4.5625rem;
}
@media screen and (min-width: 751px) {
  .p-hotel-pickup__item-deco {
    position: absolute;
    bottom: -0.5625rem;
    right: 2rem;
    margin-top: 0;
  }
}

.p-hotel-pickup__item-deco span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10.73125rem;
  height: 10.73125rem;
  font-size: 1.5625rem;
  font-weight: 500;
  line-height: 1.319;
  background-color: #ffffff;
  border: 1px solid #f3c400;
  border-radius: 50%;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-hotel-pickup__item-deco span {
    width: 6.4375rem;
    height: 6.4375rem;
    font-size: 0.9375rem;
  }
}

.p-hotel-pickup__item-deco span:not(:first-child) {
  margin-left: 2.6875rem;
}
@media screen and (min-width: 751px) {
  .p-hotel-pickup__item-deco span:not(:first-child) {
    margin-left: 1.625rem;
  }
}

.p-hotel-schedule {
  margin-top: 9.25rem;
}
@media screen and (min-width: 751px) {
  .p-hotel-schedule {
    margin-top: 4.6875rem;
  }
}

.p-hotel-schedule__title {
  margin-top: 4.0625rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.05em;
  color: #532881;
}
@media screen and (min-width: 751px) {
  .p-hotel-schedule__title {
    margin-top: 2rem;
    font-size: 1.25rem;
  }
}

.p-hotel-schedule__text {
  margin-top: 4.0625rem;
}
@media screen and (min-width: 751px) {
  .p-hotel-schedule__text {
    margin-top: 2rem;
  }
}

.p-hotel-schedule__text.p-hotel-schedule__text--major {
  margin-top: 1.5rem;
}
@media screen and (min-width: 751px) {
  .p-hotel-schedule__text.p-hotel-schedule__text--major {
    margin-top: 0.5rem;
  }
}

.p-hotel-schedule__calendar {
  margin-top: 3.9375rem;
}
@media screen and (min-width: 751px) {
  .p-hotel-schedule__calendar {
    margin-top: 2.0625rem;
  }
}

.p-hotel-schedule__calendar-img {
  width: 100%;
}

.p-hotel-schedule__calendar-img img {
  width: 204.54375rem;
}
@media screen and (min-width: 751px) {
  .p-hotel-schedule__calendar-img img {
    width: 75.3125rem;
  }
}

.p-hotel-schedule__calendar-img.p-hotel-schedule__calendar-img--major img {
  width: 184.35625rem;
}
@media screen and (min-width: 751px) {
  .p-hotel-schedule__calendar-img.p-hotel-schedule__calendar-img--major img {
    width: 74.625rem;
  }
}

.p-hotel-schedule__btn {
  margin-top: 4.9375rem;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-hotel-schedule__btn {
    margin-top: 2.5rem;
  }
}

.p-hotel-timeline__table {
  width: 82.6875rem;
  border-collapse: collapse;
  background-color: #f9f9f9;
}
@media screen and (min-width: 751px) {
  .p-hotel-timeline__table {
    width: 100%;
  }
}

.p-hotel-timeline__table thead {
  height: 3.6625rem;
  border-top: 0.5px solid #62b9e9;
  border-bottom: 0.5px solid #62b9e9;
}
@media screen and (min-width: 751px) {
  .p-hotel-timeline__table thead {
    height: 1.975rem;
  }
}

.p-hotel-timeline__table th:first-child,
.p-hotel-timeline__table td:first-child {
  width: 7.49375rem;
}
@media screen and (min-width: 751px) {
  .p-hotel-timeline__table th:first-child,
  .p-hotel-timeline__table td:first-child {
    width: 5.0625rem;
  }
}

.p-hotel-timeline__table th {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  color: #00336c;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-hotel-timeline__table th {
    font-size: 0.8125rem;
  }
}

.p-hotel-timeline__table td:first-child {
  font-size: 1.4375rem;
  font-weight: 500;
  line-height: 1;
  color: #2e91cf;
  background-color: #e5f1fa;
}
@media screen and (min-width: 751px) {
  .p-hotel-timeline__table td:first-child {
    font-size: 0.8125rem;
  }
}

.p-hotel-timeline__table th,
.p-hotel-timeline__table td:not(:first-child) {
  width: 15rem;
}
@media screen and (min-width: 751px) {
  .p-hotel-timeline__table th,
  .p-hotel-timeline__table td:not(:first-child) {
    width: 7.5rem;
  }
}

.p-hotel-timeline__table td {
  position: relative;
  height: 8.875rem;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-hotel-timeline__table td {
    height: 4.78125rem;
  }
}

.p-hotel-timeline__table td:not(:first-child) {
  padding-left: 1.6875rem;
}
@media screen and (min-width: 751px) {
  .p-hotel-timeline__table td:not(:first-child) {
    padding-left: 1.1875rem;
  }
}

.p-hotel-timeline__table tr:not(:last-child) {
  border-bottom: 0.5px dashed #62b9e9;
}

.timeline__table-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.08625rem;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
}
@media screen and (min-width: 751px) {
  .timeline__table-tag {
    font-size: 0.576875rem;
  }
}

.timeline__table--navy {
  width: 1.21875rem;
  height: 1.21875rem;
  margin-inline: auto;
  background-color: #00336c;
}
@media screen and (min-width: 751px) {
  .timeline__table--navy {
    width: 0.65625rem;
    height: 0.65625rem;
  }
}

.timeline__table-vertical-rl {
  writing-mode: vertical-rl;
}

.timeline__table--red,
.timeline__table--green {
  position: absolute;
  top: 0.3125rem;
  left: 0.3125rem;
  width: 1.3875rem;
  height: 1.3875rem;
}
@media screen and (min-width: 751px) {
  .timeline__table--red,
  .timeline__table--green {
    width: 0.7625rem;
    height: 0.7625rem;
    top: 0.15625rem;
    left: 0.15625rem;
  }
}

.timeline__table--red {
  background-color: #be2d38;
}

.timeline__table--green {
  background-color: #3a816a;
}

.timeline__table-text {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 13.26875rem;
  height: 6.76875rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.247;
  color: #231815;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .timeline__table-text {
    width: 8.975rem;
    height: 3.65625rem;
    font-size: 0.8125rem;
  }
}

.timeline__table-text.timeline__table-text--large {
  height: 15.7125rem;
}
@media screen and (min-width: 751px) {
  .timeline__table-text.timeline__table-text--large {
    height: 8.48125rem;
  }
}

.timeline__table-text.timeline__table-text--small {
  font-size: 1.3125rem;
}
@media screen and (min-width: 751px) {
  .timeline__table-text.timeline__table-text--small {
    font-size: 0.8125rem;
  }
}

.timeline__table-text--yellow {
  background-color: #fbf3d8;
}

.timeline__table-text--green {
  background-color: #d6e3df;
}

.timeline__table-border {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4.875rem;
  height: 0.3px;
  background-color: #2e91cf;
}

.p-hotel-timeline {
  margin-top: 5rem;
}

.p-hotel-timeline__contents:not(:first-child) {
  margin-top: 4.1875rem;
}
@media screen and (min-width: 751px) {
  .p-hotel-timeline__contents:not(:first-child) {
    margin-top: 4.625rem;
  }
}

.p-hotel-timeline__grade {
  display: flex;
  align-items: flex-end;
  margin-top: 2.25rem;
  font-weight: 500;
  line-height: 1;
  color: #00336c;
}
@media screen and (min-width: 751px) {
  .p-hotel-timeline__grade {
    margin-top: 1.125rem;
  }
}

.p-hotel-timeline__grade-title {
  font-size: 3.5rem;
}
@media screen and (min-width: 751px) {
  .p-hotel-timeline__grade-title {
    font-size: 1.889375rem;
  }
}

.p-hotel-timeline__grade-title span {
  font-size: 1.875rem;
}
@media screen and (min-width: 751px) {
  .p-hotel-timeline__grade-title span {
    font-size: 1.011875rem;
  }
}

.p-hotel-timeline__grade-title--sub {
  margin-left: 1.625rem;
  font-size: 1.25rem;
}
@media screen and (min-width: 751px) {
  .p-hotel-timeline__grade-title--sub {
    margin-left: 0.9375rem;
    font-size: 0.63rem;
  }
}

.p-hotel-timeline__tag-wrapper {
  display: flex;
  align-items: center;
  margin-top: 2.375rem;
  margin-left: 0.5rem;
}
@media screen and (min-width: 751px) {
  .p-hotel-timeline__tag-wrapper {
    margin-top: 1.3125rem;
    margin-left: 0.375rem;
  }
}

.p-hotel-timeline__tag {
  display: flex;
  align-content: center;
  font-size: 1.87rem;
  line-height: 1;
  letter-spacing: 0.3em;
  color: #231815;
}
@media screen and (min-width: 751px) {
  .p-hotel-timeline__tag {
    font-size: 1.009375rem;
  }
}

.p-hotel-timeline__tag span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.89375rem;
  height: 1.89375rem;
  margin-right: 1.125rem;
  font-size: 1.335625rem;
  line-height: 1;
  letter-spacing: normal;
  color: #ffffff;
  background-color: #be2d38;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-hotel-timeline__tag span {
    width: 1.01875rem;
    height: 1.01875rem;
    margin-right: 0.5625rem;
    font-size: 0.72125rem;
  }
}

.p-hotel-timeline__tag.p-hotel-timeline__tag--green span {
  margin-left: 2.25rem;
  background-color: #3a816a;
}
@media screen and (min-width: 751px) {
  .p-hotel-timeline__tag.p-hotel-timeline__tag--green span {
    margin-left: 1.1875rem;
  }
}

.p-hotel-timeline__calendar {
  margin-top: 2.0625rem;
}
@media screen and (min-width: 751px) {
  .p-hotel-timeline__calendar {
    margin-top: 1.125rem;
  }
}

.p-hotel-timeline__calendar-2year {
  margin-top: 1.4375rem;
}
@media screen and (min-width: 751px) {
  .p-hotel-timeline__calendar-2year {
    margin-top: 0.8125rem;
  }
}

.p-hotel-timeline__calendar-img {
  width: 100%;
}

.p-hotel-timeline__calendar-img img {
  width: 83.1875rem;
}
@media screen and (min-width: 751px) {
  .p-hotel-timeline__calendar-img img {
    width: 100%;
  }
}

.p-hotel-timeline__calendar-img.p-hotel-timeline__calendar-img--major img {
  width: 123.8875rem;
}
@media screen and (min-width: 751px) {
  .p-hotel-timeline__calendar-img.p-hotel-timeline__calendar-img--major img {
    width: 100%;
  }
}

.p-hotel-timeline__lead {
  margin-top: 1.6875rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.667;
  color: #00336c;
}
@media screen and (min-width: 751px) {
  .p-hotel-timeline__lead {
    margin-top: 0.9375rem;
    font-size: 1rem;
  }
}

.p-interview {
  margin-top: 2.375rem;
  margin-bottom: 13.125rem;
}
@media screen and (min-width: 751px) {
  .p-interview {
    margin-top: 0.3125rem;
    margin-bottom: 6rem;
  }
}

.p-interview.p-interview--about {
  margin-top: 7.0625rem;
  margin-bottom: 0;
}
@media screen and (min-width: 751px) {
  .p-interview.p-interview--about {
    margin-top: 0.3125rem;
  }
}

.p-interview.p-interview--student {
  margin-top: 7.0625rem;
  margin-bottom: 0;
}
@media screen and (min-width: 751px) {
  .p-interview.p-interview--student {
    margin-top: 0;
  }
}

.p-interview--overseas {
  margin-top: 4.25rem;
  margin-bottom: 0;
}
@media screen and (min-width: 751px) {
  .p-interview--overseas {
    margin-top: 0;
  }
}

@media screen and (min-width: 751px) {
  .p-interview__bg {
    padding: 2.0625rem 0 1.5rem;
  }
}

@media screen and (min-width: 751px) {
  .p-interview__bg--green {
    background-color: #d4e5df;
  }
}

@media screen and (min-width: 751px) {
  .p-interview__bg--blue {
    background-color: #e2f2fb;
  }
}

@media screen and (min-width: 751px) {
  .p-interview__bg--pink {
    background-color: #fcf2f7;
  }
}

@media screen and (min-width: 751px) {
  .p-interview__bg--purple {
    background-color: #efe8f9;
  }
}

@media screen and (min-width: 751px) {
  .p-interview__bg--yellow {
    background-color: #fdf4d6;
  }
}

@media screen and (min-width: 751px) {
  .p-interview__inner {
    max-width: 65.625rem;
  }
}

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

.p-interview__title-en {
  font-size: 1.5rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 751px) {
  .p-interview__title-en {
    font-size: 0.75rem;
  }
}

.p-interview__title-en--green {
  color: #00896c;
}

.p-interview__title-en--blue {
  color: #0094d6;
}

.p-interview__title-en--pink {
  color: #eb92bb;
}

.p-interview__title-en--purple {
  color: #9477ac;
}

.p-interview__title-en--yellow {
  color: #f3c400;
}

.p-interview__bg--major {
  color: #efeaf9;
}

.p-interview__title-jp {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 751px) {
  .p-interview__title-jp {
    font-size: 1.25rem;
  }
}

.p-interview__contents {
  margin-top: 2.1875rem;
}
@media screen and (min-width: 751px) {
  .p-interview__contents {
    margin-top: 0.9375rem;
  }
}

.p-interview__item {
  position: relative;
  padding: 5.6875rem 2.9375rem 3.1875rem;
  background-color: #fff;
}
@media screen and (min-width: 751px) {
  .p-interview__item {
    padding: 2.75rem 1.375rem 1.6875rem;
  }
}

.p-interview__item--green {
  border: 0.1875rem solid #6ab19f;
}
@media screen and (min-width: 751px) {
  .p-interview__item--green {
    border: 0.125rem solid #6ab19f;
  }
}

.p-interview__item--blue {
  border: 0.1875rem solid #36bdef;
}
@media screen and (min-width: 751px) {
  .p-interview__item--blue {
    border: 0.125rem solid #36bdef;
  }
}

.p-interview__item--pink {
  border: 0.1875rem solid #f5cde0;
}
@media screen and (min-width: 751px) {
  .p-interview__item--pink {
    border: 0.125rem solid #f5cde0;
  }
}

.p-interview__item--purple {
  border: 0.1875rem solid #9477ac;
}
@media screen and (min-width: 751px) {
  .p-interview__item--purple {
    border: 0.125rem solid #9477ac;
  }
}

.p-interview__item--yellow {
  border: 0.1875rem solid #f3c400;
}
@media screen and (min-width: 751px) {
  .p-interview__item--yellow {
    border: 0.125rem solid #f3c400;
  }
}

.p-interview__item-title {
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.471;
  letter-spacing: -0.08em;
  color: #00336c;
}
@media screen and (min-width: 751px) {
  .p-interview__item-title {
    font-size: 1.0625rem;
  }
}

.p-interview__item-lists {
  margin-top: 2.5rem;
}
@media screen and (min-width: 751px) {
  .p-interview__item-lists {
    margin-top: 1.3125rem;
  }
}

.p-interview__item-list {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.583;
  color: #231815;
}
@media screen and (min-width: 751px) {
  .p-interview__item-list {
    font-size: 0.75rem;
    letter-spacing: -0.04em;
  }
}

.p-interview__img {
  position: absolute;
  z-index: -1;
  top: 3.125rem;
  right: 2.9375rem;
  width: 15rem;
  height: 15rem;
}
@media screen and (min-width: 751px) {
  .p-interview__img {
    top: 1.4375rem;
    right: 1.5rem;
    width: 7.5rem;
    height: 7.5rem;
  }
}

.p-interview__img img {
  width: 100%;
  aspect-ratio: 240/240;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-interview__swiper-pagination {
  margin-top: 2.1875rem;
  --swiper-pagination-bullet-size: 1rem;
  --swiper-pagination-bullet-horizontal-gap: 0.625rem;
}
@media screen and (min-width: 751px) {
  .p-interview__swiper-pagination {
    margin-top: 1.375rem;
    --swiper-pagination-bullet-size: 0.5rem;
    --swiper-pagination-bullet-horizontal-gap: 0.3125rem;
  }
}

.p-interview__swiper-pagination.swiper-pagination {
  position: static;
}

.p-interview__swiper-pagination .swiper-pagination-bullet-active {
  background-color: #999999;
}

.p-interview__item-btn {
  margin-top: 0.9375rem;
  text-align: right;
}
@media screen and (min-width: 751px) {
  .p-interview__item-btn {
    margin-top: 0.5625rem;
  }
}

.p-interview__item-btn.p-interview__item-btn--about {
  margin-top: 0;
}

@media screen and (min-width: 751px) {
  .p-interview__item-btn--link {
    line-height: 2;
  }
}

.p-interview__item-btn a {
  letter-spacing: -0.1em;
}

.p-interview__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 5rem;
}
@media screen and (min-width: 751px) {
  .p-interview__btn {
    max-width: 38.75rem;
    margin-inline: auto;
    flex-direction: unset;
    justify-content: space-between;
    margin-top: 2.5rem;
  }
}

@media screen and (min-width: 751px) {
  .p-interview__btn.p-interview__btn--about {
    justify-content: center;
  }
}

.p-interview__btn a:not(:first-child) {
  margin-top: 1.375rem;
}
@media screen and (min-width: 751px) {
  .p-interview__btn a:not(:first-child) {
    margin-top: 0;
  }
}

.p-about-interview {
  position: relative;
  margin-top: 6.25rem;
  margin-bottom: 0;
}
@media screen and (min-width: 751px) {
  .p-about-interview {
    margin-top: 5.1875rem;
    margin-bottom: 0;
  }
}

.p-about-interview__title {
  position: absolute;
  z-index: 2;
  top: -2.1875rem;
  left: 5.25rem;
  padding: 0 3.625rem 0 1.125rem;
  font-size: 2.5rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #0094d6;
  background-color: #ffffff;
}

.p-about-interview__contents {
  margin-top: 0;
}
@media screen and (min-width: 751px) {
  .p-about-interview__contents {
    margin-top: 1rem;
  }
}

.p-about-interview__item.swiper-slide {
  display: flex;
  flex-direction: column;
}

.p-about-interview__item {
  min-height: 53.5625rem;
  padding: 4.375rem 2.3125rem 3.3125rem;
}
@media screen and (min-width: 751px) {
  .p-about-interview__item {
    min-height: 26.75rem;
    padding: 2.0625rem 1.0625rem 1.5625rem;
  }
}

.p-about-interview__img {
  width: 100%;
  max-width: 18.75rem;
  margin-inline: auto;
}
@media screen and (min-width: 751px) {
  .p-about-interview__img {
    max-width: 9.375rem;
  }
}

.p-about-interview__img img {
  aspect-ratio: 300/375;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 751px) {
  .p-about-interview__img img {
    aspect-ratio: 150/187.5;
  }
}

.p-about-interview__item-title {
  margin-top: 1.75rem;
}
@media screen and (min-width: 751px) {
  .p-about-interview__item-title {
    margin-top: 0.875rem;
  }
}

.p-about-interview__item-lists {
  margin-top: 0.875rem;
}
@media screen and (min-width: 751px) {
  .p-about-interview__item-lists {
    margin-top: 0.5rem;
  }
}

.p-about-interview__item-btn {
  display: block;
  margin-top: auto;
}

@media screen and (min-width: 751px) {
  .p-interview__arrow {
    margin-left: 1rem;
  }
}

.p-hotel-interview {
  margin: 4.6875rem -1.25rem 0;
}
@media screen and (min-width: 751px) {
  .p-hotel-interview {
    width: 100vw;
    margin: 4.875rem calc(50% - 50vw) 0;
  }
}

@media screen and (min-width: 751px) {
  .p-hotel-interview__inner {
    max-width: 65.625rem;
    margin-inline: auto;
    padding: 0 1.5625rem;
  }
}

.p-learning {
  margin-top: 5.5625rem;
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .p-learning {
    margin-top: 4.375rem;
  }
}

.p-learning__title {
  margin-top: 1.25rem;
  line-height: 0.95;
}
@media screen and (min-width: 751px) {
  .p-learning__title {
    margin-top: 0.625rem;
  }
}

.p-life {
  margin-top: 6.875rem;
}
@media screen and (min-width: 751px) {
  .p-life {
    margin-top: 4.875rem;
  }
}

@media screen and (min-width: 751px) {
  .p-life__inner {
    width: 100%;
    max-width: 65.625rem;
    margin-inline: auto;
    padding: 0 1.5625rem;
  }
}

@media screen and (min-width: 751px) {
  .p-life__wrapper {
    display: flex;
    flex-direction: row-reverse;
    align-items: stretch;
  }
}

.p-life__img {
  width: 100%;
}
@media screen and (min-width: 751px) {
  .p-life__img {
    flex: 3;
  }
}

.p-life__img img {
  aspect-ratio: 750/750;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 751px) {
  .p-life__img img {
    aspect-ratio: 600/300;
  }
}

.p-life__contents {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.125rem 3.4375rem 2.5rem 4.375rem;
  width: 100%;
  background-color: #fdf4d6;
}
@media screen and (min-width: 751px) {
  .p-life__contents {
    padding: 0;
    flex: 2;
  }
}

.p-life__title {
  color: #003570;
}
@media screen and (min-width: 751px) {
  .p-life__title {
    margin-left: 3.125rem;
  }
}

.p-life__title p {
  font-size: 2.125rem;
  line-height: 1.618;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 751px) {
  .p-life__title p {
    font-size: 1.0625rem;
  }
}

.p-life__title h2 {
  font-size: 4.125rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
@media screen and (min-width: 751px) {
  .p-life__title h2 {
    font-size: 2.0625rem;
  }
}

@media screen and (min-width: 751px) {
  .p-life__btn {
    margin-right: 3.125rem;
  }
}

.p-life__wrapper:hover .p-life__btn {
  transform: translateX(5px);
}

.p-major-department {
  margin-top: 11.25rem;
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .p-major-department {
    margin-top: 7.5rem;
  }
}

.p-major-department__body {
  margin-top: 2.9375rem;
}
@media screen and (min-width: 751px) {
  .p-major-department__body {
    position: relative;
    margin-top: 1.625rem;
    margin-left: 0.625rem;
  }
}

.p-major-department__body-img {
  width: 29.375rem;
  margin-inline: auto;
  margin-top: 2.0625rem;
}
@media screen and (min-width: 751px) {
  .p-major-department__body-img {
    position: absolute;
    top: -6.5rem;
    right: 0;
    width: 14.6875rem;
    margin-top: 0;
  }
}

.p-major-department__contents {
  position: relative;
  width: 100vw;
  margin: 5rem calc(50% - 50vw) 0;
  padding-bottom: 5.3125rem;
}
@media screen and (min-width: 751px) {
  .p-major-department__contents {
    margin: 6.25rem calc(50% - 50vw) 0;
    padding-top: 1.5rem;
    padding-bottom: 2.625rem;
  }
}

.p-major-department__contents::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 86%;
  background-color: #9477ac;
}
@media screen and (min-width: 751px) {
  .p-major-department__contents::before {
    height: 100%;
  }
}

.p-major-department__swiper {
  position: relative;
  width: 100%;
  max-width: 40rem;
  margin-inline: auto;
  padding: 0 1.25rem;
}

@media screen and (min-width: 751px) {
  .p-major-department__swiper-slide.swiper-slide {
    display: flex;
    align-items: flex-start;
    padding-top: 1.875rem;
  }
}

.p-major-department__swiper-img {
  width: 100%;
}
@media screen and (min-width: 751px) {
  .p-major-department__swiper-img {
    flex: 1;
  }
}

.p-major-department__swiper-img img {
  width: 100%;
  aspect-ratio: 640/500;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3.125rem 0 3.125rem 0;
}
@media screen and (min-width: 751px) {
  .p-major-department__swiper-img img {
    width: 18.75rem;
    aspect-ratio: 300/225;
    border-radius: 1.5625rem 0 1.5625rem 0;
  }
}

.p-major-department__swiper-contents {
  margin-top: 9.625rem;
  padding: 0 1.25rem;
}
@media screen and (min-width: 751px) {
  .p-major-department__swiper-contents {
    margin-top: 0;
    margin-left: 2.375rem;
    padding: 0;
    flex: 1;
  }
}

.p-major-department__swiper-circle {
  position: absolute;
  top: 43%;
  left: 1.8125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10rem;
  height: 10rem;
  font-size: 2.2225rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 600;
  line-height: 1;
  color: #532881;
  background-color: #ffffff;
  border-radius: 50%;
}
@media screen and (min-width: 751px) {
  .p-major-department__swiper-circle {
    top: 0;
    left: 0;
    width: 5rem;
    height: 5rem;
    font-size: 1.0625rem;
  }
}

.p-major-department__swiper-circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8.8875rem;
  height: 8.8875rem;
  border: 0.125rem solid #532881;
  border-radius: 50%;
}
@media screen and (min-width: 751px) {
  .p-major-department__swiper-circle::before {
    width: 4.4375rem;
    height: 4.4375rem;
    border: 0.0625rem solid #532881;
  }
}

.p-major-department__swiper-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.07em;
  color: #ffffff;
}
@media screen and (min-width: 751px) {
  .p-major-department__swiper-title {
    font-size: 1.25rem;
  }
}

.p-major-department__swiper-text {
  margin-top: 0.625rem;
  font-size: 1.875rem;
  line-height: 1.851;
  color: #ffffff;
}
@media screen and (min-width: 751px) {
  .p-major-department__swiper-text {
    margin-top: 0.625rem;
    font-size: 0.9375rem;
  }
}

.p-major-department__swiper-button-prev,
.p-major-department__swiper-button-next {
  position: absolute;
  z-index: 2;
  top: 20.5%;
  width: 3.75rem;
  height: 3.75rem;
  background-color: #ffffff;
  border-radius: 50%;
  opacity: 0.8;
}
@media screen and (min-width: 751px) {
  .p-major-department__swiper-button-prev,
  .p-major-department__swiper-button-next {
    top: 50%;
    transform: translateY(-50%);
    width: 1.875rem;
    height: 1.875rem;
  }
}

.p-major-department__swiper-button-prev::before,
.p-major-department__swiper-button-next::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1.625rem;
  height: 0.1875rem;
  background-color: #9377ab;
}
@media screen and (min-width: 751px) {
  .p-major-department__swiper-button-prev::before,
  .p-major-department__swiper-button-next::before {
    width: 0.8125rem;
    height: 0.125rem;
  }
}

.p-major-department__swiper-button-prev::after,
.p-major-department__swiper-button-next::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.9375rem;
  height: 0.9375rem;
  border-top: 0.1875rem solid #9377ab;
  border-right: 0.1875rem solid #9377ab;
}
@media screen and (min-width: 751px) {
  .p-major-department__swiper-button-prev::after,
  .p-major-department__swiper-button-next::after {
    width: 0.5rem;
    height: 0.5rem;
    border-top: 0.125rem solid #9377ab;
    border-right: 0.125rem solid #9377ab;
  }
}

.p-major-department__swiper-button-prev {
  left: 1.5625rem;
}
@media screen and (min-width: 751px) {
  .p-major-department__swiper-button-prev {
    left: 12.7%;
  }
}

.p-major-department__swiper-button-prev::before {
  left: calc(50% + 0.1875rem);
}
@media screen and (min-width: 751px) {
  .p-major-department__swiper-button-prev::before {
    left: calc(50% + 0.0625rem);
  }
}

.p-major-department__swiper-button-prev::after {
  left: calc(50% - 0.125rem);
  transform: translate(-50%, -50%) rotate(225deg);
}
@media screen and (min-width: 751px) {
  .p-major-department__swiper-button-prev::after {
    left: calc(50% - 0.0625rem);
  }
}

.p-major-department__swiper-button-next {
  right: 1.5625rem;
}
@media screen and (min-width: 751px) {
  .p-major-department__swiper-button-next {
    right: 12.5%;
  }
}

.p-major-department__swiper-button-next::before {
  left: calc(50% - 0.0625rem);
}
@media screen and (min-width: 751px) {
  .p-major-department__swiper-button-next::before {
    left: 50%;
  }
}

.p-major-department__swiper-button-next::after {
  left: calc(50% + 0.1875rem);
  transform: translate(-50%, -50%) rotate(45deg);
}
@media screen and (min-width: 751px) {
  .p-major-department__swiper-button-next::after {
    left: calc(50% + 0.125rem);
  }
}

.p-major-interview {
  margin-top: 11.4375rem;
}
@media screen and (min-width: 751px) {
  .p-major-interview {
    margin-top: 7.5rem;
  }
}

@media screen and (min-width: 751px) {
  .p-major-interview__bg {
    background-color: #efeaf9;
    padding: 3.5rem 0 1.875rem;
  }
}

@media screen and (min-width: 751px) {
  .p-major-interview__inner {
    max-width: 43.125rem;
  }
}

.p-major-interview__contents {
  position: relative;
}

.p-major-interview__title {
  position: absolute;
  z-index: 2;
  top: -2.1875rem;
  left: 1.875rem;
  padding: 0 3.625rem 0 1.125rem;
  font-size: 2.5rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #9377ab;
  background-color: #ffffff;
}
@media screen and (min-width: 751px) {
  .p-major-interview__title {
    top: -0.9375rem;
    left: 1.25rem;
    padding: 0 0.9375rem 0 0.625rem;
    font-size: 1.25rem;
    background: linear-gradient(180deg, #efeaf9 0%, #efeaf9 50%, #ffffff 50%, #ffffff 100%);
  }
}

.p-major-interview__swiper-slide.swiper-slide {
  min-height: 53.5625rem;
  padding: 4.375rem 2.3125rem 3.3125rem;
  border: 0.1875rem solid #9377ab;
}
@media screen and (min-width: 751px) {
  .p-major-interview__swiper-slide.swiper-slide {
    display: flex;
    align-items: flex-start;
    min-height: 16.78125rem;
    padding: 2.375rem 1.8125rem 1.5625rem;
    background-color: #ffffff;
    border: 0.0625rem solid #9377ab;
  }
}

.p-major-interview__img {
  width: 100%;
  max-width: 18.75rem;
  margin-inline: auto;
}
@media screen and (min-width: 751px) {
  .p-major-interview__img {
    max-width: 9.375rem;
    margin-inline: unset;
  }
}

.p-major-interview__img img {
  aspect-ratio: 300/375;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 751px) {
  .p-major-interview__img img {
    aspect-ratio: 150/187.5;
  }
}

.p-major-interview__swiper-body {
  margin-top: 1.6875rem;
}
@media screen and (min-width: 751px) {
  .p-major-interview__swiper-body {
    margin-top: 0;
    margin-left: 1.25rem;
  }
}

.p-major-interview__swiper-title {
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.471;
  letter-spacing: -0.02em;
  color: #00336c;
}
@media screen and (min-width: 751px) {
  .p-major-interview__swiper-title {
    font-size: 1.0625rem;
  }
}

.p-major-interview__swiper-text {
  margin-top: 0.375rem;
  font-size: 0.9375rem;
  line-height: 1.667;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media screen and (min-width: 751px) {
  .p-major-interview__swiper-lists-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.p-major-interview__swiper-lists {
  margin-top: 0.9375rem;
}

.p-major-interview__swiper-list {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.583;
  color: #231815;
}
@media screen and (min-width: 751px) {
  .p-major-interview__swiper-list {
    font-size: 0.75rem;
    letter-spacing: -0.04em;
  }
}

.p-major-interview__swiper-btn {
  margin-top: 0.4375rem;
  text-align: right;
}
@media screen and (min-width: 751px) {
  .p-major-interview__swiper-btn {
    margin-top: 0;
  }
}

.p-major-learning {
  margin-top: 5.125rem;
}
@media screen and (min-width: 751px) {
  .p-major-learning {
    margin-top: 2.75rem;
  }
}

@media screen and (min-width: 751px) {
  .p-major-learning__items {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-major-learning__item:not(:first-child) {
  margin-top: 7.125rem;
}
@media screen and (min-width: 751px) {
  .p-major-learning__item:not(:first-child) {
    margin-top: 0;
  }
}

.p-major-learning__item-head {
  text-align: center;
}

.p-major-learning__item-head-sub {
  display: block;
  padding: 0.25rem 0 0.375rem;
  font-size: 1.75rem;
  font-weight: 500;
  color: #ffffff;
  background-color: #9477ac;
}
@media screen and (min-width: 751px) {
  .p-major-learning__item-head-sub {
    padding: 0.0625rem 0 0.1875rem;
    font-size: 0.875rem;
  }
}

.p-major-learning__item-head-main {
  position: relative;
  padding: 1.5rem 0 1.75rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: #532881;
  background-color: #efeaf9;
}
@media screen and (min-width: 751px) {
  .p-major-learning__item-head-main {
    padding: 0.75rem 0 0.875rem;
    font-size: 1.25rem;
  }
}

.p-major-learning__item-head p::before {
  content: "";
  position: absolute;
  bottom: -1.875rem;
  left: 50%;
  display: inline-block;
  transform: translateX(-50%);
  border: 0.625rem solid transparent;
  border-top: 1.4375rem solid #efeaf9;
}
@media screen and (min-width: 751px) {
  .p-major-learning__item-head p::before {
    bottom: -0.9375rem;
    border: 0.3125rem solid transparent;
    border-top: 0.71875rem solid #efeaf9;
  }
}

.p-major-learning__item-title {
  margin-top: 2.8125rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.45;
  color: #532881;
}
@media screen and (min-width: 751px) {
  .p-major-learning__item-title {
    display: flex;
    align-items: center;
    min-height: 5.4375rem;
    margin-top: 1.0625rem;
    font-size: 1.25rem;
  }
}

.p-major-learning__item-text {
  margin-top: 0.75rem;
  font-size: 1.875rem;
  line-height: 1.851;
}
@media screen and (min-width: 751px) {
  .p-major-learning__item-text {
    margin-top: 0.75rem;
    font-size: 0.9375rem;
    line-height: 2;
    letter-spacing: -0.04em;
  }
}

.p-major-learning__item-bottom {
  margin-top: 2.1875rem;
}
@media screen and (min-width: 751px) {
  .p-major-learning__item-bottom {
    margin-top: 0.9375rem;
  }
}

.p-major-learning__item-bottom-title {
  padding-bottom: 0.5625rem;
  font-size: 2.125rem;
  font-weight: 700;
  color: #231815;
  border-bottom: 1px solid #000000;
}
@media screen and (min-width: 751px) {
  .p-major-learning__item-bottom-title {
    padding-bottom: 0.1875rem;
    font-size: 1.0625rem;
  }
}

.p-major-learning__item-lists {
  margin-top: 0.625rem;
}
@media screen and (min-width: 751px) {
  .p-major-learning__item-lists {
    margin-top: 0.3125rem;
  }
}

.p-major-learning__item-list {
  position: relative;
  padding-left: 1.875rem;
  line-height: 1.7;
}
@media screen and (min-width: 751px) {
  .p-major-learning__item-list {
    padding-left: 1.875rem;
    line-height: 1.65;
  }
}

.p-major-learning__item-list::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  background-color: #4e2b7e;
}
@media screen and (min-width: 751px) {
  .p-major-learning__item-list::before {
    width: 0.5625rem;
    height: 0.5625rem;
  }
}

.p-major-pickup__items {
  margin-top: 3.9375rem;
}
@media screen and (min-width: 751px) {
  .p-major-pickup__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.3125rem 3.75rem;
    width: 100%;
    max-width: 43.75rem;
    margin-inline: auto;
    margin-top: 2.3125rem;
  }
}

.p-major-pickup__item:not(:first-child) {
  margin-top: 4.25rem;
}
@media screen and (min-width: 751px) {
  .p-major-pickup__item:not(:first-child) {
    margin-top: 0;
  }
}

.p-major-pickup__item-head {
  position: relative;
  display: flex;
  align-items: center;
  height: 5rem;
  margin: 0 -1.25rem;
  padding: 1.1875rem 1.3125rem;
  background-color: #9377ab;
  cursor: pointer;
}
@media screen and (min-width: 751px) {
  .p-major-pickup__item-head {
    height: 2.5rem;
    margin: 0;
    padding: 0 0.625rem;
    cursor: unset;
  }
}

.p-major-pickup__item-head::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.875rem;
  transform: translateY(-50%) rotate(225deg);
  width: 0.79375rem;
  height: 0.79375rem;
  border-right: 0.1875rem solid #ffffff;
  border-bottom: 0.1875rem solid #ffffff;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 751px) {
  .p-major-pickup__item-head::before {
    content: none;
  }
}

.p-major-pickup__item.is-open .p-major-pickup__item-head::before {
  transform: translateY(-50%) rotate(45deg);
}

.p-major-pickup__item-head h4 {
  margin-left: 2.0625rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}
@media screen and (min-width: 751px) {
  .p-major-pickup__item-head h4 {
    margin-left: 1rem;
    font-size: 1rem;
  }
}

.p-major-pickup__lists {
  margin-top: 1.875rem;
}
@media screen and (min-width: 751px) {
  .p-major-pickup__lists {
    margin-top: 1rem;
  }
}

.p-major-pickup__list {
  position: relative;
  padding-left: 1.5625rem;
  line-height: 1.764;
}

.p-major-pickup__list::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  left: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #231815;
}
@media screen and (min-width: 751px) {
  .p-major-pickup__list::before {
    top: 0.5rem;
    left: 0.6875rem;
    width: 0.5rem;
    height: 0.5rem;
  }
}

.p-major-timeline__table {
  width: 124.6875rem;
}
@media screen and (min-width: 751px) {
  .p-major-timeline__table {
    width: 100%;
  }
}

.p-major-timeline__table thead {
  height: 3.325rem;
  border-top: 0.5px solid #00336c;
  border-bottom: 0.5px solid #00336c;
}
@media screen and (min-width: 751px) {
  .p-major-timeline__table thead {
    height: 1.50625rem;
  }
}

.p-major-timeline__table th:first-child,
.p-major-timeline__table td:first-child {
  width: 15rem;
}
@media screen and (min-width: 751px) {
  .p-major-timeline__table th:first-child,
  .p-major-timeline__table td:first-child {
    width: 6.75rem;
  }
}

.p-major-timeline__table td:first-child {
  color: #4e2b7e;
  background-color: #f0f0f0;
}

.p-major-timeline__table td {
  height: 8rem;
}
@media screen and (min-width: 751px) {
  .p-major-timeline__table td {
    height: 3.6625rem;
  }
}

.p-major-timeline__table th,
.p-major-timeline__table td:not(:first-child) {
  width: 21.25rem;
}
@media screen and (min-width: 751px) {
  .p-major-timeline__table th,
  .p-major-timeline__table td:not(:first-child) {
    width: 7.5rem;
  }
}

.timeline__table-text.timeline__table-text--major {
  width: 20.64375rem;
  height: 6.45625rem;
}
@media screen and (min-width: 751px) {
  .timeline__table-text.timeline__table-text--major {
    width: 9.375rem;
    height: 2.9375rem;
  }
}

.p-major-timeline__table td:not(:first-child) {
  padding-left: 1.125rem;
}
@media screen and (min-width: 751px) {
  .p-major-timeline__table td:not(:first-child) {
    padding-left: 0.3125rem;
  }
}

.p-hotel-timeline__table tr:not(:last-child) {
  border-bottom: 0.5px dashed #00336c;
}

.p-media {
  margin-top: 6.125rem;
}
@media screen and (min-width: 751px) {
  .p-media {
    margin-top: 4.375rem;
  }
}

.p-media__inner {
  max-width: 42.5rem;
}
@media screen and (min-width: 751px) {
  .p-media__inner {
    max-width: 59.375rem;
  }
}

.p-media__contents {
  margin-top: 4.125rem;
  padding: 2.8125rem 2.9375rem 4.25rem;
  border: 0.1875rem solid #0093d5;
}
@media screen and (min-width: 751px) {
  .p-media__contents {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4.25rem;
    margin-top: 2.1875rem;
    padding: 1.25rem 2.9375rem 2.125rem;
  }
}

.p-media__lists:not(:first-child) {
  margin-top: 1.0625rem;
}
@media screen and (min-width: 751px) {
  .p-media__lists:not(:first-child) {
    margin-top: 0;
  }
}

.p-media__list:not(:first-child) {
  margin-top: 1.0625rem;
}
@media screen and (min-width: 751px) {
  .p-media__list:not(:first-child) {
    margin-top: 0.25rem;
  }
}

.p-media__list-year {
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.618;
  letter-spacing: 0.07em;
  color: #0094d6;
}
@media screen and (min-width: 751px) {
  .p-media__list-year {
    font-size: 1.0625rem;
  }
}

@media screen and (min-width: 751px) {
  .p-media__list-text {
    display: flex;
    align-items: center;
  }
}

.p-message {
  margin-top: 5.4375rem;
}
@media screen and (min-width: 751px) {
  .p-message {
    margin-top: 4.5625rem;
  }
}

@media screen and (min-width: 751px) {
  .p-message__wrapper {
    display: flex;
    align-items: flex-start;
  }
}

.p-message__contents {
  position: relative;
  padding: 4.5625rem 1.25rem 0;
}
@media screen and (min-width: 751px) {
  .p-message__contents {
    padding: 3.4375rem 3.125rem 0;
    flex: 0.85;
  }
}

.p-message__title {
  font-size: 4.375rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 700;
}
@media screen and (min-width: 751px) {
  .p-message__title {
    font-size: 3.25rem;
    letter-spacing: 0.02em;
  }
}

.p-message__text {
  margin-top: 1.875rem;
}
@media screen and (min-width: 751px) {
  .p-message__text {
    margin-top: 1.375rem;
  }
}

.p-message__text p {
  font-size: 2rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 600;
  line-height: 1.813;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 751px) {
  .p-message__text p {
    font-size: 1.125rem;
    line-height: 2.417;
  }
}

.p-message__text p:not(:first-child) {
  margin-top: 3.65625rem;
}
@media screen and (min-width: 751px) {
  .p-message__text p:not(:first-child) {
    margin-top: 2.6875rem;
  }
}

.p-message__english {
  position: absolute;
  z-index: -1;
  top: 0;
  left: -15.5%;
  font-size: 9.375rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 600;
  letter-spacing: 0.042em;
  color: #d4edfa;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 751px) {
  .p-message__english {
    font-size: 7.03125rem;
    left: -6.5%;
  }
}

.p-message__images {
  position: relative;
  margin-top: 4.6875rem;
}
@media screen and (min-width: 751px) {
  .p-message__images {
    margin-top: 0;
    padding-top: 4.5625rem;
    flex: 1;
  }
}

.p-message__images::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 40%;
  left: -3.4375rem;
  transform: translateY(-50%);
  width: 11.875rem;
  height: 11.875rem;
  background-color: #e3f3fc;
}
@media screen and (min-width: 751px) {
  .p-message__images::before {
    top: 47%;
    left: -2.25rem;
    width: 8.90625rem;
    height: 8.90625rem;
  }
}

.p-message__img {
  width: 100%;
}

.p-message__img.p-message__img--top {
  max-width: 33.125rem;
  margin-left: auto;
}
@media screen and (min-width: 751px) {
  .p-message__img.p-message__img--top {
    max-width: 24.84375rem;
  }
}

.p-message__img--top img {
  aspect-ratio: 530/570;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 751px) {
  .p-message__img--top img {
    aspect-ratio: 397.5/427.5;
  }
}

.p-message__img--bottom {
  max-width: 28.75rem;
  margin-top: -6.375rem;
}
@media screen and (min-width: 751px) {
  .p-message__img--bottom {
    max-width: 21.5625rem;
    margin-top: -4.6875rem;
    margin-left: 0.375rem;
  }
}

.p-message__img--bottom img {
  aspect-ratio: 460/290;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 751px) {
  .p-message__img--bottom img {
    aspect-ratio: 345/217.5;
  }
}

.p-message__btn {
  margin-top: 1.9375rem;
  text-align: right;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 700;
}
@media screen and (min-width: 751px) {
  .p-message__btn {
    margin-top: 2.5rem;
  }
}

.p-message__contents,
.p-message__images {
  opacity: 0;
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.p-message__contents.is-show {
  opacity: 1;
  transform: none;
}

.p-message__images {
  transform: translateY(60px);
}

.p-message__images.is-show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInMV {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-mv {
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  animation: fadeInMV 1s ease-out 0s forwards;
}

.p-mv__wrapper {
  position: relative;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

.p-mv__swiper-pagination {
  --swiper-pagination-bottom: 3rem;
  --swiper-pagination-bullet-horizontal-gap: 0.8125rem;
}
@media screen and (min-width: 751px) {
  .p-mv__swiper-pagination {
    --swiper-pagination-bottom: 1.75rem;
    --swiper-pagination-bullet-horizontal-gap: 0.625rem;
  }
}

.p-mv__swiper-pagination .swiper-pagination-bullet {
  width: 4.375rem;
  height: 0.0625rem;
  opacity: 0.5;
  border-radius: 0;
  background-color: #ffffff;
}
@media screen and (min-width: 751px) {
  .p-mv__swiper-pagination .swiper-pagination-bullet {
    width: 3.28125rem;
  }
}

.p-mv__swiper-pagination .swiper-pagination-bullet-active {
  height: 0.1875rem;
  background-color: #ffffff;
  opacity: 1;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
.js-mv__swiper-slide.swiper-slide-active picture img,
.js-mv__swiper-slide.swiper-slide-duplicate-active picture img,
.js-mv__swiper-slide.swiper-slide-prev picture img {
  animation: zoomUp 10s linear 0s normal both;
}

.p-mv__title {
  position: absolute;
  z-index: 2;
  left: 8%;
  bottom: 12.5%;
  font-size: 4.25rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 700;
  line-height: 1.353;
  color: #ffffff;
  opacity: 0;
  animation: fadeInMV 1s ease-out 0.8s forwards;
}
@media screen and (min-width: 751px) {
  .p-mv__title {
    top: 54%;
    left: 12.5%;
    transform: translateY(-50%);
    font-size: 2.875rem;
  }
}

.p-news-top {
  margin-top: 12.375rem;
}
@media screen and (min-width: 751px) {
  .p-news-top {
    margin-top: 7.3125rem;
  }
}

.p-news-top__inner {
  max-width: 37.5rem;
}
@media screen and (min-width: 751px) {
  .p-news-top__inner {
    max-width: 59.375rem;
  }
}

.p-news-top__contents {
  margin-top: 5.625rem;
}
@media screen and (min-width: 751px) {
  .p-news-top__contents {
    margin-top: 3.125rem;
  }
}

.p-news-top__items {
  display: none;
  margin-top: 5rem;
}
@media screen and (min-width: 751px) {
  .p-news-top__items {
    margin-top: 2.75rem;
  }
}

.p-news-top__items.all {
  display: block;
}

.p-news-top__item {
  width: 100%;
}

.p-news-top__item:not(:first-child) {
  margin-top: 3.0625rem;
}
@media screen and (min-width: 751px) {
  .p-news-top__item:not(:first-child) {
    margin-top: 1.4375rem;
  }
}

.p-news-top__link {
  position: relative;
  display: block;
  width: 100%;
}

.p-news-top__item-arrow {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.p-news-top__item:hover .c-arrow {
  transform: translateX(5px);
}

.p-news-top__link-head {
  display: flex;
  align-items: center;
}

.p-news-top__link-head time {
  font-size: 1.625rem;
  letter-spacing: -0.04em;
  font-weight: 300;
  color: #231815;
}
@media screen and (min-width: 751px) {
  .p-news-top__link-head time {
    font-size: 0.9375rem;
  }
}

.p-news-top__tag {
  margin-left: 1.1875rem;
}
@media screen and (min-width: 751px) {
  .p-news-top__tag {
    margin-left: 0.71875rem;
  }
}

.p-news-top__item-title {
  position: relative;
  display: inline-block;
  max-width: 100%;
  padding: 1.0625rem 2.1875rem 0.3125rem 0;
  font-size: 1.875rem;
  color: #231815;
  letter-spacing: -0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 751px) {
  .p-news-top__item-title {
    font-size: 0.9375rem;
    padding: 0.625rem 2.1875rem 0.3125rem 0;
    letter-spacing: normal;
  }
}

.p-news-top__item-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #231815;
  transition: width 0.3s ease;
}

.p-news-top__item:hover .p-news-top__item-title::after {
  width: 100%;
}

.p-news-top__btn {
  margin-top: 4.25rem;
  text-align: right;
}
@media screen and (min-width: 751px) {
  .p-news-top__btn {
    margin-top: 2.0625rem;
  }
}

.p-oc-calendar {
  margin-top: 9.375rem;
}
@media screen and (min-width: 751px) {
  .p-oc-calendar {
    margin-top: 5rem;
  }
}

.p-oc-calendar__inner {
  max-width: 40rem;
  margin-inline: auto;
}
@media screen and (min-width: 751px) {
  .p-oc-calendar__inner {
    max-width: 59.375rem;
    padding: 0 1.5625rem;
  }
}

.p-oc-calendar-contents {
  margin-top: 5.6875rem;
}
@media screen and (min-width: 751px) {
  .p-oc-calendar-contents {
    margin-top: 2.3125rem;
  }
}

.p-oc-calendar__text {
  margin-top: 2.5rem;
  padding: 0.625rem;
  font-size: 1.75rem;
  line-height: 1;
  background-color: #e3f3fc;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-oc-calendar__text {
    padding: 0.3125rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    margin-top: 1.625rem;
  }
}

.p-oc-event__item {
  padding: 5rem 3.4375rem 4.75rem;
}
@media screen and (min-width: 751px) {
  .p-oc-event__item {
    padding: 3.1875rem 5.75rem 3.375rem 3.125rem;
  }
}

.p-oc-event__item:not(:first-child) {
  margin-top: 4.9375rem;
}
@media screen and (min-width: 751px) {
  .p-oc-event__item:not(:first-child) {
    margin-top: 1.1875rem;
  }
}

.p-oc-event__item.p-oc-event__item--blue {
  background-color: #e3f3fc;
}

.p-oc-event__item.p-oc-event__item--green {
  background-color: #e4efea;
}

.p-oc-event__item.p-oc-event__item--pink {
  background-color: #fcf2f7;
}

.p-oc-event__item.p-oc-event__item--yellow {
  background-color: #fdf4d6;
}

.p-oc-event__item.p-oc-event__item--purple {
  background-color: #efe8f9;
}

@media screen and (min-width: 751px) {
  .p-oc-event__item-wrapper {
    display: flex;
    align-items: flex-start;
  }
}

.p-oc-event__item-img {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 751px) {
  .p-oc-event__item-img {
    max-width: 20rem;
    flex: 1;
  }
}

.p-oc-event__item-img img {
  aspect-ratio: 640/420;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 751px) {
  .p-oc-event__item-img img {
    aspect-ratio: 320/210;
  }
}

.p-oc-event__item-contents {
  margin-top: 1.875rem;
  padding: 0 1.25rem;
}
@media screen and (min-width: 751px) {
  .p-oc-event__item-contents {
    margin-left: 2.3125rem;
    margin-top: 0;
    padding: 0;
    flex: 1;
  }
}

.p-oc-event__item-title span {
  display: block;
  font-size: 1.875rem;
  color: #000000;
}
@media screen and (min-width: 751px) {
  .p-oc-event__item-title span {
    font-size: 0.9375rem;
    line-height: 1;
  }
}

.p-oc-event__item-title h4 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
}
@media screen and (min-width: 751px) {
  .p-oc-event__item-title h4 {
    font-size: 1.25rem;
    line-height: 1.8;
  }
}

.p-oc-event__item-day {
  margin-top: 1.8125rem;
}
@media screen and (min-width: 751px) {
  .p-oc-event__item-day {
    margin-top: 0.6875rem;
  }
}

.p-oc-event__item-day,
.p-oc-event__item-time {
  padding: 1rem 0 1.6875rem;
  border-top: 1px solid #000000;
}
@media screen and (min-width: 751px) {
  .p-oc-event__item-day,
  .p-oc-event__item-time {
    padding: 0.5rem 0 0.75rem;
  }
}

.p-oc-event__item-day span,
.p-oc-event__item-time span,
.p-oc-event__item-day p,
.p-oc-event__item-time p {
  font-size: 1.875rem;
  line-height: 1.6;
  color: #000000;
}
@media screen and (min-width: 751px) {
  .p-oc-event__item-day span,
  .p-oc-event__item-time span,
  .p-oc-event__item-day p,
  .p-oc-event__item-time p {
    font-size: 0.9375rem;
  }
}

.p-oc-event__item-day p,
.p-oc-event__item-time p {
  font-weight: 700;
}

.p-oc-event__item-text {
  margin-top: 2.0625rem;
}
@media screen and (min-width: 751px) {
  .p-oc-event__item-text {
    margin-top: 0.6875rem;
  }
}

.p-oc-event__item-text span {
  padding: 0.3125rem 0.4375rem 0.625rem;
  font-size: 1.5rem;
  line-height: 1;
  background-color: #ffffff;
}
@media screen and (min-width: 751px) {
  .p-oc-event__item-text span {
    padding: 0.25rem 0.4375rem;
    font-size: 0.75rem;
    letter-spacing: -0.06em;
  }
}

.p-oc-event__item-text ul {
  margin-top: 2.1875rem;
}
@media screen and (min-width: 751px) {
  .p-oc-event__item-text ul {
    margin-top: 0.875rem;
  }
}

.p-oc-event__item-text li {
  font-size: 1.875rem;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: #000000;
}
@media screen and (min-width: 751px) {
  .p-oc-event__item-text li {
    font-size: 0.9375rem;
  }
}

.p-oc-event__item-text li:not(:first-child) {
  margin-top: 1.0625rem;
}
@media screen and (min-width: 751px) {
  .p-oc-event__item-text li:not(:first-child) {
    margin-top: 0.53125rem;
  }
}

@media screen and (min-width: 751px) {
  .p-oc-event__item-btn__wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
}

.p-oc-event__item-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3.125rem;
}
@media screen and (min-width: 751px) {
  .p-oc-event__item-btn {
    margin-top: 1.0625rem;
  }
}

.p-oc-event__item-btn a {
  display: block;
  width: 100%;
  max-width: 18.75rem;
  padding: 1rem;
  font-size: 1.75rem;
  line-height: 1;
  color: #ffffff;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-oc-event__item-btn a {
    width: 9.6875rem;
    max-width: 100%;
    padding: 0.5625rem;
    font-size: 0.875rem;
  }
}

.p-oc-event__item-btn--blue {
  background-color: #0094d6;
}

.p-oc-event__item-btn--green {
  background-color: #00896c;
}

.p-oc-event__item-btn--pink {
  background-color: #eb92bb;
}

.p-oc-event__item-btn--yellow {
  background-color: #f3c400;
}

.p-oc-event__item-btn--purple {
  background-color: #9477ac;
}

.p-oc-event__item-btn--line {
  background-color: #5ac363;
}

.p-oc-event__item-detail {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 2rem;
  font-size: 1.75rem;
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: #000000;
  border-bottom: 0.125rem solid #000000;
}
@media screen and (min-width: 751px) {
  .p-oc-event__item-detail {
    margin-inline: 0;
    margin-left: 1.5rem;
    margin-top: 0.9375rem;
    font-size: 0.875rem;
  }
}

.p-oc-event {
  margin-top: 3.5625rem;
  margin-bottom: 7.0625rem;
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .p-oc-event {
    margin-top: 4.6875rem;
  }
}

.p-oc-event.p-oc-event--sub {
  margin-top: 0;
  margin-bottom: 7.0625rem;
}
@media screen and (min-width: 751px) {
  .p-oc-event.p-oc-event--sub {
    margin-top: 1.9375rem;
  }
}

.p-oc-event__inner {
  max-width: 40rem;
}
@media screen and (min-width: 751px) {
  .p-oc-event__inner {
    max-width: 59.375rem;
  }
}

.p-oc-event__lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 2.5rem;
  margin-top: 2.25rem;
}
@media screen and (min-width: 751px) {
  .p-oc-event__lists {
    gap: 0.625rem 0.75rem;
    grid-template-columns: repeat(3, 1fr);
    max-width: 27.75rem;
    margin-top: 4.0625rem;
    margin-inline: auto;
  }
}

.p-oc-event__list {
  padding: 0.96875rem;
  font-size: 1.75rem;
  line-height: 1;
  color: #000000;
  background-color: #fdf4d6;
  border: 1px solid #000000;
  text-align: center;
  cursor: pointer;
}
@media screen and (min-width: 751px) {
  .p-oc-event__list {
    padding: 0.46875rem;
    font-size: 0.875rem;
  }
}

.p-oc-event__list.is-active {
  background-color: #f3c400;
}

.p-oc-event__contents {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  margin-top: 4.3125rem;
}
@media screen and (min-width: 751px) {
  .p-oc-event__contents {
    width: 100%;
    margin: 3.6875rem 0 0;
  }
}

.p-oc-event__contents.p-oc-event__contents--sub {
  margin-top: 0;
}

.p-oc-event__contents-btn {
  position: relative;
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #0094d6;
  margin-left: auto;
  cursor: pointer;
  margin-right: 4.6875rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 751px) {
  .p-oc-event__contents-btn {
    width: 1.25rem;
    height: 1.25rem;
    margin-bottom: 1.875rem;
    margin-right: 0;
  }
}

.p-oc-event__contents-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.p-oc-event__contents-btn::before,
.p-oc-event__contents-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.125rem;
  height: 1.0625rem;
  background-color: #ffffff;
}
@media screen and (min-width: 751px) {
  .p-oc-event__contents-btn::before,
  .p-oc-event__contents-btn::after {
    height: 0.625rem;
  }
}

.p-oc-event__contents-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.p-oc-event__contents-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.p-oc-event__contents-title {
  position: relative;
  margin: 0 4.6875rem;
  padding: 2.125rem 0;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  background-color: #fdf4d6;
  border-top: 0.125rem solid #000000;
  border-bottom: 0.125rem solid #000000;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-oc-event__contents-title {
    margin: 0;
    padding: 1rem 0;
    font-size: 1.25rem;
  }
}

.p-oc-event__contents-title::before {
  content: "";
  position: absolute;
  bottom: -2.375rem;
  left: 50%;
  margin-left: -1.0625rem;
  border: 1.125rem solid transparent;
  border-top: 1.5rem solid #fdf4d6;
  z-index: 2;
}
@media screen and (min-width: 751px) {
  .p-oc-event__contents-title::before {
    bottom: -1.25rem;
    margin-left: -0.75rem;
    border: 0.75rem solid transparent;
    border-top: 0.75rem solid #fdf4d6;
  }
}

.p-oc-event__contents-title::after {
  content: "";
  position: absolute;
  bottom: -2.625rem;
  left: 50%;
  margin-left: -1.0625rem;
  border: 1.125rem solid transparent;
  border-top: 1.5rem solid #000000;
  z-index: 1;
}
@media screen and (min-width: 751px) {
  .p-oc-event__contents-title::after {
    bottom: -1.5rem;
    margin-left: -0.75rem;
    border: 0.75rem solid transparent;
    border-top: 0.75rem solid #000000;
  }
}

.p-oc-event__items {
  margin-top: 7.375rem;
}
@media screen and (min-width: 751px) {
  .p-oc-event__items {
    margin-top: 3.125rem;
  }
}

.p-oc-event__items.p-oc-event__items-sub {
  margin-top: 4.625rem;
}
@media screen and (min-width: 751px) {
  .p-oc-event__items.p-oc-event__items-sub {
    margin-top: 3.125rem;
  }
}

.p-oc-event__online {
  margin-top: 7.875rem;
}
@media screen and (min-width: 751px) {
  .p-oc-event__online {
    margin-top: 2.8125rem;
  }
}

.p-oc-event__online-title {
  padding: 1.375rem 0;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  border-top: 0.25rem solid #f3c400;
  border-bottom: 0.25rem solid #f3c400;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-oc-event__online-title {
    padding: 0.6875rem 0;
    font-size: 1.25rem;
    border-top: 0.125rem solid #f3c400;
    border-bottom: 0.125rem solid #f3c400;
  }
}

.p-oc-event__items.p-oc-event__items--online {
  margin-top: 0;
}

.p-oc-flow__items {
  margin-top: 4.8125rem;
  padding: 0 1.25rem;
}

.p-oc-flow__item {
  padding-bottom: 1.875rem;
}

.p-oc-flow__item--green {
  border-bottom: 0.125rem solid #6ab19f;
}

.p-oc-flow__item--blue {
  border-bottom: 0.125rem solid #36bdef;
}

.p-oc-flow__item--pink {
  border-bottom: 0.125rem solid #eb92bb;
}

.p-oc-flow__item--purple {
  border-bottom: 0.125rem solid #9477ac;
}

.p-oc-flow__item--yellow {
  border-bottom: 0.125rem solid #f3c400;
}

.p-oc-flow__item:not(:first-child) {
  margin-top: 4.6875rem;
}

.p-oc-flow__item-wrapper {
  width: 100%;
  max-width: 35rem;
  margin-inline: auto;
}

@media screen and (min-width: 751px) {
  .p-oc-flow__contents-wrapper-ao {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media screen and (min-width: 751px) {
  .p-oc-flow__contents-slide--ao {
    width: 17.5rem;
  }
}

.p-oc-flow__item-top {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3.125rem;
}
@media screen and (min-width: 751px) {
  .p-oc-flow__item-top {
    position: absolute;
    top: 0;
    right: 13%;
  }
}

.p-oc-flow__item-top img {
  width: 8.375rem;
}
@media screen and (min-width: 751px) {
  .p-oc-flow__item-top img {
    width: 4.1875rem;
  }
}

.p-oc-flow__item-top p {
  margin-left: 2.6875rem;
  font-size: 1.875rem;
  line-height: 1.533;
}
@media screen and (min-width: 751px) {
  .p-oc-flow__item-top p {
    margin-left: 1.25rem;
    font-size: 0.9375rem;
  }
}

.p-oc-flow__contents {
  margin-top: 1.875rem;
}
@media screen and (min-width: 751px) {
  .p-oc-flow__contents {
    margin-top: 1.6875rem;
  }
}

.p-oc-flow__contents-swiper.swiper {
  overflow: visible;
}
@media screen and (min-width: 751px) {
  .p-oc-flow__contents-swiper.swiper {
    padding: 0 0.5625rem;
  }
}

@media screen and (min-width: 751px) {
  .p-oc-flow__contents-slide.swiper-slide {
    width: 17.5rem;
    margin-top: auto;
  }
}

.p-oc-flow__img {
  width: 100%;
}
@media screen and (min-width: 751px) {
  .p-oc-flow__img {
    margin-top: 0.9375rem;
  }
}

@media screen and (min-width: 751px) {
  .p-oc-flow__img img {
    aspect-ratio: 280/180;
  }
}

.p-oc-flow__text {
  min-height: 5.6875rem;
  margin-top: 1rem;
  font-size: 1.875rem;
  line-height: 1.533;
  letter-spacing: -0.07em;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-oc-flow__text {
    min-height: 4.3125rem;
    margin-top: 0.5rem;
    font-size: 0.9375rem;
  }
}

.p-oc-flow__lists {
  margin-top: 7.3125rem;
  padding: 0 1.25rem;
}
@media screen and (min-width: 751px) {
  .p-oc-flow__lists {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 3.125rem;
    padding: 0;
  }
}

.p-oc-flow__list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (min-width: 751px) {
  .p-oc-flow__list {
    display: block;
    width: 17.375rem;
  }
}

.p-oc-flow__list:not(:first-child) {
  margin-top: 5.625rem;
}
@media screen and (min-width: 751px) {
  .p-oc-flow__list:not(:first-child) {
    margin-top: 0;
    margin-left: 2.0625rem;
  }
}

.p-oc-flow__list-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 13.3125rem;
  height: 13.75rem;
  background-color: #fdf4d6;
  flex-shrink: 0;
}
@media screen and (min-width: 751px) {
  .p-oc-flow__list-title {
    display: block;
    width: auto;
    height: auto;
    background-color: transparent;
  }
}

.p-oc-flow__list-title h3 {
  font-size: 1.875rem;
  line-height: 2;
  color: #000000;
}
@media screen and (min-width: 751px) {
  .p-oc-flow__list-title h3 {
    margin-top: 1.875rem;
    font-size: 1.25rem;
  }
}

.p-oc-flow__list:not(:last-child) .p-oc-flow__list-title::before {
  content: "";
  position: absolute;
  bottom: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6.65625rem solid transparent;
  border-right: 6.65625rem solid transparent;
  border-top: 2.5rem solid #fdf4d6;
}
@media screen and (min-width: 751px) {
  .p-oc-flow__list:not(:last-child) .p-oc-flow__list-title::before {
    content: none;
  }
}

.p-oc-flow__list-title-number {
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4.5625rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  -webkit-text-stroke-width: 0.125rem;
  -webkit-text-stroke-color: #f3c400;
}
@media screen and (min-width: 751px) {
  .p-oc-flow__list-title-number {
    position: relative;
    top: 0;
    display: block;
    font-size: 2.5625rem;
    -webkit-text-stroke-width: 0.0625rem;
    text-align: center;
  }
}

@media screen and (min-width: 751px) {
  .p-oc-flow__list-title-number::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: -0.9375rem;
    left: 0;
    width: 93%;
    height: 1.875rem;
    background-color: #fdf4d6;
  }
}

@media screen and (min-width: 751px) {
  .p-oc-flow__list:not(:last-child) .p-oc-flow__list-title-number::after {
    content: "";
    position: absolute;
    bottom: -0.9375rem;
    right: 0;
    border-top: 0.9375rem solid transparent;
    border-bottom: 0.9375rem solid transparent;
    border-left: 1.25rem solid #fdf4d6;
  }
}

.p-oc-flow__list-text {
  margin-left: 2rem;
  font-size: 1.875rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #000000;
}
@media screen and (min-width: 751px) {
  .p-oc-flow__list-text {
    margin-left: 0;
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.p-oc-flow {
  padding-top: 4.9375rem;
  padding-bottom: 6.5rem;
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .p-oc-flow {
    padding-top: 3.5625rem;
    padding-bottom: 4.9375rem;
  }
}

.p-oc-flow--yellow {
  background-color: #fdf4d6;
}

.p-oc-flow__bottom {
  position: relative;
  margin-top: 4.875rem;
  padding: 0 1.25rem;
}
@media screen and (min-width: 751px) {
  .p-oc-flow__bottom {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    margin-top: 5.625rem;
  }
}

@media screen and (min-width: 751px) {
  .p-oc-flow__bottom--tour {
    flex-direction: unset;
  }
}

@media screen and (min-width: 751px) {
  .p-oc-flow__bottom-img {
    width: 18.75rem;
    margin-left: 2.8125rem;
  }
}

.p-oc-flow__bottom-img-ao {
  width: 29.8375rem;
  margin-left: auto;
}
@media screen and (min-width: 751px) {
  .p-oc-flow__bottom-img-ao {
    width: 14.91875rem;
    margin-left: 0;
  }
}

.p-oc-flow__bottom-title {
  position: relative;
  padding: 0.9375rem;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  color: #231815;
  background-color: #faeec5;
}
@media screen and (min-width: 751px) {
  .p-oc-flow__bottom-title {
    display: flex;
    align-items: center;
    height: 10.6875rem;
    padding: 1.4375rem;
    font-size: 1.125rem;
    line-height: 1.5;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 90%, 0 100%);
  }
}

.p-oc-flow__bottom-title::before,
.p-oc-flow__bottom-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 2.0625rem solid transparent;
  border-bottom: 2.0625rem solid transparent;
  transform: translateY(-50%);
  z-index: 1;
}
@media screen and (min-width: 751px) {
  .p-oc-flow__bottom-title::before,
  .p-oc-flow__bottom-title::after {
    content: none;
  }
}

.p-oc-flow__bottom-title::before {
  left: 0;
  border-left: 0.9375rem solid white;
}

.p-oc-flow__bottom-title::after {
  right: 0;
  border-right: 0.9375rem solid white;
}

.p-oc-flow__bottom-lists {
  margin-top: 2.5rem;
}
@media screen and (min-width: 751px) {
  .p-oc-flow__bottom-lists {
    margin-top: 0;
    margin-left: 2rem;
  }
}

.p-oc-flow__bottom-text {
  margin-top: 2.1875rem;
  font-size: 1.875rem;
  line-height: 1.533;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-oc-flow__bottom-text {
    font-size: 0.9375rem;
  }
}

.p-oc-flow__bottom-text-ao {
  position: absolute;
  top: 50%;
  left: 2.5rem;
  font-size: 1.506875rem;
  line-height: 1.609;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 751px) {
  .p-oc-flow__bottom-text-ao {
    top: 45%;
    left: 30%;
    font-size: 0.753125rem;
  }
}

.p-oc-flow__bottom-text-ao::before {
  content: "";
  position: absolute;
  top: -1.875rem;
  left: -2.5rem;
  width: 2.875rem;
  height: 3.0625rem;
  background-image: url("../images/oc/aonyushi/flow-bottom-deco.png");
  background-size: cover;
}
@media screen and (min-width: 751px) {
  .p-oc-flow__bottom-text-ao::before {
    top: -1.25rem;
    left: -1.5625rem;
    width: 1.4375rem;
    height: 1.5375rem;
  }
}

.p-oc-flow__bottom-point {
  position: absolute;
  top: 53%;
  left: 0;
  width: 12.0625rem;
  height: 8.5625rem;
}
@media screen and (min-width: 751px) {
  .p-oc-flow__bottom-point {
    top: 0;
    left: 18%;
    width: 6.025rem;
    height: 4.2875rem;
  }
}

.p-oc-flow__contents .p-oc-flow__scrollbar.swiper-scrollbar {
  position: static;
  width: 100%;
  height: 0.3125rem;
  max-width: 38.75rem;
  margin-inline: auto;
  margin-top: 1.875rem;
  background-color: #e5e5e5;
}

.p-oc-flow__scrollbar.swiper-scrollbar-drag {
  background-color: #4d4d4d;
}

.p-oc-fv {
  margin-top: 3.875rem;
}
@media screen and (min-width: 751px) {
  .p-oc-fv {
    margin-top: 0;
  }
}

.p-oc-fv__wrapper {
  position: relative;
}

.p-oc-fv__img {
  width: 100%;
}

.p-oc-fv__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-oc-fv__title {
  position: absolute;
  top: -2.6875rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
@media screen and (min-width: 751px) {
  .p-oc-fv__title {
    top: 3.625rem;
    left: 28.3%;
  }
}

.p-oc-fv__title img {
  width: 100%;
  max-width: 41.3125rem;
  margin-inline: auto;
}
@media screen and (min-width: 751px) {
  .p-oc-fv__title img {
    max-width: 30rem;
  }
}

.p-oc-top {
  margin: 3.4375rem 0;
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .p-oc-top {
    margin: 2.6875rem 0;
  }
}

@media screen and (min-width: 751px) {
  .p-oc-top__flex {
    display: flex;
    align-items: flex-start;
  }
}

.p-oc-top__img {
  position: relative;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
@media screen and (min-width: 751px) {
  .p-oc-top__img {
    width: 100%;
    margin: 0;
  }
}

.p-oc-top__img img {
  width: 100%;
}
@media screen and (min-width: 751px) {
  .p-oc-top__img img {
    width: 23.4375rem;
    max-width: none;
    aspect-ratio: 375/246;
  }
}

.p-oc-top__circle {
  left: 3.4375rem;
  bottom: 2.8125rem;
}
@media screen and (min-width: 751px) {
  .p-oc-top__circle {
    left: 1.6875rem;
    bottom: 1.5rem;
  }
}

.p-oc-top__contents {
  margin-top: 3rem;
}
@media screen and (min-width: 751px) {
  .p-oc-top__contents {
    margin-top: 0;
    margin-left: 2.8125rem;
  }
}

.p-oc-top__tag {
  padding: 0.125rem 2.375rem;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
  border-radius: 999px;
}
@media screen and (min-width: 751px) {
  .p-oc-top__tag {
    padding: 0.0625rem 1.25rem;
    font-size: 0.875rem;
  }
}

.p-oc-top__tag--green {
  background-color: #00896c;
}

.p-oc-top__tag--pink {
  background-color: #eb92bb;
}

.p-oc-top__title-text {
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 2.6;
  letter-spacing: -0.03em;
  color: #3d3a39;
}
@media screen and (min-width: 751px) {
  .p-oc-top__title-text {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.p-oc-top__title {
  font-size: 3.375rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 751px) {
  .p-oc-top__title {
    font-size: 1.6875rem;
    line-height: 1.1;
  }
}

.p-oc-top__title span {
  font-size: 2.5rem;
}
@media screen and (min-width: 751px) {
  .p-oc-top__title span {
    font-size: 1.25rem;
  }
}

.p-oc-top__title--green,
.p-oc-top__title-sub--green {
  color: #00896c;
}

.p-oc-top__title--blue,
.p-oc-top__title-sub--blue {
  color: #0094d6;
}

.p-oc-top__title--pink,
.p-oc-top__title-sub--pink {
  color: #eb92bb;
}

.p-oc-top__title--purple,
.p-oc-top__title-sub--purple {
  color: #9477ac;
}

.p-oc-top__title--yellow,
.p-oc-top__title-sub--yellow {
  color: #e8bd0a;
}

.p-oc-top__title-sub {
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (min-width: 751px) {
  .p-oc-top__title-sub {
    font-size: 0.9375rem;
    line-height: 2.2;
  }
}

.p-oc-top__text {
  margin-top: 0.9375rem;
  padding: 0 1.25rem;
  font-size: 1.875rem;
  line-height: 2;
  letter-spacing: -0.05em;
}
@media screen and (min-width: 751px) {
  .p-oc-top__text {
    margin-top: 0.5rem;
    padding: 0;
    font-size: 0.9375rem;
  }
}

.p-oc-top__list-area {
  margin-top: 4.8125rem;
  padding: 0 1.25rem;
}
@media screen and (min-width: 751px) {
  .p-oc-top__list-area {
    margin-top: 1rem;
    padding: 0;
  }
}

.p-oc-top__rec {
  padding: 0.4375rem 0.75rem;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: -0.05em;
}
@media screen and (min-width: 751px) {
  .p-oc-top__rec {
    padding: 0.25rem 0.375rem;
    font-size: 0.75rem;
  }
}

.p-oc-top__rec--green {
  background-color: #d4e5df;
}

.p-oc-top__rec--blue {
  background-color: #e3f3fc;
}

.p-oc-top__rec--pink {
  background-color: #f9dfeb;
}

.p-oc-top__rec--purple {
  background-color: #efe8f9;
}

.p-oc-top__rec--yellow {
  background-color: #fdf4d6;
}

.p-oc-top__lists {
  margin-top: 2.0625rem;
}
@media screen and (min-width: 751px) {
  .p-oc-top__lists {
    margin-top: 0.875rem;
  }
}

.p-oc-top__list {
  font-size: 1.875rem;
  line-height: 1.5;
  letter-spacing: -0.05em;
}
@media screen and (min-width: 751px) {
  .p-oc-top__list {
    font-size: 0.9375rem;
  }
}

.p-oc-top__list:not(:first-child) {
  margin-top: 1.0625rem;
}
@media screen and (min-width: 751px) {
  .p-oc-top__list:not(:first-child) {
    margin-top: 0.5625rem;
  }
}

.p-oc-top__bottom {
  margin-top: 4.5rem;
}
@media screen and (min-width: 751px) {
  .p-oc-top__bottom {
    width: 100%;
    max-width: 38.75rem;
    margin-inline: auto;
    margin-top: 3.5rem;
  }
}

.p-oc-top__event {
  padding: 2.1875rem 1.25rem;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}
@media screen and (min-width: 751px) {
  .p-oc-top__event {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.15625rem 0;
  }
}

.p-oc-top__event-day {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.03em;
  color: #231815;
}
@media screen and (min-width: 751px) {
  .p-oc-top__event-day {
    font-size: 1.25rem;
  }
}

.p-oc-top__event-time {
  display: block;
  font-size: 1.875rem;
  line-height: 1.667;
  letter-spacing: 0.03em;
  color: #231815;
}
@media screen and (min-width: 751px) {
  .p-oc-top__event-time {
    font-size: 0.9375rem;
    margin-left: 1.25rem;
  }
}

.p-oc-top__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 2.375rem;
}
@media screen and (min-width: 751px) {
  .p-oc-top__btn {
    flex-direction: unset;
    justify-content: space-between;
    margin-top: 1.375rem;
  }
}

.p-oc-top__btn a:not(:first-child) {
  margin-top: 1.4375rem;
}
@media screen and (min-width: 751px) {
  .p-oc-top__btn a:not(:first-child) {
    margin-top: 0;
  }
}

.p-occupation {
  margin-top: 4.375rem;
  background-color: #f9f0dc;
  padding: 4.5rem 0 7.6875rem;
}
@media screen and (min-width: 751px) {
  .p-occupation {
    margin-top: 7.25rem;
    padding: 4.625rem 0 7.4375rem;
  }
}

.p-occupation__items {
  margin-top: 4.8125rem;
}
@media screen and (min-width: 751px) {
  .p-occupation__items {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2.0625rem;
    margin-right: 0.5rem;
  }
}

.p-occupation__item:not(:first-child) {
  margin-top: 5.375rem;
}
@media screen and (min-width: 751px) {
  .p-occupation__item:not(:first-child) {
    margin-top: 0;
  }
}

.p-occupation__item-img {
  width: 100%;
}

.p-occupation__item-img img {
  width: 100%;
  aspect-ratio: 600/352;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 751px) {
  .p-occupation__item-img img {
    aspect-ratio: 425/249.3;
  }
}

.p-occupation__item-title {
  position: relative;
  margin-top: 1.1875rem;
  padding: 1.375rem 2.5rem;
  background-color: #3fa8f4;
}
@media screen and (min-width: 751px) {
  .p-occupation__item-title {
    margin-top: 0;
    padding: 1rem 1.6875rem;
  }
}

.p-occupation__item-title::before {
  content: "";
  position: absolute;
  bottom: -1.875rem;
  left: 50%;
  display: inline-block;
  transform: translateX(-50%);
  border: 0.625rem solid transparent;
  border-top: 1.4375rem solid #3fa8f4;
}
@media screen and (min-width: 751px) {
  .p-occupation__item-title::before {
    bottom: -1.4375rem;
    border: 0.375rem solid transparent;
    border-top: 1.125rem solid #3fa8f4;
  }
}

.p-occupation__item-title h3 {
  font-size: 2.5rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 700;
  line-height: 1.148;
  color: #ffffff;
}
@media screen and (min-width: 751px) {
  .p-occupation__item-title h3 {
    font-size: 1.5rem;
  }
}

.p-occupation__item-title p {
  margin-top: 0.9375rem;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.535;
  color: #ffffff;
}
@media screen and (min-width: 751px) {
  .p-occupation__item-title p {
    margin-top: 0.4375rem;
    font-size: 1.0625rem;
  }
}

.p-occupation__item-title img {
  position: absolute;
  top: -1.1875rem;
  right: -1.3125rem;
  width: 13.9375rem;
  height: 13.0625rem;
}
@media screen and (min-width: 751px) {
  .p-occupation__item-title img {
    top: -1.5rem;
    right: -0.625rem;
    width: 9.5625rem;
    height: 8.9375rem;
  }
}

.p-occupation__item-body {
  padding: 1.75rem 2.5rem 3.75rem;
  background-color: #ffffff;
}
@media screen and (min-width: 751px) {
  .p-occupation__item-body {
    display: flex;
    flex-direction: column;
    padding: 1.875rem 2.625rem 2rem 1.75rem;
  }
}

@media screen and (min-width: 751px) {
  .p-occupation__item-lists {
    min-height: 12.6875rem;
  }
}

.p-occupation__item-list {
  position: relative;
  padding-left: 1.875rem;
  line-height: 1.835;
}
@media screen and (min-width: 751px) {
  .p-occupation__item-list {
    padding-left: 0.9375rem;
    line-height: 2;
  }
}

.p-occupation__item-list::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.25rem;
  transform: translateY(-50%) rotate(45deg);
  width: 0.8625rem;
  height: 0.8625rem;
  background-color: #231815;
}
@media screen and (min-width: 751px) {
  .p-occupation__item-list::before {
    left: 0.125rem;
    width: 0.516875rem;
    height: 0.516875rem;
  }
}

.p-occupation__accordion {
  margin-top: 2.125rem;
}
@media screen and (min-width: 751px) {
  .p-occupation__accordion {
    margin-top: 0.375rem;
  }
}

.p-occupation__accordion-head {
  position: relative;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.833;
  color: #0093d5;
  border-bottom: 0.1875rem solid #0093d5;
}
@media screen and (min-width: 751px) {
  .p-occupation__accordion-head {
    font-size: 1.0625rem;
    line-height: 2.4;
    border-bottom: 0.125rem solid #0093d5;
  }
}

.p-occupation__accordion-head span {
  font-size: 1.5625rem;
}
@media screen and (min-width: 751px) {
  .p-occupation__accordion-head span {
    font-size: 0.75rem;
  }
}

.p-occupation__accordion-head::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%) rotate(45deg);
  width: 0.79375rem;
  height: 0.79375rem;
  border-right: 0.1875rem solid #0093d5;
  border-bottom: 0.1875rem solid #0093d5;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 751px) {
  .p-occupation__accordion-head::before {
    right: 0.75rem;
    width: 0.54375rem;
    height: 0.54375rem;
    border-right: 0.1875rem solid #0093d5;
    border-bottom: 0.1875rem solid #0093d5;
  }
}

.p-occupation__accordion.is-open .p-occupation__accordion-head::before {
  transform: translateY(-50%) rotate(225deg);
}

.p-occupation__accordion-lists {
  margin-top: 0.8125rem;
  display: none;
}

.p-occupation__accordion-lists.is-open {
  display: block;
}

.p-occupation__accordion-list {
  line-height: 1.667;
}

.p-opencampus {
  margin-top: 14.375rem;
}
@media screen and (min-width: 751px) {
  .p-opencampus {
    margin-top: 7.375rem;
  }
}

@media screen and (min-width: 751px) {
  .p-opencampus__inner {
    max-width: 59.375rem;
    margin-inline: auto;
    padding: 0 1.5625rem;
  }
}

.p-opencampus__lead {
  margin-top: 3.125rem;
}
@media screen and (min-width: 751px) {
  .p-opencampus__lead {
    margin-top: 1.5rem;
  }
}

.p-opencampus__title-calendar {
  position: relative;
  margin-top: 5.3125rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-opencampus__title-calendar {
    margin-top: 2.75rem;
    font-size: 1.25rem;
  }
}

.p-opencampus__title-calendar::before,
.p-opencampus__title-calendar::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8.75rem;
  height: 1px;
  background-color: #fff;
  background-color: #1a1a1a;
}
@media screen and (min-width: 751px) {
  .p-opencampus__title-calendar::before,
  .p-opencampus__title-calendar::after {
    width: 5rem;
  }
}

.p-opencampus__title-calendar::before {
  left: 0.125rem;
}
@media screen and (min-width: 751px) {
  .p-opencampus__title-calendar::before {
    left: 16.875rem;
  }
}

.p-opencampus__title-calendar::after {
  right: 0.125rem;
}
@media screen and (min-width: 751px) {
  .p-opencampus__title-calendar::after {
    right: 16.875rem;
  }
}

.p-opencampus__contents {
  margin-top: 5.875rem;
}
@media screen and (min-width: 751px) {
  .p-opencampus__contents {
    margin-top: 2.4375rem;
  }
}

.p-opencampus__contents-wrapper {
  width: 100%;
  max-width: 40rem;
  margin-inline: auto;
  padding: 0 1.25rem;
  border-bottom: 1px solid #000000;
}
@media screen and (min-width: 751px) {
  .p-opencampus__contents-wrapper {
    display: flex;
    align-items: flex-end;
    max-width: 100%;
    padding: 0;
    border-bottom: 0;
  }
}

.p-opencampus__contents-title {
  font-size: 1.875rem;
  font-weight: 500;
  color: #000000;
}
@media screen and (min-width: 751px) {
  .p-opencampus__contents-title {
    font-size: 1rem;
  }
}

.p-opencampus__contents-title span {
  font-size: 3.125rem;
  font-weight: 700;
}
@media screen and (min-width: 751px) {
  .p-opencampus__contents-title span {
    font-size: 2rem;
  }
}

.p-opencampus__contents-img {
  width: 100%;
  margin-top: 2.125rem;
}
@media screen and (min-width: 751px) {
  .p-opencampus__contents-img {
    width: 20.625rem;
    margin-top: 1.1875rem;
  }
}

.p-opencampus__contents-img {
  aspect-ratio: 600/300;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 751px) {
  .p-opencampus__contents-img {
    aspect-ratio: 330/165;
  }
}

.p-opencampus__contents-body {
  margin-top: 1.0625rem;
  padding-bottom: 2.625rem;
}
@media screen and (min-width: 751px) {
  .p-opencampus__contents-body {
    flex: 1;
    margin-top: 0;
    margin-left: 3.125rem;
    padding-bottom: 2.8125rem;
    border-bottom: 1px solid #000000;
  }
}

.p-opencampus__contents-body p {
  font-size: 1.875rem;
}
@media screen and (min-width: 751px) {
  .p-opencampus__contents-body p {
    font-size: 0.9375rem;
  }
}

.p-opencampus__contents-body h4 {
  font-size: 2.5rem;
  font-weight: 700;
}
@media screen and (min-width: 751px) {
  .p-opencampus__contents-body h4 {
    font-size: 1.25rem;
  }
}

.p-opencampus__contents-btn-area {
  margin-top: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-opencampus__contents-btn-area {
    display: flex;
    align-items: center;
    margin-top: 1.0625rem;
  }
}

.p-opencampus__contents-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-opencampus__contents-btn a {
  display: inline-block;
  padding: 0.625rem;
  width: 100%;
  max-width: 18.75rem;
  font-size: 1.75rem;
  letter-spacing: -0.05em;
  color: #ffffff;
  text-align: center;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 751px) {
  .p-opencampus__contents-btn a {
    padding: 0.375rem 0.3125rem;
    width: 9.84375rem;
    font-size: 0.875rem;
  }
}

.p-opencampus__contents-btn a:hover {
  opacity: 0.5;
}

.p-opencampus__contents-btn--blue {
  background-color: #0094d6;
}

.p-opencampus__contents-btn--green {
  background-color: #5ac363;
}

.p-opencampus__contents-link {
  display: inline-block;
  margin-top: 2rem;
  font-size: 1.75rem;
  line-height: 1.1;
  color: #000000;
  border-bottom: 1px solid #000000;
}
@media screen and (min-width: 751px) {
  .p-opencampus__contents-link {
    margin-top: 0;
    font-size: 0.875rem;
    margin-left: 1.6875rem;
  }
}

.p-overseas {
  margin-top: 6.5625rem;
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .p-overseas {
    margin-top: 8.375rem;
    margin-bottom: 5.3125rem;
  }
}

.p-overseas__inner {
  position: relative;
}

.p-overseas__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3.9375rem;
}
@media screen and (min-width: 751px) {
  .p-overseas__circle {
    position: absolute;
    z-index: 2;
    top: -3.625rem;
    right: 1.5rem;
  }
}

.p-overseas__circle span:not(:first-child) {
  margin-left: 2.6875rem;
}
@media screen and (min-width: 751px) {
  .p-overseas__circle span:not(:first-child) {
    margin-left: 1.375rem;
  }
}

.p-overseas__main {
  margin-top: 12.25rem;
}
@media screen and (min-width: 751px) {
  .p-overseas__main {
    margin-top: 6.9375rem;
  }
}

.p-overseas__contents {
  position: relative;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 9.125rem 1.25rem 7.5625rem;
  background-color: #e3f3fc;
}
@media screen and (min-width: 751px) {
  .p-overseas__contents {
    width: 100%;
    margin: 0;
    padding: 4.375rem 3.125rem 5.625rem;
  }
}

.p-overseas__contents:not(:first-child) {
  margin-top: 7.5rem;
}
@media screen and (min-width: 751px) {
  .p-overseas__contents:not(:first-child) {
    margin-top: 4.875rem;
  }
}

.p-overseas__contents-group {
  width: 100%;
  max-width: 37.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 751px) {
  .p-overseas__contents-group {
    max-width: 100%;
  }
}

.p-overseas__title {
  position: absolute;
  top: -5.125rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 1.5rem 0;
  width: 37.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
  background-color: #3fa8f4;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-overseas__title {
    top: -2.375rem;
    padding: 0.75rem 0;
    width: 40rem;
    font-size: 1.25rem;
  }
}

.p-overseas__title::before {
  content: "";
  position: absolute;
  bottom: -1.875rem;
  left: 50%;
  display: inline-block;
  transform: translateX(-50%);
  border: 0.625rem solid transparent;
  border-top: 1.4375rem solid #3fa8f4;
}
@media screen and (min-width: 751px) {
  .p-overseas__title::before {
    bottom: -0.9375rem;
    border: 0.3125rem solid transparent;
    border-top: 0.71875rem solid #3fa8f4;
  }
}

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

.p-overseas__contents-body {
  margin-top: 3.3125rem;
}
@media screen and (min-width: 751px) {
  .p-overseas__contents-body {
    margin-top: 1.8125rem;
  }
}

.p-overseas__contents-body--second {
  margin-top: 6.5rem;
}
@media screen and (min-width: 751px) {
  .p-overseas__contents-body--second {
    margin-top: 1.8125rem;
    padding-top: 1.6875rem;
    border-top: 1px solid #3fa8f4;
  }
}

.p-overseas__year {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.933;
  letter-spacing: 0.1em;
  color: #0093d5;
}
@media screen and (min-width: 751px) {
  .p-overseas__year {
    font-size: 0.9375rem;
  }
}

.p-overseas__items {
  margin-top: 1.625rem;
}
@media screen and (min-width: 751px) {
  .p-overseas__items {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 0.5rem;
  }
}

.p-overseas__item {
  padding-bottom: 4.375rem;
  border-bottom: 0.125rem solid #0093d5;
}
@media screen and (min-width: 751px) {
  .p-overseas__item {
    padding-bottom: 0;
    border-bottom: 0;
  }
}

.p-overseas__item:not(:first-child) {
  margin-top: 5rem;
}
@media screen and (min-width: 751px) {
  .p-overseas__item:not(:first-child) {
    margin-top: 0;
  }
}

.p-overseas__item-title {
  display: flex;
  align-items: center;
}

.p-overseas__item-title.p-overseas__item-title--canada {
  align-items: flex-start;
}

.p-overseas__item-flag {
  width: 6.8625rem;
  height: auto;
}
@media screen and (min-width: 751px) {
  .p-overseas__item-flag {
    width: 2.75rem;
    height: 1.65rem;
  }
}

@media screen and (min-width: 751px) {
  .p-overseas__item-flag.p-overseas__item-flag--usa {
    width: 3.375rem;
    height: 2.29375rem;
  }
}

.p-overseas__item-flag:not(:first-child) {
  margin-left: 0.75rem;
}
@media screen and (min-width: 751px) {
  .p-overseas__item-flag:not(:first-child) {
    margin-left: 0.1875rem;
  }
}

.p-overseas__item-img {
  width: 100%;
  margin-top: 1rem;
}
@media screen and (min-width: 751px) {
  .p-overseas__item-img {
    margin-top: 0.625rem;
  }
}

.p-overseas__item-img img {
  width: 100%;
  aspect-ratio: 600/437;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 751px) {
  .p-overseas__item-img img {
    aspect-ratio: 240/175;
  }
}

.p-overseas__item-title-text {
  margin-left: 1.375rem;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: #231815;
}
@media screen and (min-width: 751px) {
  .p-overseas__item-title-text {
    margin-left: 0.6875rem;
    font-size: 1.25rem;
  }
}

.p-overseas__item-title--canada p {
  line-height: 0.9;
}

.p-overseas__item-title-text span {
  font-size: 1.875rem;
}
@media screen and (min-width: 751px) {
  .p-overseas__item-title-text span {
    font-size: 0.9375rem;
  }
}

.p-overseas__item-lists {
  margin-top: 1.875rem;
}
@media screen and (min-width: 751px) {
  .p-overseas__item-lists {
    margin-top: 0.9375rem;
  }
}

.p-overseas__item-list {
  font-size: 1.875rem;
  line-height: 1.68;
}
@media screen and (min-width: 751px) {
  .p-overseas__item-list {
    font-size: 0.9375rem;
  }
}

.p-overseas.p-overseas-usa {
  margin-top: 6.75rem;
}
@media screen and (min-width: 751px) {
  .p-overseas.p-overseas-usa {
    margin-top: 4.6875rem;
  }
}

.p-overseas-usa__img {
  width: 100%;
  margin-top: 4.25rem;
}
@media screen and (min-width: 751px) {
  .p-overseas-usa__img {
    max-width: 25rem;
    margin-inline: auto;
    margin-top: 2rem;
  }
}

.p-overseas__contents-usa {
  margin-top: 7.1875rem;
}
@media screen and (min-width: 751px) {
  .p-overseas__contents-usa {
    margin-top: 2.1875rem;
  }
}

.p-overseas__usa-item:not(:first-child) {
  margin-top: 5.9375rem;
}
@media screen and (min-width: 751px) {
  .p-overseas__usa-item:not(:first-child) {
    margin-top: 2.3125rem;
  }
}

.p-overseas__item-title-sub {
  margin-top: 0.75rem;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.2;
  color: #231815;
}
@media screen and (min-width: 751px) {
  .p-overseas__item-title-sub {
    margin-top: 0.375rem;
    font-size: 0.9375rem;
  }
}

.p-overseas__usa-swiper.swiper {
  margin-top: 2.5rem;
}
@media screen and (min-width: 751px) {
  .p-overseas__usa-swiper.swiper {
    margin-top: 1.125rem;
  }
}

.p-overseas__usa-swiper .p-campus-schedule__swiper-scrollbar.swiper-scrollbar {
  position: static;
  width: 100%;
  height: 0.3125rem;
  background: #e5e5e5;
  margin-top: 2.25rem;
  border-radius: 0.25rem;
}

.p-overseas__contents-canada {
  margin-top: 4.375rem;
}
@media screen and (min-width: 751px) {
  .p-overseas__contents-canada {
    width: 100%;
    max-width: 18.75rem;
    margin-inline: auto;
    margin-top: 2.125rem;
  }
}

.p-overseas__contents-canada__img {
  width: 100%;
  margin-top: 1.25rem;
}

.p-payment {
  margin-top: 6rem;
}

.p-payment__text {
  margin-top: 1rem;
}

.p-payment__contents {
  margin-top: 3.0625rem;
}
@media screen and (min-width: 751px) {
  .p-payment__contents {
    margin-top: 1.75rem;
  }
}

.p-pickup {
  margin-top: 9.1875rem;
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .p-pickup {
    margin-top: 4.625rem;
  }
}

.p-practice {
  margin-top: 1.75rem;
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .p-practice {
    margin-top: 4.5625rem;
  }
}

.p-practice.p-practice--recruiting {
  margin-top: 6.8125rem;
}
@media screen and (min-width: 751px) {
  .p-practice.p-practice--recruiting {
    margin-top: 4.5rem;
  }
}

.p-practice__contents {
  margin-top: 4.375rem;
}
@media screen and (min-width: 751px) {
  .p-practice__contents {
    margin-top: 2.8125rem;
  }
}

.p-practice__contents:last-of-type {
  margin-top: 5rem;
}
@media screen and (min-width: 751px) {
  .p-practice__contents:last-of-type {
    margin-top: 3.5rem;
  }
}

.p-practice__contents.p-practice__contents--recruiting {
  margin-top: 4.1875rem;
}
@media screen and (min-width: 751px) {
  .p-practice__contents.p-practice__contents--recruiting {
    margin-top: 1.9375rem;
  }
}

.p-practice__lists:not(:first-child) {
  margin-top: 1.875rem;
}
@media screen and (min-width: 751px) {
  .p-practice__lists:not(:first-child) {
    margin-top: 0;
  }
}

.p-practice__list-title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.9;
}
@media screen and (min-width: 751px) {
  .p-practice__list-title {
    font-size: 0.9375rem;
    line-height: 1.833;
  }
}

.p-practice__contents-btn {
  position: relative;
  display: block;
  margin-top: 2.9375rem;
  padding-bottom: 1.375rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  color: #000000;
  text-align: center;
  border-bottom: 1px solid #000000;
  cursor: pointer;
}

.p-practice__contents-btn::before {
  content: "";
  position: absolute;
  top: 1.125rem;
  right: 20%;
  width: 0.8125rem;
  height: 0.8125rem;
  border-top: 0.1875rem solid #000000;
  border-left: 0.1875rem solid #000000;
  transform: rotate(225deg);
  transition: transform 0.3s ease;
}

.p-practice__contents-btn.p-practice__contents--recruiting::before {
  top: 0.625rem;
  right: 30%;
}

.js-practice-btn.is-open::before {
  transform: rotate(45deg);
}

.p-procedure {
  margin-top: 6.75rem;
}
@media screen and (min-width: 751px) {
  .p-procedure {
    margin-top: 5.625rem;
  }
}

.p-procedure__items {
  margin-top: 4.125rem;
}
@media screen and (min-width: 751px) {
  .p-procedure__items {
    margin-top: 3.25rem;
  }
}

.p-procedure__item:not(:first-child) {
  margin-top: 4.0625rem;
}
@media screen and (min-width: 751px) {
  .p-procedure__item:not(:first-child) {
    margin-top: 2rem;
  }
}

.p-procedure__item-top {
  margin-top: 1.75rem;
}
@media screen and (min-width: 751px) {
  .p-procedure__item-top {
    margin-top: 0.9375rem;
  }
}

.p-procedure__item-lists {
  margin-top: 3.4375rem;
}
@media screen and (min-width: 751px) {
  .p-procedure__item-lists {
    margin-top: 1.75rem;
  }
}

.p-procedure__item-bottom {
  margin-top: 3.4375rem;
}
@media screen and (min-width: 751px) {
  .p-procedure__item-bottom {
    margin-top: 1.75rem;
  }
}

.p-procedure__contents {
  margin-top: 2.8125rem;
  padding: 4.1875rem 2.5625rem 6.9375rem;
  background-color: #e3f3fc;
}
@media screen and (min-width: 751px) {
  .p-procedure__contents {
    margin-top: 1.375rem;
    padding: 2.6875rem 3.1875rem 4.0625rem;
  }
}

.p-procedure__contents-bullet {
  display: block;
}

.p-procedure__contents-bullet:not(:first-child) {
  margin-top: 3.4375rem;
}
@media screen and (min-width: 751px) {
  .p-procedure__contents-bullet:not(:first-child) {
    margin-top: 1.8125rem;
  }
}

.p-procedure__btn {
  margin-top: 5rem;
}
@media screen and (min-width: 751px) {
  .p-procedure__btn {
    max-width: 18.75rem;
    margin-inline: auto;
    margin-top: 3.75rem;
  }
}

.p-procedure__btn a:not(:first-child) {
  margin-top: 2.5rem;
}
@media screen and (min-width: 751px) {
  .p-procedure__btn a:not(:first-child) {
    margin-top: 1.375rem;
  }
}

.p-process {
  margin-top: 6.6875rem;
}
@media screen and (min-width: 751px) {
  .p-process {
    margin-top: 5rem;
  }
}

.p-process__lists {
  margin-top: 4.375rem;
  padding: 4.0625rem 2.375rem;
  background-color: #e3f3fc;
}
@media screen and (min-width: 751px) {
  .p-process__lists {
    margin-top: 2.0625rem;
    padding: 2.6875rem 3.125rem 4.6875rem;
  }
}

.p-process__list:not(:first-child) {
  margin-top: 0.625rem;
}
@media screen and (min-width: 751px) {
  .p-process__list:not(:first-child) {
    margin-top: 0.4375rem;
  }
}

.p-process__list-title {
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.618;
  color: #000000;
}
@media screen and (min-width: 751px) {
  .p-process__list-title {
    font-size: 1.0625rem;
  }
}

.p-process__btn {
  margin-top: 2.25rem;
}
@media screen and (min-width: 751px) {
  .p-process__btn {
    margin-top: 2.5rem;
    max-width: 18.75rem;
    margin-inline: auto;
  }
}

.p-process__btn a:not(:first-child) {
  margin-top: 1.25rem;
}
@media screen and (min-width: 751px) {
  .p-process__btn a:not(:first-child) {
    margin-top: 0.625rem;
  }
}

.p-recruiting-lead {
  margin-top: 4.375rem;
  margin-bottom: 3.75rem;
}
@media screen and (min-width: 751px) {
  .p-recruiting-lead {
    margin-top: 4.625rem;
    margin-bottom: 4.3125rem;
    text-align: center;
  }
}

.p-recruiting-lead__text {
  margin-top: 1.4375rem;
}
@media screen and (min-width: 751px) {
  .p-recruiting-lead__text {
    margin-top: 0.9375rem;
  }
}

.p-recruiting-lead__img {
  width: 100%;
  max-width: 29.1875rem;
  margin-inline: auto;
  margin-top: 4.6875rem;
}
@media screen and (min-width: 751px) {
  .p-recruiting-lead__img {
    max-width: 14.625rem;
    margin-top: 2.1875rem;
  }
}

.p-recruiting {
  margin-top: 9.8125rem;
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .p-recruiting {
    margin-top: 5.625rem;
  }
}

.p-recruiting__title {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 2.8125rem 4.6875rem;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.375;
  letter-spacing: 0.05em;
  color: #000000;
  background-color: #e3f3fc;
  border-top: 0.375rem solid #3fa9f5;
}
@media screen and (min-width: 751px) {
  .p-recruiting__title {
    width: 100%;
    margin: 0;
    padding: 1.4375rem 1.6875rem;
    font-size: 1.25rem;
    border-top: 0.1875rem solid #3fa9f5;
  }
}

.p-recruiting__title span {
  font-size: 1.875rem;
}
@media screen and (min-width: 751px) {
  .p-recruiting__title span {
    font-size: 0.9375rem;
  }
}

.p-recruiting__contents {
  margin-top: 1.625rem;
}
@media screen and (min-width: 751px) {
  .p-recruiting__contents {
    display: grid;
    gap: 2.375rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 0.8125rem;
    padding: 0 1.6875rem;
  }
}

.p-recruiting__list {
  font-size: 1.875rem;
  line-height: 1.833;
}
@media screen and (min-width: 751px) {
  .p-recruiting__list {
    font-size: 0.9375rem;
  }
}

.p-recruiting__btn {
  margin-top: 1.875rem;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-recruiting__btn {
    margin-top: 2.5rem;
  }
}

.p-representative {
  position: relative;
  margin: 4.25rem -1.25rem 0;
}
@media screen and (min-width: 751px) {
  .p-representative {
    margin: 3.0625rem 0 0;
  }
}

.p-representative::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 81.7%;
  background-color: #fcf3d5;
}
@media screen and (min-width: 751px) {
  .p-representative::before {
    top: 0;
    height: 81%;
  }
}

.p-representative__contents {
  position: relative;
  padding: 0 1.25rem;
}
@media screen and (min-width: 751px) {
  .p-representative__contents {
    display: flex;
    align-items: flex-start;
    padding: 2.9375rem 6.25rem 2.3125rem;
  }
}

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

.p-representative__contents-left {
  margin-top: 3.1875rem;
}
@media screen and (min-width: 751px) {
  .p-representative__contents-left {
    margin-top: 0;
  }
}

.p-hotel-pickup__tag {
  display: inline-block;
  padding: 0.5rem 1.4375rem;
  font-size: 1.5rem;
  line-height: 1;
  color: #ffffff;
  background-color: #9377ab;
}
@media screen and (min-width: 751px) {
  .p-hotel-pickup__tag {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
  }
}

.p-hotel-pickup__name {
  margin-top: 1.625rem;
  margin-left: 1.25rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: #000000;
}
@media screen and (min-width: 751px) {
  .p-hotel-pickup__name {
    margin-top: 0.8125rem;
    margin-left: 0;
    font-size: 1.25rem;
  }
}

.p-hotel-pickup__name span,
.p-hotel-pickup__ceo {
  display: block;
  font-size: 1.5rem;
  font-weight: 300;
  color: #000000;
}
@media screen and (min-width: 751px) {
  .p-hotel-pickup__name span,
  .p-hotel-pickup__ceo {
    display: inline;
    font-size: 0.75rem;
    margin-left: 1.4375rem;
  }
}

.p-hotel-pickup__ceo {
  margin-top: 0.75rem;
  margin-left: 1.25rem;
}
@media screen and (min-width: 751px) {
  .p-hotel-pickup__ceo {
    display: block;
    margin-top: 0.3125rem;
    margin-left: 0;
  }
}

.p-hotel-pickup__img {
  width: 18.75rem;
}
@media screen and (min-width: 751px) {
  .p-hotel-pickup__img {
    width: 15rem;
  }
}

.p-hotel-pickup__img img {
  width: 100%;
  aspect-ratio: 300/375;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 751px) {
  .p-hotel-pickup__img img {
    aspect-ratio: 240/300;
  }
}

@media screen and (min-width: 751px) {
  .p-representative__contents-body {
    margin-left: 2.5rem;
  }
}

.p-representative__contents-text {
  padding: 3.125rem 1.25rem 4.0625rem;
}
@media screen and (min-width: 751px) {
  .p-representative__contents-text {
    margin-top: 1.25rem;
    padding: 0;
  }
}

.p-representative__contents-text h4 {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.5;
  color: #000000;
}
@media screen and (min-width: 751px) {
  .p-representative__contents-text h4 {
    font-size: 1.25rem;
  }
}

.p-representative__contents-text p {
  margin-top: 1.125rem;
  font-size: 1.875rem;
  line-height: 1.713;
}
@media screen and (min-width: 751px) {
  .p-representative__contents-text p {
    margin-top: 0.625rem;
    font-size: 0.9375rem;
  }
}

.p-representative__detail {
  position: relative;
  padding: 2.8125rem 2.3125rem 6.75rem;
  border: 0.1875rem solid #f2c300;
  background-color: #ffffff;
}
@media screen and (min-width: 751px) {
  .p-representative__detail {
    width: 100%;
    max-width: 43.75rem;
    margin-inline: auto;
    padding: 1.25rem 1.875rem 1.375rem;
    border: 0.0625rem solid #f2c300;
  }
}

.p-representative__detail::before {
  content: "";
  position: absolute;
  top: -2.0625rem;
  left: 50%;
  transform: translateX(-50%);
  border: 0.75rem solid transparent;
  border-bottom: 1.5rem solid #fff;
  z-index: 2;
}
@media screen and (min-width: 751px) {
  .p-representative__detail::before {
    top: -0.875rem;
    border: 0.3125rem solid transparent;
    border-bottom: 0.625rem solid #fff;
  }
}

.p-representative__detail::after {
  content: "";
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  border: 0.875rem solid transparent;
  border-bottom: 1.5rem solid #f2c300;
  z-index: 1;
}
@media screen and (min-width: 751px) {
  .p-representative__detail::after {
    top: -1.0625rem;
    border: 0.375rem solid transparent;
    border-bottom: 0.625rem solid #f2c300;
  }
}

.p-representative__detail-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.908;
  color: #4e2b7e;
}
@media screen and (min-width: 751px) {
  .p-representative__detail-title {
    font-size: 1.0625rem;
  }
}

.p-representative__detail-text {
  line-height: 1.833;
}
@media screen and (min-width: 751px) {
  .p-representative__detail-text {
    line-height: 1.94;
  }
}

.p-scholarship {
  margin-top: 6.875rem;
  margin-bottom: 4.9375rem;
}
@media screen and (min-width: 751px) {
  .p-scholarship {
    margin-top: 4.8125rem;
  }
}

.p-scholarship__lead {
  margin-top: 0.8125rem;
}
@media screen and (min-width: 751px) {
  .p-scholarship__lead {
    margin-top: 1.5rem;
  }
}

.p-scholarship__items {
  margin-top: 4.6875rem;
}
@media screen and (min-width: 751px) {
  .p-scholarship__items {
    margin-top: 2rem;
  }
}

.p-scholarship__item:not(:first-child) {
  margin-top: 4.9375rem;
}
@media screen and (min-width: 751px) {
  .p-scholarship__item:not(:first-child) {
    margin-top: 4.625rem;
  }
}

.p-scholarship__item-title {
  position: relative;
}

.p-scholarship__item-title h3 {
  margin-left: 5.1875rem;
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.706;
  letter-spacing: 0.05em;
  color: #003570;
}
@media screen and (min-width: 751px) {
  .p-scholarship__item-title h3 {
    margin-left: 2.5625rem;
    font-size: 1.0625rem;
  }
}

.p-scholarship__item-title span {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  font-size: 2.125rem;
  line-height: 1.2;
  color: #ffffff;
  background-color: #003570;
  text-align: center;
  border-radius: 50%;
}
@media screen and (min-width: 751px) {
  .p-scholarship__item-title span {
    width: 1.875rem;
    height: 1.875rem;
    font-size: 1.0625rem;
  }
}

.p-scholarship__item-contents {
  margin-top: 2.375rem;
}
@media screen and (min-width: 751px) {
  .p-scholarship__item-contents {
    margin-top: 1.3125rem;
  }
}

.p-scholarship__item-text {
  margin-top: 1.625rem;
}
@media screen and (min-width: 751px) {
  .p-scholarship__item-text {
    margin-top: 0.75rem;
  }
}

.p-scholarship__item-text + .p-scholarship__item-text {
  margin-top: 3.8125rem;
}
@media screen and (min-width: 751px) {
  .p-scholarship__item-text + .p-scholarship__item-text {
    margin-top: 1.875rem;
  }
}

.p-scholarship__item-text span {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.833;
  color: #003570;
}
@media screen and (min-width: 751px) {
  .p-scholarship__item-text span {
    font-size: 0.9375rem;
  }
}

.p-scholarship__item-text p {
  letter-spacing: 0.02em;
}
@media screen and (min-width: 751px) {
  .p-scholarship__item-text p {
    line-height: 1.833;
  }
}

.p-scholarship__btn {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}
@media screen and (min-width: 751px) {
  .p-scholarship__btn {
    margin-top: 2.5rem;
  }
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.p-scroll-infinity {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  margin-top: 3.75rem;
}
@media screen and (min-width: 751px) {
  .p-scroll-infinity {
    margin-top: 5rem;
  }
}

.p-scroll-infinity.p-scroll-infinity--student {
  margin-top: 2.6875rem;
}
@media screen and (min-width: 751px) {
  .p-scroll-infinity.p-scroll-infinity--student {
    width: 100%;
    margin: 1.25rem 0 0;
  }
}

.p-scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
  gap: 0.625rem;
}
@media screen and (min-width: 751px) {
  .p-scroll-infinity__wrap {
    gap: 1.875rem;
  }
}

.p-scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 0.625rem;
}
@media screen and (min-width: 751px) {
  .p-scroll-infinity__list {
    gap: 1.875rem;
  }
}

.p-scroll-infinity__list.p-scroll-infinity__list--student {
  gap: 1.25rem;
}
@media screen and (min-width: 751px) {
  .p-scroll-infinity__list.p-scroll-infinity__list--student {
    gap: 0.6875rem;
  }
}

.p-scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.p-scroll-infinity__item {
  width: 28.05rem;
}
@media screen and (min-width: 751px) {
  .p-scroll-infinity__item {
    width: 17.5rem;
  }
}

.p-scroll-infinity__item--student {
  width: 26.25rem;
}
@media screen and (min-width: 751px) {
  .p-scroll-infinity__item--student {
    width: 13.5625rem;
  }
}

.p-scroll-infinity__item > img {
  width: 100%;
  aspect-ratio: 448.8/300;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem 0 0.625rem 0;
}
@media screen and (min-width: 751px) {
  .p-scroll-infinity__item > img {
    aspect-ratio: 280/187;
  }
}

.p-scroll-infinity__item--student > img {
  width: 100%;
  aspect-ratio: 420/350;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 751px) {
  .p-scroll-infinity__item--student > img {
    aspect-ratio: 217/181;
  }
}

.p-strengths__item-content--01 {
  margin-top: 2.875rem;
  border-top: 1px solid #000000;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-content--01 {
    margin-top: 1.875rem;
  }
}

.p-strengths__item-01 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.25rem;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-01 {
    margin-top: 1.4375rem;
  }
}

.p-strengths__item-01-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.6875rem;
  height: 6.6875rem;
  font-size: 1.75rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 600;
  line-height: 1;
  background-color: #ffffff;
  border-radius: 50%;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-01-circle {
    width: 4.40625rem;
    height: 4.40625rem;
    font-size: 1.15625rem;
  }
}

.p-strengths__item-01 p {
  margin-left: 2.375rem;
  font-size: 3.75rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 500;
  line-height: 1;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-01 p {
    margin-left: 1.75rem;
    font-size: 2.475rem;
  }
}

.p-strengths__item-01 p span {
  font-size: 2.5rem;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-01 p span {
    font-size: 1.65rem;
  }
}

.p-strengths__item-01 p span:not(:first-child) {
  font-size: 1.875rem;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-01 p span:not(:first-child) {
    font-size: 1.2375rem;
  }
}

.p-strengths__item-02 {
  margin-top: 1.625rem;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-02 {
    margin-top: 0.8125rem;
  }
}

.p-strengths__item-02 figure {
  width: 100%;
  max-width: 29.75rem;
  margin-inline: auto;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-02 figure {
    max-width: 19.5125rem;
  }
}

.p-strengths__item-02__desc {
  margin-top: 4.1875rem;
  padding: 0.3125rem 0.625rem;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background-color: #ffffff;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-02__desc {
    margin-top: 2.8125rem;
    padding: 0.3125rem 0.625rem 0.125rem;
    font-size: 1.48125rem;
  }
}

.p-strengths__item-02__desc span {
  display: block;
  font-size: 1.875rem;
  font-weight: 400;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-02__desc span {
    font-size: 1.234375rem;
  }
}

.p-strengths__item-02 ul {
  margin-top: 1.625rem;
  -moz-text-align-last: left;
       text-align-last: left;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-02 ul {
    margin-top: 1.125rem;
  }
}

.p-strengths__item-02 ul li:last-child {
  text-align: right;
}

.p-strengths__item-02 li,
.p-strengths__item-02 p {
  position: relative;
  padding-left: 2.5625rem;
  font-size: 1.875rem;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-02 li,
  .p-strengths__item-02 p {
    padding-left: 1.6875rem;
    font-size: 1.23125rem;
  }
}

.p-strengths__item-02 li:not(:first-child) {
  margin-top: 0.4375rem;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-02 li:not(:first-child) {
    margin-top: 0.25rem;
  }
}

.p-strengths__item-02 li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.5rem;
  transform: translateY(-50%);
  width: 0.4375rem;
  height: 0.4375rem;
  background-color: #000000;
  border-radius: 50%;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-02 li::before {
    left: 0.9375rem;
    width: 0.3125rem;
    height: 0.3125rem;
  }
}

.p-strengths__item-02 p {
  margin-top: 0.625rem;
  margin-right: 1.25rem;
  text-align: right;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-02 p {
    margin-right: 0.8125rem;
  }
}

.p-strengths__item-03 {
  margin-top: 2.9375rem;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-03 {
    margin-top: 1.875rem;
  }
}

.p-strengths__item-03 ul {
  padding-bottom: 1.75rem;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-03 ul {
    padding-bottom: 1.0625rem;
  }
}

.p-strengths__item-03 li {
  padding: 0.3125rem 0.3125rem 0.4375rem;
  font-size: 1.75rem;
  background-color: #ffffff;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-03 li {
    padding: 0.3125rem 0.3125rem 0.25rem;
    font-size: 1.15625rem;
  }
}

.p-strengths__item-03 li:not(:first-child) {
  margin-top: 0.6875rem;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-03 li:not(:first-child) {
    margin-top: 0.40625rem;
  }
}

.p-strengths__item-04 {
  margin-top: 2.8125rem;
  padding-bottom: 0.3125rem;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-04 {
    margin-top: 1.75rem;
    padding-bottom: 0;
  }
}

.p-strengths__item-04__title {
  display: block;
  padding: 0.375rem 0;
  font-size: 1.75rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 600;
  background-color: #ffffff;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-04__title {
    padding: 0.25rem 0;
    font-size: 1.15rem;
  }
}

.p-strengths__item-04__time {
  display: flex;
  justify-content: center;
  margin-top: 1.0625rem;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-04__time {
    margin-top: 0.75rem;
  }
}

.p-strengths__item-04__time-text {
  position: relative;
  font-size: 2.5rem;
  line-height: 1;
  font-family: "Noto Serif JP", sans-serif;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-04__time-text {
    font-size: 1.64375rem;
  }
}

.p-strengths__item-04__time-text span {
  font-size: 5.625rem;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-04__time-text span {
    font-size: 3.6875rem;
  }
}

.p-strengths__item-04__time-text::before {
  content: "";
  position: absolute;
  width: 0.125rem;
  height: 14.375rem;
  top: -1.25rem;
  right: 0;
  background-color: #000000;
  transform: rotate(45deg);
}
@media screen and (min-width: 751px) {
  .p-strengths__item-04__time-text::before {
    height: 9.375rem;
    top: -0.8125rem;
  }
}

.p-strengths__item-04__time-text-sub {
  font-size: 1.875rem;
  line-height: 1;
  font-family: "Noto Serif JP", sans-serif;
  margin-top: 5.3125rem;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-04__time-text-sub {
    font-size: 1.23125rem;
    margin-top: 3.5rem;
  }
}

.p-strengths__item-04__time-text-sub span {
  font-size: 4.125rem;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-04__time-text-sub span {
    font-size: 2.70625rem;
  }
}

.p-strengths__item-04__summary {
  margin-top: 1rem;
  margin-right: 1.25rem;
  font-size: 1.625rem;
  text-align: right;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-04__summary {
    margin-top: 0.6875rem;
    margin-right: 0.9375rem;
    font-size: 1.0625rem;
  }
}

.p-strengths__item-05 {
  padding-bottom: 1rem;
  text-align: left;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-05 {
    padding-bottom: 0.4375rem;
  }
}

.p-strengths__item-05 ul {
  margin-top: 3.25rem;
  width: 100%;
  max-width: 28.75rem;
  margin-inline: auto;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-05 ul {
    margin-top: 1.5rem;
    max-width: 18.75rem;
  }
}

.p-strengths__item-05 li {
  display: flex;
  align-items: flex-end;
}

.p-strengths__item-05 li:not(:first-child) {
  margin-top: 2.75rem;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-05 li:not(:first-child) {
    margin-top: 1.875rem;
  }
}

.p-strengths__item-05__tag {
  display: inline-block;
  padding: 0.875rem 0;
  width: 16.15625rem;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: -0.08em;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 600;
  background-color: #ffffff;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-05__tag {
    padding: 0.625rem 0;
    width: 10.625rem;
    font-size: 1.15rem;
  }
}

.p-strengths__item-05__date {
  margin-left: 1.75rem;
  font-size: 1.875rem;
  line-height: 1;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-05__date {
    margin-left: 0.875rem;
    font-size: 1.23125rem;
  }
}

.p-strengths__item-05__date span {
  font-size: 3.75rem;
  line-height: 1;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-05__date span {
    font-size: 2.4625rem;
  }
}

.p-strengths__item-06 {
  margin-top: 2.5rem;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-06 {
    margin-top: 1.875rem;
  }
}

.p-strengths__item-06__title {
  display: block;
  padding: 1.25rem 0;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  background-color: #ffffff;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-06__title {
    padding: 0.8125rem 0;
    font-size: 1.64375rem;
  }
}

.p-strengths__item-06__title span {
  font-size: 1.875rem;
  font-weight: 400;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-06__title span {
    font-size: 1.23125rem;
  }
}

.p-strengths {
  margin-top: 19.375rem;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 751px) {
  .p-strengths {
    margin-top: 4.75rem;
  }
}

.p-strengths__items {
  margin-top: 7.0625rem;
}
@media screen and (min-width: 751px) {
  .p-strengths__items {
    margin-top: 6.375rem;
  }
}

.p-strengths__items-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.75rem;
}

.p-strengths__column--right {
  margin-top: 3.3125rem;
}

.p-strengths__item {
  position: relative;
  padding-top: 7.375rem;
  padding-bottom: 3.75rem;
  background-color: #e3f3fc;
  text-align: center;
  border-top-left-radius: 5rem;
  border-bottom-right-radius: 5rem;
  align-self: start;
}
@media screen and (min-width: 751px) {
  .p-strengths__item {
    padding-top: 4.875rem;
    padding-bottom: 2.5rem;
    border-top-left-radius: 3.125rem;
    border-bottom-right-radius: 3.125rem;
  }
}

.p-strengths__item:not(:first-child) {
  margin-top: 6.875rem;
}
@media screen and (min-width: 751px) {
  .p-strengths__item:not(:first-child) {
    margin-top: 3.8125rem;
  }
}

.p-strengths__item-circle {
  position: absolute;
  top: 9rem;
  left: 1.3125rem;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-circle {
    top: 5.9375rem;
    left: 0.9375rem;
  }
}

.p-strengths__number {
  position: absolute;
  top: -3.125rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 5.625rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 500;
  line-height: 1;
  color: #595757;
}
@media screen and (min-width: 751px) {
  .p-strengths__number {
    top: -2.0625rem;
    font-size: 3.6875rem;
  }
}

.p-strengths__img {
  width: 100%;
}

.p-strengths__img img {
  aspect-ratio: 640/420;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 751px) {
  .p-strengths__img img {
    aspect-ratio: 420/277.2;
  }
}

.p-strengths__item-contents {
  margin-top: 3.75rem;
  width: 100%;
  max-width: 37.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-contents {
    margin-top: 2.5rem;
    max-width: 24.609375rem;
  }
}

.p-strengths__item-title {
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-title {
    font-size: 2.0625rem;
  }
}

.p-strengths__item-title span {
  font-size: 2.5rem;
  line-height: 1.5;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-title span {
    font-size: 1.65rem;
  }
}

.p-strengths__item-lead {
  margin-top: 1.5625rem;
  font-size: 1.875rem;
  line-height: 1.728;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-lead {
    margin-top: 1rem;
    font-size: 1.25rem;
  }
}

.p-strengths__item-desc {
  display: block;
  margin-top: 4.125rem;
  padding: 1.25rem 0.625rem 1.5rem;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  background-color: #ffffff;
}
@media screen and (min-width: 751px) {
  .p-strengths__item-desc {
    margin-top: 2.6875rem;
    padding: 0.9375rem 0.625rem 0.875rem;
    font-size: 1.48125rem;
  }
}

.p-strengths__btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 2.8125rem;
  margin-right: 2.5rem;
  font-size: 1.75rem;
  font-weight: 500;
  color: #000000;
}
@media screen and (min-width: 751px) {
  .p-strengths__btn {
    margin-top: 1.875rem;
    margin-right: 1.875rem;
    font-size: 1.15625rem;
  }
}

.p-strengths__arrow-btn {
  margin-left: 1.875rem;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 751px) {
  .p-strengths__arrow-btn {
    margin-left: 1.25rem;
  }
}

.p-strengths__btn:hover .p-strengths__arrow-btn {
  transform: translateX(5px);
}

.p-student__slide {
  position: relative;
  margin-top: 5.625rem;
}
@media screen and (min-width: 751px) {
  .p-student__slide {
    margin-top: 5rem;
  }
}

.p-student__slide-title {
  width: 38.90625rem;
}
@media screen and (min-width: 751px) {
  .p-student__slide-title {
    width: 19.45625rem;
  }
}

.p-student__swiper.swiper {
  padding: 0 6.875rem 3.9375rem;
}
@media screen and (min-width: 751px) {
  .p-student__swiper.swiper {
    padding: 0 3.3125rem 2.0625rem;
  }
}

.p-student__swiper-slide.swiper-slide {
  width: 26.25rem;
}
@media screen and (min-width: 751px) {
  .p-student__swiper-slide.swiper-slide {
    width: 13.125rem;
  }
}

.p-student__swiper-slide.swiper-slide img {
  width: 100%;
  aspect-ratio: 420/470;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 751px) {
  .p-student__swiper-slide.swiper-slide img {
    aspect-ratio: 210/235;
  }
}

.p-student__swiper .p-campus-schedule__swiper-scrollbar.swiper-scrollbar {
  width: 100%;
  height: 0.3125rem;
  background: #e5e5e5;
  border-radius: 0.25rem;
}
@media screen and (min-width: 751px) {
  .p-student__swiper .p-campus-schedule__swiper-scrollbar.swiper-scrollbar {
    width: 67%;
    height: 0.15625rem;
  }
}

.p-student__swiper-text {
  margin-top: 1.5625rem;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.416;
  letter-spacing: -0.04em;
  color: #000000;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-student__swiper-text {
    margin-top: 0.8125rem;
    font-size: 0.9375rem;
  }
}

.p-student__slide-lead {
  position: absolute;
  bottom: 1.875rem;
  left: -0.1875rem;
  font-size: 8.125rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #c2d7cf;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  opacity: 0.5;
}
@media screen and (min-width: 751px) {
  .p-student__slide-lead {
    bottom: 0.8125rem;
    left: -0.3125rem;
    font-size: 4.0625rem;
  }
}

.p-student-fv__inner {
  width: 100%;
  max-width: 46.525rem;
  margin-inline: auto;
  padding: 0 1.25rem;
}
@media screen and (min-width: 751px) {
  .p-student-fv__inner {
    max-width: 55.325rem;
    padding: 0 1.5625rem;
  }
}

.p-student-fv__img {
  width: 100%;
}

.p-student-lead {
  margin-top: 4.125rem;
}
@media screen and (min-width: 751px) {
  .p-student-lead {
    margin-top: 2.0625rem;
    text-align: center;
  }
}

.p-student-lead__text p {
  letter-spacing: -0.09em;
}
@media screen and (min-width: 751px) {
  .p-student-lead__text p {
    letter-spacing: normal;
  }
}

.p-student__number {
  position: absolute;
  top: -3.125rem;
  left: 1.25rem;
  font-size: 3.7025rem;
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: 0.2px #00866d;
  text-shadow: 0.25rem 0 0 #7baf9f, 0.3125rem 0 0 #00866d;
}
@media screen and (min-width: 751px) {
  .p-student__number {
    top: -1.4375rem;
    left: 0.625rem;
    font-size: 1.85125rem;
    text-shadow: 0.125rem 0 0 #7baf9f, 0.15625rem 0 0 #00866d;
  }
}

.p-student__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #000000;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-student__title {
    font-size: 1.25rem;
  }
}

@media screen and (min-width: 751px) {
  .p-student__rank-items--flex {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -8.125rem;
  }
}

.p-student__rank-items--flex li:not(:first-child) {
  margin-left: 0.625rem;
}

.p-student__rank-item:not(:first-child) {
  margin-top: 0.9375rem;
  margin-left: 0.4375rem;
}
@media screen and (min-width: 751px) {
  .p-student__rank-item:not(:first-child) {
    margin-top: 0.46875rem;
    margin-left: 0.1875rem;
  }
}

.p-student__rank-wrapper {
  display: flex;
  align-items: center;
}

.p-student__rank {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.9375rem;
  height: 4.9375rem;
  font-size: 2.684375rem;
  font-weight: 700;
  color: #ffffff;
  border-radius: 50%;
}
@media screen and (min-width: 751px) {
  .p-student__rank {
    width: 2.46875rem;
    height: 2.46875rem;
    font-size: 1.3425rem;
  }
}

.p-student__rank.p-student__rank--medium {
  width: 4.125rem;
  height: 4.125rem;
  font-size: 2.16rem;
}
@media screen and (min-width: 751px) {
  .p-student__rank.p-student__rank--medium {
    width: 2.0625rem;
    height: 2.0625rem;
    font-size: 1.08rem;
  }
}

.p-student__rank span {
  font-size: 1.785rem;
  padding-top: 0.75rem;
}
@media screen and (min-width: 751px) {
  .p-student__rank span {
    font-size: 0.8925rem;
    padding-top: 0.25rem;
  }
}

.p-student__rank.p-student__rank--medium span {
  font-size: 1.62rem;
  padding-top: 0.25rem;
}
@media screen and (min-width: 751px) {
  .p-student__rank.p-student__rank--medium span {
    font-size: 0.81rem;
    padding-top: 0;
  }
}

.p-student__rank--red {
  background-color: #d75661;
}

.p-student__rank--yellow {
  background-color: #ebc533;
}

.p-student__rank--blue,
.p-student__tag--blue,
.p-student__circle--blue {
  background-color: #62baea;
}

.p-student__rank--blue2 {
  background-color: #2e92d0;
}

.p-student__rank--gray {
  background-color: #888888;
}

.p-student__rank-title {
  margin-left: 1.25rem;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 751px) {
  .p-student__rank-title {
    margin-left: 0.625rem;
    font-size: 1.5625rem;
  }
}

.p-student__rank-title.p-student__rank-title--medium {
  font-size: 2rem;
}
@media screen and (min-width: 751px) {
  .p-student__rank-title.p-student__rank-title--medium {
    font-size: 1rem;
  }
}

.p-student__rank-title--red,
.p-student__rank-text--red {
  color: #d75661;
}

.p-student__rank-title--yellow,
.p-student__rank-text--yellow,
.p-student__item-text--yellow {
  color: #ebc533;
}

.p-student__rank-title--blue,
.p-student__rank-text--blue,
.p-student__item-text--blue {
  color: #62baea;
}

.p-student__rank-title--blue2 {
  color: #2e92d0;
}

.p-student__rank-title--gray {
  color: #888888;
}

.p-student__rank-text {
  margin-top: 0.875rem;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.05em;
}
@media screen and (min-width: 751px) {
  .p-student__rank-text {
    margin-top: 0.4375rem;
    font-size: 0.9375rem;
    letter-spacing: -0.09em;
  }
}

.p-student__tag {
  display: block;
  width: 10rem;
  padding: 0.3125rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  border-radius: 0.25rem;
}
@media screen and (min-width: 751px) {
  .p-student__tag {
    width: 5rem;
    font-size: 0.75rem;
    padding: 0.15625rem;
  }
}

.p-student__tag--pink,
.p-student__circle--pink {
  background-color: #de96b9;
}

.p-student__text--ex-large,
.p-student__text--large,
.p-student__text--semi-large,
.p-student__text--medium,
.p-student__text--normal,
.p-student__text--small {
  font-weight: 700;
  line-height: 1;
  color: #d75661;
}

.p-student__text--ex-large {
  font-size: 7.5rem;
  margin: 0 0.9375rem;
}
@media screen and (min-width: 751px) {
  .p-student__text--ex-large {
    font-size: 3.75rem;
  }
}

.p-student__text--ex-large span {
  position: relative;
  top: -0.625rem;
  padding: 0 0.625rem;
}
@media screen and (min-width: 751px) {
  .p-student__text--ex-large span {
    top: -0.3125rem;
    padding: 0 0.3125rem;
  }
}

.p-student__text--large {
  font-size: 6.25rem;
}
@media screen and (min-width: 751px) {
  .p-student__text--large {
    font-size: 3.125rem;
  }
}

.p-student__text--semi-large {
  font-size: 3.375rem;
}
@media screen and (min-width: 751px) {
  .p-student__text--semi-large {
    font-size: 1.6875rem;
  }
}

.p-student__text--medium {
  font-size: 3.125rem;
}
@media screen and (min-width: 751px) {
  .p-student__text--medium {
    font-size: 1.5625rem;
  }
}

.p-student__text--normal {
  font-size: 2.5rem;
}
@media screen and (min-width: 751px) {
  .p-student__text--normal {
    font-size: 1.25rem;
  }
}

.p-student__text--small {
  font-size: 2rem;
}
@media screen and (min-width: 751px) {
  .p-student__text--small {
    font-size: 1rem;
  }
}

.p-student__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.4375rem;
  height: 4.4375rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  border-radius: 50%;
}
@media screen and (min-width: 751px) {
  .p-student__circle {
    width: 2.20625rem;
    height: 2.20625rem;
    font-size: 0.875rem;
  }
}

.p-student__title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-student__fukidashi {
  width: 10.6875rem;
  margin-right: 0.625rem;
}
@media screen and (min-width: 751px) {
  .p-student__fukidashi {
    width: 5.34375rem;
  }
}

.p-student__item-text li {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.667;
}
@media screen and (min-width: 751px) {
  .p-student__item-text li {
    font-size: 1.5rem;
  }
}

.p-student__item-text--pink {
  color: #de96b9;
}

.p-student__item-text--green {
  color: #6ab09e;
}

.student-data {
  padding-top: 1.875rem;
  padding-bottom: 5.8125rem;
  background-color: #fcf3d5;
}
@media screen and (min-width: 751px) {
  .student-data {
    padding-top: 2.5625rem;
    padding-bottom: 4.6875rem;
  }
}

.p-student {
  margin-top: 2.6875rem;
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .p-student {
    margin-top: 2.5rem;
  }
}

.p-student__items {
  padding-top: 3.125rem;
}
@media screen and (min-width: 751px) {
  .p-student__items {
    padding-top: 1.5625rem;
  }
}

@media screen and (min-width: 751px) {
  .p-student__item01,
  .p-student__item02,
  .p-student__item03,
  .p-student__item05,
  .p-student__item09 {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-student__item02 {
  margin-top: 4.25rem;
}
@media screen and (min-width: 751px) {
  .p-student__item02 {
    margin-top: 1.75rem;
  }
}

.p-student__item03 {
  margin-top: 8.6875rem;
}
@media screen and (min-width: 751px) {
  .p-student__item03 {
    margin-top: 1.625rem;
  }
}

.p-student__item04 {
  margin-top: 4.5625rem;
}
@media screen and (min-width: 751px) {
  .p-student__item04 {
    margin-top: 1.625rem;
  }
}

.p-student__item05 {
  margin-top: 4.5625rem;
}
@media screen and (min-width: 751px) {
  .p-student__item05 {
    margin-top: 4.0625rem;
  }
}

.p-student__item06 {
  margin-top: 4.375rem;
}
@media screen and (min-width: 751px) {
  .p-student__item06 {
    margin-top: 2.125rem;
  }
}

.p-student__item07 {
  margin-top: 4.625rem;
}
@media screen and (min-width: 751px) {
  .p-student__item07 {
    margin-top: 2.125rem;
  }
}

.p-student__item08 {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
}
@media screen and (min-width: 751px) {
  .p-student__item08 {
    margin-top: 2.5rem;
  }
}

.p-student__item09 {
  margin-top: 5rem;
}
@media screen and (min-width: 751px) {
  .p-student__item09 {
    margin-top: 3.6875rem;
  }
}

.p-student__item010 {
  margin-top: 4.0625rem;
}
@media screen and (min-width: 751px) {
  .p-student__item010 {
    margin-top: 2.4375rem;
  }
}

.p-student__item011 {
  margin-top: 6.5625rem;
}
@media screen and (min-width: 751px) {
  .p-student__item011 {
    margin-top: 2.25rem;
  }
}

.p-student__contents {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 1.875rem;
  background-color: #ffffff;
}
@media screen and (min-width: 751px) {
  .p-student__contents {
    border-radius: 0.9375rem;
  }
}

.p-student__contents--q1,
.p-student__contents--q2,
.p-student__contents--q5 {
  height: 15rem;
}
@media screen and (min-width: 751px) {
  .p-student__contents--q1,
  .p-student__contents--q2,
  .p-student__contents--q5 {
    height: 8.125rem;
  }
}

.p-student__contents--q2 {
  margin-top: 4.25rem;
}
@media screen and (min-width: 751px) {
  .p-student__contents--q2 {
    margin-top: 0;
  }
}

.p-student__contents--q3 {
  justify-content: flex-start;
  height: 30rem;
  padding-top: 1.875rem;
}
@media screen and (min-width: 751px) {
  .p-student__contents--q3 {
    height: 18.125rem;
    padding-top: 1.0625rem;
  }
}

.p-student__contents--q4 {
  height: 31.25rem;
  justify-content: flex-start;
  margin-top: 5.5rem;
  padding-top: 1.875rem;
}
@media screen and (min-width: 751px) {
  .p-student__contents--q4 {
    height: 18.125rem;
    margin-top: 0;
    padding-top: 0.9375rem;
  }
}

.p-student__contents--q6 {
  height: 33.75rem;
  justify-content: flex-start;
  margin-top: 4.1875rem;
  padding-top: 1.0625rem;
}
@media screen and (min-width: 751px) {
  .p-student__contents--q6 {
    height: 23.5625rem;
    margin-top: 0;
    padding-top: 2.5rem;
  }
}

.p-student__contents--q7 {
  height: 27.5rem;
  margin-top: 4.0625rem;
}
@media screen and (min-width: 751px) {
  .p-student__contents--q7 {
    height: 13.75rem;
    margin-top: 1.6875rem;
    padding-top: 1.375rem;
  }
}

.p-student__contents--q8 {
  justify-content: flex-start;
  height: 53.75rem;
  padding-top: 2.625rem;
}
@media screen and (min-width: 751px) {
  .p-student__contents--q8 {
    height: 11.25rem;
    padding-top: 1.5rem;
  }
}

.p-student__contents--q9 {
  height: 30rem;
}
@media screen and (min-width: 751px) {
  .p-student__contents--q9 {
    height: 22.5rem;
  }
}

.p-student__contents--q10 {
  height: 50rem;
  margin-top: 17rem;
}
@media screen and (min-width: 751px) {
  .p-student__contents--q10 {
    height: 22.5rem;
    margin-top: 0;
  }
}

.p-student__contents--q11 {
  height: 52.5rem;
}
@media screen and (min-width: 751px) {
  .p-student__contents--q11 {
    justify-content: flex-start;
    height: 12.5rem;
    padding-top: 1.4375rem;
  }
}

.p-student__contents--q12 {
  height: 30rem;
}
@media screen and (min-width: 751px) {
  .p-student__contents--q12 {
    height: 21.875rem;
  }
}

.p-student__contents--q13 {
  height: 35.625rem;
}
@media screen and (min-width: 751px) {
  .p-student__contents--q13 {
    height: 21.25rem;
  }
}

.p-student__contents--q14 {
  height: 42.5rem;
  margin-top: 4.1875rem;
}
@media screen and (min-width: 751px) {
  .p-student__contents--q14 {
    height: 21.25rem;
    margin-top: 0;
  }
}

.p-student__contents--q15 {
  height: 36.875rem;
}
@media screen and (min-width: 751px) {
  .p-student__contents--q15 {
    height: 24.375rem;
  }
}

.p-student__contents--q16 {
  height: 67.5rem;
}
@media screen and (min-width: 751px) {
  .p-student__contents--q16 {
    height: 16.25rem;
  }
}

.p-student__contents-wrapper-q1,
.p-student__contents-wrapper-q2,
.p-student__contents-wrapper-q5,
.p-student__contents-wrapper-q11,
.p-student__contents-wrapper-q14,
.p-student__contents-wrapper-q15,
.p-student__contents-wrapper-q16 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;
}
@media screen and (min-width: 751px) {
  .p-student__contents-wrapper-q1,
  .p-student__contents-wrapper-q2,
  .p-student__contents-wrapper-q5,
  .p-student__contents-wrapper-q11,
  .p-student__contents-wrapper-q14,
  .p-student__contents-wrapper-q15,
  .p-student__contents-wrapper-q16 {
    margin-top: 0.625rem;
  }
}

.p-student__contents-wrapper-q3,
.p-student__contents-wrapper-q9,
.p-student__contents-wrapper-q10,
.p-student__contents-wrapper-q12 {
  margin-right: auto;
  padding-top: 1.6875rem;
  padding-left: 2.75rem;
}
@media screen and (min-width: 751px) {
  .p-student__contents-wrapper-q3,
  .p-student__contents-wrapper-q9,
  .p-student__contents-wrapper-q10,
  .p-student__contents-wrapper-q12 {
    padding-top: 0.9375rem;
    padding-left: 4.8125rem;
  }
}

.p-student__contents-wrapper-q4 {
  margin-left: auto;
  padding-top: 2.5rem;
  padding-right: 7.5rem;
}
@media screen and (min-width: 751px) {
  .p-student__contents-wrapper-q4 {
    padding-top: 3.125rem;
    padding-right: 7.0625rem;
  }
}

.p-student__contents-wrapper-q6 {
  margin-right: auto;
}

.p-student__contents-wrapper-q7 {
  margin-right: auto;
  padding-top: 1.6875rem;
  padding-left: 2.75rem;
}
@media screen and (min-width: 751px) {
  .p-student__contents-wrapper-q7 {
    padding-top: 1.125rem;
    padding-left: 2.75rem;
  }
}

@media screen and (min-width: 751px) {
  .p-student__contents-wrapper-q9 {
    padding-top: 2.1875rem;
    padding-left: 2.5rem;
  }
}

@media screen and (min-width: 751px) {
  .p-student__contents-wrapper-q10 {
    padding-top: 1.875rem;
    padding-left: 1.25rem;
  }
}

@media screen and (min-width: 751px) {
  .p-student__contents-wrapper-q12 {
    padding-top: 1.25rem;
    padding-left: 0;
  }
}

.p-student__contents-wrapper-q13 {
  margin-right: auto;
  padding-top: 1.6875rem;
  padding-left: 4.25rem;
}

@media screen and (min-width: 751px) {
  .p-student__contents-wrapper-q15 {
    flex-direction: column;
  }
}

.p-student__img-q1 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 11.4rem;
}
@media screen and (min-width: 751px) {
  .p-student__img-q1 {
    right: 1.875rem;
    width: 7.275rem;
  }
}

.p-student__tag-wrapper {
  margin-left: 1rem;
}
@media screen and (min-width: 751px) {
  .p-student__tag-wrapper {
    margin-left: 0.5rem;
  }
}

.p-student__tag-wrapper span:not(:first-child) {
  margin-top: 0.625rem;
}
@media screen and (min-width: 751px) {
  .p-student__tag-wrapper span:not(:first-child) {
    margin-top: 0.3125rem;
  }
}

.p-student__graph-q3 {
  position: absolute;
  right: 1.25rem;
  bottom: -2.625rem;
  width: 17.125rem;
}
@media screen and (min-width: 751px) {
  .p-student__graph-q3 {
    right: 4.6875rem;
    bottom: 1.5rem;
    width: 8.5625rem;
  }
}

.p-student__img-q4 {
  position: absolute;
  bottom: 0;
  left: 3.0625rem;
  width: 16.59375rem;
}
@media screen and (min-width: 751px) {
  .p-student__img-q4 {
    left: 4.8125rem;
    width: 10.3125rem;
  }
}

.p-student__img-q5 {
  position: absolute;
  width: 16.73125rem;
  top: -10.625rem;
  right: 0.4375rem;
}
@media screen and (min-width: 751px) {
  .p-student__img-q5 {
    width: 8.3625rem;
    top: -2.625rem;
    right: 1.1875rem;
  }
}

.p-student__graph-q6 {
  position: absolute;
  bottom: 0;
  left: 1.5625rem;
  width: 17.66875rem;
}
@media screen and (min-width: 751px) {
  .p-student__graph-q6 {
    bottom: 1.9375rem;
    left: 2.25rem;
    width: 11rem;
  }
}

.p-student__img-q6 {
  position: absolute;
  bottom: 0;
  right: 0.6875rem;
  width: 18.90625rem;
}
@media screen and (min-width: 751px) {
  .p-student__img-q6 {
    right: 2.0625rem;
    width: 10.60625rem;
  }
}

.p-student__img-q7 {
  position: absolute;
  bottom: 3.0625rem;
  right: 4.6875rem;
  width: 11.6375rem;
}
@media screen and (min-width: 751px) {
  .p-student__img-q7 {
    bottom: 4.5rem;
    right: 2.6875rem;
    width: 12.125rem;
  }
}

.p-student__img-q8 {
  position: relative;
  bottom: -2.25rem;
  width: 36.66875rem;
}
@media screen and (min-width: 751px) {
  .p-student__img-q8 {
    bottom: 1rem;
    width: 50.775rem;
  }
}

.p-student__graph-q9 {
  position: absolute;
  bottom: -8.25rem;
  right: 1.25rem;
  width: 23.75rem;
}
@media screen and (min-width: 751px) {
  .p-student__graph-q9 {
    bottom: 3.75rem;
    right: 2.8125rem;
    width: 11.875rem;
  }
}

.p-student__img10 {
  position: absolute;
  top: -6.25rem;
  right: 1.875rem;
  width: 22.5625rem;
}
@media screen and (min-width: 751px) {
  .p-student__img10 {
    top: -2.8125rem;
    right: 2.8125rem;
    width: 11.28125rem;
  }
}

.p-student__img-q11 {
  position: relative;
  bottom: -2.125rem;
  width: 35.375rem;
}
@media screen and (min-width: 751px) {
  .p-student__img-q11 {
    bottom: 4.5rem;
    width: 45.8125rem;
  }
}

.p-student__img-q12 {
  position: absolute;
  z-index: 2;
  bottom: -3.625rem;
  right: 0;
  width: 19.78125rem;
}
@media screen and (min-width: 751px) {
  .p-student__img-q12 {
    top: 1.75rem;
    right: 8.125rem;
    width: 9.8875rem;
  }
}

.p-student__img-q13 {
  position: absolute;
  bottom: 0;
  right: 0.625rem;
  width: 20.8125rem;
}
@media screen and (min-width: 751px) {
  .p-student__img-q13 {
    right: 2.8125rem;
    width: 11.625rem;
  }
}

.p-student__img-q14 {
  width: 35.5625rem;
}
@media screen and (min-width: 751px) {
  .p-student__img-q14 {
    width: 17.7875rem;
  }
}

.p-student__img-q15 {
  width: 35.625rem;
}
@media screen and (min-width: 751px) {
  .p-student__img-q15 {
    width: 36.875rem;
  }
}

.p-student__img-q16 {
  position: relative;
  bottom: -2.5rem;
  width: 35.5rem;
}
@media screen and (min-width: 751px) {
  .p-student__img-q16 {
    bottom: 0;
    width: 45.375rem;
  }
}

.p-student__item-video {
  width: 40rem;
  height: 22.5rem;
}
@media screen and (min-width: 751px) {
  .p-student__item-video {
    width: 26.25rem;
    height: 14.765625rem;
  }
}

.p-support {
  margin-top: 6.25rem;
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .p-support {
    margin-top: 4.5625rem;
  }
}

.p-support__wrapper {
  width: 100vw;
  margin: 4.25rem calc(50% - 50vw) 0;
  background-color: #e3f3fc;
}
@media screen and (min-width: 751px) {
  .p-support__wrapper {
    width: 100%;
    margin: 2.8125rem 0 0;
    background-color: transparent;
  }
}

.p-support__contents {
  width: 100%;
  max-width: 40rem;
  margin-inline: auto;
  padding: 5rem 1.25rem 7.0625rem;
}
@media screen and (min-width: 751px) {
  .p-support__contents {
    padding: 0;
  }
}

@media screen and (min-width: 751px) {
  .p-support__contents--flex {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-support__item:not(:first-child) {
  margin-top: 4.9375rem;
}
@media screen and (min-width: 751px) {
  .p-support__item:not(:first-child) {
    margin-top: unset;
  }
}

@media screen and (min-width: 751px) {
  .p-support__contents > .p-support__item:last-of-type {
    margin-top: 2.375rem;
  }
}

.p-support__item-head {
  position: relative;
  display: block;
  padding: 1.875rem 0;
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  background-color: #3fa8f4;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-support__item-head {
    padding: 0.9375rem 0;
    font-size: 1.0625rem;
  }
}

.p-support__item-head.p-support__item-head--bold {
  position: relative;
  font-size: 2.5rem;
  line-height: 1.3;
  text-align: center;
  padding: 1.125rem 0 1.1875rem;
}
@media screen and (min-width: 751px) {
  .p-support__item-head.p-support__item-head--bold {
    font-size: 1.25rem;
    line-height: 1;
    padding: 0.75rem 0 1.125rem;
  }
}

.p-support__item-head--bold img {
  position: absolute;
  width: 6.1375rem;
  top: -2.5rem;
  right: 2.5rem;
}
@media screen and (min-width: 751px) {
  .p-support__item-head--bold img {
    width: 3.0625rem;
    top: -1.375rem;
    right: 1.25rem;
  }
}

.p-support__item-head::before {
  content: "";
  position: absolute;
  bottom: -1.875rem;
  left: 50%;
  display: inline-block;
  transform: translateX(-50%);
  border: 0.625rem solid transparent;
  border-top: 1.4375rem solid #3fa8f4;
}
@media screen and (min-width: 751px) {
  .p-support__item-head::before {
    bottom: -0.9375rem;
    border: 0.3125rem solid transparent;
    border-top: 0.71875rem solid #3fa8f4;
  }
}

.p-support__item-body {
  margin-top: 2.6875rem;
  padding: 3.3125rem 2.8125rem 4.875rem;
  background-color: #ffffff;
  border-radius: 4.375rem 0 4.375rem 0;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-support__item-body {
    margin-top: 1.3125rem;
    padding: 1.75rem 1.25rem 2.5rem;
    background-color: #e3f3fc;
    border-radius: 1.875rem 0 1.875rem 0;
  }
}

@media screen and (min-width: 751px) {
  .p-support__item-body--flex {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.p-support__item-body h3 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: #003570;
}
@media screen and (min-width: 751px) {
  .p-support__item-body h3 {
    font-size: 1.25rem;
  }
}

.p-support__item-body p {
  margin-top: 1rem;
  font-size: 1.875rem;
  font-weight: 300;
  line-height: 1.775;
  color: #231815;
}
@media screen and (min-width: 751px) {
  .p-support__item-body p {
    margin-top: 0.4375rem;
    font-size: 0.9375rem;
  }
}

.p-support__item-body--right {
  margin-top: 2.25rem;
}
@media screen and (min-width: 751px) {
  .p-support__item-body--right {
    margin-top: 0;
    margin-left: 1.25rem;
  }
}

.p-support__item-body--right p {
  width: 30rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 2.5;
  letter-spacing: 0.12em;
  color: #003570;
  border-bottom: 1px solid #000000;
}
@media screen and (min-width: 751px) {
  .p-support__item-body--right p {
    width: 15rem;
    font-size: 0.9375rem;
  }
}

.p-support__item-body--recruiting-right p {
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1;
  color: #003570;
  margin-top: 3.4375rem;
}
@media screen and (min-width: 751px) {
  .p-support__item-body--recruiting-right p {
    font-size: 0.9375rem;
    margin-top: 0.9375rem;
  }
}

.p-support__item-number {
  display: block;
  font-size: 10rem;
  line-height: 1.05;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #003570;
}
@media screen and (min-width: 751px) {
  .p-support__item-number {
    font-size: 5rem;
  }
}

.p-support__calendar {
  margin-top: 4.8125rem;
  padding: 0 1.25rem;
}
@media screen and (min-width: 751px) {
  .p-support__calendar {
    margin-top: 4.8125rem;
    padding: 0;
  }
}

.p-support__calendar-wrapper {
  margin-top: 2.75rem;
}
@media screen and (min-width: 751px) {
  .p-support__calendar-wrapper {
    margin-top: 1.375rem;
  }
}

.p-support__calendar-img {
  background-color: #fff;
}

.p-support__calendar-img img {
  width: 126.625rem;
}
@media screen and (min-width: 751px) {
  .p-support__calendar-img img {
    width: 56.25rem;
  }
}

.p-support--btn {
  margin-top: 5.125rem;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-support--btn {
    margin-top: 2.5625rem;
  }
}

.p-support.p-support--recruiting {
  margin-top: 6.625rem;
}
@media screen and (min-width: 751px) {
  .p-support.p-support--recruiting {
    margin-top: 4.5625rem;
    margin-bottom: 5.4375rem;
  }
}

.p-support__item.p-support__item--recruiting {
  margin-top: 9.8125rem;
}
@media screen and (min-width: 751px) {
  .p-support__item.p-support__item--recruiting {
    width: 100%;
    max-width: 40rem;
    margin-inline: auto;
    margin-top: 6rem;
  }
}

.p-support__item-body.p-support__item-body--recruiting {
  padding: 2.375rem 2.8125rem 4.375rem;
  background-color: #e3f3fc;
  text-align: left;
}
@media screen and (min-width: 751px) {
  .p-support__item-body.p-support__item-body--recruiting {
    padding: 1.25rem 2.8125rem 1.875rem 2.5rem;
  }
}

.p-support__item-body--recruiting-right {
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-support__item-body--recruiting-right {
    flex-shrink: 0;
    margin-left: 2.625rem;
  }
}

.p-support__item-body--recruiting-bottom {
  display: block;
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 2.2;
  color: #231815;
}
@media screen and (min-width: 751px) {
  .p-support__item-body--recruiting-bottom {
    font-size: 0.875rem;
  }
}

.p-support__item-number.p-support__item-number--recruiting {
  display: inline-block;
  line-height: 1.17;
  background: linear-gradient(to bottom, transparent 88%, #f9db78 88%, #f9db78 100%);
}

.p-support__item-number span {
  font-size: 3.75rem;
}
@media screen and (min-width: 751px) {
  .p-support__item-number span {
    font-size: 1.875rem;
  }
}

.p-system {
  margin-top: 6.875rem;
}
@media screen and (min-width: 751px) {
  .p-system {
    margin-top: 4.5rem;
  }
}

.p-system__title h2 {
  line-height: 1.3;
}
@media screen and (min-width: 751px) {
  .p-system__title h2 {
    line-height: 1.6;
  }
}

.p-system__text {
  margin-top: 1.625rem;
  text-align: justify;
}

.p-system__text span {
  color: #c1272d;
}

.p-system__contents {
  margin-top: 4.25rem;
}
@media screen and (min-width: 751px) {
  .p-system__contents {
    margin-top: 1.875rem;
  }
}

.p-system__contents-wrapper {
  margin-top: 1.875rem;
}
@media screen and (min-width: 751px) {
  .p-system__contents-wrapper {
    display: flex;
    align-items: flex-start;
    margin-top: 0.8125rem;
  }
}

.p-system__contents-text {
  text-align: justify;
}
@media screen and (min-width: 751px) {
  .p-system__contents-text {
    line-height: 1.85;
    flex: 1;
  }
}

.p-system__contents-text span {
  font-weight: 700;
}

.p-system__contents-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.3125rem;
  margin-top: 2.125rem;
}
@media screen and (min-width: 751px) {
  .p-system__contents-items {
    gap: 1.4375rem;
    margin-top: 0.5rem;
    margin-left: 5.4375rem;
    flex: 0.82;
  }
}

.p-system__contents-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 12.5rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.833;
  letter-spacing: 0.05em;
  color: #ffffff;
  background-color: #3fa9f5;
  text-align: center;
  border-radius: 1.25rem;
}
@media screen and (min-width: 751px) {
  .p-system__contents-item {
    height: 7.59375rem;
    font-size: 1.125rem;
    border-radius: 1.25rem;
  }
}

.p-system__bottom-text {
  margin-top: 4.25rem;
}
@media screen and (min-width: 751px) {
  .p-system__bottom-text {
    margin-top: 2.375rem;
  }
}

.p-system__btn {
  display: flex;
  justify-content: center;
  margin-top: 1.875rem;
}
@media screen and (min-width: 751px) {
  .p-system__btn {
    margin-top: 2rem;
  }
}

.p-tuition__table {
  width: 100%;
  border-bottom: 1px solid #000000;
  border-collapse: collapse;
}

.p-tuition__table:first-of-type {
  border-top: 1px solid #000000;
}

.p-tuition__table-list td {
  width: 15rem;
  padding: 0.34375rem 0;
  font-size: 1.75rem;
  line-height: 1.75;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-tuition__table-list td {
    font-size: 0.875rem;
    padding: 0.1625rem 0;
  }
}

@media screen and (min-width: 751px) {
  .p-tuition__table-list td.p-tuition__table-class {
    font-weight: 700;
  }
}

.p-tuition__table-list .p-tuition__table-year,
.p-tuition__table-list td:nth-child(1) {
  width: 7.5rem;
}
@media screen and (min-width: 751px) {
  .p-tuition__table-list .p-tuition__table-year,
  .p-tuition__table-list td:nth-child(1) {
    width: 11.25rem;
  }
}

.p-tuition__table-list td:not(:last-child) {
  border-right: 1px solid #000000;
}

.p-tuition__table-total {
  border-top: 1px solid #000000;
}

.p-tuition__table-total td {
  padding: 0.8125rem 1.4375rem;
}
@media screen and (min-width: 751px) {
  .p-tuition__table-total td {
    padding: 0.4375rem 0;
  }
}

.p-tuition__table-list .p-tuition__table-year,
.p-tuition__table-total td {
  font-size: 1.875rem;
  line-height: 1.75;
  color: #000000;
}
@media screen and (min-width: 751px) {
  .p-tuition__table-list .p-tuition__table-year,
  .p-tuition__table-total td {
    font-size: 0.875rem;
  }
}

.p-tuition__table-color:nth-child(even) td,
.p-tuition__table-list--blue:nth-child(even) td {
  background-color: #e3f3fc;
}

.p-tuition__table-list--purple:nth-child(even) td,
.p-tuition__table-color:nth-child(even) td:nth-child(4) {
  background-color: #dad1e5;
}

.p-tuition__table-class {
  border-bottom: 1px solid #000000;
  background-color: #0094d6;
  color: #ffffff;
}

.p-tuition__table-class--management {
  border-left: 1px solid #000000;
  background-color: #9477ac;
}

.p-tuition__table-class--white {
  background-color: #ffffff;
}

.p-payment__table {
  width: 50rem;
  border-bottom: 1px solid #000000;
  border-collapse: collapse;
}
@media screen and (min-width: 751px) {
  .p-payment__table {
    width: 100%;
    border-top: 1px solid #000000;
  }
}

.p-payment__table-list td {
  width: 12.5rem;
  height: 6.5625rem;
  padding: 0.4375rem 0;
  font-size: 1.75rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-payment__table-list td {
    height: auto;
    font-size: 0.875rem;
    padding: 0.2625rem 0;
  }
}

@media screen and (min-width: 751px) {
  .p-payment__table-list td:nth-child(1) {
    width: 18.75rem;
  }
}

.p-payment__table-list td:not(:last-child) {
  border-right: 1px solid #000000;
}

.p-payment__table-list--top td {
  border-bottom: 1px solid #000000;
}

.p-payment__table-list--total {
  border-top: 1px solid #000000;
}
@media screen and (min-width: 751px) {
  .p-payment__table-list--total {
    padding: 0.2625rem 0;
  }
}

@media screen and (min-width: 751px) {
  .p-payment__table-list--total td {
    padding: 0.625rem 0;
  }
}

.p-payment__table-class {
  color: #ffffff;
  background-color: #0094d6;
}

.p-payment__table-class.p-payment__table-class--white {
  background-color: #ffffff;
}

.p-payment__table-class.p-payment__table-class--purple {
  background-color: #9477ac;
}

.p-payment__table-color {
  background-color: #e3f3fc;
}

.p-payment__table-color td:nth-child(4) {
  background-color: #dad1e5;
}

.p-scholarship__table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}

.p-scholarship__table td {
  padding-top: 1.4375rem;
  padding-bottom: 1.8875rem;
  font-size: 1.75rem;
  line-height: 1.75;
  color: #000000;
  vertical-align: top;
}
@media screen and (min-width: 751px) {
  .p-scholarship__table td {
    height: 4.375rem;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    font-size: 0.875rem;
    vertical-align: middle;
  }
}

.p-scholarship__table--all tr:nth-child(even) td {
  background-color: #e3f3fc;
}

.p-scholarship__table-category {
  width: 15rem;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-scholarship__table-category {
    width: 18.75rem;
  }
}

.p-scholarship__table-text {
  padding-left: 2.25rem;
  border-left: 1px solid #000000;
}
@media screen and (min-width: 751px) {
  .p-scholarship__table-text {
    padding-left: 3.3125rem;
  }
}

.p-scholarship__table-text.p-scholarship__table-text--4 {
  width: 18.75rem;
}

.p-scholarship__table-text--dashed {
  border-left: 1px dashed #000000;
}

.p-scholarship__table-border {
  border-top: 1px solid #000000;
}

.p-scholarship__table-border.p-scholarship__table-border--dashed {
  border-top: 1px dashed #000000;
}

.p-scholarship__table-border td {
  padding-top: 0.9375rem;
  padding-bottom: 1.65625rem;
}
@media screen and (min-width: 751px) {
  .p-scholarship__table-border td {
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
  }
}

.p-scholarship__table--4 tr:last-child td {
  background-color: #e3f3fc;
}

.p-designated__table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}

.p-designated__list:nth-child(even) td {
  background-color: #e3f3fc;
}

.p-designated__list td {
  padding: 1.7375rem 1.875rem;
  font-size: 1.75rem;
  line-height: 1.429;
}
@media screen and (min-width: 751px) {
  .p-designated__list td {
    height: 4.375rem;
    padding: 0.3125rem 3.0625rem;
    font-size: 0.875rem;
  }
}

.p-designated__list-category {
  width: 12.5rem;
  text-align: center;
  vertical-align: top;
}
@media screen and (min-width: 751px) {
  .p-designated__list-category {
    width: 18.75rem;
    vertical-align: middle;
  }
}

.p-designated__list-text {
  border-left: 1px solid #000000;
}

.p-teacher {
  margin-top: 8.4375rem;
}
@media screen and (min-width: 751px) {
  .p-teacher {
    margin-top: 4.9375rem;
  }
}

.p-teacher__items {
  margin: 2.5rem -1.25rem 0;
}
@media screen and (min-width: 751px) {
  .p-teacher__items {
    margin: 2.375rem 0 0;
  }
}

.p-teacher__item {
  padding: 0 2.5rem 4.875rem;
  background-color: #efeaf9;
}
@media screen and (min-width: 751px) {
  .p-teacher__item {
    display: flex;
    align-items: flex-start;
    padding: 1.4375rem 1.25rem;
  }
}

.p-teacher__item:not(:first-child) {
  margin-top: 1.5625rem;
}
@media screen and (min-width: 751px) {
  .p-teacher__item:not(:first-child) {
    margin-top: 0.625rem;
  }
}

.p-teacher__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 751px) {
  .p-teacher__head {
    flex-direction: row-reverse;
    justify-content: flex-end;
    flex-shrink: 0;
  }
}

@media screen and (min-width: 751px) {
  .p-teacher__head-contents {
    margin-left: 1.125rem;
  }
}

.p-teacher__post,
.p-teacher__name-en,
.p-teacher__contents-head {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.357;
  color: #231815;
}
@media screen and (min-width: 751px) {
  .p-teacher__post,
  .p-teacher__name-en,
  .p-teacher__contents-head {
    font-size: 0.75rem;
  }
}

.p-teacher__name {
  margin-top: 1.125rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: #000000;
}
@media screen and (min-width: 751px) {
  .p-teacher__name {
    margin-top: 1.125rem;
    font-size: 1.25rem;
  }
}

.p-teacher__name-en {
  margin-top: 0.3125rem;
  line-height: 1.2;
}
@media screen and (min-width: 751px) {
  .p-teacher__name-en {
    margin-top: 0.3125rem;
  }
}

.p-teacher__img {
  width: 18.75rem;
  margin-right: -2.5rem;
}
@media screen and (min-width: 751px) {
  .p-teacher__img {
    width: 9.375rem;
    margin-right: 0;
    margin-left: -1.25rem;
  }
}

.p-teacher__img img {
  width: 100%;
  aspect-ratio: 300/375;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 751px) {
  .p-teacher__img img {
    aspect-ratio: 150/187.5;
  }
}

.p-teacher__contents {
  margin-top: 2.5rem;
}
@media screen and (min-width: 751px) {
  .p-teacher__contents {
    margin-top: 0;
    margin-left: 2.9375rem;
    padding-left: 0.625rem;
  }
}

.p-teacher__contents-head {
  position: relative;
  padding-bottom: 0.875rem;
  border-bottom: 0.125rem solid #532881;
  line-height: 1.2;
  cursor: pointer;
}
@media screen and (min-width: 751px) {
  .p-teacher__contents-head {
    padding-bottom: 0.4375rem;
    padding-left: 0.625rem;
    border-bottom: 0.0625rem solid #532881;
    cursor: unset;
  }
}

.p-teacher__contents-head::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.0625rem;
  transform: translateY(-50%) rotate(225deg);
  width: 0.79375rem;
  height: 0.79375rem;
  border-right: 0.1875rem solid #532881;
  border-bottom: 0.1875rem solid #532881;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 751px) {
  .p-teacher__contents-head::before {
    content: none;
  }
}

.p-teacher__contents.is-open .p-teacher__contents-head::before {
  transform: translateY(-50%) rotate(45deg);
}

.p-teacher__contents-body {
  margin-top: 1.25rem;
}
@media screen and (min-width: 751px) {
  .p-teacher__contents-body {
    margin-top: 0.6875rem;
  }
}

.p-teacher__contents-title {
  font-size: 1.875rem;
  line-height: 1.667;
  color: #231815;
}
@media screen and (min-width: 751px) {
  .p-teacher__contents-title {
    font-size: 0.9375rem;
  }
}

.p-teacher__contents-text {
  margin-top: 2rem;
  font-size: 1.875rem;
  line-height: 1.663;
}
@media screen and (min-width: 751px) {
  .p-teacher__contents-text {
    margin-top: 0.9375rem;
    font-size: 0.9375rem;
  }
}

.p-topic {
  position: relative;
  z-index: 2;
  margin-top: 2.3125rem;
  padding: 0;
}
@media screen and (min-width: 751px) {
  .p-topic {
    margin-top: -1.875rem;
    padding: 0 1.5625rem;
  }
}

.p-topic__btn {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0.25rem 6.25rem 0.25rem 1.9375rem;
  background-color: #d4edfa;
}
@media screen and (min-width: 751px) {
  .p-topic__btn {
    max-width: 20rem;
    margin-left: auto;
    padding: 0.625rem 2.25rem 0.625rem 0.9375rem;
  }
}

.p-topic__btn p {
  font-size: 1.875rem;
  font-weight: 500;
  color: #000000;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .p-topic__btn p {
    font-size: 0.9375rem;
  }
}

.p-topic__btn::before {
  content: "";
  position: absolute;
  top: 40%;
  right: 1.5625rem;
  transform: translateY(-50%);
  width: 0.9375rem;
  height: 0.9375rem;
  border-right: 0.25rem solid #000000;
  border-top: 0.25rem solid #000000;
  transform: rotate(45deg);
  transition: right 0.3s ease;
}
@media screen and (min-width: 751px) {
  .p-topic__btn::before {
    top: 43%;
    right: 0.8125rem;
    width: 0.5rem;
    height: 0.5rem;
    border-right: 0.125rem solid #000000;
    border-top: 0.125rem solid #000000;
  }
}

.p-topic__btn:hover {
  opacity: 1;
}

.p-topic__btn:hover::before {
  right: 1.25rem;
}
@media screen and (min-width: 751px) {
  .p-topic__btn:hover::before {
    right: 0.5rem;
    opacity: 1 !important;
  }
}

.p-topic__btn time {
  font-size: 1.5rem;
  font-weight: 300;
}
@media screen and (min-width: 751px) {
  .p-topic__btn time {
    font-size: 0.75rem;
  }
}

.p-training-flow {
  margin-top: 6.6875rem;
  margin-bottom: 5rem;
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .p-training-flow {
    margin-top: 4.5625rem;
  }
}

.p-training-flow__wrapper {
  width: 100vw;
  margin: 4.1875rem calc(50% - 50vw) 0;
  padding: 7.8125rem 0 1.25rem;
  background-color: #e3f3fc;
}
@media screen and (min-width: 751px) {
  .p-training-flow__wrapper {
    width: 100%;
    margin: 2.8125rem 0 0;
    padding: 4.25rem 3.125rem 2.6875rem;
  }
}

.p-training-flow__items {
  width: 100%;
  max-width: 37.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 751px) {
  .p-training-flow__items {
    max-width: 100%;
  }
}

.p-training-flow__item {
  position: relative;
  padding: 0 2.5rem;
  background-color: #ffffff;
  border-radius: 4.375rem 0 4.375rem 0;
}
@media screen and (min-width: 751px) {
  .p-training-flow__item {
    padding: 0;
    border-radius: 2.5rem 0 2.5rem 0;
  }
}

.p-training-flow__item:not(:first-child) {
  margin-top: 9rem;
}
@media screen and (min-width: 751px) {
  .p-training-flow__item:not(:first-child) {
    margin-top: 4.3125rem;
  }
}

@media screen and (min-width: 751px) {
  .p-training-flow__item-title-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
}

.p-training-flow__item-title {
  padding-top: 4.4375rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  color: #003570;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-training-flow__item-title {
    padding-top: 2.875rem;
    font-size: 1.4375rem;
  }
}

.p-training-flow__item-title.p-training-flow__item-title--large {
  padding-top: 3.1875rem;
  font-size: 2.875rem;
  line-height: 1.304;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 751px) {
  .p-training-flow__item-title.p-training-flow__item-title--large {
    padding-top: 2.8125rem;
    font-size: 1.4375rem;
  }
}

.p-training-flow__item-text {
  margin-top: 1.5rem;
  font-size: 1.875rem;
  font-weight: 300;
  line-height: 1.775;
  letter-spacing: 0.022em;
}
@media screen and (min-width: 751px) {
  .p-training-flow__item-text {
    margin-top: 0.8125rem;
    max-width: 31.5625rem;
    margin-inline: auto;
    font-size: 0.9375rem;
  }
}

.p-training-flow__item-img {
  width: 100%;
  max-width: 31.225rem;
  margin-inline: auto;
  margin-top: 1.125rem;
}
@media screen and (min-width: 751px) {
  .p-training-flow__item-img {
    max-width: 15.6125rem;
    margin-top: 0.0625rem;
  }
}

.p-training-flow__item-circle {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -4.0625rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 751px) {
  .p-training-flow__item-circle {
    top: -1.75rem;
  }
}

.p-training-flow__item-months {
  display: block;
  padding-bottom: 1.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0094d6;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-training-flow__item-months {
    padding-bottom: 0;
    margin-left: 0.9375rem;
    font-size: 1.25rem;
    line-height: 1;
  }
}

.p-training-flow__item-months span {
  font-size: 6.25rem;
  font-weight: 500;
}
@media screen and (min-width: 751px) {
  .p-training-flow__item-months span {
    font-size: 3.125rem;
  }
}

.p-training-flow__item-lists {
  width: 100%;
  max-width: 26.79375rem;
  margin-inline: auto;
  margin-top: 1.75rem;
}
@media screen and (min-width: 751px) {
  .p-training-flow__item-lists {
    max-width: 13.39375rem;
    margin-top: 0.875rem;
  }
}

.p-training-flow__item-list {
  padding: 0.75rem 0;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
  background-color: #36bdef;
  text-align: center;
  border-radius: 62.4375rem;
}
@media screen and (min-width: 751px) {
  .p-training-flow__item-list {
    padding: 0.375rem 0;
    font-size: 0.9375rem;
  }
}

.p-training-flow__item-list:not(:first-child) {
  margin-top: 0.875rem;
}
@media screen and (min-width: 751px) {
  .p-training-flow__item-list:not(:first-child) {
    margin-top: 0.4375rem;
  }
}

.p-training-flow__swiper.swiper {
  margin: 4.9375rem -2.5rem 0;
  padding-bottom: 7.625rem;
}
@media screen and (min-width: 751px) {
  .p-training-flow__swiper.swiper {
    margin: 1.25rem 0 0;
    padding-bottom: 3.75rem;
  }
}

.p-training-flow__swiper-slide.swiper-slide {
  width: 37.5rem;
}
@media screen and (min-width: 751px) {
  .p-training-flow__swiper-slide.swiper-slide {
    width: 16.3rem;
  }
}

.p-training-flow__swiper-slide.swiper-slide img {
  width: 100%;
}

.p-training-flow__calendar-wrapper {
  margin-top: 2.5rem;
}
@media screen and (min-width: 751px) {
  .p-training-flow__calendar-wrapper {
    margin-top: 1.25rem;
  }
}

.p-training-flow__calendar {
  margin-top: 8.25rem;
}
@media screen and (min-width: 751px) {
  .p-training-flow__calendar {
    margin-top: 2.4375rem;
  }
}

.p-training-flow__calendar-img {
  width: 100%;
}

.p-training-flow__calendar-img picture,
.p-training-flow__calendar-img img {
  width: 177.26875rem;
}
@media screen and (min-width: 751px) {
  .p-training-flow__calendar-img picture,
  .p-training-flow__calendar-img img {
    width: 100%;
  }
}

.p-training-timeline {
  margin-top: 6.5625rem;
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .p-training-timeline {
    margin-top: 5.25rem;
  }
}

.p-training-timeline__inner {
  max-width: 42.5rem;
}
@media screen and (min-width: 751px) {
  .p-training-timeline__inner {
    max-width: 59.375rem;
  }
}

.p-training-timeline__items {
  position: relative;
  margin-top: 4.0625rem;
}
@media screen and (min-width: 751px) {
  .p-training-timeline__items {
    margin-top: 2.75rem;
    padding-left: 3.1875rem;
    padding-bottom: 5.1875rem;
  }
}

.p-training-timeline__items::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 4.375rem;
  left: 2.625rem;
  width: 0.3125rem;
  height: 272.4375rem;
  background-color: #3fa9f5;
}
@media screen and (min-width: 751px) {
  .p-training-timeline__items::before {
    left: 4.5rem;
    width: 0.1875rem;
    height: 80.4375rem;
  }
}

@media screen and (min-width: 751px) {
  .p-training-timeline__items::after {
    content: "";
    position: absolute;
    z-index: -2;
    top: 0;
    left: 0;
    width: 18.75rem;
    height: 100%;
    background-color: #e3f3fc;
  }
}

.p-training-timeline__item {
  position: relative;
  padding-top: 2.5rem;
  padding-bottom: 4.21875rem;
}
@media screen and (min-width: 751px) {
  .p-training-timeline__item {
    padding-top: 2.5rem;
    padding-bottom: 0;
  }
}

.p-training-timeline__item::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100vw;
  max-width: 46.875rem;
  margin: 0 calc(50% - 50vw);
  height: 25rem;
  background-color: #e3f3fc;
}
@media screen and (min-width: 751px) {
  .p-training-timeline__item::before {
    content: none;
  }
}

.p-training-timeline__item-tag {
  display: inline-flex;
  padding: 1.28125rem;
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #ffffff;
  background-color: #0094d6;
  border-radius: 6.1875rem;
}
@media screen and (min-width: 751px) {
  .p-training-timeline__item-tag {
    padding: 0.65625rem;
    font-size: 1.125rem;
  }
}

.p-training-timeline__item-tag img {
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.75rem;
  aspect-ratio: 40/40;
}
@media screen and (min-width: 751px) {
  .p-training-timeline__item-tag img {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.4375rem;
  }
}

.p-training-timeline__item-wrapper {
  width: 31.25rem;
  margin-top: 3.625rem;
  margin-left: auto;
  margin-right: 1.25rem;
}
@media screen and (min-width: 751px) {
  .p-training-timeline__item-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 44.875rem;
    margin-top: 1.75rem;
    margin-left: 3.75rem;
  }
}

.p-training-timeline__item-img {
  width: 100%;
}
@media screen and (min-width: 751px) {
  .p-training-timeline__item-img {
    width: 15.625rem;
    flex-shrink: 0;
  }
}

.p-training-timeline__item-img {
  width: 100%;
  aspect-ratio: 500/300;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 751px) {
  .p-training-timeline__item-img {
    width: 15.625rem;
    aspect-ratio: 250/150;
  }
}

.p-training-timeline__item-body {
  margin-top: 1.625rem;
}
@media screen and (min-width: 751px) {
  .p-training-timeline__item-body {
    margin-top: 0;
    margin-left: 1.75rem;
  }
}

.p-training-timeline__item-title,
.p-training-timeline__item-text {
  font-size: 1.875rem;
  line-height: 1.836;
}
@media screen and (min-width: 751px) {
  .p-training-timeline__item-title,
  .p-training-timeline__item-text {
    font-size: 0.9375rem;
    letter-spacing: -0.03em;
  }
}

.p-training-timeline__item-title {
  font-weight: 700;
  color: #0094d6;
}

.p-training-timeline__item-text {
  color: #000000;
  text-align: justify;
}

.p-trial__swiper {
  margin-top: 3rem;
  max-width: 37.5rem;
}
@media screen and (min-width: 751px) {
  .p-trial__swiper {
    margin-top: 1.125rem;
    max-width: 62.5rem;
  }
}

.p-trial__swiper-slide {
  display: flex;
  max-width: 37.5rem;
  margin-inline: auto;
  padding: 3.8125rem 2.5rem 3rem;
  background-color: #ffffff;
  border-radius: 1.25rem;
}
@media screen and (min-width: 751px) {
  .p-trial__swiper-slide {
    max-width: 18.75rem;
    padding: 1.875rem 1.25rem 1.5625rem;
    border-radius: 0.625rem;
  }
}

.p-trial__swiper-img {
  margin-top: 1.875rem;
}
@media screen and (min-width: 751px) {
  .p-trial__swiper-img {
    margin-top: 0.9375rem;
  }
}

@media screen and (min-width: 751px) {
  .p-trial__swiper-img img {
    aspect-ratio: 260/180;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.p-trial__swiper-text {
  margin-top: 0.9375rem;
  min-height: 5.75rem;
  font-size: 1.875rem;
  line-height: 1.533;
  color: #000000;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-trial__swiper-text {
    margin-top: 0.5rem;
    min-height: 2.8125rem;
    font-size: 0.9375rem;
  }
}

.p-trial__swiper-btn.swiper-button-next,
.p-trial__swiper-btn.swiper-button-prev {
  display: inline-block;
  width: 4.375rem;
  height: 4.375rem;
  background-color: #f3c400;
  border-radius: 50%;
}
@media screen and (min-width: 751px) {
  .p-trial__swiper-btn.swiper-button-next,
  .p-trial__swiper-btn.swiper-button-prev {
    width: 2.1875rem;
    height: 2.1875rem;
  }
}

.p-trial__swiper-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 2.1875rem;
  transform: translateX(-50%);
  width: 1.625rem;
  height: 0.1875rem;
  background-color: #fff;
}
@media screen and (min-width: 751px) {
  .p-trial__swiper-btn::before {
    left: 1.09375rem;
    width: 0.8125rem;
    height: 0.125rem;
  }
}

.p-trial__swiper-btn--prev::after,
.p-trial__swiper-btn--next:after {
  content: "";
  position: absolute;
  top: 1.8125rem;
  width: 0.9375rem;
  height: 0.9375rem;
  border-right: 0.1875rem solid #fff;
  border-top: 0.1875rem solid #fff;
}
@media screen and (min-width: 751px) {
  .p-trial__swiper-btn--prev::after,
  .p-trial__swiper-btn--next:after {
    top: 0.875rem;
    width: 0.5rem;
    height: 0.5rem;
    border-right: 0.125rem solid #fff;
    border-top: 0.125rem solid #fff;
  }
}

.p-trial__swiper-btn--prev:after {
  left: 1.375rem;
  transform: rotate(225deg);
}
@media screen and (min-width: 751px) {
  .p-trial__swiper-btn--prev:after {
    left: 0.6875rem;
  }
}

.p-trial__swiper-btn--next:after {
  left: 2rem;
  transform: rotate(45deg);
}
@media screen and (min-width: 751px) {
  .p-trial__swiper-btn--next:after {
    left: 1rem;
  }
}

.p-trial {
  margin-top: 4.375rem;
  margin-bottom: 6.0625rem;
}
@media screen and (min-width: 751px) {
  .p-trial {
    margin-top: 3.9375rem;
    margin-bottom: 5.0625rem;
  }
}

.p-trial__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.375;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .p-trial__title {
    font-size: 1.875rem;
    line-height: 1.45;
  }
}

.p-trial__items {
  margin-top: 4.8125rem;
}
@media screen and (min-width: 751px) {
  .p-trial__items {
    display: flex;
    align-items: center;
    margin-top: 1.9375rem;
  }
}

.p-trial__row {
  display: flex;
  justify-content: space-between;
  gap: 1.4375rem;
}
@media screen and (min-width: 751px) {
  .p-trial__row {
    gap: 1.5625rem;
  }
}

.p-trial__row--center {
  margin-top: 3.8125rem;
  justify-content: center;
}
@media screen and (min-width: 751px) {
  .p-trial__row--center {
    margin-top: 0rem;
    margin-left: 1.5625rem;
    justify-content: space-between;
  }
}

.p-trial__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.375rem;
  min-width: 12.375rem;
  height: 12.375rem;
  font-size: 1.925rem;
  font-weight: 500;
  line-height: 1.429;
  color: #000000;
  text-align: center;
  border-top-left-radius: 1.25rem;
  border-bottom-right-radius: 1.25rem;
}
@media screen and (min-width: 751px) {
  .p-trial__item {
    width: 100%;
    min-width: 10rem;
    height: 6.25rem;
    font-size: 1rem;
    line-height: 1.375;
    border-top-left-radius: 0.625rem;
    border-bottom-right-radius: 0.625rem;
  }
}

.p-trial__item::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.375rem;
  transform: translateX(-50%);
  width: 4.375rem;
  height: 4.375rem;
  border-radius: 50%;
}
@media screen and (min-width: 751px) {
  .p-trial__item::before {
    bottom: -1.0625rem;
    width: 2.1875rem;
    height: 2.1875rem;
  }
}

.p-trial__item::after {
  content: "";
  position: absolute;
  bottom: 0.4375rem;
  transform: translateX(-50%);
  width: 1.0625rem;
  height: 1.0625rem;
  border-right: 0.25rem solid #ffffff;
  border-top: 0.25rem solid #ffffff;
  transform: rotate(135deg);
}
@media screen and (min-width: 751px) {
  .p-trial__item::after {
    bottom: -0.125rem;
    width: 0.5rem;
    height: 0.5rem;
    border-right: 0.125rem solid #ffffff;
    border-top: 0.125rem solid #ffffff;
  }
}

.p-trial__item.p-trial__item--blue {
  background-color: #e3f3fc;
}

.p-trial__item.p-trial__item--blue::before {
  background-color: #36bdef;
}

.p-trial__item.p-trial__item--green {
  background-color: #e4efea;
}

.p-trial__item.p-trial__item--green::before {
  background-color: #00896c;
}

.p-trial__item.p-trial__item--pink {
  background-color: #fcf2f7;
}

.p-trial__item.p-trial__item--pink::before {
  background-color: #eb92bb;
}

.p-trial__item.p-trial__item--yellow {
  background-color: #fdf4d6;
}

.p-trial__item.p-trial__item--yellow::before {
  background-color: #f3c400;
}

.p-trial__item.p-trial__item--purple {
  background-color: #dad1e5;
}

.p-trial__item.p-trial__item--purple::before {
  background-color: #9477ac;
}

.p-trial__point {
  margin-top: 5.5rem;
  padding: 0 1.25rem;
}
@media screen and (min-width: 751px) {
  .p-trial__point {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5.125rem;
    max-width: 37.5rem;
    margin-inline: auto;
    padding: 0;
  }
}

.p-trial__point-title {
  width: 100%;
  max-width: 22.275rem;
}
@media screen and (min-width: 751px) {
  .p-trial__point-title {
    max-width: 11.125rem;
  }
}

.p-trial__point-lists {
  margin-top: 1.25rem;
}
@media screen and (min-width: 751px) {
  .p-trial__point-lists {
    margin-top: 0.9375rem;
  }
}

.p-trial__point-list {
  position: relative;
  padding-left: 2.6875rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 2.07;
  color: #000000;
}
@media screen and (min-width: 751px) {
  .p-trial__point-list {
    padding-left: 1.375rem;
    font-size: 0.9375rem;
  }
}

.p-trial__point-list::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  transform: translateY(-50%);
  background-color: #ecc160;
  border-radius: 50%;
}
@media screen and (min-width: 751px) {
  .p-trial__point-list::before {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.p-trial__point-graph {
  width: 100%;
  max-width: 35.25rem;
  margin-inline: auto;
  margin-top: 3.3125rem;
}
@media screen and (min-width: 751px) {
  .p-trial__point-graph {
    max-width: 17.5625rem;
    margin-top: 0rem;
    margin-inline: 0;
  }
}

.p-tuition {
  margin-top: 6.75rem;
}
@media screen and (min-width: 751px) {
  .p-tuition {
    margin-top: 4.375rem;
  }
}

.p-tuition__wrapper {
  margin-top: 2.5rem;
}
@media screen and (min-width: 751px) {
  .p-tuition__wrapper {
    margin-top: 2.125rem;
  }
}

.p-tuition__contents:not(:first-child) {
  margin-top: 4.875rem;
}
@media screen and (min-width: 751px) {
  .p-tuition__contents:not(:first-child) {
    margin-top: 0;
  }
}

.p-tuition__contents-wrapper {
  margin-top: 2.5rem;
}

.p-tuition__text {
  margin-top: 2.9375rem;
  line-height: 1.833;
}
@media screen and (min-width: 751px) {
  .p-tuition__text {
    margin-top: 2.0625rem;
  }
}

.p-tuition__bottom {
  width: 100%;
  max-width: 33.125rem;
  margin-inline: auto;
  margin-top: 4.0625rem;
}
@media screen and (min-width: 751px) {
  .p-tuition__bottom {
    max-width: 50rem;
    margin-top: 1.625rem;
  }
}

.p-tuition__bottom-title {
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 2.2;
  letter-spacing: 0.1em;
  color: #003570;
  border-bottom: 1px solid #000000;
}
@media screen and (min-width: 751px) {
  .p-tuition__bottom-title {
    font-size: 1.0625rem;
    line-height: 2.2;
  }
}

.p-tuition__lists {
  margin-top: 1.25rem;
}
@media screen and (min-width: 751px) {
  .p-tuition__lists {
    margin-top: 0.75rem;
  }
}

.p-tuition__list {
  line-height: 1.91;
  letter-spacing: 0.05em;
}

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

.u-md-show {
  display: none;
}
@media screen and (min-width: 751px) {
  .u-md-show {
    display: block;
  }
}

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

.u-space-none {
  margin-left: -0.4375rem;
}

.u-space-none--all {
  margin: 0 -0.625rem;
}
/*# sourceMappingURL=style.css.map */
