@charset "UTF-8";
/* 
 * 概要: Movable Type の TOP ページ全体を制御する SCSS エントリーファイルです。
 * 主な仕様: `include` 配下の共通 SCSS を先頭で一括読み込みし、その下に TOP 専用スタイルを追記します。
 * 制限事項: 公開用には Sass コンパイル後の `style.css` を読み込む必要があります。
 */
/* 
 * 概要: TOP ページ用 SCSS の共通部品を集約するエントリーファイルです。
 * 主な仕様: 変数、リセット、ベーススタイルを定義順で一括読み込みします。
 * 制限事項: 読み込み順に依存するため、新規ファイル追加時は順序を確認してください。
 */
:root {
  --viewport-width: min(100vw, 2000px);
  --b: calc(var(--viewport-width) / 160);
  --easing1: 0.4s ease;
  --ls100: 0.1em;
}

/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
  cursor: default;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
  cursor: default;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
  cursor: default;
}

dd {
  margin-left: 0;
  cursor: default;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
  cursor: default;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* noto-sans-jp-regular - japanese_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/noto-sans-jp-v54-japanese_latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-500 - japanese_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/noto-sans-jp-v54-japanese_latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-600 - japanese_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/noto-sans-jp-v54-japanese_latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-700 - japanese_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/noto-sans-jp-v54-japanese_latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
body,
html {
  background: #F4F3F0;
  overflow-x: clip;
}
@supports not (overflow-x: clip) {
  body,
  html {
    overflow-x: hidden;
  }
}
@media screen and (min-width: 768px) {
  body,
  html {
    -ms-scroll-chaining: chained;
        overscroll-behavior: auto;
  }
}

html {
  font-size: var(--b);
}

main {
  width: 100%;
  min-height: 100vh;
  overflow-x: clip;
}
@supports not (overflow-x: clip) {
  main {
    overflow-x: hidden;
  }
}

a {
  cursor: pointer;
}

img,
svg {
  width: 100%;
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-style: italic;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}

/* コンテンツ幅
* PCの場合：幅80%、最大幅1600px
* SPの場合：幅90%
*/
.container {
  width: min(80%, 1600px);
  margin: 0 auto;
}
@media screen and (max-width: 550px) {
  .container {
    width: 90%;
  }
}

main {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

body.header-menu-open {
  overflow: hidden;
}

* {
  color: #2E2E3C;
  font-family: YakuHanJP, "IBM Plex Sans JP", sans-serif;
  font-size: max(1.6rem, 14px);
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0.1em;
}

section {
  position: relative;
  z-index: 0;
}

a > *,
button > * {
  pointer-events: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

a,
button {
  display: block;
}

span {
  display: inline-block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

span.attention {
  font-size: max(1.6rem, 14px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}

span.attention > * {
  display: block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
span.attention > * > * {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.sectionTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: max(0.5rem, 5px) max(1rem, 10px);
}
.sectionTitle h2 {
  font-family: YakuHanJP, "Marcellus", serif;
  font-size: max(7.6rem, 36px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #B8183F 20%, #2C8CA3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.sectionTitle p {
  font-size: max(2rem, 16px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.btnBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: max(1rem, 10px);
}
.btnBox .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: max(0.5rem, 5px);
     -moz-column-gap: max(0.5rem, 5px);
          column-gap: max(0.5rem, 5px);
  padding: max(1.5rem, 15px) max(2.5%, 15px);
  border-radius: max(0.5rem, 5px);
  -webkit-box-shadow: 0 4px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 0 rgba(0, 0, 0, 0.15);
  overflow: hidden;
  width: max(30rem, 200px);
  min-width: max(30rem, 200px);
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out, -webkit-box-shadow 0.3s ease-out;
  transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out, -webkit-box-shadow 0.3s ease-out;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, opacity 0.3s ease-out;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, opacity 0.3s ease-out, -webkit-transform 0.3s ease-out, -webkit-box-shadow 0.3s ease-out;
}
@media screen and (max-width: 1000px) {
  .btnBox .btn {
    width: 100%;
    padding: max(4rem, 15px) max(5%, 15px);
  }
}
.btnBox .btn__text {
  font-size: max(1.6rem, 13px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.btnBox .btn__arrow {
  width: max(1.3rem, 13px);
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.btnBox .btn--primary {
  background: #2E2E3C;
}
.btnBox .btn--primary .btn__text {
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .btnBox .btn:hover {
    -webkit-transform: translateY(-0.4rem);
            transform: translateY(-0.4rem);
    -webkit-box-shadow: 0 14px 24px rgba(0, 0, 0, 0.12), 0 4px 0 rgba(0, 0, 0, 0.15);
            box-shadow: 0 14px 24px rgba(0, 0, 0, 0.12), 0 4px 0 rgba(0, 0, 0, 0.15);
  }
  .btnBox .btn:hover::before {
    -webkit-transform: translateX(140%);
            transform: translateX(140%);
  }
  .btnBox .btn:hover .btn__arrow {
    -webkit-transform: translateX(0.6rem) scale(1.08);
            transform: translateX(0.6rem) scale(1.08);
    opacity: 0.9;
  }
}
.btnBox .btn:focus-visible {
  -webkit-transform: translateY(-0.4rem);
          transform: translateY(-0.4rem);
  -webkit-box-shadow: 0 14px 24px rgba(0, 0, 0, 0.12), 0 4px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 14px 24px rgba(0, 0, 0, 0.12), 0 4px 0 rgba(0, 0, 0, 0.15);
}
.btnBox .btn:focus-visible::before {
  -webkit-transform: translateX(140%);
          transform: translateX(140%);
}
.btnBox .btn:focus-visible .btn__text {
  -webkit-transform: translateX(0.25rem);
          transform: translateX(0.25rem);
  opacity: 0.92;
}
.btnBox .btn:focus-visible .btn__arrow {
  -webkit-transform: translateX(0.6rem) scale(1.08);
          transform: translateX(0.6rem) scale(1.08);
  opacity: 0.9;
}
.btnBox .btn:active {
  -webkit-transform: translateY(0.2rem);
          transform: translateY(0.2rem);
  -webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 0 rgba(0, 0, 0, 0.15);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  padding-right: max(7.5rem, 30px);
  background: rgba(255, 255, 255, 0.01);
  -webkit-box-shadow: 0 4px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 0 rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(30px) brightness(1) contrast(80%);
  z-index: 999999;
}
@media screen and (max-width: 1000px) {
  .header {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 2.5%;
    padding-right: 0;
  }
}
.header__logo {
  display: inline-grid;
  place-items: center;
  padding: max(3rem, 20px) max(3rem, 20px);
  background: #fff;
  -webkit-box-shadow: 0 4px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 0 rgba(0, 0, 0, 0.15);
  border-radius: 0 0 max(1rem, 10px) 0;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
@media screen and (max-width: 1000px) {
  .header__logo {
    padding: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: none;
  }
}
.header__logo img {
  width: max(12rem, 100px);
}
@media screen and (max-width: 1000px) {
  .header__logo img {
    width: max(15rem, 120px);
  }
}
.header__logo:hover img {
  opacity: 0.6;
}
.header__nav {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .header__nav {
    justify-items: end;
  }
}
.header__nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-column-gap: max(2.5rem, 10px);
     -moz-column-gap: max(2.5rem, 10px);
          column-gap: max(2.5rem, 10px);
  padding-top: max(2rem, 15px);
  margin-bottom: max(1.5rem, 10px);
}
@media screen and (max-width: 1000px) {
  .header__nav__top {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    padding-top: 0;
    margin-bottom: 0;
  }
}
.header__nav__top__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: max(2rem, 15px);
     -moz-column-gap: max(2rem, 15px);
          column-gap: max(2rem, 15px);
}
@media screen and (max-width: 1000px) {
  .header__nav__top__list {
    display: none;
  }
}
.header__nav__top__list .header__nav__top__link {
  display: grid;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: max(0.5rem, 5px);
     -moz-column-gap: max(0.5rem, 5px);
          column-gap: max(0.5rem, 5px);
}
.header__nav__top__list .header__nav__top__link__icon--access {
  width: max(1.1rem, 11px);
}
.header__nav__top__list .header__nav__top__link__icon--mail {
  width: max(1.6rem, 16px);
}
.header__nav__top__list .header__nav__top__link__icon--donation {
  width: max(1.9rem, 19px);
}
.header__nav__top__list .header__nav__top__link__text {
  font-size: max(1.4rem, 13px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
}
.header__nav__top__language {
  width: max(18rem, 130px);
  font-size: max(1.4rem, 13px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: max(0.5rem, 5px) max(4.5rem, 36px) max(0.5rem, 5px) max(2rem, 15px);
  background-color: rgba(46, 46, 60, 0.05);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23333' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right max(1.5rem, 12px) center;
  background-size: max(1rem, 10px) auto;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
@media screen and (max-width: 1000px) {
  .header__nav__top__language {
    width: 170px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 550px) {
  .header__nav__top__language {
    display: none;
  }
}
.header__nav__top__search {
  position: relative;
  width: max(18rem, 130px);
}
@media screen and (max-width: 1000px) {
  .header__nav__top__search {
    display: none;
  }
}
.header__nav__top__search form {
  position: relative;
  width: 100%;
}
.header__nav__top__search input {
  width: 100%;
  height: 100%;
  padding: max(0.5rem, 5px) max(4.5rem, 36px) max(0.5rem, 5px) max(2rem, 15px);
  background-color: rgba(46, 46, 60, 0.05);
  font-size: max(1.4rem, 13px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  vertical-align: baseline;
}
.header__nav__top__search input::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}
.header__nav__top__search input::-moz-placeholder {
  color: inherit;
  opacity: 1;
}
.header__nav__top__search input:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}
.header__nav__top__search input::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}
.header__nav__top__search input::placeholder {
  color: inherit;
  opacity: 1;
}
.header__nav__top__search__icon {
  position: absolute;
  top: 50%;
  right: max(1.5rem, 12px);
  -webkit-transform: translateY(-45%);
          transform: translateY(-45%);
  display: grid;
  place-items: center;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.header__nav__top__search__icon img {
  display: block;
  width: max(1.5rem, 14px);
}
.header__nav__top__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: max(1.8rem, 10px);
}
@media screen and (max-width: 550px) {
  .header__nav__top__sns {
    display: none;
  }
}
.header__nav__top__sns__link {
  width: max(2.2rem, 22px);
}
@media screen and (max-width: 1000px) {
  .header__nav__top__sns__link {
    width: 25px;
  }
}
.header__nav__menu {
  display: none;
}
@media screen and (max-width: 1000px) {
  .header__nav__menu {
    position: relative;
    display: grid;
    -ms-flex-line-pack: center;
        align-content: center;
    row-gap: 12%;
    width: 80px;
    height: auto;
    aspect-ratio: 1/1;
    background: #B8183F;
    cursor: pointer;
    z-index: 2;
  }
}
.header__nav__menu__line {
  width: 45%;
  height: max(0.2rem, 1px);
  margin: 0 auto;
  background: #fff;
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.header__nav__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-column-gap: max(8rem, 50px);
     -moz-column-gap: max(8rem, 50px);
          column-gap: max(8rem, 50px);
  padding-bottom: max(3rem, 20px);
}
@media screen and (max-width: 1000px) {
  .header__nav__bottom {
    display: none;
  }
}
.header__nav__bottom__item[data-mega-open=true] .header__nav__bottom__link, .header__nav__bottom__item:focus-within .header__nav__bottom__link {
  color: #B8183F;
}
.header__nav__bottom__link {
  font-size: max(1.6rem, 13px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: var(--ls100);
}
.header__nav__mega {
  position: absolute;
  top: 100%;
  right: 0;
  width: max(90%, 800px);
  padding: max(3.5rem, 20px);
  display: block;
  border: 1px solid rgba(46, 46, 60, 0.1);
  border-radius: max(0.5rem, 5px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)), linear-gradient(135deg, rgba(184, 24, 63, 0.08), rgba(44, 140, 163, 0.04));
  -webkit-box-shadow: 0 4px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 0px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(1.2rem);
          transform: translateY(1.2rem);
  -webkit-transition: opacity 0.3s ease-out, visibility 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out, transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out, transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.header__nav__mega[data-mega-open=true] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.header__nav__mega::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top right, rgba(184, 24, 63, 0.16), transparent 30%), radial-gradient(circle at bottom left, rgba(44, 140, 163, 0.1), transparent 35%);
  pointer-events: none;
}
.header__nav__mega::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: max(3rem, 20px);
}
.header__nav__mega__summary, .header__nav__mega__content, .header__nav__mega__aside {
  position: relative;
  z-index: 1;
}
.header__nav__mega__panel {
  display: none;
  grid-template-columns: minmax(24rem, 28rem) minmax(0, 1fr) minmax(22rem, 24rem);
  gap: max(1.5rem, 5px);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.header__nav__mega__panel[data-mega-open=true] {
  display: grid;
}
.header__nav__mega__summary {
  display: grid;
  -ms-flex-line-pack: start;
      align-content: start;
  gap: max(1.4rem, 10px);
  padding: max(2.5rem, 10px);
  border-radius: max(0.5rem, 5px);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(46, 46, 60, 0.04)), to(rgba(46, 46, 60, 0.02)));
  background: linear-gradient(180deg, rgba(46, 46, 60, 0.04), rgba(46, 46, 60, 0.02));
}
.header__nav__mega__summary__eyebrow {
  font-family: "Marcellus", serif;
  font-size: max(3rem, 24px);
  line-height: 1;
  letter-spacing: 0.08em;
  color: rgba(184, 24, 63, 0.75);
}
.header__nav__mega__summary__title {
  font-size: max(2.8rem, 22px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
.header__nav__mega__summary__text {
  font-size: max(1.4rem, 12px);
  line-height: 2;
  letter-spacing: 0.1em;
}
.header__nav__mega__summary__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: max(0.8rem, 6px);
  margin-top: max(0.8rem, 6px);
  color: #B8183F;
  font-size: max(1.3rem, 11px);
  font-weight: 600;
  letter-spacing: 0.12em;
  -webkit-transition: color 0.3s ease-out, opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: color 0.3s ease-out, opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: color 0.3s ease-out, transform 0.3s ease-out, opacity 0.3s ease-out;
  transition: color 0.3s ease-out, transform 0.3s ease-out, opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.header__nav__mega__summary__link:hover {
  -webkit-transform: translateX(0.4rem);
          transform: translateX(0.4rem);
  opacity: 0.8;
}
.header__nav__mega__summary__link:hover::after {
  -webkit-transform: translateX(0.3rem) rotate(45deg);
          transform: translateX(0.3rem) rotate(45deg);
}
.header__nav__mega__summary__link::after {
  content: "";
  width: max(1.1rem, 8px);
  height: max(1.1rem, 8px);
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.header__nav__mega__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: max(1.5rem, 5px);
}
.header__nav__mega__group {
  padding: max(2.5rem, 10px);
  border-radius: max(0.5rem, 5px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(46, 46, 60, 0.08);
}
.header__nav__mega__group__title {
  margin-bottom: max(1.4rem, 10px);
  font-size: max(1.5rem, 13px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.header__nav__mega__list {
  display: grid;
  gap: max(0.8rem, 6px);
}
.header__nav__mega__list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: max(0.8rem, 6px);
  font-size: max(1.4rem, 12px);
  line-height: 1.8;
  letter-spacing: 0.1em;
  -webkit-transition: color 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: color 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: color 0.3s ease-out, transform 0.3s ease-out;
  transition: color 0.3s ease-out, transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.header__nav__mega__list li a:hover {
  color: #B8183F;
  -webkit-transform: translateX(0.4rem);
          transform: translateX(0.4rem);
}
.header__nav__mega__list li a:hover::before {
  -webkit-transform: scale(1.35);
          transform: scale(1.35);
  -webkit-box-shadow: 0 0 0 max(0.4rem, 3px) rgba(184, 24, 63, 0.12);
          box-shadow: 0 0 0 max(0.4rem, 3px) rgba(184, 24, 63, 0.12);
}
.header__nav__mega__list li a::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: max(0.7rem, 6px);
  height: max(0.7rem, 6px);
  margin-top: 0.7em;
  border-radius: 999px;
  background: linear-gradient(135deg, #B8183F, #2C8CA3);
  -webkit-transition: -webkit-transform 0.3s ease-out, -webkit-box-shadow 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out, -webkit-box-shadow 0.3s ease-out;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, -webkit-transform 0.3s ease-out, -webkit-box-shadow 0.3s ease-out;
}
.header__nav__mega__aside {
  padding: max(2.5rem, 10px);
  border-radius: max(0.5rem, 5px);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(184, 24, 63, 0.06)), to(rgba(44, 140, 163, 0.03)));
  background: linear-gradient(180deg, rgba(184, 24, 63, 0.06), rgba(44, 140, 163, 0.03));
}
.header__nav__mega__aside__title {
  margin-bottom: max(1.4rem, 10px);
  font-size: max(1.5rem, 13px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.header__nav__mega__aside__list {
  display: grid;
  gap: max(1rem, 8px);
}
.header__nav__mega__aside__list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: max(1rem, 8px);
  padding: max(1.5rem, 10px) max(1.5rem, 10px);
  border-radius: max(0.5rem, 5px);
  background: rgba(255, 255, 255, 0.88);
  font-size: max(1.3rem, 12px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.1em;
  -webkit-transition: background-color 0.3s ease-out, color 0.3s ease-out, -webkit-transform 0.3s ease-out, -webkit-box-shadow 0.3s ease-out;
  transition: background-color 0.3s ease-out, color 0.3s ease-out, -webkit-transform 0.3s ease-out, -webkit-box-shadow 0.3s ease-out;
  transition: transform 0.3s ease-out, background-color 0.3s ease-out, box-shadow 0.3s ease-out, color 0.3s ease-out;
  transition: transform 0.3s ease-out, background-color 0.3s ease-out, box-shadow 0.3s ease-out, color 0.3s ease-out, -webkit-transform 0.3s ease-out, -webkit-box-shadow 0.3s ease-out;
}
.header__nav__mega__aside__list li a:hover {
  color: #B8183F;
  background: white;
  -webkit-transform: translateY(-0.3rem);
          transform: translateY(-0.3rem);
  -webkit-box-shadow: 0 1rem 2rem rgba(184, 24, 63, 0.12);
          box-shadow: 0 1rem 2rem rgba(184, 24, 63, 0.12);
}
.header__nav__mega__aside__list li a:hover::after {
  -webkit-transform: translateX(0.3rem) rotate(45deg);
          transform: translateX(0.3rem) rotate(45deg);
}
.header__nav__mega__aside__list li a::after {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: max(0.9rem, 7px);
  height: max(0.9rem, 7px);
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.header[data-menu-open=true] .header__nav__menu {
  row-gap: 0;
}
.header[data-menu-open=true] .header__nav__menu__line:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header[data-menu-open=true] .header__nav__menu__line:nth-child(2) {
  opacity: 0;
}
.header[data-menu-open=true] .header__nav__menu__line:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.header[data-menu-open=true] + .header__nav__drawer {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.header__nav__drawer {
  display: none;
}
@media screen and (max-width: 1000px) {
  .header__nav__drawer {
    position: fixed;
    inset: 0;
    display: block;
    padding: max(10rem, 84px) max(2rem, 16px) max(3rem, 24px);
    background: rgba(255, 255, 255, 0.96);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
    overflow-y: auto;
    z-index: 999998;
  }
}
.header__nav__drawer__inner {
  display: grid;
  width: 100%;
  gap: max(2rem, 16px);
}
.header__nav__drawer__search {
  position: relative;
}
.header__nav__drawer__search form {
  position: relative;
  width: 100%;
}
.header__nav__drawer__search input {
  width: 100%;
  padding: max(1.2rem, 10px) max(4.8rem, 38px) max(1.2rem, 10px) max(2rem, 16px);
  border: none;
  border-radius: max(0.5rem, 5px);
  background: rgba(46, 46, 60, 0.05);
  font-size: max(1.5rem, 14px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.header__nav__drawer__search input::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}
.header__nav__drawer__search input::-moz-placeholder {
  color: inherit;
  opacity: 1;
}
.header__nav__drawer__search input:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}
.header__nav__drawer__search input::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}
.header__nav__drawer__search input::placeholder {
  color: inherit;
  opacity: 1;
}
.header__nav__drawer__search__icon {
  position: absolute;
  top: 50%;
  right: max(1.6rem, 12px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: grid;
  place-items: center;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.header__nav__drawer__search__icon img {
  display: block;
  width: max(1.8rem, 14px);
}
.header__nav__drawer__sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: max(1.4rem, 12px);
}
@media screen and (max-width: 550px) {
  .header__nav__drawer__sections {
    grid-template-columns: 1fr;
  }
}
.header__nav__drawer__section {
  display: grid;
  gap: max(1.4rem, 10px);
  padding: max(2rem, 16px);
  border-radius: max(0.5rem, 5px);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(46, 46, 60, 0.08);
  -webkit-box-shadow: 0 18px 36px rgba(0, 0, 0, 0.06);
          box-shadow: 0 18px 36px rgba(0, 0, 0, 0.06);
}
.header__nav__drawer__section__head {
  display: grid;
  gap: max(0.4rem, 2px);
}
.header__nav__drawer__section__eyebrow {
  font-family: "Marcellus", serif;
  font-size: max(2.2rem, 18px);
  line-height: 1;
  letter-spacing: 0.08em;
  color: rgba(184, 24, 63, 0.8);
}
.header__nav__drawer__section__title {
  font-size: max(1.9rem, 16px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.header__nav__drawer__section__links {
  display: grid;
  gap: max(0.8rem, 6px);
}
.header__nav__drawer__section__links li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: max(1rem, 8px);
  padding: max(1.2rem, 10px) max(1.4rem, 12px);
  border-radius: max(0.5rem, 5px);
  background: rgba(46, 46, 60, 0.05);
  font-size: max(1.4rem, 12px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.header__nav__drawer__section__links li a::after {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: max(0.9rem, 7px);
  height: max(0.9rem, 7px);
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header__nav__drawer__utility, .header__nav__drawer__sns {
  display: grid;
  gap: max(1rem, 8px);
}
.header__nav__drawer__utility {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media screen and (max-width: 550px) {
  .header__nav__drawer__utility {
    grid-template-columns: 1fr;
  }
}
.header__nav__drawer__utility li a {
  display: grid;
  place-items: center;
  min-height: max(6rem, 48px);
  padding: max(1.4rem, 12px) max(1.6rem, 14px);
  border-radius: max(0.5rem, 5px);
  background: linear-gradient(135deg, rgba(46, 46, 60, 0.08), rgba(46, 46, 60, 0.04));
  font-size: max(1.4rem, 12px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
}
.header__nav__drawer__blockTitle {
  margin-bottom: max(1.2rem, 10px);
  font-size: max(1.5rem, 13px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.header__nav__drawer__audience, .header__nav__drawer__campus {
  padding: max(2rem, 16px);
  border-radius: max(0.5rem, 5px);
  background: rgba(46, 46, 60, 0.04);
}
.header__nav__drawer__audience__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: max(1rem, 8px);
}
@media screen and (max-width: 550px) {
  .header__nav__drawer__audience__list {
    grid-template-columns: 1fr;
  }
}
.header__nav__drawer__audience__list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: max(1rem, 8px);
  padding: max(1.3rem, 10px) max(1.5rem, 12px);
  border-radius: max(0.5rem, 5px);
  background: #fff;
  font-size: max(1.3rem, 12px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.header__nav__drawer__audience__list li a::after {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: max(0.9rem, 7px);
  height: max(0.9rem, 7px);
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header__nav__drawer__campus__list {
  display: grid;
  gap: max(1rem, 8px);
}
.header__nav__drawer__campus__item {
  padding: max(1.6rem, 12px);
  border-radius: max(0.5rem, 5px);
  background: #fff;
}
.header__nav__drawer__campus__name {
  margin-bottom: max(0.8rem, 6px);
  font-size: max(1.5rem, 13px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.header__nav__drawer__campus__address {
  font-size: max(1.3rem, 12px);
  font-style: normal;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
.header__nav__drawer__campus__tel {
  display: inline-block;
  margin-top: max(1rem, 8px);
  color: #B8183F;
  font-size: max(1.3rem, 12px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.header__nav__drawer__language {
  display: grid;
  gap: max(0.8rem, 6px);
  padding: max(1.6rem, 12px);
  border-radius: max(0.5rem, 5px);
  background: rgba(46, 46, 60, 0.05);
}
.header__nav__drawer__language select {
  width: 100%;
  padding: max(1.2rem, 10px) max(4.8rem, 38px) max(1.2rem, 10px) max(1.6rem, 12px);
  border: none;
  border-radius: max(0.5rem, 5px);
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23333' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right max(1.5rem, 12px) center;
  background-size: max(1rem, 10px) auto;
  font-size: max(1.4rem, 13px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.header__nav__drawer__label {
  font-size: max(1.3rem, 12px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.header__nav__drawer__sns {
  grid-template-columns: repeat(3, max(5.4rem, 42px));
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.header__nav__drawer__sns__link {
  display: grid;
  place-items: center;
  width: max(5.4rem, 42px);
  aspect-ratio: 1/1;
  border-radius: 999px;
  background: rgba(46, 46, 60, 0.05);
}
.header__nav__drawer__sns__link img {
  width: max(2.2rem, 18px);
}

.footer__main {
  background: #2E2E3C;
}
.footer__main .footer__wrapper {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: max(2.5rem, 20px);
  padding-top: max(12.5rem, 50px);
  padding-bottom: max(12.5rem, 50px);
}
@media screen and (max-width: 1300px) {
  .footer__main .footer__wrapper {
    grid-template-columns: 1fr;
  }
}
.footer__main .footer__info .footer__logo {
  width: max(27.5rem, 250px);
  height: auto;
  margin-bottom: max(5rem, 30px);
}
@media screen and (max-width: 550px) {
  .footer__main .footer__info .footer__logo {
    width: 70%;
  }
}
.footer__main .footer__info .footer__logo:hover {
  opacity: 0.6;
}
.footer__main .footer__info__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: max(5.5rem, 30px);
}
@media screen and (max-width: 1300px) {
  .footer__main .footer__info__meta {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: max(8rem, 40px);
  }
}
.footer__main .footer__info .footer__info__inner h3 {
  margin-bottom: max(1rem, 10px);
  color: #fff;
  font-size: max(1.9rem, 16px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.footer__main .footer__info .footer__info__inner address,
.footer__main .footer__info .footer__info__inner .footer__info__tel,
.footer__main .footer__info .footer__info__inner .footer__info__fax {
  color: #fff;
  font-size: max(1.6rem, 13px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.footer__main .footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: max(2rem, 10px);
}
@media screen and (min-width: 1600px) {
  .footer__main .footer__nav {
    gap: max(3.5rem, 10px);
  }
}
@media screen and (max-width: 1300px) {
  .footer__main .footer__nav {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 1000px) {
  .footer__main .footer__nav {
    display: grid;
    gap: 40px max(2rem, 20px);
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .footer__main .footer__nav {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 1000px) {
  .footer__main .footer__nav__list {
    display: grid;
    gap: 5px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 550px) {
  .footer__main .footer__nav__list {
    gap: 5px 10px;
  }
}
.footer__main .footer__nav__list:not(:first-of-type) {
  margin-top: max(3.5rem, 20px);
}
@media screen and (max-width: 1000px) {
  .footer__main .footer__nav__list:not(:first-of-type) {
    margin-top: max(10rem, 30px);
  }
}
.footer__main .footer__nav__list .footer__nav__item {
  color: #fff;
  line-height: 1;
}
.footer__main .footer__nav__list .footer__nav__item--primary .footer__nav__link {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: max(1rem, 10px);
  grid-template-columns: max(0.7rem, 7px) 1fr;
  margin-bottom: max(0.5rem, 5px);
}
.footer__main .footer__nav__list .footer__nav__item--primary .footer__nav__link__arrow {
  width: 100%;
  height: auto;
  -webkit-transform: translateY(-2.5%);
          transform: translateY(-2.5%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.footer__main .footer__nav__list .footer__nav__item--primary .footer__nav__link__arrow img {
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__main .footer__nav__list .footer__nav__item--primary .footer__nav__link__text {
  color: #fff;
  font-size: max(1.8rem, 15px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.footer__main .footer__nav__list .footer__nav__item--primary .footer__nav__link:hover {
  opacity: 0.6;
}
.footer__main .footer__nav__list .footer__nav__item--primary .footer__nav__link:hover .footer__nav__link__arrow {
  -webkit-transform: translate(5px, -2.5%);
          transform: translate(5px, -2.5%);
}
.footer__main .footer__nav__list .footer__nav__item--secondary .footer__nav__link {
  display: inline-block;
  color: #fff;
  font-size: max(1.4rem, 12px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.1em;
  padding: max(0.5rem, 5px) 0;
}
.footer__main .footer__nav__list .footer__nav__item--secondary .footer__nav__link:hover {
  opacity: 0.6;
}
.footer__main .footer__nav__list .footer__nav__item--primary, .footer__main .footer__nav__list .footer__nav__item--tertiary {
  grid-column: 1/3;
}
.footer__main .footer__nav__list .footer__nav__item--tertiary .footer__nav__link {
  pointer-events: none;
  display: inline-block;
  color: #fff;
  font-size: max(1.8rem, 15px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: max(0.5rem, 5px) 0;
}
.footer__copy {
  padding: max(2rem, 15px) 5%;
  text-align: center;
  background: #fff;
}
.footer__copy p {
  font-family: YakuHanJP, "Inter", sans-serif;
  font-size: max(1.2rem, 11px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.sideBanner {
  position: fixed;
  display: grid;
  top: 50%;
  right: 0;
  gap: max(1rem, 5px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transition: opacity 0.35s ease, visibility 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, visibility 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease, -webkit-transform 0.35s ease;
  will-change: opacity, transform;
  z-index: 9999;
}
.sideBanner.isFloatingBannerHidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translate3d(2rem, -50%, 0);
          transform: translate3d(2rem, -50%, 0);
}
@media screen and (max-width: 1000px) {
  .sideBanner {
    top: unset;
    bottom: 0;
    left: 1%;
    right: 1%;
    -webkit-transform: translate(0);
            transform: translate(0);
    gap: 1%;
    grid-template-columns: repeat(3, 1fr);
  }
  .sideBanner.isFloatingBannerHidden {
    -webkit-transform: translate3d(0, 2rem, 0);
            transform: translate3d(0, 2rem, 0);
  }
}
.sideBanner__link {
  display: grid;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: auto;
  height: auto;
  min-width: max(11rem, 90px);
  aspect-ratio: 1/1;
  gap: max(1rem, 10px);
  padding: max(2rem, 15px) 5%;
  border-radius: max(0.5rem, 5px) 0 0 max(0.5rem, 5px);
  overflow: hidden;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -webkit-transition: opacity 0.3s ease-out, -webkit-box-shadow 0.3s ease-out;
  transition: opacity 0.3s ease-out, -webkit-box-shadow 0.3s ease-out;
  transition: box-shadow 0.3s ease-out, opacity 0.3s ease-out;
  transition: box-shadow 0.3s ease-out, opacity 0.3s ease-out, -webkit-box-shadow 0.3s ease-out;
}
@media screen and (max-width: 1000px) {
  .sideBanner__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    aspect-ratio: unset;
    border-radius: max(0.5rem, 5px) max(0.5rem, 5px) 0 0;
  }
}
.sideBanner__link--primary {
  background: #B8183F;
}
@media screen and (max-width: 1000px) {
  .sideBanner__link--primary {
    display: none;
  }
}
.sideBanner__link--secondary {
  background: #2C8CA3;
}
@media screen and (max-width: 1000px) {
  .sideBanner__link--secondary {
    background: #26376F;
  }
}
.sideBanner__link__icon {
  margin: 0 auto;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.sideBanner__link__icon img {
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
@media screen and (max-width: 1000px) {
  .sideBanner__link__icon {
    margin: 0;
  }
}
.sideBanner__link__icon--exam, .sideBanner__link__icon--student {
  width: max(5.5rem, 50px);
}
.sideBanner__link__icon--parents {
  width: max(3.7rem, 34px);
}
.sideBanner__link__icon--request {
  width: max(3.5rem, 30px);
}
@media screen and (max-width: 1000px) {
  .sideBanner__link__icon--request {
    width: max(6rem, 12px);
  }
}
.sideBanner__link__icon--pamphlet {
  width: max(4.4rem, 40px);
}
@media screen and (max-width: 1000px) {
  .sideBanner__link__icon--pamphlet {
    width: max(7.5rem, 17px);
  }
}
.sideBanner__link__icon--recruit {
  width: max(4.7rem, 42px);
}
@media screen and (max-width: 1000px) {
  .sideBanner__link__icon--recruit {
    width: max(8rem, 16px);
  }
}
.sideBanner__link__text {
  color: #fff;
  font-size: max(1.4rem, 12px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
@media screen and (max-width: 1000px) {
  .sideBanner__link__text {
    font-size: max(3.4rem, 12px);
  }
}
@media (hover: hover) and (pointer: fine) {
  .sideBanner__link:hover {
    -webkit-box-shadow: -10px 10px 18px rgba(0, 0, 0, 0.12);
            box-shadow: -10px 10px 18px rgba(0, 0, 0, 0.12);
  }
  .sideBanner__link:hover .sideBanner__link__icon {
    -webkit-transform: translateY(-0.2rem);
            transform: translateY(-0.2rem);
  }
  .sideBanner__link:hover .sideBanner__link__icon img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    opacity: 0.96;
  }
  .sideBanner__link:hover .sideBanner__link__text {
    -webkit-transform: translateY(-0.1rem);
            transform: translateY(-0.1rem);
    opacity: 0.92;
  }
}
.sideBanner__link:focus-visible {
  -webkit-transform: translateX(-0.5rem);
          transform: translateX(-0.5rem);
  -webkit-box-shadow: -10px 10px 18px rgba(0, 0, 0, 0.12);
          box-shadow: -10px 10px 18px rgba(0, 0, 0, 0.12);
}
.sideBanner__link:focus-visible .sideBanner__link__icon {
  -webkit-transform: translateY(-0.2rem);
          transform: translateY(-0.2rem);
}
.sideBanner__link:focus-visible .sideBanner__link__icon img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  opacity: 0.96;
}
.sideBanner__link:focus-visible .sideBanner__link__text {
  -webkit-transform: translateY(-0.1rem);
          transform: translateY(-0.1rem);
  opacity: 0.92;
}
.sideBanner__link:active {
  -webkit-transform: translateX(-0.2rem);
          transform: translateX(-0.2rem);
  -webkit-box-shadow: -4px 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: -4px 4px 10px rgba(0, 0, 0, 0.1);
}

.ocp {
  position: fixed;
  left: max(2.5rem, 20px);
  bottom: max(2.5rem, 20px);
  background: #fff;
  border: max(0.2rem, 2px) solid #fff;
  border-radius: max(1rem, 10px);
  -webkit-box-shadow: 0 4px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 0 rgba(0, 0, 0, 0.15);
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: opacity 0.35s ease, visibility 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, visibility 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease, -webkit-transform 0.35s ease;
  will-change: opacity, transform;
  z-index: 9999;
}
.ocp.isFloatingBannerHidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translate3d(0, 2rem, 0);
          transform: translate3d(0, 2rem, 0);
}
@media screen and (max-width: 1000px) {
  .ocp {
    display: none;
  }
}
.ocp__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.ocp__link:hover {
  opacity: 0.6;
}
.ocp__bg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: max(24rem, 180px);
}
.ocp__content {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
.ocp__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 30%;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, from(#fff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.ocp__content__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: max(1rem, 5px);
  padding: max(2rem, 15px) max(1.8rem, 15px);
  background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(80%, #fff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, #fff, #fff 80%, rgba(255, 255, 255, 0));
}
.ocp__content__text p {
  font-size: max(2rem, 16px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
.ocp__content__text p b {
  color: #B8183F;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.ocp__content__text__plan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: max(0.5rem, 5px);
}
.ocp__content__text__plan .supplement {
  color: #fff;
  font-size: max(1rem, 9px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  padding: max(1rem, 10px) max(0.5rem, 5px);
  background: #B8183F;
  border-radius: max(0.5rem, 5px);
  overflow: hidden;
}
.ocp__content__text__plan time {
  font-size: max(1.8rem, 15px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
}
.ocp__content__text__plan time .month,
.ocp__content__text__plan time .day {
  color: #B8183F;
  font-family: YakuHanJP, "Inter", sans-serif;
  font-size: 2.6em;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}
.ocp__content__arrow {
  display: grid;
  place-items: center;
  padding: 0 max(1rem, 10px);
  background: -webkit-gradient(linear, left top, left bottom, from(#B8183F), color-stop(30%, rgba(184, 24, 63, 0.35)), to(#B8183F));
  background: linear-gradient(to bottom, #B8183F, rgba(184, 24, 63, 0.35) 30%, #B8183F);
}
.ocp__content__arrow img {
  width: max(1.35rem, 13.5px);
  height: auto;
}

.hero {
  position: relative;
}
.hero__bg {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  min-height: 700px;
}
.hero__bg__video {
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.hero__bg__video--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .hero__bg .hero__bg__video--pc {
    display: none;
  }
  .hero__bg .hero__bg__video--sp {
    display: block;
  }
}

.news__wrapper {
  padding-top: max(12rem, 80px);
  padding-bottom: max(15rem, 100px);
}
.news .sectionTitle {
  margin-bottom: max(6rem, 40px);
}
.news__content .news__category {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: max(0.5rem, 5px) max(0.7rem, 5px);
  width: 100%;
  margin-bottom: max(5rem, 30px);
}
@media screen and (max-width: 768px) {
  .news__content .news__category {
    grid-template-columns: repeat(2, 1fr);
  }
}
.news__content .news__category li {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .news__content .news__category li.all {
    grid-column: 1/3;
  }
}
.news__content .news__category li a {
  width: 100%;
  padding: max(1rem, 10px) 5%;
  background: #e5e4de;
  border-radius: max(0.5rem, 5px);
  overflow: hidden;
  color: rgba(0, 0, 0, 0.2);
  font-size: max(1.6rem, 14px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.news__content .news__category li a.on {
  color: #fff;
  background: #B8183F;
}
.news__content .news__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: max(3rem, 20px) max(2rem, 10px);
  margin-bottom: max(9rem, 60px);
}
.news__content .news__list[hidden] {
  display: none !important;
}
@media screen and (max-width: 1000px) {
  .news__content .news__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 550px) {
  .news__content .news__list {
    gap: 20px 5px;
  }
}
.news__content .news__list__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
}
.news__content .news__list__item[hidden] {
  display: none !important;
}
.news__content .news__list__item a {
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  padding: max(2.5rem, 15px);
  background: #fff;
  border-radius: max(1rem, 10px);
  -webkit-box-shadow: 0 4px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
@media screen and (max-width: 550px) {
  .news__content .news__list__item a {
    padding: 5px;
  }
}
.news__content .news__list__item a:hover {
  opacity: 0.6;
}
.news__content .news__list__item a.toppin .news__list__item__thumbnail__pin {
  opacity: 1 !important;
}
.news__content .news__list__item__thumbnail {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 89/60;
}
.news__content .news__list__item__thumbnail > img {
  width: 100%;
  height: 100%;
}
.news__content .news__list__item__thumbnail__pin {
  position: absolute;
  top: 0;
  right: 0;
  width: 10%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  opacity: 0;
  pointer-events: none;
}
.news__content .news__list__item__meta {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: max(0.5rem, 5px) max(1rem, 10px);
  margin-top: max(2rem, 15px);
  padding-bottom: max(1rem, 10px);
  margin-bottom: max(1rem, 10px);
}
@media screen and (max-width: 550px) {
  .news__content .news__list__item__meta {
    padding-left: 5%;
    padding-right: 5%;
  }
}
.news__content .news__list__item__meta::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: max(0.1rem, 1px);
  background-image: linear-gradient(to right, #e5e5e5 4px, transparent 3px);
  background-size: 7px max(0.1rem, 1px);
  background-repeat: repeat-x;
}
.news__content .news__list__item__meta__time {
  font-family: YakuHanJP, "Inter", sans-serif;
  font-size: max(1.4rem, 12px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
}
.news__content .news__list__item__meta__tag {
  display: grid;
  place-items: center;
  padding: max(1rem, 7px) max(1.5rem, 10px);
  background: #B8183F;
  border-radius: max(0.5rem, 5px);
  color: #fff;
  font-size: max(1.2rem, 12px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 550px) {
  .news__content .news__list__item__meta__tag {
    padding: 5px 10px;
  }
}
.news__content .news__list__item__title {
  padding-bottom: max(5.5rem, 40px);
  font-size: max(1.6rem, 12px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 550px) {
  .news__content .news__list__item__title {
    padding-left: 5%;
    padding-right: 5%;
  }
}
.news__content .news__list__item__arrow {
  position: absolute;
  display: grid;
  place-items: center;
  right: 0;
  bottom: 0;
  width: max(5rem, 30px);
  height: auto;
  aspect-ratio: 1/1;
  background: #2E2E3C;
  border-radius: max(0.5rem, 5px) 0 max(1rem, 10px) 0;
}
.news__content .news__list__item__arrow svg {
  width: 35%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.ability {
  position: relative;
  background: #e5e4de;
  overflow: hidden;
}
.ability__bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  z-index: -1;
}
.ability__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background: linear-gradient(135deg, #B8183F 50%, #2C8CA3);
  z-index: -1;
}
.ability__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: -webkit-gradient(linear, left top, left bottom, from(#e5e4de), to(rgba(229, 228, 222, 0)));
  background: linear-gradient(to bottom, #e5e4de, rgba(229, 228, 222, 0));
}
.ability__bg img {
  position: relative;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.15;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  mix-blend-mode: hard-light;
}
.ability__wrapper {
  padding-top: max(15rem, 100px);
  padding-bottom: max(18rem, 100px);
}
.ability__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: max(3rem, 25px) max(2.5rem, 20px);
  margin-top: max(5rem, 40px);
}
@media screen and (max-width: 1000px) {
  .ability__content {
    grid-template-columns: 1fr;
  }
}
.ability__content__item {
  position: relative;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: max(27rem, 180px) 1fr;
  -webkit-column-gap: max(4rem, 20px);
     -moz-column-gap: max(4rem, 20px);
          column-gap: max(4rem, 20px);
  width: 100%;
  height: 100%;
  padding: max(2.5rem, 20px);
  background: #fff;
  border-radius: max(0.5rem, 5px);
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .ability__content__item {
    padding: max(6rem, 10px);
    grid-template-columns: max(50rem, 150px) 1fr;
  }
}
.ability__content__item .imageBox {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.ability__content__item .imageBox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  -webkit-transform: scaleX(0.55);
          transform: scaleX(0.55);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.ability__content__item .imageBox--business::before {
  background: -webkit-gradient(linear, left top, right top, from(#2C8CA3), to(rgba(44, 140, 163, 0)));
  background: linear-gradient(to right, #2C8CA3, rgba(44, 140, 163, 0));
}
.ability__content__item .imageBox--rehabilitation::before {
  background: -webkit-gradient(linear, left top, right top, from(#B8183F), to(rgba(184, 24, 63, 0)));
  background: linear-gradient(to right, #B8183F, rgba(184, 24, 63, 0));
}
.ability__content__item .imageBox--international::before {
  background: -webkit-gradient(linear, left top, right top, from(#2C8CA3), to(rgba(44, 140, 163, 0)));
  background: linear-gradient(to right, #2C8CA3, rgba(44, 140, 163, 0));
}
.ability__content__item .imageBox--overseas::before {
  background: -webkit-gradient(linear, left top, right top, from(#765988), to(rgba(118, 89, 136, 0)));
  background: linear-gradient(to right, #765988, rgba(118, 89, 136, 0));
}
.ability__content__item .imageBox--graduate::before {
  background: -webkit-gradient(linear, left top, right top, from(#803A5F), to(rgba(128, 58, 95, 0)));
  background: linear-gradient(to right, #803A5F, rgba(128, 58, 95, 0));
}
.ability__content__item .imageBox--career::before {
  background: -webkit-gradient(linear, left top, right top, from(#326255), to(rgba(50, 98, 85, 0)));
  background: linear-gradient(to right, #326255, rgba(50, 98, 85, 0));
}
.ability__content__item .imageBox img {
  width: 100%;
  height: 100%;
}
.ability__content__item .textBox h3 {
  font-size: max(1.6rem, 15px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.ability__content__item__arrow {
  position: absolute;
  display: grid;
  place-items: center;
  right: 0;
  bottom: 0;
  width: max(5rem, 30px);
  height: auto;
  aspect-ratio: 1/1;
  background: #2E2E3C;
  border-radius: max(0.5rem, 5px) 0 0 0;
}
.ability__content__item__arrow svg {
  width: 35%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.ability__content__item:hover .imageBox::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.column {
  background: #e5e4de;
}
.column__wrapper {
  padding-top: max(12.8rem, 70px);
  padding-bottom: max(11rem, 40px);
}
@media screen and (max-width: 1000px) {
  .column__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.column__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .column__header {
    display: contents;
  }
}
@media screen and (max-width: 1000px) {
  .column__header .sectionTitle {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (max-width: 1000px) {
  .column__header .btnBox {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: max(10rem, 40px);
  }
}
.column__body {
  margin-top: max(7rem, 50px);
}
@media screen and (max-width: 1000px) {
  .column__body {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.column__body .column__list {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: repeat(3, 1fr);
  -webkit-column-gap: max(13.5rem, 30px);
     -moz-column-gap: max(13.5rem, 30px);
          column-gap: max(13.5rem, 30px);
}
@media screen and (max-width: 1000px) {
  .column__body .column__list {
    row-gap: max(5rem, 30px);
    -webkit-column-gap: max(5.5rem, 20px);
       -moz-column-gap: max(5.5rem, 20px);
            column-gap: max(5.5rem, 20px);
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: unset;
  }
}
.column__body .column__list__item {
  position: relative;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.column__body .column__list__item.column__list__item--mobileOnly {
  display: none;
}
@media screen and (max-width: 1000px) {
  .column__body .column__list__item.column__list__item--mobileOnly {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.column__body .column__list__item:first-of-type {
  grid-column: 1/2;
  grid-row: 1/4;
  width: max(37rem, 250px);
}
@media screen and (max-width: 1000px) {
  .column__body .column__list__item:first-of-type {
    grid-column: 1/3;
    grid-row: 1/2;
    gap: max(3rem, 20px);
    width: 100%;
    padding-bottom: max(5rem, 30px);
    margin-bottom: max(5rem, 30px);
  }
  .column__body .column__list__item:first-of-type::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: max(0.1rem, 1px);
    background-image: linear-gradient(to right, #a3a3a3 4px, transparent 3px);
    background-size: 7px max(0.1rem, 1px);
    background-repeat: repeat-x;
  }
}
.column__body .column__list__item:first-of-type .column__list__item__thumbnail {
  padding: max(2.5rem, 15px);
}
.column__body .column__list__item:first-of-type .column__list__item__content {
  margin-top: max(3rem, 20px);
}
.column__body .column__list__item:first-of-type .column__list__item__content__arrow {
  margin-left: auto;
  margin-top: max(1.5rem, 15px);
}
.column__body .column__list__item:not(:first-of-type) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-column: 2/3;
  -webkit-column-gap: max(4rem, 20px);
     -moz-column-gap: max(4rem, 20px);
          column-gap: max(4rem, 20px);
}
@media screen and (max-width: 1000px) {
  .column__body .column__list__item:not(:first-of-type) {
    grid-column: span 1;
    grid-row: span 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.column__body .column__list__item:not(:first-of-type):not(:nth-of-type(2)) {
  margin-top: max(2.5rem, 15px);
}
@media screen and (max-width: 1000px) {
  .column__body .column__list__item:not(:first-of-type):not(:nth-of-type(2)) {
    margin-top: 0;
  }
}
.column__body .column__list__item:not(:first-of-type):not(:last-of-type) {
  padding-bottom: max(2.5rem, 15px);
}
.column__body .column__list__item:not(:first-of-type):not(:last-of-type)::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: max(0.1rem, 1px);
  background-image: linear-gradient(to right, #a3a3a3 4px, transparent 3px);
  background-size: 7px max(0.1rem, 1px);
  background-repeat: repeat-x;
}
@media screen and (max-width: 1000px) {
  .column__body .column__list__item:not(:first-of-type):not(:last-of-type)::before {
    display: none;
  }
}
.column__body .column__list__item:not(:first-of-type) .column__list__item__thumbnail {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: max(1rem, 10px);
  width: max(16.5rem, 100px);
  height: 100%;
  aspect-ratio: 55/39;
}
@media screen and (max-width: 1000px) {
  .column__body .column__list__item:not(:first-of-type) .column__list__item__thumbnail {
    width: 100%;
    height: auto;
  }
}
.column__body .column__list__item:not(:first-of-type) .column__list__item__thumbnail img {
  width: 100%;
  height: 100%;
}
.column__body .column__list__item:not(:first-of-type) .column__list__item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: max(5rem, 15px);
     -moz-column-gap: max(5rem, 15px);
          column-gap: max(5rem, 15px);
}
@media screen and (max-width: 1000px) {
  .column__body .column__list__item:not(:first-of-type) .column__list__item__content {
    gap: 15px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: max(2rem, 15px);
  }
}
.column__body .column__list__item__thumbnail {
  background: #fff;
  border-radius: max(0.5rem, 5px);
  -webkit-box-shadow: 0 4px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 0 rgba(0, 0, 0, 0.15);
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease-out, -webkit-box-shadow 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out, -webkit-box-shadow 0.3s ease-out;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, -webkit-transform 0.3s ease-out, -webkit-box-shadow 0.3s ease-out;
}
.column__body .column__list__item__thumbnail img {
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.column__body .column__list__item__content__text {
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.column__body .column__list__item__content__text time {
  display: block;
  font-family: YakuHanJP, "Inter", sans-serif;
  font-size: max(1.4rem, 12px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: max(1.5rem, 15px);
}
.column__body .column__list__item__content__text p {
  font-size: max(1.6rem, 13px);
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.1em;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
.column__body .column__list__item__content__arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: grid;
  place-items: center;
  width: max(5rem, 30px);
  height: auto;
  aspect-ratio: 1/1;
  background: #2E2E3C;
  border-radius: max(0.5rem, 5px);
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out, -webkit-box-shadow 0.3s ease-out;
  transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out, -webkit-box-shadow 0.3s ease-out;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, opacity 0.3s ease-out;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, opacity 0.3s ease-out, -webkit-transform 0.3s ease-out, -webkit-box-shadow 0.3s ease-out;
}
.column__body .column__list__item__content__arrow svg {
  width: 35%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .column__body .column__list__item:hover .column__list__item__thumbnail {
    -webkit-transform: translateY(-0.4rem);
            transform: translateY(-0.4rem);
    -webkit-box-shadow: 0 14px 24px rgba(0, 0, 0, 0.1), 0 4px 0 rgba(0, 0, 0, 0.15);
            box-shadow: 0 14px 24px rgba(0, 0, 0, 0.1), 0 4px 0 rgba(0, 0, 0, 0.15);
  }
  .column__body .column__list__item:hover .column__list__item__thumbnail img {
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
    opacity: 0.94;
  }
  .column__body .column__list__item:hover .column__list__item__content__text {
    -webkit-transform: translateX(0.3rem);
            transform: translateX(0.3rem);
    opacity: 0.92;
  }
  .column__body .column__list__item:hover .column__list__item__content__text p {
    color: #B8183F;
  }
  .column__body .column__list__item:hover .column__list__item__content__arrow {
    -webkit-transform: translate(0.5rem, -0.2rem);
            transform: translate(0.5rem, -0.2rem);
    -webkit-box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
            box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
    opacity: 0.95;
  }
  .column__body .column__list__item:hover .column__list__item__content__arrow svg {
    -webkit-transform: translateX(0.2rem) scale(1.06);
            transform: translateX(0.2rem) scale(1.06);
  }
}
.column__body .column__list__item:focus-visible .column__list__item__thumbnail {
  -webkit-transform: translateY(-0.4rem);
          transform: translateY(-0.4rem);
  -webkit-box-shadow: 0 14px 24px rgba(0, 0, 0, 0.1), 0 4px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 14px 24px rgba(0, 0, 0, 0.1), 0 4px 0 rgba(0, 0, 0, 0.15);
}
.column__body .column__list__item:focus-visible .column__list__item__thumbnail img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
  opacity: 0.94;
}
.column__body .column__list__item:focus-visible .column__list__item__content__text {
  -webkit-transform: translateX(0.3rem);
          transform: translateX(0.3rem);
  opacity: 0.92;
}
.column__body .column__list__item:focus-visible .column__list__item__content__text p {
  color: #B8183F;
}
.column__body .column__list__item:focus-visible .column__list__item__content__arrow {
  -webkit-transform: translate(0.5rem, -0.2rem);
          transform: translate(0.5rem, -0.2rem);
  -webkit-box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
          box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
  opacity: 0.95;
}
.column__body .column__list__item:focus-visible .column__list__item__content__arrow svg {
  -webkit-transform: translateX(0.2rem) scale(1.06);
          transform: translateX(0.2rem) scale(1.06);
}
.column__body .column__list__item:active .column__list__item__thumbnail {
  -webkit-transform: translateY(0.1rem);
          transform: translateY(0.1rem);
  -webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 0 rgba(0, 0, 0, 0.15);
}
.column__body .column__list__item:active .column__list__item__content__arrow {
  -webkit-transform: translate(0.2rem, 0);
          transform: translate(0.2rem, 0);
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.column__slider {
  --slide-width: max(24vw, 300px);
  --slide-gap: max(1.5rem, 10px);
  --slide-speed: 30s;
  position: relative;
  overflow: hidden;
  margin-top: max(8rem, 40px);
  padding-block: max(1rem, 8px);
}
@media screen and (max-width: 1000px) {
  .column__slider {
    margin-top: max(6rem, 30px);
  }
}
.column__slider::before, .column__slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: max(6rem, 24px);
  pointer-events: none;
  z-index: 1;
}
.column__slider::before {
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#e5e4de), to(rgba(229, 228, 222, 0)));
  background: linear-gradient(to right, #e5e4de 0%, rgba(229, 228, 222, 0) 100%);
}
.column__slider::after {
  right: 0;
  background: -webkit-gradient(linear, right top, left top, from(#e5e4de), to(rgba(229, 228, 222, 0)));
  background: linear-gradient(to left, #e5e4de 0%, rgba(229, 228, 222, 0) 100%);
}
.column__slider__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--slide-gap);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: columnSliderLoop var(--slide-speed) linear infinite;
          animation: columnSliderLoop var(--slide-speed) linear infinite;
  will-change: transform;
}
.column__slider__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--slide-gap);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.column__slider .imageBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 var(--slide-width);
          flex: 0 0 var(--slide-width);
  width: var(--slide-width);
  height: auto;
  aspect-ratio: 4/3;
  border-radius: max(0.5rem, 5px);
  -webkit-box-shadow: 0 4px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 0px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.column__slider .imageBox img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.info {
  margin-left: 2%;
  margin-right: 2%;
  margin-top: min(-5rem, -30px);
  background: #ffffff;
  -webkit-box-shadow: 0 4px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 0 rgba(0, 0, 0, 0.15);
  border-radius: max(0.5rem, 5px) max(0.5rem, 5px) 0 0;
}
.info__wrapper {
  padding-top: max(11rem, 70px);
  padding-bottom: max(12.5rem, 70px);
}
.info__inner:not(:first-of-type) {
  margin-top: max(12rem, 50px);
}
.info__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: max(2rem, 15px) max(1rem, 10px);
  margin-top: max(5rem, 30px);
}
@media screen and (max-width: 1000px) {
  .info__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.info__list a:hover img {
  opacity: 0.6;
}
.info__list a figure .imageBox {
  width: 100%;
  height: auto;
  aspect-ratio: 311/207;
}
.info__list a figure .imageBox img {
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.info__list a figure figcaption {
  margin-top: max(1.5rem, 10px);
}
.info__list a figure figcaption h3 {
  text-align: center;
  font-size: max(1.6rem, 13px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.campus {
  position: relative;
  z-index: 0;
}
.campus::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: max(18rem, 150px);
  background: -webkit-gradient(linear, left top, left bottom, from(#2c8ca3), to(#b8183f));
  background: linear-gradient(#2c8ca3, #b8183f);
  opacity: 0.22;
  z-index: -1;
}
.campus__wrapper {
  padding-top: max(10.5rem, 70px);
  padding-bottom: max(9rem, 50px);
}
.campus__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px max(5rem, 20px);
  margin-top: max(3rem, 20px);
}
@media screen and (max-width: 1000px) {
  .campus__list {
    gap: 30px max(3rem, 15px);
  }
}
@media screen and (max-width: 768px) {
  .campus__list {
    grid-template-columns: 1fr;
  }
}
.campus__list__item {
  width: 100%;
  padding: max(4rem, 15px);
  background: #fff;
  border-radius: max(0.5rem, 5px);
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .campus__list__item {
    padding: max(7rem, 30px);
  }
}
.campus__list__item .imageBox {
  position: relative;
}
.campus__list__item .imageBox__tag {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: max(0.5rem, 5px);
  top: max(1rem, 10px);
  left: max(1rem, 10px);
}
.campus__list__item .imageBox__tag__item {
  color: #fff;
  padding: max(0.5rem, 5px) max(1rem, 10px);
  border-radius: max(0.5rem, 5px);
  background: #fff;
  font-size: max(1.2rem, 12px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
}
.campus__list__item .imageBox__tag__item--business {
  background: #1072ae;
}
.campus__list__item .imageBox__tag__item--rehabilitation {
  background: #9c2428;
}
.campus__list__item .textBox {
  text-align: center;
  margin-top: max(3rem, 20px);
  margin-bottom: max(2rem, 20px);
}
.campus__list__item .textBox h3 {
  margin-bottom: max(1rem, 10px);
  font-size: max(2.2rem, 16px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.campus__list__item .textBox address {
  font-size: max(1.6rem, 13px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.campus__list__item .textBox span.supplement {
  position: relative;
  margin-top: max(3rem, 25px);
  font-size: max(1.4rem, 12px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.campus__list__item .textBox span.supplement::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: max(0.1rem, 1px);
  height: max(2rem, 15px);
  background-image: linear-gradient(to bottom, #a3a3a3 4px, transparent 3px);
  background-size: max(0.1rem, 1px) 7px;
  background-repeat: repeat-y;
  -webkit-transform: translate(-50%, -130%);
          transform: translate(-50%, -130%);
}

@-webkit-keyframes columnSliderLoop {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(-50% - var(--slide-gap) / 2));
            transform: translateX(calc(-50% - var(--slide-gap) / 2));
  }
}

@keyframes columnSliderLoop {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(-50% - var(--slide-gap) / 2));
            transform: translateX(calc(-50% - var(--slide-gap) / 2));
  }
}/*# sourceMappingURL=style.css.map */