html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: rgba(0, 0, 0, 0);
  box-sizing: border-box;
}
input,
textarea {
  box-sizing: border-box;
}
body {
  line-height: 1;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
nav ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: rgba(0, 0, 0, 0);
}
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
input,
select {
  vertical-align: middle;
}
button {
  background-color: rgba(0, 0, 0, 0);
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
html {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  html {
    font-size: clamp(16px, 0.9vw, 1.3vw);
  }
}
body {
  color: #333;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 400;
  line-height: 1.75;
  -webkit-text-size-adjust: 100%;
}
h1,
h2,
h3,
h4 {
  font-weight: 500;
}
p {
  margin-top: 1em;
}
img {
  max-width: 100%;
  width: auto;
  height: auto;
  vertical-align: top;
}

.search__container {
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}
.search__container.is-active .search__container_input_field {
  opacity: 1;
  visibility: visible;
}
.search__container_input_field {
  position: absolute;
  bottom: -160%;
  left: 50%;
  z-index: 1;
  display: flex;
  transform: translateX(-50%);
  width: 220px;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}
@media screen and (min-width: 768px) {
  .search__container_input_field input[type="text"] {
    padding: 5px;
    height: 35.5px;
    border: 1px solid #2f639e;
    font-size: 15px;
    outline: none;
    box-shadow: none;
    background: #fff !important;
  }
}
@media screen and (min-width: 768px) {
  .search__container_input_field input[type="submit"] {
    height: 35px;
    padding: 0 5px;
    margin-right: 8px;
    border: none;
    background: #2f639e;
    color: #fff;
    cursor: pointer;
  }
}
.search__container.drawer-search {
  width: 90%;
  margin-inline: auto;
}
@media screen and (min-width: 1200px) {
  .search__container.drawer-search {
    width: 100%;
    margin-inline: 0;
  }
}
.search__container.drawer-search .search__container_input_field {
  opacity: 1;
  visibility: visible;
  position: static;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.5em 0;
  padding-right: 1em;
  transform: translateX(0);
  border: 1px solid #2f639e;
  border-radius: 5px;
}
.search__container.drawer-search
  .search__container_input_field
  input[type="text"] {
  width: 100%;
  padding: 5px;
  height: 35.5px;
  border: none;
  font-size: 15px;
  box-shadow: none;
}
.search__container.drawer-search
  .search__container_input_field
  input[type="submit"] {
  height: 35px;
  padding: 0 5px;
  padding-right: 1em;
  margin: 0 0 0 auto;
  border: none;
  width: 2em;
  height: 2em;
  cursor: pointer;
  background-image: url("../images/icon/search-blue.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #fff;
}
.search__container.drawer-search .search__input_inner {
  width: 100%;
}
.page_fixed {
  display: block grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0 0.5em;
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  bottom: 10px;
  right: 2%;
  z-index: 2;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .page_fixed {
    bottom: 20px;
  }
}
.page_fixed.is_fade {
  opacity: 1;
  visibility: visible;
}
.page_top {
  position: relative;
  z-index: 5;
  width: 45px;
  height: 45px;
  background: rgba(0, 73, 157, 0.8);
  transition: all 0.3s;
}
.page_top__inner {
  display: none;
}
.page_top::before {
  content: "";
  display: block;
  position: absolute;
  top: 55%;
  right: 50%;
  transform: translate(50%, -50%) rotate(-45deg);
  width: 30%;
  height: 30%;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}
.btn__container {
  margin-top: 1em;
}
.footer-btn .btn__container {
  width: clamp(270px, 72vw, 18.2291666667vw);
}
.page-more-btn__container {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.transparent-btn,
.transparent-btn--blue {
  display: block;
  padding: 1em;
  font-size: clamp(14px, 3.7333333333vw, 1.1458333333vw);
  color: #fff;
  text-align: center;
  text-decoration: none;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0px 0px 10px -5px #ccc;
}
.transparent-btn::before,
.transparent-btn--blue::before {
  content: "";
  display: inline-block;
  margin-right: 0.5em;
  vertical-align: middle;
}
.transparent-btn.junior-colledge::before,
.transparent-btn--blue.junior-colledge::before {
  background: url("../images/icon/logo-mini.png") no-repeat center center/cover;
  width: clamp(24.6px, 6.56vw, 1.7708333333vw);
  height: clamp(23.3px, 6.2133333333vw, 1.6770833333vw);
}
@media screen and (min-width: 768px) {
  .transparent-btn:hover,
  .transparent-btn--blue:hover {
    opacity: 1;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: rgba(255, 255, 255, 0.45);
  }
}
.transparent-btn.library::before {
  background: url("../images/icon/book.png") no-repeat center center/cover;
  width: clamp(21.6px, 5.76vw, 1.5520833333vw);
  height: clamp(18.3px, 4.88vw, 1.3125vw);
}
.transparent-btn.link-blank::after {
  background: url("../images/icon/link_blank-white.png") no-repeat center
    center/cover;
  width: 1em;
  height: 1em;
}
.transparent-btn--blue {
  color: #00489d;
  border: 1px solid #00489d;
}
.transparent-btn--blue.library::before {
  background: url("../images/icon/book-blue.png") no-repeat center center/cover;
  width: clamp(21.6px, 5.76vw, 1.5520833333vw);
  height: clamp(18.3px, 4.88vw, 1.3125vw);
}
.more-btn-blue > a,
.more-btn-green > a {
  position: relative;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1em 2em 1em 1em;
  font-size: clamp(15px, 4vw, 1.5625vw);
  text-decoration: none;
  border: 1px solid currentColor;
}
@media screen and (min-width: 768px) {
  .more-btn-blue > a,
  .more-btn-green > a {
    padding: 1em 2.5em 1em 1.5em;
  }
}
.more-btn-blue > a::after,
.more-btn-green > a::after {
  position: absolute;
  top: 50%;
  right: -1em;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 2em;
  height: 1px;
  background: currentColor;
}
@media screen and (min-width: 768px) {
  .more-btn-blue > a:hover,
  .more-btn-green > a:hover {
    opacity: 1;
    color: #fff;
  }
  .more-btn-blue > a:hover::after,
  .more-btn-green > a:hover::after {
    transform: translateY(-50%);
    transform: translateX(5px);
    transition: all 0.3s;
  }
}
.more-btn-blue.soon > a,
.more-btn-green.soon > a {
  color: #88929f;
  font-size: clamp(16px, 4.2666666667vw, 1.71875vw);
  font-family: "Jost", sans-serif;
  font-weight: 300;
  letter-spacing: 0.1em;
  border: 1px solid #88929f;
  pointer-events: none;
}
.more-btn-blue > a {
  color: #00489d;
}
@media screen and (min-width: 768px) {
  .more-btn-blue > a:hover {
    background: #00489d;
  }
}
.more-btn-green > a {
  color: #00999e;
}
@media screen and (min-width: 768px) {
  .more-btn-green > a:hover {
    background: #00999e;
  }
}
.curriculum .more-btn-green > a {
  min-width: 150px;
}
@media screen and (min-width: 768px) {
  .curriculum .more-btn-green > a {
    min-width: 250px;
  }
}
.page-more-btn {
  position: relative;
  display: block;
  width: clamp(200px, 53.3333333333vw, 19.7916666667vw);
  padding: 1em 2em 1em 1em;
  font-size: clamp(15px, 4vw, 1.5625vw);
  color: #00999e;
  text-align: center;
  text-decoration: none;
  border: 1px solid currentColor;
}
@media screen and (min-width: 768px) {
  .page-more-btn {
    padding: 1em 2.5em 1em 1.5em;
  }
}
.page-more-btn::after {
  position: absolute;
  top: 50%;
  right: -1em;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 2em;
  height: 1px;
  background: currentColor;
}
@media screen and (min-width: 768px) {
  .page-more-btn:hover::after {
    transform: translateY(-50%);
    transform: translateX(5px);
    transition: all 0.3s;
  }
}
.page-more-btn-blue > a {
  color: #00489d;
}
.page-more-btn-green > a {
  color: #00999e;
}
.submit-btn,
.submit-btn--prev {
  width: clamp(160px, 42.6666666667vw, 15.625vw);
  margin: 0 auto;
  margin-top: 1em;
}
.submit-btn input[type="submit"],
.submit-btn input[type="button"],
.submit-btn--prev input[type="submit"],
.submit-btn--prev input[type="button"] {
  width: clamp(160px, 42.6666666667vw, 15.625vw);
  padding: 1em;
  font-size: clamp(16px, 4.2666666667vw, 1.0416666667vw);
  outline: none;
  border-radius: 50px;
  transition: all 0.3s;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .submit-btn input[type="submit"]:hover,
  .submit-btn input[type="button"]:hover,
  .submit-btn--prev input[type="submit"]:hover,
  .submit-btn--prev input[type="button"]:hover {
    opacity: 0.8;
  }
}
.submit-btn input[type="submit"],
.submit-btn input[type="button"] {
  color: #fff;
  background: #00999e;
  border: none;
}
.submit-btn--prev input[type="submit"],
.submit-btn--prev input[type="button"] {
  color: #00999e;
  background: #fff;
  border: 1px solid #00999e;
}
.text-link > a {
  display: inline-block;
  color: #333;
}
.text-link > a::after {
  content: "";
  display: inline-block;
  margin-left: 0.5em;
  vertical-align: middle;
  aspect-ratio: 38/45;
  width: 0.9em;
}
.text-link.pdf > a::after {
  background: url("../images/icon/pdf.png") no-repeat center center/cover;
}
.text-link.word > a::after {
  background: url("../images/icon/word.png") no-repeat center center/cover;
}
.text-link.excel > a::after {
  background: url("../images/icon/excel.png") no-repeat center center/cover;
}
.text-link.blank > a::after {
  background: url("../images/icon/link_blank-black.png") no-repeat center
    center/cover;
  aspect-ratio: 1/1;
  width: 0.9em;
}
.nav-links {
  margin-top: 2em;
  text-align: center;
}
.nav-links .page-numbers.current {
  background: #00489d;
  color: #fff;
  padding: 0.6em 1em;
}
.nav-links .page-numbers {
  margin-right: 1em;
  padding: 0.6em 1em;
  color: #00489d;
  border: 1px solid #00489d;
  text-decoration: none;
}
.nav-links .next.page-numbers,
.nav-links .prev.page-numbers {
  margin-left: 0;
  border: none;
}
.nav-links .next.page-numbers {
  margin-left: -0.5em;
}
.pagenation {
  display: flex;
  justify-content: center;
  gap: 0 1em;
  margin-top: 4em !important;
  text-align: center;
}
.pagenation > a {
  padding: 0.6em 1em;
  font-size: 15px;
  color: #00489d;
  text-decoration: none;
  border: 1px solid #00489d;
}
@media screen and (min-width: 768px) {
  .pagenation > a {
    font-size: clamp(18px, 1vw, 1vw);
  }
}
.pagenation > a:last-child {
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .pagenation > a:hover {
    opacity: 1;
    color: #fff;
    background: #00489d;
  }
}
.nav-icon > a {
  color: #00489d;
  text-decoration: none;
}
.nav-icon--search {
  display: block;
  cursor: pointer;
}
.nav-icon--search img {
  height: clamp(30px, 8vw, 1.9270833333vw);
}
.nav-icon--map {
  display: block;
}
.nav-icon--map img {
  height: clamp(30px, 8vw, 1.9270833333vw);
  margin-right: 0.5em;
  vertical-align: middle;
}
@media screen and (min-width: 1200px) {
  .nav-icon--map img {
    margin-right: 0;
  }
}
.nav-icon--mail {
  display: block;
}
.nav-icon--mail img {
  height: clamp(30px, 8vw, 1.9270833333vw);
  margin-right: 0.5em;
  vertical-align: middle;
}
@media screen and (min-width: 1200px) {
  .nav-icon--mail img {
    margin-right: 0;
  }
}
.nav-btn {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid #fff;
}
.nav-btn > a {
  display: block;
  padding: 0.5em;
  color: #fff;
  text-decoration: none;
  font-size: clamp(14px, 3.7333333333vw, 1.25vw);
  line-height: 1;
}
.nav-btn--blue {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid #00489d;
}
.nav-btn--blue > a {
  display: block;
  padding: 0.5em;
  color: #00489d;
  text-decoration: none;
  font-size: clamp(14px, 3.7333333333vw, 1.25vw);
  line-height: 1;
}
.header.front_page_style .nav-btn {
  background: #00489d;
  border: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.header.front_page_style .nav-btn--catalog {
  color: #fff;
}
.drawer-info-menu__inner .nav-btn {
  display: none;
}
@media screen and (min-width: 1200px) {
  .drawer-info-menu__inner .nav-btn {
    display: block;
    background: #00489d;
    border: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}
.drawer-info-menu__inner .nav-btn--catalog {
  color: #fff;
}
.fixed-banner--line {
  display: flex;
  align-items: center;
  height: 45px;
  padding-inline: 1em;
  color: #fff;
  text-decoration: none;
  background: rgba(96, 197, 103, 0.85);
}
.fixed-banner--line img {
  display: block;
  width: 1.5em;
  margin-right: 0.5em;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .fixed-banner--line img {
    width: 2em;
  }
}
.section__container {
  padding-top: 30px;
  padding-inline: 30px;
}
@media screen and (min-width: 768px) {
  .section__container {
    padding-top: 4%;
    padding-inline: 4%;
  }
}
@media screen and (min-width: 1200px) {
  .section__container.news-section {
    width: 90%;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1200px) {
  .leadership .section__container {
    width: 95%;
    margin-inline: auto;
  }
}
.curriculum .section__container {
  margin-top: 40px;
  padding-right: 0;
  padding-left: 0;
}
.admission .section__container {
  margin-top: clamp(40px, 10.6666666667vw, 5.2083333333vw);
}
.page-title--jp {
  font-size: 11px;
  color: #333;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .page-title--jp {
    margin-top: 2em;
    font-size: clamp(14px, 1.3vw, 1.3vw);
  }
}
.page-title--jp::before {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  margin-right: 0.5em;
  background: #00489d;
  transform: rotate(45deg);
}
.page-title--en {
  font-size: 30px;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  color: #09213c;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .page-title--en {
    font-size: clamp(40px, 6vw, 6vw);
  }
}
.sub-page-info .page-title--jp,
.sub-page-corporate .page-title--jp,
.sub-page-info-test .page-title--jp {
  font-size: 1.4rem;
}
@media screen and (min-width: 1200px) {
  .sub-page-info .page-title--jp,
  .sub-page-corporate .page-title--jp,
  .sub-page-info-test .page-title--jp {
    font-size: clamp(35px, 2.2vw, 2.2vw);
  }
}
.page-index__title {
  font-size: clamp(24px, 6.4vw, 2.3958333333vw);
  font-weight: 500;
  color: #333;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.1em;
}
.page-index__title::after {
  content: "";
  display: block;
  width: 0.8em;
  height: 2px;
  margin-top: 0.5em;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  background: #00489d;
}
.page-content h2,
.single-page-content h2 {
  margin-top: 1.5em;
  padding-bottom: 0.2em;
  font-size: 20px;
  font-weight: 500;
  color: #00489d;
  border-bottom: 1px solid #00489d;
}
@media screen and (min-width: 768px) {
  .page-content h2,
  .single-page-content h2 {
    margin-top: 2em;
    font-size: clamp(20px, 2vw, 2vw);
  }
}
.page-content h2:first-child,
.single-page-content h2:first-child {
  margin-top: 0.5em;
}
.page-content h2.no-border,
.single-page-content h2.no-border {
  border-bottom: none;
}
.page-content h3,
.single-page-content h3 {
  margin-top: 1.5em;
  font-size: 18px;
  font-weight: 500;
  color: #00489d;
}
@media screen and (min-width: 768px) {
  .page-content h3,
  .single-page-content h3 {
    margin-top: 1em;
    font-size: clamp(18px, 1.5vw, 1.5vw);
  }
}
.page-content h3:first-child,
.single-page-content h3:first-child {
  margin-top: 0.5em;
}
.page-content h3.has-pink-color,
.single-page-content h3.has-pink-color {
  padding-left: 1em;
  color: #ed719e;
  background: #fcf4f7;
}
.page-content h3.has-purple-color,
.single-page-content h3.has-purple-color {
  padding-left: 1em;
  color: #b79ec1;
  background: #f8f6fa;
}
.page-content h3.has-navy-color,
.single-page-content h3.has-navy-color {
  padding-left: 1em;
  color: #1e257d;
  background: #f9f9fe;
}
.page-content h4,
.single-page-content h4 {
  margin-top: 1.5em;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .page-content h4,
  .single-page-content h4 {
    margin-top: 1em;
    font-size: clamp(16px, 1.4vw, 1.4vw);
  }
}
.page-content h4:first-child,
.single-page-content h4:first-child {
  margin-top: 0.5em;
}
.page-content h4.has-pink-color,
.single-page-content h4.has-pink-color {
  color: #ed719e;
}
.page-content h4.has-purple-color,
.single-page-content h4.has-purple-color {
  color: #b79ec1;
}
.page-content h4.has-navy-color,
.single-page-content h4.has-navy-color {
  color: #1e257d;
}
.main-heading > h2,
.main-heading--reverse > h2 {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
  font-size: 35px;
  font-family: "Jost", sans-serif;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .main-heading > h2,
  .main-heading--reverse > h2 {
    font-size: clamp(40px, 8vw, 8vw);
  }
}
.main-heading > h2::before,
.main-heading > h2::after,
.main-heading--reverse > h2::before,
.main-heading--reverse > h2::after {
  position: absolute;
  z-index: -1;
}
.main-heading__text,
.main-heading--reverse__text {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .main-heading__text,
  .main-heading--reverse__text {
    font-size: 120%;
  }
}
@media screen and (min-width: 1200px) {
  .main-heading__text,
  .main-heading--reverse__text {
    font-size: 150%;
  }
}
.main-heading > h2::before {
  top: -0.5em;
  left: -1em;
  content: "";
  display: inline-block;
  width: clamp(54px, 14.4vw, 10.9375vw);
  height: clamp(53.2px, 14.1866666667vw, 10.78125vw);
  background: url("../../images/sub-pages/m4-top/decoration/tr-heading-01.png")
    no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .main-heading > h2::before {
    top: -0.3em;
    left: -1.1em;
  }
}
.main-heading > h2::after {
  bottom: 0;
  right: -0.8em;
  content: "";
  display: inline-block;
  width: clamp(26px, 6.9333333333vw, 5.3125vw);
  height: clamp(38.1px, 10.16vw, 7.7083333333vw);
  background: url("../../images/sub-pages/m4-top/decoration/tr-heading-02.png")
    no-repeat center center/cover;
}
.main-heading--reverse > h2::before {
  top: -0.2em;
  left: -0.5em;
  content: "";
  display: inline-block;
  width: clamp(26px, 6.9333333333vw, 5.3125vw);
  height: clamp(38.1px, 10.16vw, 7.7083333333vw);
  background: url("../../images/sub-pages/m4-top/decoration/tr-heading-02.png")
    no-repeat center center/cover;
}
.main-heading--reverse > h2::after {
  bottom: -0.5em;
  right: -1em;
  content: "";
  display: inline-block;
  width: clamp(54px, 14.4vw, 10.9375vw);
  height: clamp(53.2px, 14.1866666667vw, 10.78125vw);
  background: url("../../images/sub-pages/m4-top/decoration/tr-heading-01.png")
    no-repeat center center/cover;
}
.collaboration .main-heading > h2,
.collaboration .main-heading--reverse > h2,
.admission .main-heading > h2,
.admission .main-heading--reverse > h2 {
  margin-inline: auto;
  font-size: clamp(28px, 8vw, 6.25vw);
}
.collaboration .main-heading__text,
.collaboration .main-heading--reverse__text,
.admission .main-heading__text,
.admission .main-heading--reverse__text {
  text-align: center;
}
.career .main-heading > h2,
.about .main-heading > h2 {
  font-size: clamp(30px, 8vw, 4.1666666667vw);
}
.career .main-heading > h2::before,
.career .main-heading > h2::after,
.about .main-heading > h2::before,
.about .main-heading > h2::after {
  display: none;
}
.curriculum .main-heading,
.curriculum .main-heading--reverse {
  padding: 0 clamp(30px, 8vw, 5.2083333333vw);
}
.curriculum .main-heading--reverse > h2::after {
  transform: scale(-1, 1) rotate(-25deg);
}
@media screen and (min-width: 768px) {
  .curriculum .main-heading--reverse > h2::after {
    bottom: -0.2em;
    right: -0.7em;
  }
}
.main-heading--small {
  margin-bottom: 0.2em;
  font-family: "Jost", sans-serif;
  font-size: clamp(25px, 6.6666666667vw, 4.1666666667vw);
  font-weight: 300;
  letter-spacing: 0.1em;
}
.pick-up .main-heading--small {
  text-align: center;
}
.heading--blue-bg > h2 {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5em;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1;
  background: #00489d;
}
@media screen and (min-width: 768px) {
  .heading--blue-bg > h2 {
    font-size: clamp(30px, 4vw, 3.8vw);
  }
}
.heading--blue-bg > span {
  display: block;
  font-size: 1rem;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  color: #00489d;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .heading--blue-bg > span {
    margin-bottom: 0.2em;
    font-size: clamp(20px, 1.3vw, 1.3vw);
  }
}
.pbl__section .heading--blue-bg > h2 {
  letter-spacing: 0.35em;
}
@media screen and (min-width: 768px) {
  .pbl__section .heading--blue-bg > h2 {
    font-size: clamp(35px, 4.5vw, 4vw);
    line-height: 1;
  }
}
.heading--mult {
  padding-bottom: 0.5em;
  white-space: nowrap;
  border-bottom: 1px solid #00489d;
}
@media screen and (min-width: 768px) {
  .heading--mult {
    padding-bottom: 0.8em;
    border-bottom: 2px solid #00489d;
  }
}
.heading--mult > span {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.5rem;
  font-weight: 500;
  color: #00489d;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .heading--mult > span {
    font-size: clamp(30px, 3vw, 3vw);
  }
}
.heading--mult > span::after {
  content: "×";
  display: inline-block;
  margin: 0 0.3em;
  font-size: 0.7em;
  vertical-align: middle;
  color: currentColor;
}
.heading--mult > span:last-child::after {
  display: none;
}
.heading--bottom-border {
  margin-top: 1em;
  padding-bottom: 0.2em;
  font-size: clamp(20px, 2.5vw, 2.5vw);
  font-weight: 400;
  color: #00489d;
  border-bottom: 1px solid #00489d;
}
.archive-teacher .heading--bottom-border {
  font-size: clamp(20px, 3vw, 3vw);
  font-family: "Jost", sans-serif;
  color: #333;
  border-bottom: 2px solid #00999e;
  letter-spacing: 0.1em;
}
.heading--top-border-en {
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .heading--top-border-en {
    font-size: clamp(24px, 2.8vw, 2.5vw);
  }
}
.heading--top-border-en::before {
  content: "";
  display: block;
  width: 2em;
  height: 3px;
  margin-bottom: 0.3em;
  background: #00489d;
}
@media screen and (min-width: 1200px) {
  .heading--top-border-en::before {
    height: 4px;
  }
}
.breadcrumb {
  margin-top: 2em;
  overflow-x: scroll;
  white-space: nowrap;
  font-size: clamp(12px, 3.2vw, 0.78125vw);
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.breadcrumb::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none;
}
.breadcrumb__list {
  list-style-type: none;
  color: #7c7c7c;
}
.breadcrumb__link {
  color: #7c7c7c;
  text-decoration: none;
}
.sub-page-template-fv .breadcrumb {
  margin-top: 0;
  margin-bottom: 1em;
}
.anchor-link {
  margin-top: 10px;
  text-align: right;
  list-style-type: none;
}
.anchor-link__list {
  margin-bottom: 0.5em;
}
.anchor-link__link {
  position: relative;
  color: #333;
  text-decoration: none;
}
.anchor-link__link::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #333;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
@media screen and (min-width: 768px) {
  .anchor-link__link:hover::after {
    transform: scale(1, 1);
  }
}
.anchor-link--round {
  display: grid;
  gap: 4%;
  grid-template-columns: repeat(auto-fit, 48%);
  justify-content: center;
  margin-top: 10px;
  margin-inline: auto;
  list-style-type: none;
}
@media screen and (min-width: 768px) {
  .anchor-link--round {
    gap: 4%;
    grid-template-columns: repeat(auto-fit, 30.6666666667%);
  }
}
@media screen and (min-width: 1024px) {
  .anchor-link--round {
    width: 90%;
  }
}
@media screen and (min-width: 1366px) {
  .anchor-link--round {
    width: 80%;
  }
}
.anchor-link--round > li {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 1em;
  align-items: center;
  text-align: center;
  color: #fff;
  background: #00489d;
  border: 3px solid #6c98c6;
  border-radius: 25px;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .anchor-link--round > li {
    border-radius: 40px;
  }
}
@media screen and (min-width: 768px) {
  .anchor-link--round > li:hover {
    color: #00489d;
    border: 2px solid #00489d;
    background: #fff;
  }
}
.anchor-link--round > li::before,
.anchor-link--round > li::after {
  position: absolute;
  right: 1em;
  transform: translateY(-50%);
  display: block;
  content: "";
  width: 0.5em;
  height: 1.5px;
  background: currentColor;
  border-radius: 100px;
}
@media screen and (min-width: 1366px) {
  .anchor-link--round > li::before,
  .anchor-link--round > li::after {
    right: 1.5em;
  }
}
.anchor-link--round > li::before {
  transform: rotate(45deg);
}
.anchor-link--round > li::after {
  right: 0.68em;
  transform: rotate(-45deg);
}
@media screen and (min-width: 1366px) {
  .anchor-link--round > li::after {
    right: 1.2em;
  }
}
.anchor-link--round > li > a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0.5em 2em 0.5em 1em;
  font-size: 0.9rem;
  color: #fff;
  text-decoration: none;
}
@media screen and (min-width: 1024px) {
  .anchor-link--round > li > a {
    padding: 0.8em 2em 0.8em 1em;
  }
}
@media screen and (min-width: 1200px) {
  .anchor-link--round > li > a {
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 768px) {
  .anchor-link--round > li > a:hover {
    opacity: 1;
    color: #00489d;
  }
}
@media (max-width: 768px) {
  .responsive-text {
    display: inline;
  }
  .responsive-text.break-line::after {
    content: "\a";
    white-space: pre;
  }
}
.index-menu {
  width: 95%;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  list-style-type: none;
}
@media screen and (min-width: 768px) {
  .index-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 1em 4%;
    margin-top: clamp(40px, 4vw, 4vw);
  }
}
.index-menu__list {
  margin-bottom: 1em;
  padding: 1.5em;
  padding-right: 3.5em;
  background: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 768px) {
  .index-menu__list {
    width: calc(100% / 2 - 4% / 2 * (2 - 1) - 0.1px);
    display: flex;
    align-items: center;
    padding: 2em;
  }
}
@media screen and (min-width: 1024px) {
  .index-menu__list {
    width: calc(100% / 3 - 4% / 3 * (3 - 1) - 0.1px);
  }
}
.index-menu__link {
  display: block;
  width: 100%;
  padding-right: 2em;
  font-size: 15px;
  font-weight: 400;
  color: #333;
  text-decoration: none;
  position: relative;
}
.index-menu__link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.5em;
  height: 0.5em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  box-sizing: border-box;
}
.index-menu__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.2em;
  height: 0.065em;
  vertical-align: middle;
  color: currentColor;
  line-height: 1;
  background: currentColor;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .index-menu__link {
    font-size: clamp(15px, 1.5vw, 1.2vw);
  }
}
@media screen and (min-width: 768px) {
  .index-menu__link:hover:before,
  .index-menu__link:hover:after {
    transform: translate(5px, -50%);
    transition: all 0.3s;
  }
}
@media screen and (min-width: 768px) {
  .index-menu__link:hover:before {
    transform: translate(5px, 0) rotate(45deg);
  }
}
.index-menu--en {
  display: block;
  margin-bottom: 0.8em;
  font-size: 11px;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  color: #09213c;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .index-menu--en {
    font-size: clamp(14px, 0.9vw, 0.9vw);
  }
}
.index-menu--en::before {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 1.5px;
  margin-right: 0.5em;
  margin-bottom: 0.2em;
  vertical-align: middle;
  background: #00999e;
}
@media screen and (min-width: 768px) {
  .index-menu--en::before {
    width: 1em;
  }
}
.index-menu__link.link_blank::before {
  display: none;
}
.index-menu__link.link_blank::after {
  background: url("../images/icon/link_blank-black.png") no-repeat center
    center/cover;
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
}
@media screen and (min-width: 768px) {
  .index-menu__link.link_blank::after {
    width: 0.8em;
    height: 0.8em;
  }
}
.related-link {
  width: 95%;
  margin-top: clamp(40px, 10.6666666667vw, 5.2083333333vw);
  margin-left: auto;
  margin-right: auto;
}
.related-link > h2 {
  font-size: clamp(18px, 4.8vw, 1.6666666667vw);
  line-height: 1;
}
.related-link > h2::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 1em;
  margin-right: 0.5em;
  vertical-align: bottom;
  background: #00489d;
}
@media screen and (min-width: 768px) {
  .related-link > h2::before {
    width: 4px;
  }
}
.related-link-menu {
  margin-top: clamp(20px, 5.3333333333vw, 2.6041666667vw);
  list-style-type: none;
}
@media screen and (min-width: 768px) {
  .related-link-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 4%;
  }
}
.related-link-menu > li {
  margin-bottom: 1em;
  padding: 1em;
  padding-right: 3em;
  background: #00489d;
}
@media screen and (min-width: 768px) {
  .related-link-menu > li {
    width: calc(100% / 2 - 4% / 2 * (2 - 1) - 0.1px);
    display: flex;
    align-items: center;
    padding: 1em;
  }
}
@media screen and (min-width: 1024px) {
  .related-link-menu > li {
    width: calc(100% / 3 - 4% / 3 * (3 - 1) - 0.1px);
  }
}
@media screen and (min-width: 1200px) {
  .related-link-menu > li {
    width: calc(100% / 4 - 4% / 4 * (4 - 1) - 0.1px);
  }
}
.related-link-menu > li > a {
  display: block;
  width: 100%;
  padding-right: 2em;
  color: #fff;
  text-decoration: none;
  position: relative;
}
.related-link-menu > li > a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.6em;
  height: 0.6em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  box-sizing: border-box;
}
.related-link-menu > li > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.2em;
  height: 0.08em;
  vertical-align: middle;
  color: currentColor;
  line-height: 1;
  background: currentColor;
  transform: translateY(-50%);
}
.wp-block-table {
  margin-top: 1em;
}
.wp-block-table tr td:first-of-type {
  background: #eef4fe;
}
.wp-block-table th,
.wp-block-table td {
  padding: 0.7em !important;
  border: 1px solid #a5aeb4 !important;
}
.wp-block-table.head-teable tr:first-of-type {
  background: #eef4fe;
}
.wp-block-table tr:first-of-type th {
  background: #eef4fe;
}
.wp-block-table.td-no-color tr td:first-of-type {
  background: none;
}
.wp-block-table thead {
  border-bottom: none !important;
}
.wp-block-table tfoot {
  border-top: 1.5px solid !important;
}
.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image {
  flex-grow: 0;
}
@media screen and (min-width: 768px) {
  .wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image {
    width: calc(
      33.33% - var(--wp--style--unstable-gallery-gap, 16px) * 0.66667
    ) !important;
  }
}
.wp-element-caption {
  font-size: 90%;
}
.wpcf7-list-item {
  margin-left: 0 !important;
}
.wpcf7-response-output {
  margin-top: 1em !important;
  padding-bottom: 0.5em !important;
  font-size: 110% !important;
  text-align: center !important;
  border: none !important;
  border-bottom: 1px solid #00489d !important;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  color: #e43a3a !important;
  border-bottom: 1px solid #e43a3a !important;
}
.form {
  width: 100%;
  table-layout: fixed;
}
.form th,
.form td {
  display: block;
}
.form th {
  font-weight: 400;
  text-align: left;
}
.form td {
  padding-top: 0.5em;
  padding-bottom: 2em;
}
.form td.border-top::before {
  content: "";
  display: block;
  width: 100%;
  margin-top: 0.5em;
  margin-bottom: 1em;
  border-top: 0.5px solid #000;
}
.form input,
.form textarea {
  padding: 1em;
  border: 1px solid #88929f;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .form input,
  .form textarea {
    width: auto;
  }
}
.form input[type="text"],
.form input[type="tel"],
.form input[type="email"],
.form textarea {
  width: 100%;
}
.form .wpcf7-list-item {
  display: block;
  margin-left: 0;
}
.form-required {
  width: -moz-fit-content;
  width: fit-content;
}
.form-required::after {
  content: "必須";
  display: inline-block;
  margin-left: 0.5em;
  padding: 0.2em 0.7em;
  font-size: 80%;
  vertical-align: bottom;
  color: #e43a3a;
  border: 1px solid #e43a3a;
  border-radius: 10px;
}
.form-contact {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .form-contact {
    width: clamp(250px, 66.6666666667vw, 41.6666666667vw);
  }
}
.form .radio-select label {
  display: flex;
  flex-direction: row-reverse;
  justify-content: start;
}
.page-content iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .flex__container {
    display: flex;
    flex-wrap: wrap;
    gap: 0 8%;
  }
}
@media screen and (min-width: 768px) {
  .flex__container.flex-reverse {
    flex-direction: row-reverse;
  }
}
.flex__item--2 {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .flex__item--2 {
    width: calc(46% - 0.1px);
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .career .flex__item--2,
  .about .flex__item--2 {
    display: flex;
    flex-direction: column;
  }
}
.career .flex__item--2 .flex__item__text,
.about .flex__item--2 .flex__item__text {
  margin-top: 2em;
}
@media screen and (min-width: 768px) {
  .career .flex__item--2 .flex__item__text,
  .about .flex__item--2 .flex__item__text {
    margin-top: 1em;
  }
}
@media screen and (min-width: 1200px) {
  .career .flex__item--2 .flex__item__text,
  .about .flex__item--2 .flex__item__text {
    margin-top: 2%;
  }
}
@media screen and (min-width: 1200px) {
  .career .flex__item--2 .more-btn-blue,
  .career .flex__item--2 .more-btn-green,
  .about .flex__item--2 .more-btn-blue,
  .about .flex__item--2 .more-btn-green {
    margin-top: auto;
  }
}
.card-style {
  width: 90%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .card-style {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 4%;
    width: 100%;
  }
}
.card-style__list {
  margin-top: 40px;
  padding: clamp(30px, 8vw, 2.0833333333vw);
  text-align: center;
  list-style-type: none;
  background: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .card-style__list {
    width: calc(22% - 0.1px);
    padding: 1em;
  }
}
@media screen and (min-width: 1200px) {
  .card-style__list {
    padding: clamp(30px, 8vw, 2.0833333333vw);
  }
}
.card-style__link {
  display: block;
  text-decoration: none;
  color: #333;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .card-style__link:hover .card-style-btn {
    transform: translateX(5px);
    transition: all 0.3s;
  }
}
.card-style__title--en {
  color: #00999e;
  font-family: "Jost", sans-serif;
  font-size: clamp(15px, 4vw, 2.1666666667vw);
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .card-style__title--en {
    font-size: 70%;
  }
}
@media screen and (min-width: 1200px) {
  .card-style__title--en {
    font-size: 100%;
  }
}
.card-style__title {
  margin-top: 0.2em;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .card-style__title {
    font-size: 80%;
  }
}
@media screen and (min-width: 1200px) {
  .card-style__title {
    margin-top: 0.15em;
    font-size: 130%;
  }
}
.card-style-btn {
  width: 1.5em;
  height: 1.5em;
  margin-inline: auto;
  margin-top: 0.7em;
}
@media screen and (min-width: 768px) {
  .card-style-btn {
    width: 1em;
    height: 1em;
  }
}
@media screen and (min-width: 1200px) {
  .card-style-btn {
    width: 1.3em;
    height: 1.3em;
  }
}
.card-style__img {
  margin-top: 1em;
}
.admission .card-style__title {
  white-space: nowrap;
}
.c-parallax--fade01 {
  opacity: 0;
  transition: 0.3s;
  transform: translateX(-10%);
}
.c-parallax--fade01.is-active {
  opacity: 1;
  transform: translateX(0);
}
.c-parallax--fade02 {
  opacity: 0;
  transition: 0.3s 0.4s;
  transform: translateX(10%);
}
.c-parallax--fade02.is-active {
  opacity: 1;
  transform: translateX(0);
}
.c-parallax--fade03 {
  opacity: 0;
  transition: 0.3s 0.8s;
}
.c-parallax--fade03.is-active {
  opacity: 1;
}
.c-parallax--fade04 {
  opacity: 0;
}
.c-parallax--fade04.is-active {
  animation-name: DropDown;
  animation-duration: 0.7s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
}
.c-parallax--fade05 {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.7s 0.8s;
}
.c-parallax--fade05.is-active {
  opacity: 1;
  transform: translateY(0);
}
@keyframes DropDown {
  0% {
    transform: translateY(-40px) scale(0.5);
    opacity: 0;
    @media screen and (min-width: 768px) {
      transform: translateY(-100px) scale(0.5);
    }
  }
  20% {
    transform: translateY(-20px) scale(0.5);
    opacity: 1;
    @media screen and (min-width: 768px) {
      transform: translateY(-50px) scale(0.5);
    }
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
.swiper-wrapper {
  transition-timing-function: linear !important;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #585858;
}
.table {
  width: 100%;
}
.table th {
  width: 25%;
  color: #00489d;
  font-weight: 500;
  text-align: left;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .table th {
    width: 15%;
  }
}
@media screen and (min-width: 1366px) {
  .table th {
    width: 10%;
  }
}
.table td {
  width: 75%;
  padding-bottom: 2em;
}
@media screen and (min-width: 768px) {
  .table td {
    width: 85%;
    padding-bottom: 2em;
  }
}
@media screen and (min-width: 1366px) {
  .table td {
    width: 90%;
  }
}
.table td a {
  color: #333;
}
.single-teacher .table th {
  padding-right: 1em;
}
@media screen and (min-width: 1024px) {
  .single-teacher .table th,
  .single-teacher .table td {
    font-size: clamp(18px, 1.1vw, 1.1vw);
  }
}
.news-card__list {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-items: start;
  gap: 2% 4%;
}
@media screen and (min-width: 768px) {
  .news-card__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 5%;
  }
}
.news-card__link {
  display: block;
  text-decoration: none;
}
.news-card__thumbnail {
  aspect-ratio: 4/3;
}
.news-card__thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.news-card__date {
  margin-top: 0.5em;
  font-size: 1.3rem;
  font-family: "Jost", sans-serif;
  color: #00999e;
}
.news-card__title {
  margin-top: 0.5em;
  font-size: 0.9rem;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .news-card__title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.news-card-tag__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 4%;
  margin-top: 1rem;
  list-style-type: none;
}
.news-card-tag__item {
  padding-block: 0.5em;
  padding-inline: 0.8em;
  font-size: 0.8rem;
  background: #e8f0fc;
  border-radius: 30px;
}
.news-card-tag__link {
  display: inline-block;
  color: #333;
  text-decoration: none;
}
.pick-up .news-card__list--pick-up {
  margin-bottom: 10%;
}
@media screen and (min-width: 768px) {
  .pick-up .news-card__list--pick-up {
    margin-bottom: 5%;
  }
}
.news .news-card__list {
  margin-bottom: 30%;
}
@media screen and (min-width: 768px) {
  .news .news-card__list {
    margin-bottom: 8%;
  }
}
.archives__list .news-card-tag__list {
  margin-left: 34%;
}
@media screen and (min-width: 768px) {
  .archives__list .news-card-tag__list {
    margin-left: 23%;
  }
}
@media screen and (min-width: 1366px) {
  .archives__list .news-card-tag__list {
    margin-top: 0.5rem;
  }
}
.sns-info {
  margin-top: 8%;
}
@media screen and (min-width: 768px) {
  .sns-info {
    margin-top: 4%;
  }
}
.sns-info__title {
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  font-size: 1.1rem;
  text-align: center;
  white-space: nowrap;
  border-bottom: 1px solid #b5c5e6;
}
@media screen and (min-width: 768px) {
  .sns-info__title {
    margin-bottom: 1em;
    padding-bottom: 1em;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1920px) {
  .sns-info__title {
    margin-bottom: 1.5em;
    padding-bottom: 1.5em;
  }
}
@media screen and (min-width: 768px) {
  .sns-info__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8%;
  }
}
@media screen and (min-width: 1200px) {
  .sns-info__container {
    grid-template-columns: 1.1fr 0.9fr;
  }
}
.sns-info__item-inner {
  margin-top: 4%;
  padding: 8%;
  border: 1px solid #b5c5e6;
}
@media screen and (min-width: 1200px) {
  .sns-info__item-inner {
    margin-bottom: 8%;
  }
}
.sns-info__item {
  margin-top: 12%;
}
@media screen and (min-width: 1200px) {
  .sns-info__item {
    margin-top: 0;
  }
}
.sns-info__menu {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8%;
  align-items: center;
  justify-content: center;
  width: 90%;
  margin-inline: auto;
  list-style-type: none;
}
@media screen and (min-width: 768px) {
  .sns-info__menu {
    grid-template-columns: repeat(5, minmax(40px, 4vw));
    gap: 4%;
    width: auto;
  }
}
.sns-info__link {
  display: block;
  text-decoration: none;
}
.sns-info__img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.sns-info__img.sns-info-x {
  width: 90%;
}
.sns-info-blog {
  position: relative;
  margin-top: 4%;
}
.sns-info-blog::after {
  position: absolute;
  top: 8%;
  left: 5%;
  z-index: -1;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgb(245, 220, 232) 0%,
    rgb(220, 236, 253) 100%
  );
}
.sns-info-blog__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.drawer-nav-sns__box .sns-info__menu {
  margin-top: 4%;
  justify-content: start;
}
@media screen and (min-width: 768px) {
  .drawer-nav-sns__box .sns-info__menu {
    grid-template-columns: repeat(5, minmax(40px, 3vw));
    margin-top: 1em;
  }
}
.fade-in {
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  transform: translateY(10px);
}
@media screen and (min-width: 768px) {
  .fade-in {
    transform: translateY(20px);
  }
}
.fade-in.fade-in-fast {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.fade-in.fade-in-fast-more {
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.fade-in.fade-in-right {
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translate(30px, 0);
}
.fade-in.fade-in-left {
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translate(-30px, 0);
}
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
.page-content__inner ul,
.page-content__inner ol {
  margin-top: 1em;
}
.page-content__inner ul > li,
.page-content__inner ol > li {
  margin-top: 0.5em;
  list-style-position: inside;
  padding-left: 1%;
  text-indent: -1em;
}
.border {
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid currentColor;
}
.border > a {
  display: block;
  padding: 1em;
  color: currentColor;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .border > a:hover {
    opacity: 0.7;
  }
}
.page-content__inner .caption {
  margin-top: 0;
  font-size: 80%;
}
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}
@media (min-width: 375px) {
  .sp-only-xs {
    display: none;
  }
}
.pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
}
.pc-only-lg {
  display: none;
}
@media screen and (min-width: 1200px) {
  .pc-only-lg {
    display: block;
  }
}
.mt-0 {
  margin-top: 0;
}
.mt-10 {
  margin-top: 10px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-50 {
  margin-top: 50px;
}
.mt-60 {
  margin-top: 60px;
}
.mt-70 {
  margin-top: 70px;
}
.mt-80 {
  margin-top: 80px;
}
.mt-90 {
  margin-top: 90px;
}
.mt-100 {
  margin-top: 100px;
}
.mt-1em {
  margin-top: 1em;
}
.mt-2em {
  margin-top: 2em;
}
.mt-3em {
  margin-top: 3em;
}
.mt-4em {
  margin-top: 4em;
}
.mt-5em {
  margin-top: 5em;
}
.mt-1rem {
  margin-top: 1rem;
}
.mt-2rem {
  margin-top: 2rem;
}
.mt-3rem {
  margin-top: 3rem;
}
.mt-4rem {
  margin-top: 4rem;
}
.mt-5rem {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .mt-sp-0 {
    margin-top: 0;
  }
  .mt-sp-10 {
    margin-top: 10px;
  }
  .mt-sp-20 {
    margin-top: 20px;
  }
  .mt-sp-30 {
    margin-top: 30px;
  }
  .mt-sp-40 {
    margin-top: 40px;
  }
  .mt-sp-50 {
    margin-top: 50px;
  }
  .mt-sp-60 {
    margin-top: 60px;
  }
  .mt-sp-70 {
    margin-top: 70px;
  }
  .mt-sp-80 {
    margin-top: 80px;
  }
  .mt-sp-90 {
    margin-top: 90px;
  }
  .mt-sp-100 {
    margin-top: 100px;
  }
  .mt-sp-1em {
    margin-top: 1em;
  }
  .mt-sp-2em {
    margin-top: 2em;
  }
  .mt-sp-3em {
    margin-top: 3em;
  }
  .mt-sp-4em {
    margin-top: 4em;
  }
  .mt-sp-5em {
    margin-top: 5em;
  }
  .mt-sp-1rem {
    margin-top: 1rem;
  }
  .mt-sp-2rem {
    margin-top: 2rem;
  }
  .mt-sp-3rem {
    margin-top: 3rem;
  }
  .mt-sp-4rem {
    margin-top: 4rem;
  }
  .mt-sp-5rem {
    margin-top: 5rem;
  }
}
.mb-0 {
  margin-bottom: 0;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mb-60 {
  margin-bottom: 60px;
}
.mb-70 {
  margin-bottom: 70px;
}
.mb-80 {
  margin-bottom: 80px;
}
.mb-90 {
  margin-bottom: 90px;
}
.mb-100 {
  margin-bottom: 100px;
}
.mb-0_5em {
  margin-bottom: 0.5em;
}
.mb-1em {
  margin-bottom: 1em;
}
.mb-2em {
  margin-bottom: 2em;
}
.mb-3em {
  margin-bottom: 3em;
}
.mb-4em {
  margin-bottom: 4em;
}
.mb-5em {
  margin-bottom: 5em;
}
.mb-1rem {
  margin-bottom: 1rem;
}
.mb-2rem {
  margin-bottom: 2rem;
}
.mb-3rem {
  margin-bottom: 3rem;
}
.mb-4rem {
  margin-bottom: 4rem;
}
.mb-5rem {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .mb-sp-0 {
    margin-bottom: 0;
  }
  .mb-sp-10 {
    margin-bottom: 10px;
  }
  .mb-sp-20 {
    margin-bottom: 20px;
  }
  .mb-sp-30 {
    margin-bottom: 30px;
  }
  .mb-sp-40 {
    margin-bottom: 40px;
  }
  .mb-sp-50 {
    margin-bottom: 50px;
  }
  .mb-sp-60 {
    margin-bottom: 60px;
  }
  .mb-sp-70 {
    margin-bottom: 70px;
  }
  .mb-sp-80 {
    margin-bottom: 80px;
  }
  .mb-sp-90 {
    margin-bottom: 90px;
  }
  .mb-sp-100 {
    margin-bottom: 100px;
  }
  .mb-sp-1em {
    margin-bottom: 1em;
  }
  .mb-sp-2em {
    margin-bottom: 2em;
  }
  .mb-sp-3em {
    margin-bottom: 3em;
  }
  .mb-sp-4em {
    margin-bottom: 4em;
  }
  .mb-sp-5em {
    margin-bottom: 5em;
  }
  .mb-sp-1rem {
    margin-bottom: 1rem;
  }
  .mb-sp-2rem {
    margin-bottom: 2rem;
  }
  .mb-sp-3rem {
    margin-bottom: 3rem;
  }
  .mb-sp-4rem {
    margin-bottom: 4rem;
  }
  .mb-sp-5rem {
    margin-bottom: 5rem;
  }
}
.fs-50 {
  font-size: 50%;
}
.fs-55 {
  font-size: 55%;
}
.fs-60 {
  font-size: 60%;
}
.fs-65 {
  font-size: 65%;
}
.fs-70 {
  font-size: 70%;
}
.fs-75 {
  font-size: 75%;
}
.fs-80 {
  font-size: 80%;
}
.fs-85 {
  font-size: 85%;
}
.fs-90 {
  font-size: 90%;
}
.fs-95 {
  font-size: 95%;
}
.fs-100 {
  font-size: 100%;
}
.fs-110 {
  font-size: 110%;
}
.fs-120 {
  font-size: 120%;
}
.fs-130 {
  font-size: 130%;
}
.fs-140 {
  font-size: 140%;
}
.fs-150 {
  font-size: 150%;
}
.fc-blue {
  color: #00489d;
}
.fc-green {
  color: #00999e;
}
.fc-red {
  color: #e43a3a;
}
.fc-gray {
  color: #7c7c7c;
}
.link-blank::after {
  content: "";
  display: inline-block;
  background: url("../images/icon/link_blank-black.png") no-repeat center
    center/cover;
  width: 0.7em;
  height: 0.7em;
  margin-left: 0.5em;
}
.link-blank--blue::after {
  content: "";
  display: inline-block;
  background: url("../images/icon/link_blank-blue.png") no-repeat center
    center/cover;
  width: 0.7em;
  height: 0.7em;
  margin-left: 0.5em;
}
.link-blank--white::after {
  content: "";
  display: inline-block;
  background: url("../images/icon/link_blank-white.png") no-repeat center
    center/cover;
  width: 0.7em;
  height: 0.7em;
  margin-left: 0.5em;
}
.ta-right {
  text-align: right;
}
.ta-center {
  text-align: center;
}
.solid-pink {
  padding-block: 0.5em !important;
  padding-left: 1em !important;
  padding-right: 0.5em;
  color: #fff !important;
  background: #e992a7 !important;
  border: none !important;
}
.solid-blue {
  padding-block: 0.5em !important;
  padding-left: 1em !important;
  padding-right: 0.5em;
  color: #fff !important;
  background: #4191dd !important;
  border: none !important;
}
