@charset "UTF-8";
/*//////////////////////////////////////////////////////////

Copyright (C) apricot-design All Rights Reserved.
------------------------------------------------------------
CSS information
 file name  :  reset.css
 style info :  リセットファイル
 admin info :  apricot-design

//////////////////////////////////////////////////////////*/
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block;
}

audio[controls], canvas, video {
  display: inline-block;
  *display: inline;
  zoom: 1;
}

html {
  overflow-y: scroll;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body, div, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, ul {
  margin: 0;
  padding: 0;
}

body, button, input, select, textarea {
  font-size: 100%;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

pre, code, kbd, samp {
  font-family: monospace, monospace;
  _font-family: "courier new", monospace;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}
q:before, q:after {
  content: "";
  content: none;
}

small {
  font-size: 75%;
}

sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

ul, ol {
  margin: 0;
  padding: 0;
}

dd {
  margin: 0px;
}

nav ul, nav ol {
  list-style: none;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

figure, form {
  margin: 0;
}

fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  *margin-left: -7px;
}

input, button, select, textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font-size: 100%;
  vertical-align: baseline;
  *vertical-align: middle;
  margin: 0;
  padding: 0;
  outline: none;
}

input[type=radio] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  margin-right: 5px;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select {
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
}
select::-ms-expand {
  display: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: 100%;
}

img, abbr, acronym, fieldset {
  border: 0;
}

li {
  list-style: none;
}

/*画像を縦に並べた時に余白が出ないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
* {
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.ie6_error, .no_script {
  background: #F66;
  padding: 100px;
  text-align: center;
  font-size: 150%;
  color: #333;
}

.flt {
  float: left;
}

.flr {
  float: right;
}

.txt_l, td.txt_l, .txt_l td {
  text-align: left;
}

.txt_r, td.txt_r, .txt_r td {
  text-align: right;
}

.txt_c, td.txt_c, .txt_c td {
  text-align: center;
}

.valign_t, td.valign_t, .valign_t td {
  vertical-align: top;
}

.valign_m, td.valign_m, .valign_m td {
  vertical-align: middle;
}

.valign_b, td.valign_b, .valign_b td {
  vertical-align: bottom;
}

.clear {
  clear: both;
}

.clearfix {
  zoom: 1;
}
.clearfix:before {
  content: "";
  display: block;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.img_bd {
  border: solid 1px #E8E8E8;
}

.c_red {
  color: #FF3425;
}

.fadeIn {
  opacity: 0;
}
.fadeIn.js_active {
  animation: fadeIn 0.6s ease-in-out forwards;
}

.fadeInDelay {
  opacity: 0;
}
.fadeInDelay.js_active {
  animation: fadeIn 0.6s ease-in-out 0.4s forwards;
}

.fadeInLeft {
  opacity: 0;
}
.fadeInLeft.js_active {
  animation: fadeInLeft 0.6s ease-in-out forwards;
}

.fadeInRight {
  opacity: 0;
}
.fadeInRight.js_active {
  animation: fadeInRight 0.6s ease-in-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(2em);
  }
  80% {
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-1.5em);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(1.5em);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
:root {
  --headerHeight: 110px;
  --activeHeaderHeight: 80px;
  --minWidth: 1100px;
  --sideW: min(4.66vw, 70px);
  --space: 120px;
}
@media screen and (max-width: 767px) {
  :root {
    --headerHeight: 80px;
    --activeHeaderHeight: 60px;
    --minWidth: 1px;
    --sideW: min(6.66vw, 25px);
    --space: 80px;
  }
}

html {
  width: 100%;
  font-size: 10px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--activeHeaderHeight);
}

body {
  font: 400 16px/2 "Zen Kaku Gothic Antique", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  color: #343434;
  text-align: left;
  letter-spacing: 0.06em;
}

a {
  text-decoration: none;
  color: #343434;
  transition: 0.5s;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

.opacity {
  transition: 0.3s;
}
.opacity:hover {
  opacity: 0.6;
}

img {
  max-width: 100%;
  height: auto;
}

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

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

#container_wrap {
  position: relative;
  min-width: var(--minWidth);
}
@media screen and (max-width: 767px) {
  #container_wrap {
    overflow: hidden;
  }
}

.section_wrap {
  position: relative;
  margin-bottom: var(--space);
}

.inner, .inner_lg, .inner_min {
  max-width: calc(1220px + var(--sideW) * 2);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--sideW);
}
.inner_min {
  max-width: calc(1080px + var(--sideW) * 2);
}
.inner_lg {
  max-width: calc(1360px + var(--sideW) * 2);
}

.split {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 45px min(8.66vw, 130px);
  width: calc(1380px + var(--sideW) * 2);
  max-width: 100%;
  margin: 0 auto var(--space);
  padding: 0 var(--sideW);
}
@media screen and (max-width: 767px) {
  .split {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 80px;
  }
}
.split__title {
  grid-column: 1/3;
  font-size: 3.125em;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .split__title {
    font-size: 2em;
  }
}
.split__title::after {
  content: attr(data-en);
  display: block;
  font-size: 0.48em;
  font-family: "Outfit", serif;
  font-weight: 400;
  color: #A3A3A3;
}
@media screen and (max-width: 767px) {
  .split__left {
    width: 100%;
  }
}
.split__left .anchor_nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: sticky;
  top: var(--headerHeight);
}
.split__left .anchor_nav li {
  position: relative;
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.33;
  padding: 10px 60px 10px 15px;
  border: 1px solid #D3D3D3;
  cursor: pointer;
  transition: 0.5s;
}
.split__left .anchor_nav li::before {
  content: "";
  position: absolute;
  width: 1px;
  height: calc(100% - 20px);
  top: 10px;
  right: 55px;
  background-color: #D3D3D3;
}
.split__left .anchor_nav li::after {
  content: "";
  position: absolute;
  width: 27px;
  aspect-ratio: 1/1;
  border: 1px solid #D3D3D3;
  border-radius: 50%;
  background: url(../images/ico_arrow_right_gray.svg) no-repeat center/37% auto;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}
.split__left .anchor_nav li:hover, .split__left .anchor_nav li.js_active {
  background-color: #EFF3F4;
}
@media screen and (max-width: 767px) {
  .split__right {
    width: 100%;
  }
}
.split__right .anchor_content {
  margin-bottom: 60px;
}
.split__right .anchor_content:last-child {
  margin-bottom: 0;
}

.header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  min-width: var(--minWidth);
  height: var(--headerHeight);
  top: 0;
  left: 0;
  z-index: 1000;
  transition: 0.5s;
  padding: 0 var(--sideW);
}
.header.js_scroll {
  height: var(--activeHeaderHeight);
  background-color: #fff;
}
.header__ttl {
  transition: 0.5s;
}
.header__ttl a {
  display: block;
  width: min(12vw, 180px);
  aspect-ratio: 180/58;
  white-space: nowrap;
  text-indent: 110%;
  overflow: hidden;
  background: url(../images/logo_black.svg) no-repeat center/contain;
  transition: none;
}
@media screen and (max-width: 767px) {
  .header__ttl a {
    width: min(32vw, 120px);
  }
}
.header__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0 min(1.66vw, 25px);
}
.header__nav .pc_nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 min(1.66vw, 25px);
}
@media screen and (max-width: 1366px) {
  .header__nav .pc_nav {
    display: none;
  }
}
.header__nav .pc_nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  font-size: 0.9357em;
  font-weight: 700;
  line-height: 1.8;
}
.header__nav .pc_nav a:hover::before {
  background-color: #343434;
  background-image: url(../images/ico_arrow_right_white.svg);
}
.header__nav .pc_nav a::before {
  content: "";
  display: block;
  width: 29px;
  aspect-ratio: 1/1;
  border: 1px solid #343434;
  border-radius: 50%;
  background: url(../images/ico_arrow_right.svg) no-repeat center/38% auto;
  transition: 0.5s;
}

.global_nav {
  display: flex;
  flex-wrap: wrap;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  overflow-y: scroll;
  background-color: #4B97B4;
}
.global_nav.active {
  transition: opacity 0.5s;
  opacity: 1;
  pointer-events: auto;
  right: 0;
}
.global_nav__image {
  position: relative;
  width: 50%;
  height: 65%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .global_nav__image {
    width: 20%;
    height: 60%;
  }
}
.global_nav__image::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/main_visual_bg.jpg) no-repeat center/cover;
  left: 0;
  top: 0;
  opacity: 0.24;
}
.global_nav__image img {
  width: 200%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.global_nav__image .text {
  position: absolute;
  top: 60%;
  left: var(--sideW);
  transform: translateY(-50%);
  color: #fff;
  z-index: 1;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .global_nav__image .text {
    display: none;
  }
}
.global_nav__image .text h2 {
  font-size: min(4vw, 3.75em);
  font-weight: 900;
  transform: translateX(-10px);
}
.global_nav__image .text strong {
  display: block;
  font-size: min(2vw, 1.875em);
  font-weight: 900;
  margin-bottom: 15px;
}
.global_nav__image .text p {
  font-family: "Outfit", serif;
  font-size: min(1.06vw, 1em);
}
.global_nav__list {
  width: 50%;
  height: 65%;
  display: grid;
  place-content: center;
  gap: 30px;
  position: relative;
  padding-right: calc(var(--sideW) * 2);
  background-color: #4B97B4;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .global_nav__list {
    width: 80%;
    height: 60%;
    gap: 15px;
  }
}
.global_nav__list a {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.8;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .global_nav__list a {
    font-size: 1.125em;
  }
}
.global_nav__list a:hover::before {
  background-color: #343434;
}
.global_nav__list a::before {
  content: "";
  display: block;
  width: 29px;
  aspect-ratio: 1/1;
  border: 1px solid #fff;
  border-radius: 50%;
  background: url(../images/ico_arrow_right_white.svg) no-repeat center/38% auto;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .global_nav__list a::before {
    width: 20px;
  }
}
.global_nav__school {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  height: 35%;
  background-color: #fff;
  padding: 60px var(--sideW);
}
@media screen and (max-width: 767px) {
  .global_nav__school {
    gap: 40px 0;
    height: auto;
    padding-block: 30px;
  }
}
.global_nav__school li {
  padding: 25px 25px 0;
  border-right: 1px solid #A3A3A3;
}
@media screen and (max-width: 767px) {
  .global_nav__school li {
    padding: 0 25px;
    border: 0 none;
  }
}
.global_nav__school li:nth-child(2) a {
  background-image: url(../images/ico_arrow_right.svg);
  background-color: #FCD900;
  color: #343434;
}
.global_nav__school li:nth-child(3) {
  border-right: 0 none;
}
.global_nav__school li:nth-child(3) a {
  background-color: #0185CE;
}
.global_nav__school li img {
  display: block;
  margin: 0 auto 15px;
}
.global_nav__school li p {
  text-align: center;
  font-size: 0.875em;
  line-height: 1.8;
  margin-bottom: 15px;
}
.global_nav__school li a {
  display: block;
  width: 300px;
  max-width: 100%;
  line-height: 65px;
  font-size: 0.9375em;
  font-weight: 700;
  text-align: center;
  color: #fff;
  border-radius: 40px;
  background: url(../images/ico_arrow_right_white.svg) no-repeat center right 12px/14px auto;
  background-color: #E02E8C;
}
@media screen and (max-width: 767px) {
  .global_nav__school li a {
    width: 280px;
    line-height: 50px;
  }
}
.global_nav__school li a:hover {
  box-shadow: 0 10px 20px rgba(52, 52, 52, 0.3);
}

.menu-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  position: relative;
  width: 40px;
  aspect-ratio: 1/1;
  cursor: pointer;
  z-index: 3;
  transition: 0.5s;
}
.menu-trigger span {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #343434;
  transition: 0.5s;
  top: calc(50% - 0.5px);
}
.menu-trigger span::before, .menu-trigger span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #343434;
  border-radius: 2px;
  top: -9px;
  left: 0;
  right: 0;
  margin: auto;
  transform-origin: center;
  transition: 0.5s;
}
.menu-trigger span::after {
  top: 9px;
}
.menu-trigger.active {
  background-color: transparent;
}
.menu-trigger.active span {
  background: none;
}
.menu-trigger.active span::before, .menu-trigger.active span::after {
  top: 0;
  opacity: 1;
  rotate: 135deg;
  background-color: #fff;
}
.menu-trigger.active span::after {
  rotate: -135deg;
}

.home .header.js_scroll {
  height: var(--activeHeaderHeight);
}
.home .header.js_scroll .header__ttl a {
  background-image: url(../images/logo_black.svg);
}
.home .header.js_scroll .header__nav .pc_nav a {
  color: #343434;
}
.home .header.js_scroll .header__nav .pc_nav a::before {
  border-color: #343434;
  background-image: url(../images/ico_arrow_right.svg);
}
.home .header.js_scroll .menu-trigger span {
  background-color: #343434;
}
.home .header.js_scroll .menu-trigger span::before, .home .header.js_scroll .menu-trigger span::after {
  background-color: #343434;
}
.home .header.js_scroll .menu-trigger.active span {
  background: none;
}
.home .header.js_scroll .menu-trigger.active span::before, .home .header.js_scroll .menu-trigger.active span::after {
  background-color: #fff;
}
.home .header__ttl a {
  background-image: url(../images/logo.svg);
}
.home .header__nav .pc_nav a {
  color: #fff;
}
.home .header__nav .pc_nav a::before {
  border-color: #fff;
  background-image: url(../images/ico_arrow_right_white.svg);
}
.home .menu-trigger span {
  background-color: #fff;
}
.home .menu-trigger span::before, .home .menu-trigger span::after {
  background-color: #fff;
}
.home .menu-trigger.active span {
  background: none;
}

.footer {
  padding: var(--space) 0 80px;
  background-color: #F9F9F9;
}
.footer__link {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 50px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .footer__link {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .footer__link li:first-child a {
    border-bottom: 0 none;
  }
}
@media screen and (max-width: 767px) {
  .footer__link li:first-child a::after {
    content: none;
  }
}
.footer__link a {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 10px 30px;
  position: relative;
  border-top: 1px solid #A3A3A3;
  border-bottom: 1px solid #A3A3A3;
  padding: 40px 65px 40px 0;
  background: url(../images/ico_arrow_right.svg) no-repeat center right 13px/11px auto;
}
@media screen and (max-width: 767px) {
  .footer__link a {
    grid-template-columns: 1fr;
    padding: 20px 0;
    background: none;
  }
}
.footer__link a:hover::before, .footer__link a:hover::after {
  width: 100%;
}
.footer__link a::before, .footer__link a::after {
  content: "";
  position: absolute;
  width: 57px;
  height: 1px;
  background-color: #474545;
  top: -1px;
  right: 0;
  transition: 0.5s;
}
.footer__link a::after {
  top: auto;
  bottom: -1px;
}
.footer__link a strong {
  display: block;
  font-size: 1.125em;
  line-height: 1.5;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .footer__link a strong {
    font-size: 1em;
  }
}
.footer__link a p {
  font-size: 0.875em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .footer__link a p {
    font-size: 0.75em;
  }
}
.footer__logo {
  display: block;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 160px;
  }
}
.footer__campus {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid #343434;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .footer__campus {
    padding-bottom: 0;
  }
}
.footer__campus-item {
  width: 33.33333%;
  border-right: 1px solid #343434;
  padding: 30px 15px 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer__campus-item {
    width: 100%;
    border-right: 0 none;
    padding: 30px 15px;
    border-bottom: 1px solid #343434;
  }
}
.footer__campus-item:last-child {
  border: 0 none;
}
.footer__campus-item img {
  display: block;
  margin: 0 auto 15px;
}
.footer__campus-item img:last-child {
  margin-bottom: 0;
}
.footer__campus-item p {
  font-size: 0.875em;
  font-weight: 500;
  margin-bottom: 10px;
}
.footer__campus-item p:last-child {
  margin-bottom: 0;
}
.footer__campus-item ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px;
}
.footer__campus-item ul a {
  display: block;
  border-radius: 50%;
}
.footer__campus-item ul a:hover {
  box-shadow: 5px 5px 10px rgba(52, 52, 52, 0.2);
}
.footer .copyright {
  text-align: center;
  font-size: 0.8125em;
  font-family: "Outfit", serif;
}

.main_visual {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .main_visual {
    padding: 0;
    margin-bottom: 53px;
  }
}
.main_visual::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/main_visual_bg.jpg) no-repeat center/cover;
  left: 0;
  top: 0;
  opacity: 0.24;
}
.main_visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main_visual__text {
  position: absolute;
  top: 60%;
  left: var(--sideW);
  transform: translateY(-50%);
  color: #fff;
  z-index: 1;
  line-height: 1.5;
}
.main_visual__text h2 {
  font-size: min(4vw, 3.75em);
  font-weight: 900;
  transform: translateX(-10px);
}
@media screen and (max-width: 767px) {
  .main_visual__text h2 {
    font-size: 2em;
    transform: translateX(-5px);
  }
}
.main_visual__text strong {
  display: block;
  font-size: min(2vw, 1.875em);
  font-weight: 900;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .main_visual__text strong {
    font-size: 1.25em;
  }
}
.main_visual__text p {
  font-family: "Outfit", serif;
  font-size: min(1.06vw, 1em);
}
@media screen and (max-width: 767px) {
  .main_visual__text p {
    font-size: 0.75em;
  }
}

.top_pickup {
  position: relative;
  z-index: 1;
  padding-left: var(--sideW);
  margin: -160px 0 80px;
}
@media screen and (max-width: 767px) {
  .top_pickup {
    margin-top: -120px;
  }
}
.top_pickup__inner {
  position: relative;
  overflow: hidden;
  padding: 45px 0 0 var(--sideW);
}
@media screen and (max-width: 767px) {
  .top_pickup__inner {
    padding-top: 20px;
  }
}
.top_pickup__inner::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #fff;
  z-index: -1;
  border-radius: 20px 0 0 0;
}
.top_pickup h2 {
  position: relative;
  font-family: "Outfit", serif;
  line-height: 1.8;
  padding-left: 59px;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .top_pickup h2 {
    font-size: 0.875em;
    margin-bottom: 25px;
  }
}
.top_pickup h2::before {
  content: "";
  position: absolute;
  width: 44px;
  height: 1px;
  background-color: #343434;
  left: 0;
  top: calc(50% - 0.5px);
}
.top_pickup .swiper-slide {
  width: 250px;
}
@media screen and (max-width: 767px) {
  .top_pickup .swiper-slide {
    width: 200px;
  }
}
.top_pickup .swiper-slide a {
  display: block;
}
.top_pickup .swiper-slide a:hover img {
  transform: scale(1.08);
}
.top_pickup .swiper-slide a .image {
  overflow: hidden;
  aspect-ratio: 1/1;
  border-radius: 10px;
  margin-bottom: 10px;
}
.top_pickup .swiper-slide a .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
.top_pickup .swiper-slide a p {
  position: relative;
  font-size: 0.8125em;
  font-weight: 500;
  line-height: 1.54;
  padding-right: 45px;
}
@media screen and (max-width: 767px) {
  .top_pickup .swiper-slide a p {
    padding-right: 35px;
  }
}
.top_pickup .swiper-slide a p::after {
  content: "";
  position: absolute;
  width: 14px;
  aspect-ratio: 1/1;
  background: url(../images/ico_arrow_right.svg) no-repeat center/5px auto;
  border: 1px solid #343434;
  border-radius: 50%;
  right: 16px;
  top: calc(50% - 7px);
}

.top_news {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .top_news {
    padding: 0 var(--sideW);
  }
}
.top_news img {
  width: 40%;
  height: 570px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top right;
     object-position: top right;
}
@media screen and (max-width: 767px) {
  .top_news img {
    display: none;
  }
}
.top_news__contents {
  width: calc(60% - 60px);
}
@media screen and (max-width: 767px) {
  .top_news__contents {
    width: 100%;
  }
}
.top_news__title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 50px;
  position: relative;
  border-bottom: 1px solid #E0E0E0;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.top_news__title::before {
  content: "";
  position: absolute;
  width: 110px;
  height: 1px;
  background-color: #A3A3A3;
  left: 0;
  bottom: -1px;
}
.top_news__title h2 {
  font-size: 2.5em;
  font-weight: 700;
  font-family: "Outfit", serif;
  line-height: 1;
}
.top_news__title .cat {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.top_news__title .cat li {
  font-size: 0.9375em;
  font-weight: 500;
  padding: 0 20px;
  cursor: pointer;
  line-height: 34px;
  text-align: center;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .top_news__title .cat li {
    font-size: 0.75em;
    line-height: 28px;
  }
}
.top_news__title .cat li.js_active {
  background-color: #343434;
  color: #fff;
}
.top_news__contents {
  padding-top: 60px;
}
.top_news__contents-item {
  display: none;
}
.top_news__contents-item.js_active {
  display: block;
}
.top_news__contents .list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.top_news__contents .list a {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 0;
}
.top_news__contents .list a:hover .title {
  text-decoration: underline;
}
.top_news__contents .list a .date {
  width: 113px;
  font-weight: 500;
  font-family: "Outfit", serif;
}
.top_news__contents .list a .cat {
  width: 98px;
  line-height: 29px;
  text-align: center;
  font-weight: 500;
  font-size: 0.75em;
  border: 1px solid #343434;
  border-radius: 15px;
}
.top_news__contents .list a .title {
  width: calc(100% - 113px - 98px);
  padding-left: 25px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .top_news__contents .list a .title {
    width: 100%;
    padding-left: 0;
  }
}

.top_keyword h2 {
  position: relative;
  text-align: center;
  font-size: 1.25em;
  font-weight: 700;
  margin-bottom: 95px;
}
@media screen and (max-width: 767px) {
  .top_keyword h2 {
    font-size: 1em;
  }
}
.top_keyword h2::before {
  content: "KEYWORD";
  position: absolute;
  font-size: 6em;
  font-family: "Outfit", serif;
  color: #EFF3F4;
  line-height: 1;
  letter-spacing: 0.08em;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top_keyword h2::before {
    font-size: 5em;
  }
}
.top_keyword .swiper {
  padding: 15px 0;
}
.top_keyword .swiper:last-child {
  margin-bottom: 0;
}
.top_keyword .swiper-rev {
  direction: rtl;
}
.top_keyword .swiper-slide {
  width: auto;
  padding: 0 50px;
  line-height: 72px;
  border-radius: 40px;
  box-shadow: 0 2px 10px rgba(52, 52, 52, 0.16);
  font-size: 1.25em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .top_keyword .swiper-slide {
    padding: 0 25px;
    font-size: 0.9375em;
    line-height: 50px;
  }
}

.top_school {
  overflow: hidden;
}
.top_school__inner {
  padding-left: calc(var(--sideW) * 2);
}
@media screen and (max-width: 767px) {
  .top_school__inner {
    padding-left: var(--sideW);
  }
}
.top_school h2 {
  position: relative;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .top_school h2 {
    margin-bottom: 60px;
    transform: translateX(-15px);
  }
}
.top_school h2 > span {
  display: block;
  font-size: 5em;
  font-weight: 700;
  font-family: "Outfit", serif;
  color: #EFF3F4;
  line-height: 0.9;
}
@media screen and (max-width: 767px) {
  .top_school h2 > span {
    font-size: 2.5em;
  }
}
.top_school h2 > span:nth-child(2)::first-letter {
  font-size: 2em;
}
.top_school h2 b {
  position: absolute;
  left: 120px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .top_school h2 b {
    left: 60px;
    font-size: 1.125em;
  }
}
.top_school__item {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 20px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .top_school__item {
    padding-right: var(--sideW);
  }
}
.top_school__item:nth-of-type(2) .image::after {
  background-image: url(../images/top_mia_bg.jpg);
}
.top_school__item:last-of-type {
  margin-bottom: 0;
}
.top_school__item:last-of-type .image::after {
  background-image: url(../images/top_mie_bg.jpg);
}
.top_school__item h3 {
  width: 100%;
}
.top_school__item h3 img {
  display: block;
}
.top_school__item .text {
  width: 530px;
}
@media screen and (max-width: 767px) {
  .top_school__item .text {
    width: 100%;
  }
}
.top_school__item .text h4 {
  font-size: 3.125em;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .top_school__item .text h4 {
    font-size: 1.8em;
  }
}
.top_school__item .text h4 span {
  display: block;
  transform: translateX(-0.5em);
}
.top_school__item .text h4 span + span {
  transform: translateX(0.5em);
}
.top_school__item .text .en {
  font-family: "Outfit", serif;
  color: #A3A3A3;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .top_school__item .text .en {
    font-size: 0.75em;
  }
}
.top_school__item .text ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.top_school__item .text ul li {
  position: relative;
  font-size: 1.0625em;
  font-weight: 700;
  line-height: 1.6;
  padding-left: 37px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .top_school__item .text ul li {
    font-size: 0.875em;
    padding-left: 30px;
  }
}
.top_school__item .text ul li:hover::before, .top_school__item .text ul li.js_active::before {
  background-color: #343434;
  background-image: url(../images/ico_arrow_right_white.svg);
}
.top_school__item .text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 29px;
  aspect-ratio: 1/1;
  border: 1px solid #343434;
  border-radius: 50%;
  background: url(../images/ico_arrow_right.svg) no-repeat center/38% auto;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .top_school__item .text ul li::before {
    width: 20px;
  }
}
.top_school__item .image {
  position: relative;
  width: calc(100% - 550px);
  padding-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .top_school__item .image {
    width: calc(100% + var(--sideW));
    margin-right: calc(var(--sideW) * -1);
    padding-bottom: 40px;
  }
}
.top_school__item .image::after {
  content: "";
  position: absolute;
  width: calc(100% + 100px);
  height: 400px;
  background: url(../images/top_mit_bg.jpg) no-repeat center/cover;
  bottom: 0;
  left: -100px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top_school__item .image::after {
    height: 200px;
  }
}
.top_school__slide .swiper-slide {
  position: relative;
}
.top_school__slide .swiper-slide img {
  width: 100%;
  height: 462px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px 0 0 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .top_school__slide .swiper-slide img {
    height: auto;
    aspect-ratio: 807/462;
  }
}
.top_school__slide .swiper-slide strong {
  display: block;
  font-size: 1.25em;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.5;
}
.top_school__slide .swiper-slide p {
  max-width: 370px;
  font-size: 0.875em;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 15px;
}
.top_school__slide .swiper-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: static;
  padding-left: 35px;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .top_school__slide .swiper-pagination {
    gap: 5px;
    margin-top: 15px;
  }
}
.top_school__slide .swiper-pagination-bullet {
  position: relative;
  width: 40px;
  aspect-ratio: 1/1;
  height: auto;
  border: 1px solid #343434;
  background-color: transparent;
  border-radius: 50%;
  opacity: 1;
  margin: 0 !important;
}
@media screen and (max-width: 767px) {
  .top_school__slide .swiper-pagination-bullet {
    width: 20px;
  }
}
.top_school__slide .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  width: 12px;
  aspect-ratio: 1/1;
  background-color: #343434;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  opacity: 0;
  transition: 0.5s;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .top_school__slide .swiper-pagination-bullet::after {
    width: 10px;
  }
}
.top_school__slide .swiper-pagination-bullet-active::after {
  opacity: 1;
}

.top_numbers {
  padding: 160px 0 100px;
  background: url(../images/top_numbers.jpg) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .top_numbers {
    padding: var(--space) 0;
  }
}
.top_numbers::before, .top_numbers::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #343434;
  opacity: 0.56;
  top: 0;
  left: 0;
}
.top_numbers::after {
  background: url(../images/top_numbers_bg.jpg) no-repeat center/cover;
  z-index: 1;
}
.top_numbers .inner, .top_numbers .inner_min, .top_numbers .inner_lg {
  position: relative;
  z-index: 2;
}
.top_numbers h2 {
  font-size: 1.25em;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .top_numbers h2 {
    margin-bottom: 30px;
  }
}
.top_numbers h2::before {
  content: "NUMBERS";
  position: absolute;
  font-size: 10em;
  font-weight: 500;
  font-family: "Outfit", serif;
  width: 100%;
  line-height: 1;
  bottom: calc(100% + 10px);
  left: 0;
  opacity: 0.11;
}
@media screen and (max-width: 767px) {
  .top_numbers h2::before {
    font-size: 4em;
  }
}
.top_numbers__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .top_numbers__content {
    grid-template-columns: 1fr;
  }
}
.top_numbers__content dl {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 3px;
  border-right: 1px solid #fff;
  padding: 25px 35px;
  color: #fff;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .top_numbers__content dl {
    width: 100%;
    padding: 25px 0;
    border-right: 0 none;
    border-bottom: 1px solid #fff;
  }
}
.top_numbers__content dl:last-child {
  border: 0 none;
}
.top_numbers__content dl dt {
  font-size: min(1.86vw, 1.5em);
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top_numbers__content dl dt {
    width: 100%;
    font-size: 1.5em;
  }
}
.top_numbers__content dl dt span {
  display: block;
  font-size: 0.66em;
}
.top_numbers__content dl dd {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  align-items: center;
  letter-spacing: 0.08em;
}
.top_numbers__content dl dd.lg .num {
  font-size: min(8.66vw, 130px);
}
@media screen and (max-width: 767px) {
  .top_numbers__content dl dd.lg .num {
    font-size: 24vw;
  }
}
.top_numbers__content dl dd.lg .num span {
  font-size: 0.385em;
}
.top_numbers__content dl dd .num {
  display: flex;
  align-items: baseline;
  justify-content: center;
  max-width: 100%;
  font-size: min(6.66vw, 100px);
  font-family: "Outfit", serif;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .top_numbers__content dl dd .num {
    font-size: 20vw;
  }
}
.top_numbers__content dl dd .num span:not(.decimal) {
  font-size: 0.615em;
}
.top_numbers__content dl dd .num span:not(.decimal).jp {
  font-family: "Zen Kaku Gothic Antique", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
}
.top_numbers__content dl dd p:not([class]) {
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
}
.top_numbers a {
  display: block;
  position: relative;
  width: 350px;
  max-width: 100%;
  line-height: 65px;
  text-align: center;
  font-weight: 500;
  background-color: #fff;
  margin: 0 auto;
}
.top_numbers a:hover::before, .top_numbers a:hover::after {
  width: calc(100% + 10px);
  height: calc(100% + 10px);
}
.top_numbers a::before, .top_numbers a::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-width: 1px 1px 0 0;
  border-style: solid;
  border-color: #fff;
  right: -5px;
  top: -5px;
  transition: 0.5s;
}
.top_numbers a::after {
  right: auto;
  top: auto;
  left: -5px;
  bottom: -5px;
  border-width: 0 0 1px 1px;
}

.campus_life {
  overflow: hidden;
}
.campus_life h2 {
  position: relative;
  font-size: 1.25em;
  font-weight: 700;
  padding-left: 160px;
  padding-bottom: 85px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .campus_life h2 {
    font-size: 1em;
    padding-bottom: 30px;
    padding-left: 60px;
  }
}
.campus_life h2 span {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 4em;
  font-family: "Outfit", serif;
  line-height: 0.8;
  letter-spacing: 0.08em;
  color: #EFF3F4;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .campus_life h2 span {
    font-size: 1.9em;
  }
}
.campus_life h2 span::first-letter {
  font-size: 2em;
}
.campus_life .campus_slide {
  margin-bottom: 30px;
}
.campus_life .swiper-slide {
  position: relative;
  width: 256px;
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .campus_life .swiper-slide {
    width: 180px;
  }
}
.campus_life .swiper-slide:hover img {
  transform: scale(1.1);
}
.campus_life .swiper-slide::after {
  content: "";
  position: absolute;
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: url(../images/ico_search.svg) no-repeat center/15px auto;
  background-color: #fff;
  right: 13px;
  bottom: 13px;
}
.campus_life .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
.campus_life a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-family: "Outfit", serif;
}
.campus_life a::before {
  content: "";
  display: block;
  width: 66px;
  aspect-ratio: 1/1;
  border: 1px solid #343434;
  border-radius: 50%;
  background: url(../images/ico_arrow_right.svg) no-repeat center left calc(50% + 3px)/25px auto;
}
@media screen and (max-width: 767px) {
  .campus_life a::before {
    width: 40px;
    background-size: 18px;
    background-position: center left calc(50% + 2px);
  }
}

.hero {
  display: grid;
  place-content: center;
  height: 220px;
  background: no-repeat center/cover;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .hero {
    height: 150px;
    margin-bottom: 60px;
  }
}
.hero h1 {
  font-size: 2.75em;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .hero h1 {
    font-size: 2em;
  }
}
.hero h1::after {
  content: attr(data-en);
  display: block;
  font-size: 0.54em;
  font-weight: 400;
  font-family: "Outfit", serif;
  color: #A3A3A3;
}
@media screen and (max-width: 767px) {
  .hero h1::after {
    font-size: 0.6em;
  }
}

.hero_about {
  position: relative;
  padding: 200px 0 0;
  margin-bottom: 100px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .hero_about {
    padding: 150px 0 0;
  }
}
.hero_about::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 520px;
  background: url(../images/main_visual_bg.jpg) no-repeat center/cover;
  left: 0;
  bottom: 0;
  opacity: 0.24;
}
@media screen and (max-width: 767px) {
  .hero_about::before {
    height: 250px;
  }
}
.hero_about::after {
  content: "";
  display: block;
  width: 100%;
  height: 520px;
  background: url(../images/about_01.jpg) no-repeat center top/cover;
}
@media screen and (max-width: 767px) {
  .hero_about::after {
    height: 250px;
  }
}
.hero_about h1 {
  display: flex;
  white-space: nowrap;
  position: relative;
  font-size: 10em;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 200px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .hero_about h1 {
    font-size: 5em;
    margin-bottom: 150px;
  }
}
.hero_about h1::after {
  content: "";
  position: absolute;
  width: 257px;
  aspect-ratio: 257/465;
  background: url(../images/about_main_icon.svg) no-repeat center/contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .hero_about h1::after {
    width: 140px;
  }
}
.hero_about h1 span {
  display: flex;
  animation: scroll-text 20s linear infinite;
}
.hero_about h1 span::before, .hero_about h1 span::after {
  content: attr(data-text);
  display: block;
}
.hero_about p {
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.66;
  text-align: center;
  padding: 0 var(--sideW);
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .hero_about p {
    font-size: 1em;
    text-align: left;
  }
}
.hero_about p span {
  display: block;
  margin-bottom: 1em;
  letter-spacing: 0.08em;
}

@keyframes scroll-text {
  0% {
    transform: translateX(10%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.hero_campus-life {
  display: block;
  position: relative;
  font-size: 5em;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #EFF3F4;
  font-family: "Outfit", serif;
  line-height: 0.7;
  margin: 100px 0 80px;
}
@media screen and (max-width: 767px) {
  .hero_campus-life {
    font-size: 8vw;
    margin: 50px 0 30px;
  }
}
.hero_campus-life::first-letter {
  font-size: 2em;
}
.hero_campus-life span {
  position: absolute;
  left: 150px;
  top: 0;
  font-size: 0.25em;
  font-family: "Zen Kaku Gothic Antique", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  color: #343434;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .hero_campus-life span {
    font-size: 0.4em;
    left: 15vw;
  }
}

.hero_numbers {
  display: grid;
  place-content: center;
  position: relative;
  padding: 0 var(--sideW);
  background: url(../images/hero_numbers.jpg) no-repeat center top/cover;
  height: 580px;
  margin-bottom: var(--space);
}
@media screen and (max-width: 767px) {
  .hero_numbers {
    height: 300px;
  }
}
.hero_numbers::before, .hero_numbers::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #343434;
  opacity: 0.56;
  top: 0;
  left: 0;
}
.hero_numbers::after {
  background: url(../images/top_numbers_bg.jpg) no-repeat center/cover;
  z-index: 1;
}
.hero_numbers h1 {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 1.25em;
  font-weight: 700;
  text-align: center;
  padding-top: 60px;
}
.hero_numbers h1::before {
  content: attr(data-en);
  display: block;
  font-size: 10em;
  font-weight: 500;
  font-family: "Outfit", serif;
  line-height: 1;
  color: rgba(255, 255, 255, 0.11);
}
@media screen and (max-width: 767px) {
  .hero_numbers h1::before {
    font-size: 5em;
  }
}

.sec_about_01 {
  overflow: hidden;
}
.sec_about_01 h3 {
  position: relative;
  font-size: 3.75em;
  font-weight: 900;
  line-height: 1.5;
  padding-bottom: 10px;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .sec_about_01 h3 {
    font-size: 2em;
  }
}
.sec_about_01 h3::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 1px;
  background-color: #707070;
  left: 0;
  bottom: 0;
}
.sec_about_01 p {
  font-size: 1.125em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .sec_about_01 p {
    font-size: 0.875em;
  }
}

.sec_about_02 h2 {
  position: relative;
  text-align: center;
  font-size: 1.25em;
  font-weight: 700;
  margin-bottom: 75px;
}
.sec_about_02 h2::after {
  content: attr(data-en);
  position: absolute;
  font-size: 6em;
  font-family: "Outfit", serif;
  color: #EFF3F4;
  text-align: center;
  top: 50%;
  left: 50%;
  line-height: 0.9;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .sec_about_02 h2::after {
    font-size: 3em;
  }
}
.sec_about_02 h3 {
  font-size: 3.75em;
  font-weight: 900;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .sec_about_02 h3 {
    font-size: 2em;
  }
}
.sec_about_02 h3:nth-of-type(2) {
  font-size: 3em;
}
@media screen and (max-width: 767px) {
  .sec_about_02 h3:nth-of-type(2) {
    font-size: 1.5em;
  }
}
.sec_about_02 p {
  font-size: 1.125em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .sec_about_02 p {
    font-size: 0.875em;
    margin-bottom: 100px;
    text-align: left;
  }
}

.sec_about_03 h2 {
  text-align: center;
  font-size: 1.75em;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .sec_about_03 h2 {
    font-size: 1.5em;
  }
}
.sec_about_03 .message {
  display: grid;
  grid-template-columns: 472px 1fr;
  gap: 30px 65px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .sec_about_03 .message {
    grid-template-columns: 1fr;
  }
}
.sec_about_03 .message:last-child {
  margin-bottom: 0;
}
.sec_about_03 .message .left {
  position: relative;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .sec_about_03 .message .left {
    padding-bottom: 40px;
  }
}
.sec_about_03 .message .left::after {
  content: "";
  position: absolute;
  width: 532px;
  height: 436px;
  right: 80px;
  bottom: 0;
  background: url(../images/about_02_bg.jpg) no-repeat center/cover;
  z-index: -1;
}
@media screen and (min-width: 1200px) {
  .sec_about_03 .message .left::after {
    width: calc((100vw - 1220px) / 2 + 100%);
  }
}
.sec_about_03 .message .left img {
  display: block;
  border-radius: 20px;
}
.sec_about_03 .message .right {
  padding: 75px min(6.66vw, 100px) 0 0;
}
@media screen and (max-width: 767px) {
  .sec_about_03 .message .right {
    padding: 0;
  }
}
.sec_about_03 .message .right .text {
  font-weight: 500;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .sec_about_03 .message .right .text {
    font-size: 0.9375em;
    margin-bottom: 30px;
  }
}
.sec_about_03 .message .right .text span {
  display: block;
  margin-bottom: 0.7em;
}
.sec_about_03 .message .right .text span:last-child {
  margin-bottom: 0;
}
.sec_about_03 .message .right .post {
  font-size: 0.9375em;
  font-weight: 500;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .sec_about_03 .message .right .post {
    font-size: 0.875em;
  }
}
.sec_about_03 .message .right .name {
  display: flex;
  align-items: center;
  gap: 5px 20px;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .sec_about_03 .message .right .name {
    font-size: 1.5em;
  }
}
.sec_about_03 .message .right .name::after {
  content: attr(data-en);
  display: block;
  font-size: 0.5em;
  font-family: "Outfit", serif;
  color: #A3A3A3;
  font-weight: 400;
}

.sec_numbers_01 .count {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .sec_numbers_01 .count {
    grid-template-columns: 1fr;
  }
}
.sec_numbers_01 .count dl {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  padding: 25px 35px;
  font-weight: 700;
  border-right: 1px solid #D3D3D3;
}
@media screen and (max-width: 767px) {
  .sec_numbers_01 .count dl {
    border-right: 0 none;
    border-bottom: 1px solid #D3D3D3;
    padding: 25px 0;
  }
}
.sec_numbers_01 .count dl:last-child {
  border: 0 none;
}
.sec_numbers_01 .count dl dt {
  font-size: min(1.86vw, 1.5em);
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec_numbers_01 .count dl dt {
    width: 100%;
    font-size: 1.5em;
  }
}
.sec_numbers_01 .count dl dt span {
  display: block;
  font-size: 0.66em;
}
.sec_numbers_01 .count dl dd {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  align-items: center;
  letter-spacing: 0.08em;
}
.sec_numbers_01 .count dl dd.lg .num {
  font-size: min(8.66vw, 130px);
}
@media screen and (max-width: 767px) {
  .sec_numbers_01 .count dl dd.lg .num {
    font-size: 24vw;
  }
}
.sec_numbers_01 .count dl dd.lg .num span {
  font-size: 0.385em;
}
.sec_numbers_01 .count dl dd .num {
  display: flex;
  align-items: baseline;
  justify-content: center;
  max-width: 100%;
  font-size: min(6.66vw, 100px);
  font-family: "Outfit", serif;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .sec_numbers_01 .count dl dd .num {
    font-size: 20vw;
  }
}
.sec_numbers_01 .count dl dd .num span:not(.decimal) {
  font-size: 0.615em;
}
.sec_numbers_01 .count dl dd .num span:not(.decimal).jp {
  font-family: "Zen Kaku Gothic Antique", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
}
.sec_numbers_01 .count dl dd p:not([class]) {
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
}
.sec_numbers_01 .graph {
  display: flex;
  flex-wrap: wrap;
  gap: 50px min(7.73vw, 116px);
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .sec_numbers_01 .graph {
    justify-content: center;
  }
}
.sec_numbers_01 .graph h2 {
  width: 100%;
  font-size: 1.75em;
  text-align: center;
  font-weight: 700;
  border-top: 1px solid #D3D3D3;
  border-bottom: 1px solid #D3D3D3;
  line-height: 1.5;
  padding: 25px 0;
}
.sec_numbers_01 .graph h2 span {
  margin: 0 1em;
}
.sec_numbers_01 .graph dl {
  width: calc(33.333% - min(7.73vw, 116px) / 3 * 2);
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .sec_numbers_01 .graph dl {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .sec_numbers_01 .graph dl dt {
    width: 200px;
    margin: 0 auto;
  }
}
.sec_numbers_01 .graph dl dt img {
  display: block;
  margin: 0 auto 25px;
}
.sec_numbers_01 .graph dl dt .circle {
  transform: rotate(-90deg);
}
.sec_numbers_01 .graph dl dt .circle.js_active circle {
  animation: anime01 1.5s 0s forwards linear;
}
.sec_numbers_01 .graph dl dt .circle circle {
  fill: none;
  stroke-width: 8px;
}
.sec_numbers_01 .graph dl dt .circle circle:nth-child(1) {
  stroke: #0185CE;
  stroke-dasharray: 0, 100;
  stroke-dashoffset: 0;
}
.sec_numbers_01 .graph dl dt .circle_2.js_active circle:nth-child(1) {
  animation: anime02 1.5s 0s forwards linear;
}
.sec_numbers_01 .graph dl dt .circle_2.js_active circle:nth-child(2) {
  animation: anime03 1.5s 0.75s forwards linear;
}
.sec_numbers_01 .graph dl dt .circle_2 circle {
  fill: none;
  stroke-width: 8px;
}
.sec_numbers_01 .graph dl dt .circle_2 circle:nth-child(1) {
  stroke: #0185CE;
  stroke-dasharray: 0, 100;
  stroke-dashoffset: 0;
}
.sec_numbers_01 .graph dl dt .circle_2 circle:nth-child(2) {
  stroke: #FFDF92;
  stroke-dasharray: 0, 100;
  stroke-dashoffset: 45;
}
.sec_numbers_01 .graph dl dt .circle_3.js_active circle:nth-child(1) {
  animation: anime04 1.5s 0s forwards linear;
}
.sec_numbers_01 .graph dl dt .circle_3.js_active circle:nth-child(2) {
  animation: anime05 1.5s 0.75s forwards linear;
}
.sec_numbers_01 .graph dl dt .circle_3 circle {
  fill: none;
  stroke-width: 8px;
}
.sec_numbers_01 .graph dl dt .circle_3 circle:nth-child(1) {
  stroke: #0185CE;
  stroke-dasharray: 0, 100;
  stroke-dashoffset: 0;
}
.sec_numbers_01 .graph dl dt .circle_3 circle:nth-child(2) {
  stroke: #FFDF92;
  stroke-dasharray: 0, 100;
  stroke-dashoffset: 20;
}
.sec_numbers_01 .graph dl dd {
  width: 100%;
}
.sec_numbers_01 .graph dl dd .num {
  line-height: 1.5;
  font-size: 4.375em;
  font-family: "Outfit", serif;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .sec_numbers_01 .graph dl dd .num {
    font-size: 4em;
  }
}
.sec_numbers_01 .graph dl dd .num span:not(.decimal) {
  font-size: 0.52em;
}
.sec_numbers_01 .graph dl dd p:not([class]) {
  font-size: 1.25em;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}

@keyframes anime01 {
  0% {
    stroke-dasharray: 0, 100;
  }
  50%, 100% {
    stroke-dasharray: 100, 100;
  }
}
@keyframes anime02 {
  0% {
    stroke-dasharray: 0, 100;
  }
  50%, 100% {
    stroke-dasharray: 55, 100;
  }
}
@keyframes anime03 {
  0% {
    stroke-dasharray: 0, 100;
  }
  50%, 100% {
    stroke-dasharray: 45, 55;
  }
}
@keyframes anime04 {
  0% {
    stroke-dasharray: 0, 100;
  }
  50%, 100% {
    stroke-dasharray: 80, 100;
  }
}
@keyframes anime05 {
  0% {
    stroke-dasharray: 0, 100;
  }
  50%, 100% {
    stroke-dasharray: 20, 80;
  }
}
.sec_numbers_02 h2 {
  font-size: 3.125em;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .sec_numbers_02 h2 {
    font-size: 2em;
  }
}
.sec_numbers_02 h2::after {
  content: attr(data-en);
  display: block;
  font-size: 0.32em;
  font-weight: 400;
  font-family: "Outfit", serif;
  color: #A3A3A3;
}
@media screen and (max-width: 767px) {
  .sec_numbers_02 h2::after {
    font-size: 0.5em;
  }
}

.sec_course_01 h2 {
  margin-bottom: 30px;
}
.sec_course_01 h2 img {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sec_course_01 h2 img {
    width: 200px;
  }
}
.sec_course_01 ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px min(3.46vw, 52px);
}
@media screen and (max-width: 767px) {
  .sec_course_01 ul {
    grid-template-columns: 1fr;
  }
}
.sec_course_01 ul a {
  display: grid;
  place-content: center;
  position: relative;
  height: 200px;
  padding: 0 30px;
  box-shadow: 0 3px 8px rgba(52, 52, 52, 0.1);
}
@media screen and (max-width: 767px) {
  .sec_course_01 ul a {
    height: 80px;
  }
}
.sec_course_01 ul a:hover {
  box-shadow: 0 10px 20px rgba(52, 52, 52, 0.3);
}
.sec_course_01 ul a::after {
  content: "";
  position: absolute;
  width: 27px;
  aspect-ratio: 1/1;
  border: 1px solid #D3D3D3;
  border-radius: 50%;
  background: url(../images/ico_arrow_right_gray.svg) no-repeat center/37% auto;
  left: calc(50% - 13.5px);
  bottom: 20px;
  transform: rotate(90deg);
}
@media screen and (max-width: 767px) {
  .sec_course_01 ul a::after {
    bottom: -13px;
  }
}

.course_title {
  display: grid;
  grid-template-columns: 600px 1fr;
  align-items: center;
  position: relative;
  padding-top: 55px;
  margin: 60px 0 50px;
}
@media screen and (max-width: 767px) {
  .course_title {
    grid-template-columns: 1fr;
    padding-top: 25px;
    margin: 25px 0 30px;
  }
}
.course_title::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 1px;
  background-color: #A3A3A3;
  left: 0;
  top: 0;
}
.course_title h3 {
  margin-bottom: 25px;
}
.course_title h3::after {
  content: attr(data-en);
  display: block;
  font-family: "Outfit", serif;
  color: #A3A3A3;
}
.course_title h3 span {
  display: block;
  font-size: 3.125em;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.25;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .course_title h3 span {
    font-size: 1.8em;
  }
}
.course_title h3 span:first-child {
  transform: translateX(-0.5em);
}
.course_title p {
  padding-left: 50px;
  border-left: 1px solid #A3A3A3;
  font-size: 0.9375em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .course_title p {
    font-size: 0.875em;
    border: 0 none;
    padding-left: 0;
  }
}
.course_title--lg {
  grid-template-columns: 770px 1fr;
}
@media screen and (max-width: 767px) {
  .course_title--lg {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .course_title--lg h3 span {
    font-size: 1.4em;
  }
}

.course_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px min(3.66vw, 55px);
}
@media screen and (max-width: 767px) {
  .course_list {
    gap: 30px;
  }
}
.course_list a {
  display: block;
}
.course_list a:hover img {
  transform: scale(1.1);
}
.course_list a:hover .btn::before {
  background-color: #F9F9F9;
}
.course_list a .image {
  overflow: hidden;
  aspect-ratio: 368/254;
  margin-bottom: 25px;
  border-radius: 15px;
}
.course_list a .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
.course_list a .title {
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .course_list a .title {
    font-size: 1.125em;
  }
}
.course_list a .text {
  font-size: 0.875em;
  line-height: 1.8;
  margin-bottom: 10px;
}
.course_list a .btn {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: "Outfit", serif;
  transition: 0.5s;
}
.course_list a .btn::before {
  content: "";
  display: block;
  width: 36px;
  aspect-ratio: 1/1;
  border: 1px solid #343434;
  border-radius: 50%;
  background: url(../images/ico_arrow_right.svg) no-repeat center/36% auto;
}

.sec_course_02 h2 {
  font-size: 3em;
  font-weight: 900;
  text-align: center;
  line-height: 1.33;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .sec_course_02 h2 {
    font-size: 1.5em;
  }
}
.sec_course_02 h2::before {
  content: attr(data-en);
  display: block;
  font-size: 2.5em;
  font-family: "Outfit", serif;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
  color: #EFF3F4;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .sec_course_02 h2::before {
    font-size: 2em;
  }
}
.sec_course_02 p {
  font-size: 1.125em;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec_course_02 p {
    text-align: left;
    font-size: 0.9375em;
  }
}

.sec_support h2 {
  font-size: 1.75em;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 10px;
  border-bottom: 1px solid #A3A3A3;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .sec_support h2 {
    font-size: 1.375em;
  }
}
.sec_support h2:last-child {
  margin-bottom: 0;
}
.sec_support h3 {
  font-size: 1.5em;
  font-weight: 700;
  padding-left: 16px;
  border-left: 3px solid #A3A3A3;
  line-height: 1.5;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .sec_support h3 {
    font-size: 1.25em;
  }
}
.sec_support h3:last-child {
  margin-bottom: 0;
}
.sec_support h4 {
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .sec_support h4 {
    font-size: 1.125em;
  }
}
.sec_support h4:last-child {
  margin-bottom: 0;
}
.sec_support p {
  font-size: 0.9375em;
  font-weight: 500;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .sec_support p {
    font-size: 0.875em;
  }
}
.sec_support p:last-child {
  margin-bottom: 0;
}
.sec_support table {
  width: 100%;
  border-collapse: separate;
  margin-bottom: 45px;
}
.sec_support table:last-child {
  margin-bottom: 0;
}
.sec_support table.th_center th {
  text-align: center;
}
.sec_support table thead {
  border-bottom: 5px solid transparent;
}
.sec_support table thead th {
  border: 1px solid #EFF3F4;
  border-left: 0 none;
  background-color: #FDFDFD;
  font-weight: 500;
  line-height: 1.5;
  padding: 15px 20px;
  text-align: center;
}
.sec_support table thead th:first-child {
  font-weight: 700;
  border-left: 1px solid #EFF3F4;
}
.sec_support table tbody tr:last-child th, .sec_support table tbody tr:last-child td {
  border-bottom: 1px solid #EFF3F4;
}
.sec_support table tbody th, .sec_support table tbody td {
  border-top: 1px solid #EFF3F4;
  border-right: 1px solid #EFF3F4;
  background-color: #FDFDFD;
  line-height: 1.5;
  padding: 15px 20px;
  font-size: 0.875em;
}
.sec_support table tbody th {
  font-weight: 700;
  font-size: 1em;
  border-left: 1px solid #EFF3F4;
}
@media screen and (max-width: 767px) {
  .sec_support table tbody th {
    font-size: 0.875em;
  }
}
.sec_support .course_btn_01 {
  display: block;
  width: 300px;
  max-width: 100%;
  line-height: 65px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.9375em;
  background: url(../images/ico_blank_white.svg) no-repeat center right 12px/10px auto;
  background-color: #343434;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec_support .course_btn_01 {
    font-size: 0.875em;
    line-height: 50px;
  }
}
.sec_support .course_btn_01:hover {
  box-shadow: 0 10px 20px rgba(52, 52, 52, 0.3);
}

.support_tel {
  position: relative;
  padding: 45px 15px;
  background: url(../images/bg_tel.jpg) no-repeat center/cover;
  margin-top: 80px;
  text-align: center;
}
.support_tel:first-child {
  margin-top: 0;
}
.support_tel::before {
  content: "";
  position: absolute;
  width: 49px;
  aspect-ratio: 1/1;
  background: url(../images/bg_tel_icon.svg) no-repeat center/contain;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.support_tel strong {
  display: block;
  font-size: 1.75em;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .support_tel strong {
    font-size: 1.375em;
  }
}
.support_tel p {
  font-size: 0.9375em;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .support_tel p {
    font-size: 0.875em;
    text-align: left;
  }
}
.support_tel a {
  display: inline-block;
  font-size: 2.5em;
  font-family: "Outfit", serif;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .support_tel a {
    font-size: 1.8em;
  }
}
.support_tel a::before {
  content: "TEL.";
  display: inline-block;
  font-size: 0.6em;
}
.support_tel a + p {
  font-size: 0.875em;
}
@media screen and (max-width: 767px) {
  .support_tel a + p {
    font-size: 0.75em;
    text-align: center;
  }
}

.sec_work_01 h2 {
  position: relative;
  text-align: center;
  font-size: 1.75em;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 20px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .sec_work_01 h2 {
    font-size: 1.25em;
  }
}
.sec_work_01 h2::after {
  content: "";
  position: absolute;
  width: 36px;
  height: 1px;
  background-color: #A3A3A3;
  bottom: 0;
  left: calc(50% - 18px);
}
.sec_work_01 .list_work {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px 45px;
  margin-bottom: var(--space);
}
@media screen and (max-width: 767px) {
  .sec_work_01 .list_work {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px 10px;
  }
}
.sec_work_01 .list_work li {
  cursor: pointer;
}
.sec_work_01 .list_work li:hover img {
  transform: scale(1.1);
}
.sec_work_01 .list_work li .image {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .sec_work_01 .list_work li .image {
    margin-bottom: 5px;
  }
}
.sec_work_01 .list_work li .image::after {
  content: "";
  position: absolute;
  width: 32px;
  aspect-ratio: 1/1;
  background: url(../images/ico_search_white.svg) no-repeat center/37.5% auto;
  background-color: #343434;
  border-bottom-right-radius: 5px;
  right: 10px;
  bottom: 10px;
  z-index: 1;
}
.sec_work_01 .list_work li .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
.sec_work_01 .list_work li p {
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .sec_work_01 .list_work li p {
    font-size: 0.875em;
  }
}

.map {
  position: relative;
  width: 350px;
  max-width: 100%;
  height: 230px;
  margin-bottom: 45px;
}
.map > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.list_campus-life {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  grid-auto-flow: dense;
}
@media screen and (max-width: 767px) {
  .list_campus-life {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }
}
.list_campus-life li {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .list_campus-life li {
    width: calc(33.333% - 3.3333333333px);
    border-radius: 6px;
  }
}
.list_campus-life li:nth-child(14n+1) {
  grid-row: span 2;
  grid-column: 1/span 2;
}
@media screen and (max-width: 767px) {
  .list_campus-life li:nth-child(14n+1) {
    grid-row: auto;
    grid-column: auto;
  }
}
.list_campus-life li:nth-child(14n+8) {
  grid-row: span 2;
  grid-column: 4/span 2;
}
@media screen and (max-width: 767px) {
  .list_campus-life li:nth-child(14n+8) {
    grid-row: auto;
    grid-column: auto;
  }
}
.list_campus-life li:hover img {
  transform: scale(1.1);
}
.list_campus-life li::after {
  content: "";
  position: absolute;
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: url(../images/ico_search.svg) no-repeat center/15px auto;
  background-color: #fff;
  right: 13px;
  bottom: 13px;
}
@media screen and (max-width: 767px) {
  .list_campus-life li::after {
    width: 15px;
    right: 5px;
    bottom: 5px;
    background-size: 8px;
  }
}
.list_campus-life li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
.list_campus-life li.load_more {
  grid-column: span 5;
  padding-top: 50px;
  aspect-ratio: auto;
  overflow: visible;
  cursor: auto;
}
@media screen and (max-width: 767px) {
  .list_campus-life li.load_more {
    width: 100%;
    padding-top: 30px;
  }
}
.list_campus-life li.load_more::after {
  content: none;
}
.list_campus-life li.load_more button {
  display: block;
  position: relative;
  width: 385px;
  max-width: 100%;
  line-height: 72px;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(52, 52, 52, 0.16);
  border-radius: 40px;
  text-align: center;
  font-size: 1.25em;
  font-weight: 500;
  font-family: "Outfit", serif;
  color: #343434;
  margin: 0 auto;
  cursor: pointer;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .list_campus-life li.load_more button {
    width: 250px;
    line-height: 50px;
    font-size: 1em;
  }
}
.list_campus-life li.load_more button:hover {
  box-shadow: 0 10px 30px rgba(52, 52, 52, 0.16);
}
.list_campus-life li.load_more button::after {
  content: "";
  position: absolute;
  width: 11px;
  aspect-ratio: 11/10;
  background: url(../images/ico_arrow_right.svg) no-repeat center/contain;
  right: 24px;
  top: calc(50% - 5px);
  transform: rotate(90deg);
}

.list_news {
  margin-bottom: 50px;
}
.list_news:last-child {
  margin-bottom: 0;
}
.list_news li {
  border-bottom: 1px solid #A3A3A3;
}
.list_news li a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 22px;
  position: relative;
  padding: 40px 100px 35px 0;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .list_news li a {
    padding: 25px 60px 25px 0;
  }
}
.list_news li a:hover::after {
  background-color: #343434;
  background-image: url(../images/ico_arrow_right_white.svg);
}
.list_news li a::after {
  content: "";
  position: absolute;
  width: 96px;
  aspect-ratio: 96/46;
  border-radius: 30px;
  border: 1px solid #343434;
  background: url(../images/ico_arrow_right.svg) no-repeat center left calc(50% + 2px)/15% auto;
  right: 0;
  top: calc(50% - 23px);
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .list_news li a::after {
    width: 50px;
  }
}
.list_news li a:has(> .image) {
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: 174px 1fr;
  gap: 5px 30px;
}
.list_news li a:has(> .image) img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.list_news li a:has(> .image) .image {
  width: 174px;
  height: 120px;
}
@media screen and (max-width: 767px) {
  .list_news li a:has(> .image) .image {
    width: 100%;
    height: auto;
    aspect-ratio: 17/12;
  }
}
.list_news li a:has(> .image) .right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 22px;
  width: calc(100% - 174px - 30px);
}
@media screen and (max-width: 767px) {
  .list_news li a:has(> .image) .right {
    width: 100%;
  }
}
.list_news li a .date {
  font-family: "Outfit", serif;
}
@media screen and (max-width: 767px) {
  .list_news li a .date {
    font-size: 0.875em;
  }
}
.list_news li a .cat {
  display: flex;
  align-items: center;
  gap: 8px 15px;
}
.list_news li a .cat li {
  padding: 0 20px;
  line-height: 36px;
  border: 1px solid #A3A3A3;
  border-radius: 20px;
  text-align: center;
  font-size: 0.875em;
}
@media screen and (max-width: 767px) {
  .list_news li a .cat li {
    line-height: 26px;
  }
}
.list_news li a .title {
  width: 100%;
  font-size: 1.5em;
  line-height: 1.5;
  margin-bottom: 5px;
  padding-top: 5px;
}
@media screen and (max-width: 767px) {
  .list_news li a .title {
    font-size: 1.125em;
  }
}
.list_news li a .text {
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  font-size: 0.875em;
}

.list_btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px 40px;
}
@media screen and (max-width: 767px) {
  .list_btns {
    gap: 15px;
  }
}
.list_btns.course_btn {
  gap: 16px;
}
.list_btns.course_btn li:nth-child(2) a {
  background-image: url(../images/ico_arrow_right.svg);
  background-color: #FCD900;
  color: #343434;
}
.list_btns.course_btn li:nth-child(3) a {
  background-color: #0185CE;
}
.list_btns.course_btn a {
  display: block;
  width: 300px;
  max-width: 100%;
  line-height: 65px;
  font-size: 0.9375em;
  font-weight: 700;
  text-align: center;
  color: #fff;
  border-radius: 40px;
  background: url(../images/ico_arrow_right_white.svg) no-repeat center right 12px/14px auto;
  background-color: #E02E8C;
}
.list_btns.course_btn a:hover {
  box-shadow: 0 10px 20px rgba(52, 52, 52, 0.3);
}

.dlist_record .item {
  border-top: 1px solid #A3A3A3;
}
.dlist_record .item dt {
  position: relative;
  padding: 23px 100px 23px 0;
  font-size: 2em;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .dlist_record .item dt {
    font-size: 1.25em;
    padding-right: 60px;
  }
}
.dlist_record .item dt.js_open::after {
  background: linear-gradient(to bottom, transparent calc(50% - 1px), #343434 calc(50% - 1px), #343434 calc(50% + 1px), transparent calc(50% + 1px));
}
.dlist_record .item dt:hover {
  background-color: #EFF3F4;
}
.dlist_record .item dt::before {
  content: "";
  position: absolute;
  width: 96px;
  aspect-ratio: 96/46;
  border: 1px solid #343434;
  border-radius: 30px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .dlist_record .item dt::before {
    width: 50px;
  }
}
.dlist_record .item dt::after {
  content: "";
  position: absolute;
  width: 16px;
  aspect-ratio: 1/1;
  background: linear-gradient(to right, transparent calc(50% - 1px), #343434 calc(50% - 1px), #343434 calc(50% + 1px), transparent calc(50% + 1px)), linear-gradient(to bottom, transparent calc(50% - 1px), #343434 calc(50% - 1px), #343434 calc(50% + 1px), transparent calc(50% + 1px));
  right: 39px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .dlist_record .item dt::after {
    width: 10px;
    right: 20px;
  }
}
.dlist_record .item dd {
  display: none;
  padding-bottom: 40px;
}
.dlist_record .item dd strong {
  display: block;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .dlist_record .item dd strong {
    font-size: 1em;
  }
}
.dlist_record .item dd p {
  font-weight: 500;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .dlist_record .item dd p {
    font-size: 0.875em;
  }
}
.dlist_record .item dd p:last-child {
  margin-bottom: 0;
}

.table_parent {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .table_parent {
    white-space: nowrap;
    margin-bottom: 30px;
  }
}
.table_parent:last-child {
  margin-bottom: 0;
}
.table_parent table {
  margin-bottom: 0;
}

.btn_more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-family: "Outfit", serif;
}
@media screen and (max-width: 767px) {
  .btn_more {
    font-size: 0.9375em;
  }
}
.btn_more:hover::before {
  background-color: #343434;
  background-image: url(../images/ico_arrow_right_white.svg);
}
.btn_more::before {
  content: "";
  display: block;
  width: 36px;
  aspect-ratio: 1/1;
  border: 1px solid #343434;
  border-radius: 50%;
  background: url(../images/ico_arrow_right.svg) no-repeat center left calc(50% + 2px)/36% auto;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .btn_more::before {
    width: 36px;
  }
}

.btn_submit {
  display: block;
  width: 350px;
  max-width: 100%;
  line-height: 73px;
  text-align: center;
  background: url(../images/ico_btn_leaf_white.svg) no-repeat center right 23px/30px auto;
  background-color: #0185CE;
  font-weight: 700;
  color: #0185CE;
  border-radius: 40px;
  border: 1px solid #0185CE;
  color: #fff;
  transition: 0.5s;
  margin: 0 auto;
  font-size: 1.125em;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .btn_submit {
    width: 275px;
    line-height: 57px;
    background-size: 23px auto;
    background-position: center right 17px;
    font-size: 1em;
  }
}
.btn_submit:hover {
  background-image: url(../images/ico_btn_leaf.svg);
  background-color: #fff;
  color: #0185CE;
}

.post-type-archive-news .sec_post,
.single-news .sec_post,
.tax-newscat .sec_post,
.single-news .sec_post {
  background-color: #0185CE;
}

.sec_post {
  padding: var(--space) 0;
  margin-bottom: 0;
}
.sec_post .archive_title {
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .sec_post .archive_title {
    font-size: 1em;
  }
}
.sec_post .archive_title::before {
  content: attr(data-en);
  display: block;
  font-size: 3.5em;
  font-weight: 700;
  font-family: "Outfit", serif;
  line-height: 1;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .sec_post .archive_title::before {
    font-size: 2.5em;
  }
}
.sec_post .post_title_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .sec_post .post_title_wrap {
    margin-bottom: 40px;
  }
}
.sec_post .post_title_wrap .date {
  font-family: "Outfit", serif;
  font-weight: 500;
  color: #fff;
}
.sec_post .post_title_wrap .cat {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.sec_post .post_title_wrap .cat li a {
  display: block;
  font-size: 0.875em;
  font-weight: 500;
  padding: 0 15px;
  line-height: 38px;
  text-align: center;
  border-radius: 20px;
  border: 1px solid #A3A3A3;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .sec_post .post_title_wrap .cat li a {
    font-size: 0.875em;
    line-height: 30px;
  }
}
.sec_post .post_title_wrap .cat li a:hover {
  background-color: #fff;
  color: #343434;
}
.sec_post .post_title_wrap .title {
  font-size: 2em;
  line-height: 1.4375em;
  font-weight: 500;
  color: #fff;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .sec_post .post_title_wrap .title {
    font-size: 1.5em;
  }
}
.sec_post .list_cat {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 5px;
  position: relative;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .sec_post .list_cat {
    margin-bottom: 40px;
  }
}
.sec_post .list_cat li a {
  display: block;
  font-size: 1.125em;
  font-weight: 500;
  padding: 0 15px;
  line-height: 34px;
  text-align: center;
  border-radius: 20px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .sec_post .list_cat li a {
    font-size: 0.875em;
    line-height: 30px;
  }
}
.sec_post .list_cat li a.is_current, .sec_post .list_cat li a:hover {
  background-color: #fff;
  color: #343434;
}
.sec_post__content {
  position: relative;
  padding: 0 var(--sideW);
  margin-bottom: 50px;
  z-index: 1;
}
.sec_post__content::after {
  content: "";
  position: absolute;
  width: 50vw;
  height: 100%;
  background-color: #fff;
  right: 0;
  top: 0;
  z-index: -1;
}
.sec_post__content_inner {
  width: 1220px;
  max-width: 100%;
  margin: 0 auto;
  padding: 80px 0 100px min(6.66vw, 100px);
  background-color: #fff;
  border-top-left-radius: 30px;
}
@media screen and (max-width: 767px) {
  .sec_post__content_inner {
    padding-block: 30px 50px;
  }
}
.sec_post__split {
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 30px min(6.66vw, 100px);
}
@media screen and (max-width: 767px) {
  .sec_post__split {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .sec_post__split .content {
    margin-bottom: 60px;
  }
}

.sidebar {
  position: sticky;
  top: var(--headerHeight);
}
.sidebar__title {
  font-size: 1.5em;
  line-height: 1.5;
  font-weight: 500;
  font-family: "Outfit", serif;
  border-bottom: 1px solid #A3A3A3;
  padding-bottom: 10px;
  margin-bottom: 25px;
}
.sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 55px;
}
.sidebar__list:last-child {
  margin-bottom: 0;
}
.sidebar__list > li:last-child ul {
  padding-bottom: 0;
}
.sidebar__list a {
  font-size: 1em;
  font-weight: 500;
}
.sidebar__list a:hover {
  text-decoration: underline;
}
.sidebar__list ul {
  padding-bottom: 10px;
}
.sidebar__list ul li {
  display: flex;
  gap: 0.5em;
}
.sidebar__list ul li::before {
  content: "-";
  display: block;
  flex-shrink: 0;
  padding-left: 0.5em;
}

.add_ttl {
  font-size: 1.875em;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 25px;
  border-left: 3px solid #0185CE;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .add_ttl {
    font-size: 1.5em;
  }
}
.add_ttl:first-child {
  margin-top: 0;
}

.add_ttl_02 {
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .add_ttl_02 {
    font-size: 1.375em;
  }
}
.add_ttl_02:first-child {
  margin-top: 0;
}

.add_ttl_03 {
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .add_ttl_03 {
    font-size: 1.25em;
  }
}
.add_ttl_03:first-child {
  margin-top: 0;
}

.add_ttl_label {
  display: block;
  font-size: 1.75em;
  font-weight: 700;
  background-color: #0185CE;
  line-height: 1.5;
  padding: 12px 25px;
  border-bottom: 1px slid #343434;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .add_ttl_label {
    font-size: 1.5em;
  }
}
.add_ttl_label:first-child {
  margin-top: 0;
}

.add_link {
  display: block;
  position: relative;
  width: 590px;
  max-width: 100%;
  padding: 13px 20px;
  border-radius: 50px;
  background-color: #E02E8C;
  font-size: 1.125em;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 50px auto 0;
}
.add_link:first-child {
  margin-top: 0;
}
.add_link:hover::after {
  width: calc(100% + 10px);
  height: calc(100% + 10px);
}
.add_link::after {
  content: "";
  position: absolute;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #E02E8C;
  border-radius: 50px;
  transition: 0.5s;
}

.btn_archive {
  display: block;
  width: 160px;
  line-height: 48px;
  text-align: center;
  background-color: #0185CE;
  border-radius: 25px;
  font-size: 1.25em;
  font-weight: 500;
  color: #fff;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .btn_archive {
    font-size: 1em;
  }
}

.ttl_related {
  display: block;
  font-size: 1.125em;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 100px;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .ttl_related {
    margin-top: 60px;
  }
}
.ttl_related::before {
  content: attr(data-en);
  display: block;
  font-size: 2em;
  font-family: "Outfit", serif;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: 0.08em;
}

.post_contents {
  margin-bottom: 80px;
}
.post_contents p {
  margin-top: 20px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .post_contents p {
    font-size: 0.875em;
  }
}
.post_contents p:first-child {
  margin-top: 0;
}
.post_contents img {
  display: block;
  margin-top: 30px;
}
.post_contents img:first-child {
  margin-top: 0;
}
.post_contents .table_parent {
  margin-top: 20px;
}
.post_contents .table_parent:first-child {
  margin-top: 0;
}
.post_contents table {
  width: 100%;
  border-collapse: separate;
  margin-bottom: 45px;
}
.post_contents table:last-child {
  margin-bottom: 0;
}
.post_contents table.th_center th {
  text-align: center;
}
.post_contents table thead {
  border-bottom: 5px solid transparent;
}
.post_contents table thead th {
  border: 1px solid #EFF3F4;
  border-left: 0 none;
  background-color: #FDFDFD;
  font-weight: 500;
  line-height: 1.5;
  padding: 15px 20px;
  text-align: center;
}
.post_contents table thead th:first-child {
  font-weight: 700;
  border-left: 1px solid #EFF3F4;
}
.post_contents table tbody tr:last-child th, .post_contents table tbody tr:last-child td {
  border-bottom: 1px solid #EFF3F4;
}
.post_contents table tbody th, .post_contents table tbody td {
  border-top: 1px solid #EFF3F4;
  border-right: 1px solid #EFF3F4;
  background-color: #FDFDFD;
  line-height: 1.5;
  padding: 15px 20px;
  font-size: 0.875em;
}
.post_contents table tbody th {
  font-weight: 700;
  font-size: 1em;
  border-left: 1px solid #EFF3F4;
}
@media screen and (max-width: 767px) {
  .post_contents table tbody th {
    font-size: 0.875em;
  }
}
.post_contents a {
  text-decoration: underline;
}
.post_contents a:hover {
  text-decoration: none;
}
.post_contents a[href$=".pdf"]::after {
  content: "";
  display: inline-block;
  width: 1em;
  aspect-ratio: 1/1;
  -webkit-mask: url("../images/ico_file.svg") no-repeat center/contain;
          mask: url("../images/ico_file.svg") no-repeat center/contain;
  background-color: #E02E8C;
  margin-left: 5px;
}

/* ==========================================================================//
//
// parts
//
// ========================================================================== */
/* 背景パララックス
---------------------------------------------------------- */
.bg_parallax {
  background: no-repeat center/cover;
}
/* wp-pagenavi
---------------------------------------------------------- */
.wp-pagenavi {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 16px;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi {
    gap: 10px;
    justify-content: flex-start;
  }
}
.wp-pagenavi a,
.wp-pagenavi span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  aspect-ratio: 1/1;
  border-radius: 20px;
  background-color: #DBDBDB;
  color: #fff;
  font-size: 1.125em;
  font-family: "Outfit", serif;
  font-weight: 700;
}
.wp-pagenavi a:hover, .wp-pagenavi a.current,
.wp-pagenavi span:hover,
.wp-pagenavi span.current {
  background-color: #EFF3F4;
}

/* モーダル
---------------------------------------------------------- */
.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 25px 0;
  z-index: 1001;
}
@media screen and (max-width: 767px) {
  .modal {
    padding: 20px;
  }
}
.modal_close_btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  aspect-ratio: 1/1;
  background: url(../images/ico_modal_close.svg) no-repeat center/contain;
  border-radius: 50%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .modal_close_btn {
    width: 40px;
  }
}
.modal_close_btn::after {
  transform: rotate(-45deg);
}
.modal_content {
  display: none;
  position: relative;
  width: 1220px;
  max-width: calc(100vw - var(--sideW) * 2);
  max-height: 90vh;
  max-height: 90svh;
  overflow-y: scroll;
  padding: 75px min(6.66vw, 100px) 90px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .modal_content {
    padding: 30px var(--sideW);
  }
}
.modal_content__campus-life {
  display: grid;
  grid-template-columns: min(30.66vw, 460px) 1fr;
  gap: 30px min(5vw, 75px);
}
@media screen and (max-width: 767px) {
  .modal_content__campus-life {
    grid-template-columns: 1fr;
  }
}
.modal_content__campus-life img {
  display: block;
  border-radius: 10px;
}
.modal_content__campus-life .title {
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.5;
  padding: 18px 0;
  border-top: 1px solid #343434;
  border-bottom: 1px solid #343434;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .modal_content__campus-life .title {
    font-size: 1.25em;
  }
}
.modal_content__campus-life .post {
  font-size: 0.875em;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .modal_content__campus-life .post {
    font-size: 0.75em;
    margin-bottom: 15px;
  }
}
.modal_content__campus-life .app {
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .modal_content__campus-life .app {
    font-size: 0.875em;
  }
}
.modal_content .btn_green {
  display: block;
  position: relative;
  width: 300px;
  line-height: 43px;
  border-radius: 30px;
  background: url(../images/ico_arrow_right_white.svg) no-repeat center right 9px/9px auto;
  background-color: #8FC42F;
  color: #fff;
  text-align: center;
  font-size: 0.9375em;
  margin-top: 60px;
}
.modal_content .btn_green::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  bottom: calc(100% + 12px);
  width: 100%;
  text-align: center;
  font-size: 1.06em;
  font-weight: 700;
  color: #343434;
  line-height: 1.5;
}
.modal_prev, .modal_next {
  position: absolute;
  width: var(--sideW);
  height: 100%;
  left: 0;
  top: 0;
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden;
}
.modal_prev::after, .modal_next::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/ico_arrow_right.svg) no-repeat center/30px auto;
  left: 0;
  top: 0;
  transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .modal_prev::after, .modal_next::after {
    background-size: 20px auto;
  }
}
.modal_next {
  left: auto;
  right: 0;
}
.modal_next::after {
  transform: rotate(0);
}
.modal_overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: rgba(1, 133, 206, 0.8);
  top: 0;
  left: 0;
  z-index: 1000;
}

/* タブ切り替え
---------------------------------------------------------- */
.js_tab .js_tab__content_item {
  display: none;
}
.js_tab .js_tab__content_item.js_active {
  display: block;
}

/* ポップアップ
---------------------------------------------------------- */
.popup {
  display: grid;
  place-content: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10001;
}
.popup__bnr {
  display: block;
  width: 450px;
  max-width: 100%;
  position: relative;
  padding: 40px;
  background-color: #fff;
}
.popup__bnr img {
  display: block;
  border-radius: 10px;
}
.popup_close_btn {
  position: absolute;
  right: -18px;
  top: -18px;
  width: 36px;
  aspect-ratio: 1/1;
  background: url(../images/ico_modal_close.svg) no-repeat center/contain;
  border-radius: 50%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .popup_close_btn {
    width: 40px;
  }
}
.popup_close_btn::after {
  transform: rotate(-45deg);
}
.popup_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(52, 52, 52, 0.48);
  z-index: 10000;
  cursor: pointer;
}

/* パンくず
---------------------------------------------------------- */
#list_breadcrumb {
  font-size: 0.75em;
  margin: var(--headerHeight) 0 25px;
}
#list_breadcrumb .inner_lg {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5em;
  font-size: 0.8125em;
}

.page-numbers #list_breadcrumb {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* その他
---------------------------------------------------------- */
.lead {
  text-align: center;
  font-weight: 500;
  margin-bottom: 3.75em;
}
@media screen and (max-width: 767px) {
  .lead {
    text-align: left;
    line-height: 1.75;
    margin-bottom: 3em;
  }
}
.lead:last-child {
  margin-bottom: 0;
}
.lead.left {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .lead.sp_center {
    text-align: center;
  }
}
.lead.mb_min {
  margin-bottom: 2.5em;
}
@media screen and (max-width: 767px) {
  .lead.mb_min {
    margin-bottom: 2em;
  }
}
.lead span {
  display: block;
  margin-bottom: 0.75em;
}
.lead span:last-child {
  margin-bottom: 0;
}

.lead_02 {
  text-align: center;
  font-size: 0.9375em;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .lead_02 {
    text-align: left;
    margin-bottom: 25px;
  }
}
.lead_02:last-child {
  margin-bottom: 0;
}
.lead_02.left {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .lead_02.sp_center {
    text-align: center;
  }
}
.lead_02.white {
  color: #fff;
}
.lead_02 span {
  display: block;
  margin-bottom: 1em;
}
.lead_02 span:last-child {
  margin-bottom: 0;
}

.al_center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .al_center--sp {
    text-align: center;
  }
}

.nolink {
  pointer-events: none;
}

.disp_ib {
  display: inline-block;
}

/* アーカイブのページネーション
---------------------------------------------------------- */
.list_pagination {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  align-items: center;
  justify-content: space-between;
  border-top: 1px dashed #343434;
  padding: 25px 0;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .list_pagination {
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
  }
}
.list_pagination:last-child {
  margin-bottom: 0;
}
.list_pagination li {
  width: calc(50% - 100px);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .list_pagination li {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .list_pagination li.prev {
    order: 1;
  }
}
.list_pagination li.prev a::before {
  right: auto;
  left: 0;
  transform: rotate(180deg);
}
.list_pagination li.next {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .list_pagination li.next {
    order: 2;
  }
}
.list_pagination li a {
  display: inline-block;
  position: relative;
  font-weight: 700;
  color: #0185CE;
  padding: 0 28px;
}
@media screen and (max-width: 767px) {
  .list_pagination li a {
    font-size: 0.875em;
  }
}
.list_pagination li a::before {
  content: "";
  position: absolute;
  width: 15px;
  aspect-ratio: 15/12;
  background: url(../images/ico_arrow_post.svg) no-repeat center/contain;
  right: 0;
  top: calc(50% - 6px);
}
.list_pagination li a:hover {
  text-decoration: underline;
}
.list_pagination li.archive {
  width: 200px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .list_pagination li.archive {
    order: 3;
    margin-top: 10px;
  }
}
.list_pagination li.archive a::before {
  content: none;
}
.list_pagination li.archive a:hover {
  text-decoration: none;
}

/* フォームパーツ
---------------------------------------------------------- */
.dlist_form {
  position: relative;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .dlist_form {
    margin-bottom: 30px;
  }
}
.dlist_form .item {
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: baseline;
  gap: 20px;
  padding: 14px 0;
}
@media screen and (max-width: 767px) {
  .dlist_form .item {
    grid-template-columns: 1fr;
    gap: 10px 0;
  }
}
.dlist_form dt {
  font-weight: 700;
}
.dlist_form dt.req {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 20px;
}
@media screen and (max-width: 767px) {
  .dlist_form dt.req {
    gap: 0 10px;
  }
}
.dlist_form dt.req::after {
  content: "必須";
  display: block;
  width: 68px;
  line-height: 31px;
  text-align: center;
  background-color: #EFF3F4;
  color: #fff;
  font-size: 0.875em;
  font-weight: 700;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 100%;
  max-width: 100%;
  padding: 22px 20px;
  background-color: #F7F7F7;
  line-height: 1.5;
  border-radius: 5px;
  color: #343434;
  text-align: left;
}
@media screen and (max-width: 767px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  textarea {
    padding: 15px 10px;
  }
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, textarea::-moz-placeholder {
  color: #898989;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
textarea::placeholder {
  color: #898989;
}

textarea {
  height: 240px;
}
@media screen and (max-width: 767px) {
  textarea {
    height: 180px;
  }
}

select {
  width: auto;
  padding: 22px 45px 22px 20px;
  background: url(../images/ico_select.svg) no-repeat center right 10px;
  background-color: #F7F7F7;
}
@media screen and (max-width: 767px) {
  select {
    padding: 15px 45px 15px 10px;
  }
}

.privacy_wrap {
  border-top: 1px dashed #3B3B3B;
  border-bottom: 1px dashed #3B3B3B;
  padding: 25px 40px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .privacy_wrap {
    padding: 20px 0;
    margin-bottom: 25px;
  }
}
.privacy_wrap p {
  font-size: 0.875em;
}

.wpcf7-checkbox,
.wpcf7-acceptance {
  display: block;
}
.wpcf7-checkbox .wpcf7-list-item,
.wpcf7-acceptance .wpcf7-list-item {
  display: block;
  margin: 0 0 15px;
}
.wpcf7-checkbox .wpcf7-list-item:last-child,
.wpcf7-acceptance .wpcf7-list-item:last-child {
  margin-bottom: 0;
}
.wpcf7-checkbox .wpcf7-list-item label,
.wpcf7-acceptance .wpcf7-list-item label {
  font-size: 0.875em;
}
.wpcf7-checkbox .wpcf7-list-item label input,
.wpcf7-acceptance .wpcf7-list-item label input {
  display: none;
}
.wpcf7-checkbox .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after,
.wpcf7-acceptance .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after {
  border-color: #0185CE;
}
.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label,
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
  display: block;
  position: relative;
  padding-left: 47px;
}
@media screen and (max-width: 767px) {
  .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label,
  .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
    padding-left: 35px;
  }
}
.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::before,
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  width: 30px;
  aspect-ratio: 1/1;
  border: 1px solid #0185CE;
  left: 0;
  top: 0;
  border-radius: 3px;
}
@media screen and (max-width: 767px) {
  .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::before,
  .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label::before {
    width: 24px;
    top: 2px;
  }
}
.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::after,
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  width: 19px;
  height: 7px;
  border-left: 2px solid transparent;
  border-bottom: 2px solid transparent;
  left: 6px;
  top: 10px;
  transform: rotate(-40deg);
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::after,
  .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label::after {
    top: 8px;
    left: 3px;
  }
}

.doui {
  width: 800px;
  max-width: 100%;
  margin: 0 auto 50px;
  text-align: center;
}
.doui__inner {
  display: inline-block;
  text-align: left;
}
.doui .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 15px;
}
.doui .wpcf7-form-control-wrap:last-child {
  margin-bottom: 0;
}
.doui .wpcf7-acceptance {
  display: block;
}
.doui .wpcf7-acceptance a {
  text-decoration: underline;
}
.doui .wpcf7-acceptance a:hover {
  text-decoration: none;
}

.dlist_policy {
  margin-bottom: 20px;
}
.dlist_policy:last-child {
  margin-bottom: 0;
}
.dlist_policy_inner {
  margin-bottom: 30px;
}
.dlist_policy dt {
  font-size: 1.375em;
  font-weight: 500;
  color: #0185CE;
  font-family: "Zen Kaku Gothic Antique", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .dlist_policy dt {
    font-size: 1.125em;
  }
}
.dlist_policy dd {
  font-size: 0.9375em;
}
@media screen and (max-width: 767px) {
  .dlist_policy dd {
    font-size: 0.875em;
  }
}
.dlist_policy dd a {
  text-decoration: underline;
  color: #0185CE;
}
.dlist_policy dd a:hover {
  text-decoration: none;
}
.dlist_policy ul {
  margin-top: 10px;
}
.dlist_policy ul li {
  list-style-type: decimal-leading-zero;
  margin-left: 1.8em;
}

.policy_box .ttl {
  font-size: 1.125em;
  color: #0185CE;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .policy_box .ttl {
    font-size: 1em;
  }
}
.policy_box .txt {
  font-size: 0.9375em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .policy_box .txt {
    font-size: 0.875em;
  }
}/*# sourceMappingURL=layout.css.map */