@charset "UTF-8";
/*//////////////////////////////////////////////////////////
© 2026 Cat's Hand
------------------------------------------------------------
CSS Information
File Name  : reset.css
Description: Reset styles
Author     : Cat's Hand
//////////////////////////////////////////////////////////*/
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を全ブラウザに対応*/
* {
  box-sizing: border-box;
}
*:before, *:after {
  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 {
  -webkit-animation: fadeIn 0.6s ease-in-out forwards;
          animation: fadeIn 0.6s ease-in-out forwards;
}

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

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

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

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(2em);
  }
  80% {
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(2em);
  }
  80% {
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-1.5em);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-1.5em);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInRight {
  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変数
-------------------------------------------------------------------------------------------- */
:root {
  --headerHeight: 108px;
  --activeHeaderHeight: 66px;
  --minWidth: 1000px;
  --sideW: min(2.92vw, 40px);
  --space: 80px;
}
@media screen and (max-width: 960px) {
  :root {
    --activeHeaderHeight: 50px;
    --minWidth: 1px;
    --sideW: min(6.41vw, 25px);
    --space: 50px;
  }
}

/* グリッド共通
-------------------------------------------------------------------------------------------- */
.grid-cmn {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.875rem 1.756954612vw;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 960px) {
  .grid-cmn {
    margin-bottom: 1.875rem;
  }
}
@media screen and (max-width: 768px) {
  .grid-cmn:has(.col-s-12), .grid-cmn:has(.col-s-24-24) {
    gap: 1.875rem 0;
  }
}
.grid-cmn:last-child {
  margin-bottom: 0;
}
.grid-cmn--24 {
  grid-template-columns: repeat(24, 1fr);
}
.grid-cmn--gap-sm {
  gap: 0.625rem 0.7320644217vw;
}
.grid-cmn--gap-lg {
  gap: 2.5rem 2.9282576867vw;
}
.grid-cmn--mb-lg {
  margin-bottom: 4.375rem;
}
@media screen and (max-width: 960px) {
  .grid-cmn--mb-lg {
    margin-bottom: 3.125rem;
  }
}
.grid-cmn .col-1 {
  grid-column: span 1;
}
.grid-cmn .col-2 {
  grid-column: span 2;
}
.grid-cmn .col-3 {
  grid-column: span 3;
}
.grid-cmn .col-4 {
  grid-column: span 4;
}
.grid-cmn .col-5 {
  grid-column: span 5;
}
.grid-cmn .col-6 {
  grid-column: span 6;
}
.grid-cmn .col-7 {
  grid-column: span 7;
}
.grid-cmn .col-8 {
  grid-column: span 8;
}
.grid-cmn .col-9 {
  grid-column: span 9;
}
.grid-cmn .col-10 {
  grid-column: span 10;
}
.grid-cmn .col-11 {
  grid-column: span 11;
}
.grid-cmn .col-12 {
  grid-column: span 12;
}
@media screen and (max-width: 960px) {
  .grid-cmn .col-m-1 {
    grid-column: span 1;
  }
}
@media screen and (max-width: 960px) {
  .grid-cmn .col-m-2 {
    grid-column: span 2;
  }
}
@media screen and (max-width: 960px) {
  .grid-cmn .col-m-3 {
    grid-column: span 3;
  }
}
@media screen and (max-width: 960px) {
  .grid-cmn .col-m-4 {
    grid-column: span 4;
  }
}
@media screen and (max-width: 960px) {
  .grid-cmn .col-m-5 {
    grid-column: span 5;
  }
}
@media screen and (max-width: 960px) {
  .grid-cmn .col-m-6 {
    grid-column: span 6;
  }
}
@media screen and (max-width: 960px) {
  .grid-cmn .col-m-7 {
    grid-column: span 7;
  }
}
@media screen and (max-width: 960px) {
  .grid-cmn .col-m-8 {
    grid-column: span 8;
  }
}
@media screen and (max-width: 960px) {
  .grid-cmn .col-m-9 {
    grid-column: span 9;
  }
}
@media screen and (max-width: 960px) {
  .grid-cmn .col-m-10 {
    grid-column: span 10;
  }
}
@media screen and (max-width: 960px) {
  .grid-cmn .col-m-11 {
    grid-column: span 11;
  }
}
@media screen and (max-width: 960px) {
  .grid-cmn .col-m-12 {
    grid-column: span 12;
  }
}
@media screen and (max-width: 768px) {
  .grid-cmn .col-s-1 {
    grid-column: span 1;
  }
}
@media screen and (max-width: 768px) {
  .grid-cmn .col-s-2 {
    grid-column: span 2;
  }
}
@media screen and (max-width: 768px) {
  .grid-cmn .col-s-3 {
    grid-column: span 3;
  }
}
@media screen and (max-width: 768px) {
  .grid-cmn .col-s-4 {
    grid-column: span 4;
  }
}
@media screen and (max-width: 768px) {
  .grid-cmn .col-s-5 {
    grid-column: span 5;
  }
}
@media screen and (max-width: 768px) {
  .grid-cmn .col-s-6 {
    grid-column: span 6;
  }
}
@media screen and (max-width: 768px) {
  .grid-cmn .col-s-7 {
    grid-column: span 7;
  }
}
@media screen and (max-width: 768px) {
  .grid-cmn .col-s-8 {
    grid-column: span 8;
  }
}
@media screen and (max-width: 768px) {
  .grid-cmn .col-s-9 {
    grid-column: span 9;
  }
}
@media screen and (max-width: 768px) {
  .grid-cmn .col-s-10 {
    grid-column: span 10;
  }
}
@media screen and (max-width: 768px) {
  .grid-cmn .col-s-11 {
    grid-column: span 11;
  }
}
@media screen and (max-width: 768px) {
  .grid-cmn .col-s-12 {
    grid-column: span 12;
  }
}
.grid-cmn .col-1-24 {
  grid-column: span 1;
}
.grid-cmn .col-2-24 {
  grid-column: span 2;
}
.grid-cmn .col-3-24 {
  grid-column: span 3;
}
.grid-cmn .col-4-24 {
  grid-column: span 4;
}
.grid-cmn .col-5-24 {
  grid-column: span 5;
}
.grid-cmn .col-6-24 {
  grid-column: span 6;
}
.grid-cmn .col-7-24 {
  grid-column: span 7;
}
.grid-cmn .col-8-24 {
  grid-column: span 8;
}
.grid-cmn .col-9-24 {
  grid-column: span 9;
}
.grid-cmn .col-10-24 {
  grid-column: span 10;
}
.grid-cmn .col-11-24 {
  grid-column: span 11;
}
.grid-cmn .col-12-24 {
  grid-column: span 12;
}
.grid-cmn .col-13-24 {
  grid-column: span 13;
}
.grid-cmn .col-14-24 {
  grid-column: span 14;
}
.grid-cmn .col-15-24 {
  grid-column: span 15;
}
.grid-cmn .col-16-24 {
  grid-column: span 16;
}
.grid-cmn .col-17-24 {
  grid-column: span 17;
}
.grid-cmn .col-18-24 {
  grid-column: span 18;
}
.grid-cmn .col-19-24 {
  grid-column: span 19;
}
.grid-cmn .col-20-24 {
  grid-column: span 20;
}
.grid-cmn .col-21-24 {
  grid-column: span 21;
}
.grid-cmn .col-22-24 {
  grid-column: span 22;
}
.grid-cmn .col-23-24 {
  grid-column: span 23;
}
.grid-cmn .col-24-24 {
  grid-column: span 24;
}
@media screen and (max-width: 960px) {
  .grid-cmn .col-m-1-24 {
    grid-column: span 1;
  }
}
@media screen and (max-width: 960px) {
  .grid-cmn .col-m-2-24 {
    grid-column: span 2;
  }
}
@media screen and (max-width: 960px) {
  .grid-cmn .col-m-3-24 {
    grid-column: span 3;
  }
}
@media screen and (max-width: 960px) {
  .grid-cmn .col-m-4-24 {
    grid-column: span 4;
  }
}
@media screen and (max-width: 960px) {
  .grid-cmn .col-m-5-24 {
    grid-column: span 5;
  }
}
@media screen and (max-width: 960px) {
  .grid-cmn .col-m-6-24 {
    grid-column: span 6;
  }
}
@media screen and (max-width: 960px) {
  .grid-cmn .col-m-7-24 {
    grid-column: span 7;
  }
}
@media screen and (max-width: 960px) {
  .grid-cmn .col-m-8-24 {
    grid-column: span 8;
  }
}
@media screen and (max-width: 960px) {
  .grid-cmn .col-m-9-24 {
    grid-column: span 9;
  }
}
@media screen and (max-width: 960px) {
  .grid-cmn .col-m-10-24 {
    grid-column: span 10;
  }
}
@media screen and (max-width: 960px) {
  .grid-cmn .col-m-11-24 {
    grid-column: span 11;
  }
}
@media screen and (max-width: 960px) {
  .grid-cmn .col-m-12-24 {
    grid-column: span 12;
  }
}
@media screen and (max-width: 960px) {
  .grid-cmn .col-m-13-24 {
    grid-column: span 13;
  }
}
@media screen and (max-width: 960px) {
  .grid-cmn .col-m-14-24 {
    grid-column: span 14;
  }
}
@media screen and (max-width: 960px) {
  .grid-cmn .col-m-15-24 {
    grid-column: span 15;
  }
}
@media screen and (max-width: 960px) {
  .grid-cmn .col-m-16-24 {
    grid-column: span 16;
  }
}
@media screen and (max-width: 960px) {
  .grid-cmn .col-m-17-24 {
    grid-column: span 17;
  }
}
@media screen and (max-width: 960px) {
  .grid-cmn .col-m-18-24 {
    grid-column: span 18;
  }
}
@media screen and (max-width: 960px) {
  .grid-cmn .col-m-19-24 {
    grid-column: span 19;
  }
}
@media screen and (max-width: 960px) {
  .grid-cmn .col-m-20-24 {
    grid-column: span 20;
  }
}
@media screen and (max-width: 960px) {
  .grid-cmn .col-m-21-24 {
    grid-column: span 21;
  }
}
@media screen and (max-width: 960px) {
  .grid-cmn .col-m-22-24 {
    grid-column: span 22;
  }
}
@media screen and (max-width: 960px) {
  .grid-cmn .col-m-23-24 {
    grid-column: span 23;
  }
}
@media screen and (max-width: 960px) {
  .grid-cmn .col-m-24-24 {
    grid-column: span 24;
  }
}
@media screen and (max-width: 768px) {
  .grid-cmn .col-s-1-24 {
    grid-column: span 1;
  }
}
@media screen and (max-width: 768px) {
  .grid-cmn .col-s-2-24 {
    grid-column: span 2;
  }
}
@media screen and (max-width: 768px) {
  .grid-cmn .col-s-3-24 {
    grid-column: span 3;
  }
}
@media screen and (max-width: 768px) {
  .grid-cmn .col-s-4-24 {
    grid-column: span 4;
  }
}
@media screen and (max-width: 768px) {
  .grid-cmn .col-s-5-24 {
    grid-column: span 5;
  }
}
@media screen and (max-width: 768px) {
  .grid-cmn .col-s-6-24 {
    grid-column: span 6;
  }
}
@media screen and (max-width: 768px) {
  .grid-cmn .col-s-7-24 {
    grid-column: span 7;
  }
}
@media screen and (max-width: 768px) {
  .grid-cmn .col-s-8-24 {
    grid-column: span 8;
  }
}
@media screen and (max-width: 768px) {
  .grid-cmn .col-s-9-24 {
    grid-column: span 9;
  }
}
@media screen and (max-width: 768px) {
  .grid-cmn .col-s-10-24 {
    grid-column: span 10;
  }
}
@media screen and (max-width: 768px) {
  .grid-cmn .col-s-11-24 {
    grid-column: span 11;
  }
}
@media screen and (max-width: 768px) {
  .grid-cmn .col-s-12-24 {
    grid-column: span 12;
  }
}
@media screen and (max-width: 768px) {
  .grid-cmn .col-s-13-24 {
    grid-column: span 13;
  }
}
@media screen and (max-width: 768px) {
  .grid-cmn .col-s-14-24 {
    grid-column: span 14;
  }
}
@media screen and (max-width: 768px) {
  .grid-cmn .col-s-15-24 {
    grid-column: span 15;
  }
}
@media screen and (max-width: 768px) {
  .grid-cmn .col-s-16-24 {
    grid-column: span 16;
  }
}
@media screen and (max-width: 768px) {
  .grid-cmn .col-s-17-24 {
    grid-column: span 17;
  }
}
@media screen and (max-width: 768px) {
  .grid-cmn .col-s-18-24 {
    grid-column: span 18;
  }
}
@media screen and (max-width: 768px) {
  .grid-cmn .col-s-19-24 {
    grid-column: span 19;
  }
}
@media screen and (max-width: 768px) {
  .grid-cmn .col-s-20-24 {
    grid-column: span 20;
  }
}
@media screen and (max-width: 768px) {
  .grid-cmn .col-s-21-24 {
    grid-column: span 21;
  }
}
@media screen and (max-width: 768px) {
  .grid-cmn .col-s-22-24 {
    grid-column: span 22;
  }
}
@media screen and (max-width: 768px) {
  .grid-cmn .col-s-23-24 {
    grid-column: span 23;
  }
}
@media screen and (max-width: 768px) {
  .grid-cmn .col-s-24-24 {
    grid-column: span 24;
  }
}

/* ユーティリティ
mx ＝ "x軸方向のmargin"
-------------------------------------------------------------------------------------------- */
.u-text-center {
  text-align: center;
}

@media screen and (max-width: 960px) {
  .u-text-left-sp {
    text-align: left;
  }
}

.u-text-right {
  text-align: right;
}

.u-mx-center {
  margin-inline: auto;
}

.u-mx-right {
  margin-left: auto;
}

@media screen and (max-width: 960px) {
  .u-mx-right-sp {
    margin-left: auto;
  }
}

.u-mx-left {
  margin-right: auto;
}

@media screen and (max-width: 960px) {
  .u-mx-left-sp {
    margin-right: auto;
  }
}

.u-disp-ib {
  display: inline-block;
}

.u-gap {
  display: block;
  height: 1em;
}
@media screen and (max-width: 960px) {
  .u-gap {
    height: 0.6em;
  }
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

body {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
  text-align: left;
}

a {
  text-decoration: none;
  color: #222;
  transition: 0.3s;
}
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: 960px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

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

#container_wrap {
  position: relative;
  padding-top: var(--headerHeight);
  min-width: var(--minWidth);
  margin-bottom: var(--space);
}
@media screen and (max-width: 960px) {
  #container_wrap {
    overflow: hidden;
  }
}
#container_wrap::before {
  content: "";
  position: absolute;
  width: 285px;
  height: 180px;
  top: 0;
  left: 0;
  border-bottom-right-radius: 5px;
  background-color: #0A1646;
  z-index: -1;
}

.right_align_wrap {
  padding-left: 7.3206442167vw;
}
@media screen and (max-width: 960px) {
  .right_align_wrap {
    margin: 0;
    padding-left: 0;
  }
}

.overflow_hidden {
  overflow: hidden;
}

.section {
  position: relative;
  margin-bottom: var(--space);
}
.section:last-child {
  margin-bottom: 0;
}
.section--gray {
  background-color: #F7F7F7;
  padding: 70px 0;
  border-radius: 5px;
}
.section--mb_lg {
  margin-bottom: 100px;
}
@media screen and (max-width: 960px) {
  .section--mb_lg {
    margin-bottom: 80px;
  }
}
.section:has(.ttl_cmn_01) {
  margin-inline: 1.4641288433vw;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .section:has(.ttl_cmn_01) {
    margin-inline: 0;
  }
}

.inner, .inner_md, .inner_sm {
  max-width: calc(1000px + var(--sideW) * 2);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--sideW);
}
.inner_sm {
  max-width: calc(780px + var(--sideW) * 2);
}
.inner_md {
  max-width: calc(1200px + var(--sideW) * 2);
}
.inner_lg {
  max-width: calc(100% - 2.92vw);
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .inner_lg {
    max-width: calc(100% - 5.12vw);
  }
}
.inner + .inner, .inner_sm + .inner, .inner_md + .inner, .inner + .inner_sm, .inner_sm + .inner_sm, .inner_md + .inner_sm, .inner + .inner_md, .inner_sm + .inner_md, .inner_md + .inner_md {
  margin-top: var(--space);
}

.header {
  display: grid;
  grid-template-columns: 285px 1fr;
  position: absolute;
  width: 100%;
  min-width: var(--minWidth);
  height: var(--headerHeight);
  background-color: #fff;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: 0.3s;
}
@media screen and (max-width: 960px) {
  .header {
    display: flex;
    justify-content: space-between;
  }
}
.header.js_scroll {
  position: fixed;
  height: var(--activeHeaderHeight);
  -webkit-animation: slideIn 0.5s ease forwards;
          animation: slideIn 0.5s ease forwards;
}
@media screen and (max-width: 960px) {
  .header.js_scroll {
    background-color: #0A1646;
  }
}
@media screen and (max-width: 960px) {
  .header.js_scroll .header__ttl a {
    font-size: 1.0625rem;
    line-height: 1.1;
  }
  .header.js_scroll .header__ttl a::after {
    font-size: 0.625rem;
  }
}
.header.js_scroll .global_nav {
  grid-template-rows: 26px 1fr;
}
.header.js_scroll .mega_menu {
  top: calc(var(--activeHeaderHeight) - 4px);
}
.header__ttl {
  display: grid;
  place-content: center;
  background-color: #0A1646;
  position: relative;
}
@media screen and (max-width: 960px) {
  .header__ttl {
    width: 248px;
    padding: 0 var(--sideW);
    place-content: center start;
    z-index: 1;
  }
}
.header__ttl a {
  display: block;
  font-size: 1.375rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  text-align: center;
  line-height: 1.25;
}
.header__ttl a::after {
  content: attr(data-en);
  display: block;
  font-size: 0.8125rem;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: 0.26em;
  padding-top: 3px;
  margin-top: 6px;
  border-top: 1px solid #5AEAD9;
}

@-webkit-keyframes slideIn {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.global_nav {
  display: grid;
  grid-template-rows: 36px 1fr;
  grid-template-areas: "sub" "main";
  height: 100%;
}
@media screen and (max-width: 960px) {
  .global_nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    opacity: 0;
    pointer-events: none;
    overflow-y: scroll;
    background-color: #0A1646;
    padding: calc(var(--headerHeight) + 20px) 12.1621621622vw;
  }
}
.global_nav.active {
  transition: opacity 0.5s;
  opacity: 1;
  pointer-events: auto;
  right: 0;
}
.global_nav [class*=arrow] {
  border-radius: 5px;
}
.global_nav .main_nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  padding-right: min(1.46vw, 20px);
  grid-area: main;
}
@media screen and (max-width: 960px) {
  .global_nav .main_nav {
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    gap: 25px;
  }
}
.global_nav .main_nav__list:hover .main_nav__link {
  border-bottom-color: #01A592;
}
.global_nav .main_nav__list.sp {
  display: none;
}
@media screen and (max-width: 960px) {
  .global_nav .main_nav__list.sp {
    display: block;
  }
}
.global_nav .main_nav__list:has(.mega_menu):hover .main_nav__link::after {
  opacity: 1;
  top: calc(100% + 8px);
}
.global_nav .main_nav__list:has(.mega_menu):hover .mega_menu {
  opacity: 1;
  pointer-events: auto;
}
.global_nav .main_nav__list:has(.mega_menu) .main_nav__link::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-right: 2px solid #5AEAD9;
  border-bottom: 2px solid #5AEAD9;
  transform: rotate(45deg);
  top: 100%;
  left: calc(50% - 4.5px);
  opacity: 0;
  transition: 0.3s;
}
@media screen and (max-width: 960px) {
  .global_nav .main_nav__list:has(.mega_menu) .main_nav__link::after {
    content: none;
  }
}
.global_nav .main_nav__link {
  display: block;
  position: relative;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  padding: 3px 0;
  border-bottom: 4px solid transparent;
  z-index: 2;
}
@media screen and (max-width: 960px) {
  .global_nav .main_nav__link {
    border: none;
    font-size: 1.25rem;
    color: #fff;
    line-height: 1.5;
    padding: 0;
    font-family: "Noto Sans JP", sans-serif;
    padding-left: 34px;
  }
}
.global_nav .main_nav__link:hover {
  border-bottom-color: #01A592;
}
.global_nav .sub_nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  background-color: #F7F7F7;
  padding-right: min(1.46vw, 20px);
  grid-area: sub;
}
@media screen and (max-width: 960px) {
  .global_nav .sub_nav {
    display: none;
  }
}
.global_nav .sub_nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
  color: #0A1646;
  font-size: 0.75rem;
}
.global_nav .sub_nav a:hover {
  font-weight: 600;
}
.global_nav .sub_nav a:hover span::after {
  left: 7px;
}
.global_nav .sub_nav a span {
  display: block;
  width: 16px;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 5px;
}
.global_nav .sub_nav a span::before {
  content: "";
  position: absolute;
  width: 5px;
  aspect-ratio: 5/1;
  background-color: #0A1646;
  left: 4px;
  top: calc(50% - 0.5px);
  border-radius: 1px;
}
.global_nav .sub_nav a span::after {
  content: "";
  position: absolute;
  width: 7px;
  aspect-ratio: 7/6;
  -webkit-mask: url(../images/ico_arrow.svg) no-repeat center/contain;
          mask: url(../images/ico_arrow.svg) no-repeat center/contain;
  background-color: #0A1646;
  left: 4px;
  top: calc(50% - 3px);
  transition: 0.3s;
}

.mega_menu {
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  position: fixed;
  width: 100vw;
  background-color: #0A1646;
  left: 0;
  top: calc(var(--headerHeight) - 20px);
  padding: 100px var(--sideW);
}
@media screen and (max-width: 960px) {
  .mega_menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    background-color: transparent;
    padding: 10px 0 0;
  }
}
.mega_menu__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 38px;
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .mega_menu__inner {
    display: block;
    width: 100%;
  }
}
.mega_menu__inner img {
  display: block;
  border-radius: 5px;
}
@media screen and (max-width: 960px) {
  .mega_menu__inner img {
    display: none;
  }
}
.mega_menu .nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto 1fr;
  gap: 20px 30px;
}
@media screen and (max-width: 960px) {
  .mega_menu .nav {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 5px;
  }
}
.mega_menu__main {
  display: block;
  position: relative;
  padding-left: 55px;
  font-size: 1.5625rem;
  font-weight: 600;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  grid-column: 1/-1;
}
@media screen and (max-width: 960px) {
  .mega_menu__main {
    display: none;
  }
}
.mega_menu__main .arrow {
  width: 40px;
}
.mega_menu__sub {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
@media screen and (max-width: 960px) {
  .mega_menu__sub {
    gap: 5px;
  }
}
.mega_menu__sub a {
  display: block;
  position: relative;
  font-weight: 500;
  color: #fff;
  line-height: 1.75;
  padding: 8px 0;
  background: linear-gradient(#5AEAD9, #5AEAD9) right bottom/40px 1px no-repeat, linear-gradient(rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25)) left bottom/100% 1px no-repeat;
}
.mega_menu__sub a:hover {
  background-size: 100% 1px, 100% 1px;
}
.mega_menu__sub a:hover::after {
  right: 10px;
}
.mega_menu__sub a::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  background-color: #5AEAD9;
  right: 16px;
  top: calc(50% - 1px);
  border-radius: 2px;
}
.mega_menu__sub a::after {
  content: "";
  position: absolute;
  width: 12px;
  aspect-ratio: 1/1;
  -webkit-mask: url(../images/ico_arrow.svg) no-repeat center/contain;
          mask: url(../images/ico_arrow.svg) no-repeat center/contain;
  background-color: #5AEAD9;
  right: 15px;
  top: calc(50% - 6px);
  transition: 0.3s;
}

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

.footer {
  background-color: #F7F7F7;
  padding: 80px 0 30px;
}
@media screen and (max-width: 960px) {
  .footer {
    padding-top: 60px;
  }
}
.footer [class*=arrow] {
  border-radius: 5px;
}
.footer .inner, .footer .inner_sm, .footer .inner_md {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 1fr auto;
  justify-content: space-between;
  gap: 20px min(4.75vw, 65px);
}
@media screen and (max-width: 960px) {
  .footer .inner, .footer .inner_sm, .footer .inner_md {
    grid-template-columns: 1fr;
  }
}
.footer__info {
  padding-left: 70px;
}
@media screen and (max-width: 960px) {
  .footer__info {
    padding-left: 0;
    text-align: center;
  }
}
.footer__info strong {
  display: block;
  position: relative;
  font-size: 1.625rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  line-height: 1.25;
  margin-bottom: 8px;
}
.footer__info strong::before {
  content: "";
  position: absolute;
  width: 56px;
  aspect-ratio: 1/1;
  background: url(../images/logo_footer.svg) no-repeat center/contain;
  top: 50%;
  right: calc(100% + 15px);
  transform: translateY(-50%);
}
@media screen and (max-width: 960px) {
  .footer__info strong::before {
    display: block;
    position: static;
    margin: 0 auto;
  }
}
.footer__info strong::after {
  content: attr(data-en);
  display: block;
  font-size: 0.8125rem;
  font-family: "Manrope", sans-serif;
  color: #0A1646;
  font-weight: 800;
  letter-spacing: 0.26em;
}
.footer__info p {
  font-size: 0.875rem;
}
.footer__info a {
  display: inline-flex;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0A1646;
}
.footer__info a::before {
  content: "TEL.";
}
.footer__nav {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 0 min(2.2vw, 30px);
}
@media screen and (max-width: 960px) {
  .footer__nav {
    display: none;
  }
}
.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer__nav ul a {
  display: block;
  position: relative;
  padding-left: 26px;
  font-weight: 500;
  line-height: 1.5;
}
.footer__nav ul a:hover {
  color: #0A1646;
  font-weight: 600;
}
.footer__nav ul ul {
  gap: 8px;
  padding-left: 1px;
  margin-top: 10px;
}
.footer__nav ul ul a {
  padding-left: 20px;
  font-size: 0.8125rem;
  font-weight: 400;
}
.footer__nav ul ul a:hover {
  font-weight: 500;
}
.footer__copyright {
  grid-column: 1/-1;
  text-align: center;
  color: #0A1646;
  font-family: "Manrope", sans-serif;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.main_visual {
  width: calc(100% - 2.9282576867vw);
  margin: 0 auto 100px;
}
@media screen and (max-width: 960px) {
  .main_visual {
    width: calc(100% - 5.4054054054vw);
    margin-bottom: 0;
  }
}
.main_visual .swiper-slide {
  height: calc(100vh - var(--headerHeight) - 1.4641288433vw);
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .main_visual .swiper-slide {
    height: calc(100vh - var(--headerHeight) - 2.7027027027vw);
  }
}
.main_visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main_visual__cation {
  position: relative;
  margin-left: -1.46vw;
  width: 890px;
  max-width: 100%;
  height: 70px;
  margin-top: -70px;
  z-index: 1;
  border-radius: 0 5px 0 0;
  background-color: #fff;
}
@media screen and (max-width: 960px) {
  .main_visual__cation {
    width: calc(100% - 20px);
    margin-left: -2.7027027027vw;
    height: auto;
    transform: translateY(-50%);
    margin-top: 0;
  }
}
.main_visual__cation a {
  display: grid;
  grid-template-columns: 140px auto 1fr;
  align-items: center;
  position: relative;
  gap: 14px;
  padding: 10px var(--sideW) 10px 0;
  font-size: 0.875rem;
}
@media screen and (max-width: 960px) {
  .main_visual__cation a {
    display: block;
    padding: 25px 20px 10px;
    line-height: 1.4;
  }
}
.main_visual__cation a:hover {
  font-weight: 600;
}
.main_visual__cation a:hover::after {
  transform: scale(1, 1);
}
.main_visual__cation a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #AC0E0E;
  bottom: 0;
  left: 0;
  transform: scale(0, 1);
  transform-origin: right;
  transition: 0.3s;
}
.main_visual__cation a .cat {
  background-color: #AC0E0E;
  color: #fff;
  line-height: 50px;
  text-align: center;
  border-radius: 0 5px 5px 0;
  font-weight: 600;
}
@media screen and (max-width: 960px) {
  .main_visual__cation a .cat {
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(-50%);
    line-height: 36px;
    padding: 0 20px;
  }
}
.main_visual__cation a time {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  color: #808080;
}
@media screen and (max-width: 960px) {
  .main_visual__cation a time {
    margin-bottom: 5px;
  }
}
.main_visual__cation a .ttl {
  color: #AC0E0E;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 960px) {
  .main_visual__cation a .ttl {
    white-space: wrap;
  }
}

.top_news__tab_layout {
  display: flex;
  flex-direction: column;
  gap: 30px 2.5622254758vw;
}
@media screen and (max-width: 960px) {
  .top_news__tab_layout {
    display: block;
  }
}
@media screen and (max-width: 960px) {
  .top_news .tab_contents {
    margin-bottom: 30px;
  }
}
.top_news .ttl_box {
  margin-bottom: 0;
}
@media screen and (max-width: 960px) {
  .top_news .ttl_box {
    margin-bottom: 20px;
  }
}

.tab_select {
  display: none;
  position: relative;
}
@media screen and (max-width: 960px) {
  .tab_select {
    display: block;
    margin-bottom: 20px;
  }
}
.tab_select select {
  display: block;
  width: 310px;
  line-height: 44px;
  padding: 0 15px;
  border-radius: 5px;
  margin: 0 auto;
  text-align: left;
}

.tab_list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 960px) {
  .tab_list {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .tab_list.is-open {
    display: block;
  }
}
.tab_list__button {
  display: block;
  padding: 0 14px 8px;
  line-height: 1.5;
  text-align: center;
  font-size: 0.875rem;
  border-bottom: 1px solid #E6E6E6;
  color: #5D5D5D;
  cursor: pointer;
  transition: 0.3s;
}
.tab_list__button.js_active, .tab_list__button:hover {
  border-color: #0A1646;
  color: #0A1646;
  font-weight: 600;
}
.tab_list__button.important:hover {
  color: #AC0E0E;
  border-color: #AC0E0E;
}

.tab_layout__news {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 960px) {
  .tab_layout__news {
    gap: 30px;
  }
}
.tab_layout__news .tab_contents {
  width: 100%;
}

.top_school-life {
  margin-bottom: 100px;
}
@media screen and (max-width: 960px) {
  .top_school-life {
    margin-bottom: var(--space);
  }
}
.top_school-life .inner, .top_school-life .inner_sm, .top_school-life .inner_md {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  align-items: center;
  gap: 0 1.4641288433vw;
}
@media screen and (max-width: 960px) {
  .top_school-life .inner, .top_school-life .inner_sm, .top_school-life .inner_md {
    display: block;
  }
}
.top_school-life .list_school-life {
  grid-column: 1/-1;
  margin-top: 40px;
}
@media screen and (max-width: 960px) {
  .top_school-life .list_school-life {
    margin-bottom: 30px;
  }
}
.top_school-life .ttl_box {
  margin-bottom: 0;
}
@media screen and (max-width: 960px) {
  .top_school-life .ttl_box {
    margin-bottom: 20px;
  }
}
.top_school-life .btn_cmn_01 {
  grid-column: 1/-1;
}

.top_image_link {
  margin-bottom: 100px;
}
@media screen and (max-width: 960px) {
  .top_image_link {
    margin-bottom: var(--space);
  }
}
.top_image_link__wrap {
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  height: 630px;
  border-radius: 5px;
  padding: 0 4.39238653vw;
  margin-bottom: 1.4641288433vw;
}
@media screen and (max-width: 960px) {
  .top_image_link__wrap {
    height: 670px;
    padding: 0 2.7027027027vw;
  }
}
.top_image_link__wrap:nth-child(even) {
  justify-content: end;
}
.top_image_link__wrap:last-child {
  margin-bottom: 0;
}
.top_image_link__wrap:hover img {
  transform: scale(1.05);
}
.top_image_link__wrap:hover .text {
  padding-bottom: 50px;
  box-shadow: 0 -5px 6px rgba(0, 0, 0, 0.16);
}
.top_image_link__wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.top_image_link__wrap .text {
  position: relative;
  background-color: #fff;
  width: 420px;
  max-width: 100%;
  padding: 40px;
  border-radius: 5px 5px 0 0;
  z-index: 1;
  transition: 0.3s;
}
@media screen and (max-width: 960px) {
  .top_image_link__wrap .text {
    width: 100%;
    padding: 30px 5.4054054054vw;
  }
}
.top_image_link__wrap .text .ttl01 {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  line-height: 1.2;
  font-family: "Noto Serif JP", serif;
  color: #0A1646;
  margin-bottom: 10px;
}
.top_image_link__wrap .text .ttl01::before {
  content: attr(data-en);
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: #01A592;
  font-family: "Manrope", sans-serif;
  margin-bottom: 10px;
}
.top_image_link__wrap .text .ttl02 {
  font-size: 2rem;
  font-family: "Manrope", sans-serif;
  color: #0A1646;
  line-height: 1.375;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}
.top_image_link__wrap .text .ttl02 span {
  display: inline-block;
}
.top_image_link__wrap .text .ttl02 span:first-letter {
  color: #01A592;
}
.top_image_link__wrap .text strong {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 25px;
}
.top_image_link__wrap .text p:not([class]) {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.top_course {
  margin-bottom: 100px;
}
@media screen and (max-width: 960px) {
  .top_course {
    margin-bottom: var(--space);
  }
}
.top_course h2 {
  position: relative;
  font-size: 2.8125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  padding-left: 65px;
}
@media screen and (max-width: 960px) {
  .top_course h2 {
    font-size: 1.875rem;
    padding-left: 2.7027027027vw;
  }
}
.top_course h2::before {
  content: "";
  position: absolute;
  width: calc(100% - 65px);
  height: 1px;
  background-color: #0A1646;
  right: 0;
  top: 1.6em;
}
@media screen and (max-width: 960px) {
  .top_course h2::before {
    width: calc(100% - 2.7027027027vw);
  }
}
.top_course h2::after {
  content: attr(data-en);
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  color: #01A592;
  margin-top: 10px;
}
@media screen and (max-width: 960px) {
  .top_course h2::after {
    font-size: 0.875rem;
  }
}

.course_wrap {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 100px;
}
@media screen and (max-width: 960px) {
  .course_wrap {
    gap: 40px;
    margin-bottom: 80px;
  }
}
.course_wrap:last-child {
  margin-bottom: 0;
}
.course_wrap__item {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  position: relative;
  padding-left: 4.39238653vw;
}
@media screen and (max-width: 960px) {
  .course_wrap__item {
    padding-left: 0;
  }
}
.course_wrap__item:hover img {
  transform: scale(1.05);
}
.course_wrap__item:nth-child(odd) figure {
  order: 2;
}
@media screen and (max-width: 960px) {
  .course_wrap__item:nth-child(odd) figure {
    order: 1;
    margin: 0 0 0 auto;
  }
}
.course_wrap__item:nth-child(odd) .text {
  order: 1;
}
@media screen and (max-width: 960px) {
  .course_wrap__item:nth-child(odd) .text {
    order: 2;
    margin: 0 auto 0 0;
  }
}
.course_wrap__item:nth-child(odd) .text::after {
  right: auto;
  left: 0;
}
.course_wrap__item:nth-child(even) {
  padding-left: 0;
  padding-right: 4.39238653vw;
}
@media screen and (max-width: 960px) {
  .course_wrap__item:nth-child(even) {
    padding-right: 0;
  }
}
.course_wrap__item:nth-child(even)::before {
  left: auto;
  right: -1.4641288433vw;
}
.course_wrap__item::before {
  content: "";
  position: absolute;
  width: 330px;
  aspect-ratio: 33/40;
  left: -1.4641288433vw;
  top: 80px;
  background-color: #F5F6FA;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .course_wrap__item::before {
    display: none;
  }
}
.course_wrap__item figure {
  position: relative;
  width: calc(100% - 368px);
  height: 580px;
  border-radius: 5px;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 1.4641288433vw;
}
@media screen and (max-width: 960px) {
  .course_wrap__item figure {
    width: calc(100% - 6.7567567568vw);
    height: auto;
    aspect-ratio: 345/460;
    margin: 0 auto 0 0;
  }
}
.course_wrap__item figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.course_wrap__item .text {
  position: relative;
  width: 368px;
  max-width: 100%;
  padding: 40px;
  border-radius: 5px;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .course_wrap__item .text {
    width: calc(100% - 6.7567567568vw);
    padding: 20px 6.7567567568vw 25px;
    margin: 0 0 0 auto;
  }
}
.course_wrap__item .text::after {
  content: "";
  position: absolute;
  width: calc(100% + 40px);
  height: 100%;
  background-color: #0A1646;
  right: 0;
  top: 0;
  border-radius: 5px;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .course_wrap__item .text::after {
    width: 100%;
    height: calc(100% + 80px);
    top: auto;
    bottom: 0;
  }
}
.course_wrap__item .text .ttl {
  font-size: 1.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 22px;
}
.course_wrap__item .text .ttl::before {
  content: "COURSE";
  display: block;
  font-size: 0.875rem;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  color: #5AEAD9;
}
.course_wrap__item .text p:not([class]) {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.top_links .app {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.317715959vw;
  margin-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .top_links .app {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }
}
.top_links .app a {
  display: flex;
  align-items: center;
  position: relative;
  height: 360px;
  padding: 1.4641288433vw;
  border-radius: 5px;
  overflow: hidden;
  background-color: #222;
}
@media screen and (max-width: 960px) {
  .top_links .app a {
    height: auto;
    aspect-ratio: 37/24;
  }
}
.top_links .app a:hover {
  padding: 2.196193265vw;
}
.top_links .app a:hover img {
  transform: scale(1.05);
  opacity: 1;
}
.top_links .app a img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  transition: 0.3s;
  opacity: 0.7;
}
.top_links .app a p {
  position: relative;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #0A1646;
  padding: 18px 20px;
  width: 190px;
  border-radius: 5px 5px 0 5px;
  background-color: #fff;
  line-height: 1.5;
  z-index: 1;
  -webkit-mask-image: url(../images/mask-cut.svg), linear-gradient(#fff 0 0);
          mask-image: url(../images/mask-cut.svg), linear-gradient(#fff 0 0);
  -webkit-mask-repeat: no-repeat, no-repeat;
          mask-repeat: no-repeat, no-repeat;
  -webkit-mask-size: 20px 20px, 100% 100%;
          mask-size: 20px 20px, 100% 100%;
  -webkit-mask-position: right bottom, 0 0;
          mask-position: right bottom, 0 0;
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
.top_links .app a p::after {
  content: attr(data-en);
  display: block;
  font-size: 0.875rem;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: #01A592;
}
.top_links .app02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 960px) {
  .top_links .app02 li {
    width: 100%;
    padding: 0 4.0540540541vw;
  }
}
.top_links .app02 li a {
  display: block;
  position: relative;
  width: 413px;
  max-width: 100%;
  padding: 32px 30px;
  background-color: #F7F7F7;
  color: #0A1646;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  border-radius: 5px;
}
@media screen and (max-width: 960px) {
  .top_links .app02 li a {
    padding: 25px 20px;
    font-size: 1.125rem;
  }
}

.hero {
  display: block;
  padding: 0 1.4641288433vw;
  margin-bottom: var(--space);
}
@media screen and (max-width: 960px) {
  .hero {
    padding: 0 2.7027027027vw;
  }
}
.hero:last-child {
  margin-bottom: 0;
}
.hero__ttl {
  display: block;
  position: relative;
  background-color: #F7F7F7;
  padding: 40px 0 40px 5.8565153734vw;
  margin-left: 5.8565153734vw;
  border-radius: 5px;
  color: #0A1646;
  font-size: 2.1875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .hero__ttl {
    padding: 20px 0 20px 5.4054054054vw;
    font-size: 1.75rem;
    margin-left: 0;
  }
}
.hero__ttl::after {
  content: attr(data-en);
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  line-height: 1.5;
  margin-top: 10px;
  color: #01A592;
}
@media screen and (max-width: 960px) {
  .hero__ttl::after {
    font-size: 1rem;
  }
}
.hero__ttl span {
  display: block;
  position: relative;
  padding-bottom: 5px;
}
.hero__ttl span::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #222;
  right: 0;
  bottom: 0;
}
.hero:has(.hero__img) {
  position: relative;
  padding-bottom: 2.196193265vw;
}
@media screen and (max-width: 960px) {
  .hero:has(.hero__img) {
    padding-bottom: 80px;
  }
}
.hero:has(.hero__img) .hero__img {
  display: block;
  height: 500px;
  margin-left: 11.7130307467vw;
}
@media screen and (max-width: 960px) {
  .hero:has(.hero__img) .hero__img {
    margin-left: 6.7567567568vw;
    height: auto;
    aspect-ratio: 345/300;
  }
}
.hero:has(.hero__img) .hero__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.hero:has(.hero__img) .hero__ttl {
  position: absolute;
  left: 0;
  bottom: 0;
  padding-left: 40px;
  min-width: 488px;
}
@media screen and (max-width: 960px) {
  .hero:has(.hero__img) .hero__ttl {
    left: 2.7027027027vw;
    padding-left: 4.0540540541vw;
    width: calc(100% - 12.1621621622vw);
    min-width: 1px;
  }
}
.hero:has(.hero__img) .hero__ttl span {
  padding-right: 7.3206442167vw;
}

.page-iiyama-heritage #container_wrap {
  margin-bottom: 0;
}
.page-iiyama-heritage .hero {
  background-color: #fff;
  padding-bottom: 110px;
  margin-bottom: 0;
}
@media screen and (max-width: 960px) {
  .page-iiyama-heritage .hero {
    background: linear-gradient(to bottom, transparent 50%, #fff 50%);
    padding-bottom: 0;
  }
}
.page-iiyama-heritage .hero:has(.hero__img) .hero__img {
  height: 430px;
  margin-left: 0;
}
@media screen and (max-width: 960px) {
  .page-iiyama-heritage .hero:has(.hero__img) .hero__img {
    aspect-ratio: 37/30;
    height: auto;
  }
}
.page-iiyama-heritage .hero:has(.hero__img) .hero__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 630px;
  max-width: 100%;
  left: auto;
  bottom: auto;
  padding: 40px 0 0;
  background-color: #fff;
  text-align: center;
  margin: 0 auto;
  z-index: 1;
  border-radius: 5px;
  transform: translateY(-50px);
}
@media screen and (max-width: 960px) {
  .page-iiyama-heritage .hero:has(.hero__img) .hero__ttl {
    width: calc(100% - 8.1081081081vw);
    padding-top: 20px;
    transform: translateY(-60px);
  }
}
.page-iiyama-heritage .hero:has(.hero__img) .hero__ttl::before {
  content: "PHILOSOPHY";
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.25em;
  color: #01A592;
}
@media screen and (max-width: 960px) {
  .page-iiyama-heritage .hero:has(.hero__img) .hero__ttl::before {
    font-size: 1rem;
  }
}
.page-iiyama-heritage .hero:has(.hero__img) .hero__ttl::after {
  content: none;
}
.page-iiyama-heritage .hero:has(.hero__img) .hero__ttl span {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
}
.page-iiyama-heritage .hero:has(.hero__img) .hero__ttl span::before {
  bottom: 0.625rem;
  z-index: -1;
}
.page-iiyama-heritage .hero:has(.hero__img) .hero__ttl span::after {
  content: "合言葉";
  display: block;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  background-color: #fff;
  padding: 0 10px;
}
@media screen and (max-width: 960px) {
  .page-iiyama-heritage .hero:has(.hero__img) .hero__ttl span::after {
    font-size: 0.9375rem;
  }
}

.hero_course {
  display: block;
  position: relative;
  padding: 0 1.4641288433vw 30px;
  margin-bottom: var(--space);
}
@media screen and (max-width: 960px) {
  .hero_course {
    padding: 0 2.7027027027vw;
  }
}
.hero_course:last-child {
  margin-bottom: 0;
}
.hero_course__img {
  display: block;
  height: 590px;
  margin-left: 13.17715959vw;
}
@media screen and (max-width: 960px) {
  .hero_course__img {
    margin-left: 6.7567567568vw;
    height: auto;
    aspect-ratio: 345/460;
  }
}
.hero_course__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.hero_course__text {
  display: block;
  position: absolute;
  overflow: hidden;
  left: 5.8565153734vw;
  bottom: 0;
  width: 490px;
  max-width: 100%;
  background-color: #F7F7F7;
  padding: 40px 2.9282576867vw;
  border-radius: 5px;
  color: #0A1646;
}
@media screen and (max-width: 960px) {
  .hero_course__text {
    position: relative;
    padding: 20px 4.0540540541vw;
    margin: -40px 0 0;
    width: calc(100% - 6.7567567568vw);
    left: auto;
    bottom: auto;
    z-index: 1;
  }
}
.hero_course__text h1 {
  position: relative;
  font-size: 2.1875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  padding-bottom: 5px;
  margin-bottom: 22px;
}
@media screen and (max-width: 960px) {
  .hero_course__text h1 {
    font-size: 1.75rem;
  }
}
.hero_course__text h1::before {
  content: "COURSE";
  display: block;
  font-size: 1.125rem;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  color: #01A592;
}
@media screen and (max-width: 960px) {
  .hero_course__text h1::before {
    font-size: 1rem;
  }
}
.hero_course__text h1::after {
  content: "";
  position: absolute;
  width: 150%;
  height: 1px;
  background-color: #222;
  left: 0;
  bottom: 0;
}
.hero_course__text p {
  font-size: 0.875rem;
  line-height: 1.85;
}

.hero_club {
  display: block;
  position: relative;
  padding: 0 1.4641288433vw 30px;
  margin-bottom: var(--space);
}
@media screen and (max-width: 960px) {
  .hero_club {
    padding: 0 2.7027027027vw;
  }
}
.hero_club:last-child {
  margin-bottom: 0;
}
.hero_club__img {
  display: block;
  height: 590px;
  margin-left: 13.17715959vw;
}
@media screen and (max-width: 960px) {
  .hero_club__img {
    margin-left: 6.7567567568vw;
    height: auto;
    aspect-ratio: 345/460;
  }
}
.hero_club__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.hero_club__text {
  display: block;
  position: absolute;
  overflow: hidden;
  left: 5.8565153734vw;
  bottom: 0;
  width: 490px;
  max-width: 100%;
  background-color: #F7F7F7;
  padding: 40px 2.9282576867vw;
  border-radius: 5px;
  color: #0A1646;
}
@media screen and (max-width: 960px) {
  .hero_club__text {
    position: relative;
    padding: 20px 4.0540540541vw;
    margin: -40px 0 0;
    width: calc(100% - 6.7567567568vw);
    left: auto;
    bottom: auto;
    z-index: 1;
  }
}
.hero_club__text h1 {
  position: relative;
  font-size: 2.1875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .hero_club__text h1 {
    font-size: 1.75rem;
  }
}
.hero_club__text h1::before {
  content: "CLUB";
  display: block;
  font-size: 1.125rem;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  color: #01A592;
  margin-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .hero_club__text h1::before {
    font-size: 1rem;
  }
}
.hero_club__text h1::after {
  content: "";
  position: absolute;
  width: 150%;
  height: 1px;
  background-color: #222;
  left: 0;
  top: 1em;
}

.sec_heritage_01 {
  margin-bottom: 0;
}
@media screen and (max-width: 960px) {
  .sec_heritage_01 .inner, .sec_heritage_01 .inner_sm, .sec_heritage_01 .inner_md {
    padding: 0 2.7027027027vw;
  }
}
.sec_heritage_01 .philosophy_wrap {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 140px var(--sideW);
}
@media screen and (max-width: 960px) {
  .sec_heritage_01 .philosophy_wrap {
    padding-inline: 2.7027027027vw;
  }
}
.sec_heritage_01 .philosophy_wrap img {
  z-index: -1;
}
.sec_heritage_01 .philosophy_wrap__in {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 880px;
  max-width: 100%;
  margin: 0 auto;
}
.sec_heritage_01 .philosophy_wrap strong {
  display: block;
  font-size: 2.1875rem;
  font-weight: 600;
  writing-mode: vertical-lr;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.3em;
  margin-bottom: 20px;
}
.sec_heritage_01 .philosophy_wrap strong + p {
  font-size: 0.875rem;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 45px;
}
.sec_heritage_01 .philosophy_wrap p:last-child {
  font-size: 1rem;
  text-align: left;
  line-height: 2.1;
}

.sec_heritage_02 {
  background-color: #fff;
  padding-block: var(--space);
  margin-bottom: 0;
}
@media screen and (max-width: 960px) {
  .sec_heritage_02 {
    padding-block: 70px;
  }
}
.sec_heritage_02 h2 {
  position: relative;
  text-align: center;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.35;
  padding-bottom: 10px;
  margin-bottom: 50px;
}
@media screen and (max-width: 960px) {
  .sec_heritage_02 h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
}
.sec_heritage_02 h2::before, .sec_heritage_02 h2::after {
  content: "";
  position: absolute;
  width: 97.0717423133vw;
  height: 1px;
  background-color: #01A592;
  left: 50%;
  bottom: 3px;
  transform: translateX(-50%);
}
@media screen and (max-width: 960px) {
  .sec_heritage_02 h2::before, .sec_heritage_02 h2::after {
    width: 94.5945945946vw;
  }
}
.sec_heritage_02 h2::after {
  height: 2px;
  background-color: #0A1646;
  bottom: 0;
}
.sec_heritage_02 h2 + p {
  font-size: 0.875rem;
  width: 800px;
  max-width: 100%;
  margin: 0 auto 80px;
}
@media screen and (max-width: 960px) {
  .sec_heritage_02 h2 + p {
    margin-bottom: 55px;
  }
}
.sec_heritage_02 .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px 20px;
  width: 1000px;
  max-width: 100%;
  margin: 0 auto 60px;
}
@media screen and (max-width: 960px) {
  .sec_heritage_02 .grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
.sec_heritage_02 .grid__item {
  position: relative;
  background-color: #F7F7F7;
  border-radius: 5px;
  padding: 80px 40px 40px;
}
@media screen and (max-width: 960px) {
  .sec_heritage_02 .grid__item {
    padding: 80px 15px 30px;
  }
}
.sec_heritage_02 .grid__item strong {
  position: absolute;
  width: 180px;
  background-color: #0A1646;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 10px 0;
  border-radius: 5px 5px 0 0;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.sec_heritage_02 .grid__item strong::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 20px;
  background-color: #0A1646;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  left: 0;
  top: 100%;
}
.sec_heritage_02 .grid__item ul li {
  padding: 12px 0;
  border-bottom: 1px solid #E6E6E6;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.75;
}
.sec_heritage_02 .catch {
  margin-bottom: 45px;
}

.course_detail {
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}
.course_detail:last-child {
  margin-bottom: 0;
}
.course_detail__item {
  display: grid;
  grid-template-columns: 1fr 58%;
  gap: 44px;
}
@media screen and (max-width: 960px) {
  .course_detail__item {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
  }
}
.course_detail__item .ttl {
  position: relative;
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #fff;
  padding: 18px 20px;
  margin-bottom: 25px;
}
@media screen and (max-width: 960px) {
  .course_detail__item .ttl {
    width: 80%;
    padding: 12px 15px 27px;
    margin-bottom: 0;
    transform: translateX(-15px);
    order: 1;
  }
}
.course_detail__item .ttl::after {
  content: "";
  position: absolute;
  width: clamp(77%, 50.8vw, 694px);
  height: 100%;
  left: 0;
  top: 0;
  background-color: #0A1646;
  border-radius: 5px;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .course_detail__item .ttl::after {
    width: 100%;
  }
}
.course_detail__item .ttl02 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0A1646;
  margin-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .course_detail__item .ttl02 {
    order: 3;
  }
}
@media screen and (max-width: 960px) {
  .course_detail__item .list_number {
    order: 4;
  }
}
@media screen and (max-width: 960px) {
  .course_detail__item .btn_cmn_01 {
    order: 5;
  }
}
@media screen and (max-width: 960px) {
  .course_detail__text {
    display: contents;
  }
}
.course_detail__img {
  padding-top: 30px;
}
@media screen and (max-width: 960px) {
  .course_detail__img {
    position: relative;
    padding: 0;
    margin: -15px 0 25px;
    order: 2;
    z-index: 2;
  }
}
.course_detail__img img {
  display: block;
  height: 460px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
@media screen and (max-width: 960px) {
  .course_detail__img img {
    height: auto;
    aspect-ratio: 355/240;
  }
}

.learning_wrap {
  display: grid;
  grid-template-columns: 246px 1fr;
  align-items: start;
  gap: 40px;
  background-color: #F7F7F7;
  padding: 40px;
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 5px;
}
@media screen and (max-width: 960px) {
  .learning_wrap {
    display: block;
    position: relative;
    padding: 70px 15px 50px;
    margin: 0 -2.7027027027vw;
    width: auto;
    max-width: none;
  }
}
.learning_wrap h3 {
  display: block;
  padding: 15px 20px;
  background-color: #0A1646;
  color: #fff;
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.45;
  border-radius: 5px 5px 0 5px;
  -webkit-mask-image: url(../images/mask-cut.svg), linear-gradient(#fff 0 0);
          mask-image: url(../images/mask-cut.svg), linear-gradient(#fff 0 0);
  -webkit-mask-repeat: no-repeat, no-repeat;
          mask-repeat: no-repeat, no-repeat;
  -webkit-mask-size: 24px 24px, 100% 100%;
          mask-size: 24px 24px, 100% 100%;
  -webkit-mask-position: right bottom, 0 0;
          mask-position: right bottom, 0 0;
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
@media screen and (max-width: 960px) {
  .learning_wrap h3 {
    width: 260px;
    position: absolute;
    top: -30px;
    left: 15px;
  }
}
.learning_wrap ul {
  font-size: 0.875rem;
  line-height: 1.5;
}
.learning_wrap ul li {
  border-bottom: 1px solid #E6E6E6;
  padding: 15px 0;
}
.learning_wrap ul li strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.learning_wrap ul li strong:last-child {
  margin-bottom: 0;
}

.greeting {
  display: grid;
  grid-template-columns: 60% 1fr;
  gap: 35px 40px;
  margin-bottom: 70px;
}
@media screen and (max-width: 960px) {
  .greeting {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 960px) {
  .greeting__image figure {
    display: block;
    width: 330px;
    margin: 0 auto;
  }
}
.greeting__image figure img {
  display: block;
  border-radius: 5px;
  margin: 0 auto 15px;
}
.greeting__image figure figcaption {
  text-align: right;
  font-size: 0.875rem;
}
.greeting__image figure figcaption span {
  display: block;
  font-size: 1.375rem;
  letter-spacing: 0.25em;
  line-height: 1.25;
}

.about_links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
  background-color: #F7F7F7;
  padding: 60px min(5.8vw, 80px);
}
@media screen and (max-width: 960px) {
  .about_links {
    padding: 30px 4.0540540541vw;
    margin-inline: -4.0540540541vw;
  }
}
.about_links a {
  display: block;
  position: relative;
  background-color: #fff;
  border-radius: 5px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  padding: 30px;
  color: #0A1646;
}
@media screen and (max-width: 960px) {
  .about_links a {
    font-size: 1.125rem;
    padding: 25px 20px;
  }
}
.about_links a .arrow {
  background-color: #F7F7F7;
}

.plan_list {
  display: flex;
  flex-direction: column;
  gap: 75px;
  margin-top: 80px;
}
@media screen and (max-width: 960px) {
  .plan_list {
    gap: 60px;
    margin: 55px -4.0540540541vw 0;
  }
}
.plan_list__item {
  position: relative;
  background-color: #F7F7F7;
  padding: 45px 50px;
  border-radius: 5px;
}
@media screen and (max-width: 960px) {
  .plan_list__item {
    padding: 30px 4.0540540541vw;
  }
}
.plan_list__item:has(.ttl_label) {
  padding-top: 75px;
}
@media screen and (max-width: 960px) {
  .plan_list__item:has(.ttl_label) {
    padding-top: 55px;
  }
}
.plan_list__item .ttl_label {
  position: absolute;
  left: 50px;
  top: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 960px) {
  .plan_list__item .ttl_label {
    left: 15px;
  }
}
.plan_list__item .list_number {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 20px;
}
@media screen and (max-width: 960px) {
  .plan_list__item .list_number {
    grid-template-columns: 1fr;
  }
}
.plan_list__box {
  background-color: #fff;
  padding: 25px 40px;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .plan_list__box {
    padding: 25px 15px;
  }
}
.plan_list__box:last-child {
  margin-bottom: 0;
}
.plan_list__box .list_number {
  display: flex;
  flex-direction: column;
}

.policy_wrap {
  display: flex;
  flex-direction: column;
  gap: 60px;
  counter-reset: num;
}
.policy_wrap__item {
  counter-increment: num;
}
.policy_wrap__item > p {
  font-size: 0.875rem;
  margin-bottom: 25px;
}
.policy_wrap .ttl_label {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  .policy_wrap .ttl_label {
    width: calc(100% + 8.1081081081vw);
    transform: translateX(-4.0540540541vw);
  }
}
.policy_wrap .ttl_label::before {
  content: counter(num);
  display: grid;
  place-content: center;
  width: 32px;
  aspect-ratio: 1/1;
  background-color: #fff;
  color: #0A1646;
  font-size: 1.1875rem;
  font-weight: 500;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.25em;
  border-radius: 5px;
}
.policy_wrap .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px 20px;
  padding-top: 20px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 960px) {
  .policy_wrap .grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
.policy_wrap .grid:last-child {
  margin-bottom: 0;
}
.policy_wrap .grid__item {
  position: relative;
  background-color: #F7F7F7;
  border-radius: 5px;
  padding: 80px 40px 40px;
}
@media screen and (max-width: 960px) {
  .policy_wrap .grid__item {
    padding: 80px 15px 30px;
  }
}
.policy_wrap .grid__item strong {
  position: absolute;
  width: 180px;
  background-color: #0A1646;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 10px 0;
  border-radius: 5px 5px 0 0;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.policy_wrap .grid__item strong::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 20px;
  background-color: #0A1646;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  left: 0;
  top: 100%;
}
.policy_wrap .grid__item ul li {
  padding: 12px 0;
  border-bottom: 1px solid #E6E6E6;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.75;
  list-style-type: none;
}
.policy_wrap .plan_list {
  margin-top: 0;
}

.sec_philosophy_02 .catch {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto 50px;
}

.course_pickup {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 796px;
  max-width: 100%;
  margin: 0 auto;
}
.course_pickup li {
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: center;
  gap: 15px 1.4641288433vw;
  background-color: #0A1646;
  padding: 20px 2.196193265vw 20px 1.4641288433vw;
  border-radius: 5px;
}
@media screen and (max-width: 960px) {
  .course_pickup li {
    grid-template-columns: 1fr;
    padding: 20px 5.4054054054vw 30px;
  }
}
.course_pickup li .image {
  aspect-ratio: 3/2;
}
.course_pickup li .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.course_pickup li .text {
  color: #fff;
}
.course_pickup li .text p {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.125rem;
}
.course_pickup li .ttl {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 960px) {
  .course_pickup li .ttl {
    font-size: 1.375rem;
  }
}
.course_pickup li .ttl::before {
  content: "PICK UP";
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.25em;
  color: #5AEAD9;
}

.course_point {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-bottom: var(--space);
}
.course_point:last-child {
  margin-bottom: 0;
}
.course_point__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 2.9282576867vw;
}
@media screen and (max-width: 960px) {
  .course_point__item {
    flex-direction: column;
  }
}
.course_point__item:nth-child(even) .text {
  order: 2;
}
@media screen and (max-width: 960px) {
  .course_point__item:nth-child(even) .text {
    order: 1;
  }
}
.course_point__item:nth-child(even) .image {
  order: 1;
}
@media screen and (max-width: 960px) {
  .course_point__item:nth-child(even) .image {
    order: 2;
  }
}
.course_point__item .text {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  gap: 35px 20px;
  width: 450px;
}
@media screen and (max-width: 960px) {
  .course_point__item .text {
    grid-template-columns: 70px 1fr;
    gap: 20px 10px;
    width: auto;
  }
}
.course_point__item .text .num {
  display: grid;
  place-content: center;
  place-items: center;
  aspect-ratio: 1/1;
  background-color: #0A1646;
  color: #fff;
  font-size: 2.1875rem;
  font-weight: 500;
  font-family: "Manrope", sans-serif;
  line-height: 1.2;
  border-radius: 5px 5px 0 5px;
  -webkit-mask-image: url(../images/mask-cut.svg), linear-gradient(#fff 0 0);
          mask-image: url(../images/mask-cut.svg), linear-gradient(#fff 0 0);
  -webkit-mask-repeat: no-repeat, no-repeat;
          mask-repeat: no-repeat, no-repeat;
  -webkit-mask-size: 20px 20px, 100% 100%;
          mask-size: 20px 20px, 100% 100%;
  -webkit-mask-position: right bottom, 0 0;
          mask-position: right bottom, 0 0;
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
@media screen and (max-width: 960px) {
  .course_point__item .text .num {
    font-size: 1.75rem;
    -webkit-mask-size: 14px 14px, 100% 100%;
            mask-size: 14px 14px, 100% 100%;
  }
}
.course_point__item .text .num::before {
  content: "POINT";
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  margin-bottom: 3px;
}
@media screen and (max-width: 960px) {
  .course_point__item .text .num::before {
    font-size: 0.6875rem;
  }
}
.course_point__item .text h3 {
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.5;
  color: #0A1646;
}
@media screen and (max-width: 960px) {
  .course_point__item .text h3 {
    font-size: 1.25rem;
  }
}
.course_point__item .text p:not([class]) {
  font-size: 0.875rem;
  grid-column: 1/-1;
  grid-row: 2;
}
.course_point__item .image {
  width: calc(100% - 450px - 2.9282576867vw);
}
@media screen and (max-width: 960px) {
  .course_point__item .image {
    width: auto;
    aspect-ratio: 1/1;
  }
}
.course_point__item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

.course_curriculum {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 960px) {
  .course_curriculum {
    gap: 35px;
    padding-top: 30px;
  }
}
.course_curriculum .item {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 30px;
  background-color: #F7F7F7;
  padding: 40px 40px 10px;
  border-radius: 5px;
}
@media screen and (max-width: 960px) {
  .course_curriculum .item {
    display: block;
    position: relative;
    padding: 0 15px 30px;
  }
}
.course_curriculum .item:last-child {
  padding: 40px;
}
@media screen and (max-width: 960px) {
  .course_curriculum .item:last-child {
    padding: 0 15px 30px;
  }
}
.course_curriculum .item:last-child dt {
  border-radius: 5px;
}
@media screen and (max-width: 960px) {
  .course_curriculum .item:last-child dt {
    margin-bottom: 0;
  }
}
.course_curriculum .item:last-child dt::after {
  content: none;
}
.course_curriculum dt {
  position: relative;
  background-color: #0A1646;
  color: #fff;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 24px 0;
  border-radius: 5px 5px 0 0;
}
@media screen and (max-width: 960px) {
  .course_curriculum dt {
    width: 160px;
    margin: 0 auto 12px;
    transform: translateY(-23px);
    padding: 15px 0;
  }
}
.course_curriculum dt::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 20px;
  -webkit-clip-path: polygon(100% 0, 100% calc(100% - 20px), 50% 100%, 0 calc(100% - 20px), 0 0);
          clip-path: polygon(100% 0, 100% calc(100% - 20px), 50% 100%, 0 calc(100% - 20px), 0 0);
  background-color: #0A1646;
  left: 0;
  top: calc(100% - 2px);
}
.course_curriculum dd > p {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  color: #0A1646;
}
.course_curriculum dd ul {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
}
@media screen and (max-width: 960px) {
  .course_curriculum dd ul {
    grid-template-columns: 1fr;
  }
}
.course_curriculum dd ul li {
  padding: 10px 30px;
  border-right: 2px dotted #0A1646;
}
@media screen and (max-width: 960px) {
  .course_curriculum dd ul li {
    border-right: none;
    border-bottom: 2px dotted #0A1646;
    padding: 15px 0;
  }
}
.course_curriculum dd ul li:first-child {
  padding-left: 0;
}
@media screen and (max-width: 960px) {
  .course_curriculum dd ul li:first-child {
    padding-top: 0;
  }
}
.course_curriculum dd ul li:last-child {
  padding-right: 0;
  border-right: none;
}
@media screen and (max-width: 960px) {
  .course_curriculum dd ul li:last-child {
    padding-bottom: 0;
  }
}
.course_curriculum dd ul li strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0A1646;
  line-height: 1.5;
  margin-bottom: 6px;
}
.course_curriculum dd ul li p {
  font-size: 0.875rem;
  line-height: 1.7;
}

.interview_wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  position: relative;
  background-color: #F7F7F7;
  padding: 100px 50px 50px;
  border-radius: 5px;
}
@media screen and (max-width: 960px) {
  .interview_wrap {
    grid-template-columns: 1fr;
    padding: 72px 15px 50px;
    margin: 0 -4.0540540541vw;
  }
}
.interview_wrap .ttl_card {
  position: absolute;
  left: 50px;
  top: -30px;
}
@media screen and (max-width: 960px) {
  .interview_wrap .ttl_card {
    left: 15px;
  }
}
@media screen and (max-width: 960px) {
  .interview_wrap .image {
    padding: 0 30px;
  }
}
.interview_wrap .image img {
  display: block;
  border-radius: 5px;
  margin: 0 auto 10px;
}
.interview_wrap .image p {
  text-align: center;
  font-size: 0.875rem;
}
@media screen and (max-width: 960px) {
  .interview_wrap .image p {
    line-height: 1.5;
  }
}
.interview_wrap .image p.name {
  font-size: 1.375rem;
  letter-spacing: 0.25em;
}
@media screen and (max-width: 960px) {
  .interview_wrap .image p.name {
    margin-bottom: 5px;
  }
}
.interview_wrap .image p.name::after {
  content: "さん";
  display: inline-block;
  font-size: 0.875rem;
  margin-left: 3px;
}
.interview_wrap .text strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0A1646;
  line-height: 1.5;
  margin-bottom: 25px;
}
.interview_wrap .text p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.1;
}

.other_course {
  gap: 20px;
}
@media screen and (max-width: 960px) {
  .other_course {
    gap: 10px;
    margin: 0 -4.0540540541vw;
  }
}
.other_course a {
  display: block;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.other_course a img {
  width: 100%;
  aspect-ratio: 592/296;
  -o-object-fit: cover;
     object-fit: cover;
}
.other_course a p {
  background-color: #F7F7F7;
  padding: 12px 30px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0A1646;
  letter-spacing: 0.1em;
}

.card_school-life {
  display: block;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.card_school-life:hover img {
  transform: scale(1.1);
}
.card_school-life figure {
  aspect-ratio: 388/260;
  overflow: hidden;
}
.card_school-life figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.card_school-life .text {
  padding: 15px 20px 35px;
  background-color: #F7F7F7;
}
.card_school-life .text strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  color: #0A1646;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.card_school-life .text p {
  font-size: 0.875rem;
  line-height: 1.6;
}

.list_anchor_link {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
}
.list_anchor_link a .arrow {
  transform: rotate(90deg);
}

.club_list {
  gap: 1.5625rem 2rem;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .club_list {
    gap: 1.5625rem 0;
  }
}
.club_list a {
  display: block;
}
.club_list a:hover img {
  transform: scale(1.1);
}
.club_list a:hover p {
  background-size: 100% 1px, 100% 1px;
}
.club_list a figure {
  position: relative;
  aspect-ratio: 312/234;
  overflow: hidden;
  border-radius: 5px;
}
.club_list a figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.club_list a p {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  padding: 10px 0;
  background: linear-gradient(#0A1646, #0A1646) right bottom/36px 1px no-repeat, linear-gradient(#E6E6E6, #E6E6E6) left bottom/100% 1px no-repeat;
  transition: 0.3s;
}

.photo_gallery {
  gap: 0.25rem;
}
.photo_gallery figure {
  background-color: #F7F7F7;
  aspect-ratio: 1/1;
  border-radius: 5px;
}
.photo_gallery figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.facility_list {
  gap: 1.25rem 1.75rem;
}
.facility_list > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.625rem;
}
.facility_list p {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}
.facility_list a,
.facility_list button {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #0A1646;
  color: #fff;
  line-height: 1.5;
  padding: 3px 10px;
  border-radius: 5px;
  font-size: 0.875rem;
  font-weight: 500;
}
.facility_list a:hover,
.facility_list button:hover {
  background-color: #1C2E74;
}
.facility_list a::before,
.facility_list button::before {
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 20/13;
  background: url(../images/ico_camera.svg) no-repeat center/contain;
}

.pano_wrap {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 2/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.pano_wrap .pano {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: no-repeat center/cover;
  cursor: pointer;
}
.pano_wrap .pano canvas {
  width: 100% !important;
  height: 100% !important;
}

.toggle_wrap {
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  .toggle_wrap {
    margin-bottom: 20px;
  }
}
.toggle_wrap:last-child {
  margin-bottom: 0;
}
.toggle_wrap[open] summary::after {
  opacity: 0;
}
.toggle_wrap summary {
  position: relative;
  background-color: #0A1646;
  color: #fff;
  padding: 20px 30px;
  border-radius: 5px;
  font-size: 1.25rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}
@media screen and (max-width: 960px) {
  .toggle_wrap summary {
    padding: 15px 20px;
    font-size: 1.125rem;
  }
}
.toggle_wrap summary::marker {
  content: "";
}
.toggle_wrap summary::-webkit-details-marker {
  display: none;
}
.toggle_wrap summary::before, .toggle_wrap summary::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #fff;
  right: 30px;
  top: calc(50% - 1px);
  transition: 0.3s;
}
@media screen and (max-width: 960px) {
  .toggle_wrap summary::before, .toggle_wrap summary::after {
    width: 20px;
    right: 20px;
  }
}
.toggle_wrap summary::after {
  transform: rotate(90deg);
}
.toggle_wrap__download {
  padding: 30px var(--sideW);
  background-color: #F7F7F7;
}
@media screen and (max-width: 960px) {
  .toggle_wrap__download {
    padding-block: 20px;
  }
}
.toggle_wrap__download ul {
  line-height: 1.75;
}
.toggle_wrap__download ul a {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  font-size: 1.125rem;
  font-weight: 500;
  color: #0A1646;
  border-bottom: 1px solid #898989;
  padding: 12px 0 12px 45px;
}
@media screen and (max-width: 960px) {
  .toggle_wrap__download ul a {
    font-size: 0.9375rem;
    padding-block: 8px;
  }
}
.toggle_wrap__download ul a::after {
  content: "[PDF]";
  display: block;
  font-size: 0.75rem;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
}
.toggle_wrap__download ul a .arrow {
  background-color: transparent;
}
.toggle_wrap__journal {
  padding: 30px var(--sideW);
  border-radius: 0 0 5px 5px;
  border: 1px solid #0A1646;
}
@media screen and (max-width: 960px) {
  .toggle_wrap__journal {
    padding-block: 20px;
  }
}

.hero_ssh {
  margin: 0 1.4641288433vw var(--space);
}
@media screen and (max-width: 960px) {
  .hero_ssh {
    margin-inline: 2.7027027027vw;
  }
}
.hero_ssh__img {
  display: block;
  border-radius: 5px;
  overflow: hidden;
  height: 450px;
}
@media screen and (max-width: 960px) {
  .hero_ssh__img {
    height: auto;
  }
}
.hero_ssh__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero_ssh__ttl {
  position: relative;
  width: 632px;
  max-width: calc(100% - 5.4054054054vw);
  margin: -50px auto 0;
  background-color: #fff;
  border-radius: 5px;
  padding: 30px 15px 0;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .hero_ssh__ttl {
    padding-top: 20px;
  }
}
.hero_ssh__ttl strong {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 0.5em;
  font-size: 2.8125rem;
  font-weight: 800;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.15em;
  line-height: 1.2;
  color: #1C2E74;
  margin-bottom: 12px;
}
@media screen and (max-width: 960px) {
  .hero_ssh__ttl strong {
    font-size: 2.0625rem;
  }
}
.hero_ssh__ttl strong span::first-letter {
  color: #01A592;
}
.hero_ssh__ttl h1 {
  text-align: center;
  font-size: 1.625rem;
  font-weight: 600;
  color: #0A1646;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .hero_ssh__ttl h1 {
    font-size: 1.375rem;
  }
}

.ssh_detail {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 960px) {
  .ssh_detail {
    margin-inline: -4.0540540541vw;
  }
}
.ssh_detail > li {
  background-color: #F7F7F7;
  padding: 18px 20px;
  border-radius: 5px;
}
@media screen and (max-width: 960px) {
  .ssh_detail > li {
    padding: 15px;
  }
}
.ssh_detail > li strong {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.7;
  color: #0A1646;
  margin-bottom: 10px;
}
.ssh_detail > li strong:last-child {
  margin-bottom: 0;
}

.ssh_slide {
  margin-bottom: 70px;
}
@media screen and (max-width: 960px) {
  .ssh_slide {
    margin-bottom: 50px;
    padding: 0 10.8108108108vw;
  }
}
.ssh_slide .swiper-wrapper {
  transition-timing-function: linear;
}
.ssh_slide img {
  border-radius: 5px;
}

.map {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 600px;
}
.map > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ttl_box {
  display: block;
  position: relative;
  width: 184px;
  padding: 18px 20px;
  background-color: #0A1646;
  border-radius: 5px;
  color: #fff;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  .ttl_box {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
}
.ttl_box::before {
  content: "";
  position: absolute;
  width: 24px;
  aspect-ratio: 1/1;
  background-color: #fff;
  right: 0;
  bottom: 0;
  border-radius: 5px 0 0 0;
}
.ttl_box::after {
  content: attr(data-en);
  display: block;
  font-size: 0.875rem;
  color: #5AEAD9;
  letter-spacing: 0.25;
}
@media screen and (max-width: 960px) {
  .ttl_box::after {
    font-size: 0.8125rem;
  }
}

.ttl_cmn_01 {
  display: block;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.35;
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  .ttl_cmn_01 {
    font-size: 1.5rem;
  }
}
.ttl_cmn_01 span {
  display: block;
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 8px;
}
.ttl_cmn_01 span::before, .ttl_cmn_01 span::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 1px;
  background-color: #01A592;
  left: 0;
  bottom: 3px;
}
@media screen and (max-width: 960px) {
  .ttl_cmn_01 span::before, .ttl_cmn_01 span::after {
    width: calc(100% + var(--sideW) / 2);
  }
}
.ttl_cmn_01 span::after {
  height: 2px;
  background-color: #0A1646;
  bottom: 0;
}
.ttl_cmn_01 span:last-child {
  margin-bottom: 0;
}
.ttl_cmn_01__md {
  width: 1000px;
}
.ttl_cmn_01__lg {
  width: 1200px;
}

.ttl_cmn_02 {
  display: block;
  position: relative;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.45;
  color: #0A1646;
  border-bottom: 3px solid #E6E6E6;
  padding-bottom: 5px;
  margin-bottom: 22px;
}
@media screen and (max-width: 960px) {
  .ttl_cmn_02 {
    font-size: 1.25rem;
  }
}
.ttl_cmn_02::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 3px;
  background-color: #0A1646;
  left: 0;
  bottom: -3px;
}
.ttl_cmn_02:last-child {
  margin-bottom: 0;
}

.ttl_cmn_03 {
  display: block;
  position: relative;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 14px;
  margin-bottom: 18px;
}
.ttl_cmn_03::before {
  content: "";
  position: absolute;
  width: 5px;
  height: calc(100% - 6px);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: linear-gradient(to right, #0A1646 3px, #5AEAD9 3px, #5AEAD9 4px, #0A1646 4px);
}
.ttl_cmn_03:last-child {
  margin-bottom: 0;
}

.ttl_cmn_04 {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #0A1646;
  line-height: 1.5;
  margin-bottom: 13px;
}
.ttl_cmn_04:last-child {
  margin-bottom: 0;
}

.ttl_card {
  display: block;
  position: relative;
  width: 358px;
  max-width: 100%;
  padding: 20px;
  background-color: #0A1646;
  border-radius: 5px;
  color: #fff;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .ttl_card {
    width: 260px;
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
}
.ttl_card::before {
  content: "";
  position: absolute;
  width: 24px;
  aspect-ratio: 1/1;
  background-color: #fff;
  right: 0;
  bottom: 0;
  border-radius: 5px 0 0 0;
}
.ttl_card::after {
  content: attr(data-en);
  display: block;
  font-size: 0.875rem;
  color: #5AEAD9;
  letter-spacing: 0.25em;
}
@media screen and (max-width: 960px) {
  .ttl_card::after {
    font-size: 0.8125rem;
  }
}

.ttl_label {
  position: relative;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  padding: 18px 20px;
  width: 300px;
  border-radius: 5px 5px 0 5px;
  background-color: #0A1646;
  line-height: 1.5;
  z-index: 1;
  -webkit-mask-image: url(../images/mask-cut.svg), linear-gradient(#fff 0 0);
          mask-image: url(../images/mask-cut.svg), linear-gradient(#fff 0 0);
  -webkit-mask-repeat: no-repeat, no-repeat;
          mask-repeat: no-repeat, no-repeat;
  -webkit-mask-size: 24px 24px, 100% 100%;
          mask-size: 24px 24px, 100% 100%;
  -webkit-mask-position: right bottom, 0 0;
          mask-position: right bottom, 0 0;
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
@media screen and (max-width: 960px) {
  .ttl_label {
    width: 260px;
    font-size: 1.25rem;
    padding: 12px 20px;
  }
}

.list_news {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}
.list_news:last-child {
  margin-bottom: 0;
}
.list_news__link {
  display: grid;
  grid-template-columns: 90px 1fr;
  grid-template-rows: auto auto;
  gap: 6px 0;
  position: relative;
  padding: 12px 30px;
  line-height: 1.5;
  background-color: #F7F7F7;
  font-size: 0.875rem;
}
@media screen and (max-width: 960px) {
  .list_news__link {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 12px 15px;
  }
}
.list_news__link:hover::after {
  transform: scaleX(1);
}
.list_news__link::after {
  content: "";
  position: absolute;
  width: calc(100% - 120px);
  height: 1px;
  bottom: 0;
  right: 0;
  background-color: #0A1646;
  transform: scaleX(0);
  transform-origin: right;
  transition: 0.3s;
}
.list_news__link time {
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  color: #0A1646;
  grid-row: 1/-1;
}
.list_news__cat {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}
.list_news__cat li {
  padding: 0 5px;
  line-height: 24px;
  background-color: #fff;
  border-radius: 3px;
  border: 1px solid #E6E6E6;
  transition: 0.3s;
}
.list_news__cat li:hover {
  border-color: #0A1646;
}
.list_news__cat li.important {
  color: #AC0E0E;
}
.list_news__cat li.important:hover {
  border-color: #AC0E0E;
}

.list_school-life {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 30px 2.3426061493vw;
  margin-bottom: 50px;
}
.list_school-life:last-child {
  margin-bottom: 0;
}
.list_school-life a {
  display: block;
  font-size: 0.875rem;
  line-height: 1.5;
  padding-bottom: 12px;
  background: linear-gradient(#0A1646, #0A1646) right bottom/36px 1px no-repeat, linear-gradient(#E6E6E6, #E6E6E6) left bottom/100% 1px no-repeat;
}
.list_school-life a:hover {
  color: #0A1646;
  font-weight: 600;
  background-size: 100% 1px, 100% 1px;
}
.list_school-life a:hover img {
  transform: scale(1.05);
}
.list_school-life a figure {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 5px 5px 0 5px;
  margin-bottom: 12px;
}
.list_school-life a figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.list_school-life a figure span {
  border-radius: 5px 0 0 0;
}
.list_school-life a time {
  display: block;
  color: #0A1646;
  font-weight: 600;
  margin-bottom: 3px;
}

.list_number {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 10px;
  counter-reset: num;
}
.list_number:last-child {
  margin-bottom: 0;
}
.list_number li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  counter-increment: num;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.625;
}
.list_number li::before {
  content: counter(num);
  display: grid;
  place-content: center;
  width: 22px;
  aspect-ratio: 1/1;
  border-radius: 5px;
  background-color: #0A1646;
  color: #fff;
  font-size: 0.8125rem;
  text-align: center;
  font-weight: 500;
  line-height: 1;
  padding-bottom: 3px;
  transform: translateY(-2px);
  flex-shrink: 0;
}
.list_number li:has(strong) {
  display: block;
  font-weight: 400;
}
.list_number li:has(strong)::before {
  content: none;
}
.list_number li:has(strong) strong {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.625;
  margin-bottom: 5px;
}
.list_number li:has(strong) strong::before {
  content: counter(num);
  display: grid;
  place-content: center;
  width: 22px;
  aspect-ratio: 1/1;
  border-radius: 5px;
  background-color: #0A1646;
  color: #fff;
  font-size: 0.8125rem;
  text-align: center;
  font-weight: 500;
  padding-bottom: 3px;
  transform: translateY(-2px);
  flex-shrink: 0;
}
.list_number li:has(strong) p {
  font-size: 0.875rem;
  line-height: 1.625;
}

.table_parent {
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  .table_parent {
    white-space: nowrap;
  }
}
.table_parent:last-child {
  margin-bottom: 0;
}
.table_parent table {
  margin-bottom: 0;
}
.table_parent + .table_style_03__caption {
  margin-top: -20px;
}

.btn_cmn_01 {
  display: block;
  position: relative;
  width: 220px;
  max-width: 100%;
  padding: 10px 0;
  color: #222;
  margin: 0 auto;
  transition: 0.3s;
  background: linear-gradient(#0A1646, #0A1646) right bottom/36px 1px no-repeat, linear-gradient(#E6E6E6, #E6E6E6) left bottom/100% 1px no-repeat;
}
.btn_cmn_01:hover {
  background-size: 100% 1px, 100% 1px;
}
.btn_cmn_01.left {
  margin: 0;
}
.btn_cmn_01.right {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 960px) {
  .btn_cmn_01.sp_center {
    margin: 0 auto;
  }
}
.btn_cmn_01.wht {
  color: #fff;
  background: linear-gradient(#5AEAD9, #5AEAD9) right bottom/40px 1px no-repeat, linear-gradient(rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25)) left bottom/100% 1px no-repeat;
}
.btn_cmn_01.wht:hover {
  background-size: 100% 1px, 100% 1px;
}

a:hover .btn_cmn_01 {
  background-size: 100% 1px, 100% 1px;
}

.btn_cmn_02 {
  display: block;
  position: relative;
  width: 300px;
  max-width: 100%;
  padding: 16px 30px;
  background-color: #F7F7F7;
  color: #0A1646;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  border-radius: 5px;
}
.btn_cmn_02.blue {
  background-color: #0A1646;
  color: #fff;
}

.btn_submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 280px;
  max-width: 100%;
  line-height: 96px;
  background-color: #01A592;
  border: 2px solid #01A592;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  color: #fff;
  transition: 0.3s;
  margin: 0 auto;
  font-size: 2.1rem;
  cursor: pointer;
}
.btn_submit:hover {
  background-color: #fff;
  color: #01A592;
}
.btn_submit:hover::before {
  background-color: #01A592;
}
.btn_submit::before {
  content: "";
  display: block;
  width: 30px;
  aspect-ratio: 1/1;
  -webkit-mask: url(../images/ico_send.svg) no-repeat center/contain;
          mask: url(../images/ico_send.svg) no-repeat center/contain;
  background-color: #fff;
  transition: 0.3s;
}

.post_title_wrap {
  display: block;
  padding: 0 1.4641288433vw;
  line-height: 1.44;
  margin-bottom: 50px;
}
@media screen and (max-width: 960px) {
  .post_title_wrap {
    padding: 0 2.7027027027vw;
    margin-bottom: 2.5rem;
  }
}
.post_title_wrap__in {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 0;
  position: relative;
  background-color: #F7F7F7;
  padding: 40px 0 40px 5.8565153734vw;
  margin-left: 5.8565153734vw;
  border-radius: 5px;
}
@media screen and (max-width: 960px) {
  .post_title_wrap__in {
    gap: 15px 0;
    padding: 25px 0 25px 4.0540540541vw;
    margin: 0 auto;
  }
}
.post_title_wrap .post_type {
  position: relative;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  color: #01A592;
  letter-spacing: 0.25em;
  margin-right: 10px;
  padding-right: 10px;
}
@media screen and (max-width: 960px) {
  .post_title_wrap .post_type {
    font-size: 1rem;
  }
}
.post_title_wrap .post_type::after {
  content: "";
  position: absolute;
  width: 1px;
  height: calc(100% - 12px);
  background-color: #D0D0D0;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.post_title_wrap .post_date {
  font-size: 0.875rem;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
}
.post_title_wrap .post_ttl {
  display: block;
  width: 100%;
  font-size: 1.5625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding-right: 11.7130307467vw;
  color: #0A1646;
  padding-bottom: 15px;
  border-bottom: 1px solid #222;
}
@media screen and (max-width: 960px) {
  .post_title_wrap .post_ttl {
    font-size: 1.375rem;
    padding-right: 2.7027027027vw;
  }
}
.post_title_wrap .post_category {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  width: 100%;
}
.post_title_wrap .post_category a {
  display: block;
  padding: 0 5px;
  line-height: 24px;
  background-color: #fff;
  border-radius: 3px;
  border: 1px solid #E6E6E6;
  transition: 0.3s;
}
.post_title_wrap .post_category a:hover {
  border-color: #0A1646;
}
.post_title_wrap .post_category a.important {
  color: #AC0E0E;
}
.post_title_wrap .post_category a.important:hover {
  border-color: #AC0E0E;
}

.post_contents {
  position: relative;
  margin-bottom: 50px;
}
.post_contents:last-child {
  margin-bottom: 0;
}
.post_contents p {
  margin-top: 1.125rem;
  font-size: 0.875rem;
}
.post_contents p:first-child {
  margin-top: 0;
}
.post_contents img {
  display: block;
  border-radius: 5px;
  width: 100%;
  max-width: 840px;
  margin: 2.5rem auto 0;
}
.post_contents img:first-child {
  margin-top: 0;
}

.add_ttl_01 {
  display: block;
  position: relative;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 14px;
  margin-top: 2.5rem;
}
.add_ttl_01::before {
  content: "";
  position: absolute;
  width: 5px;
  height: calc(100% - 6px);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: linear-gradient(to right, #0A1646 3px, #5AEAD9 3px, #5AEAD9 4px, #0A1646 4px);
}
.add_ttl_01:first-child {
  margin-top: 0;
}

.add_ttl_02 {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #0A1646;
  line-height: 1.5;
  margin-top: 2.5rem;
}
.add_ttl_02:first-child {
  margin-top: 0;
}

/* ==========================================================================//
//
// parts
//
// ========================================================================== */
/* パララックス
---------------------------------------------------------- */
.bg_parallax {
  background: no-repeat center/cover;
}
.img_parallax {
  position: relative;
  overflow: hidden;
}
.img_parallax img {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.1s linear;
  will-change: transform;
}

/* wp-pagenavi
---------------------------------------------------------- */
.pagination {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 2px;
}
.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  aspect-ratio: 1/1;
  background-color: #F7F7F7;
  color: #A3A3A3;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  border-bottom: 1px solid #F7F7F7;
}
.pagination a:hover:not([aria-disabled=true]), .pagination a.current,
.pagination span:hover:not([aria-disabled=true]),
.pagination span.current {
  color: #01A592;
  border-bottom-color: #01A592;
}
.pagination a.prev, .pagination a.next,
.pagination span.prev,
.pagination span.next {
  position: relative;
}
.pagination a.prev:hover:not([aria-disabled=true]), .pagination a.next:hover:not([aria-disabled=true]),
.pagination span.prev:hover:not([aria-disabled=true]),
.pagination span.next:hover:not([aria-disabled=true]) {
  border-bottom-color: #F7F7F7;
}
.pagination a.prev:hover:not([aria-disabled=true])::after, .pagination a.next:hover:not([aria-disabled=true])::after,
.pagination span.prev:hover:not([aria-disabled=true])::after,
.pagination span.next:hover:not([aria-disabled=true])::after {
  width: 20px;
}
.pagination a.prev::before, .pagination a.prev::after, .pagination a.next::before, .pagination a.next::after,
.pagination span.prev::before,
.pagination span.prev::after,
.pagination span.next::before,
.pagination span.next::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-left: 1px solid #01A592;
  border-bottom: 1px solid #01A592;
  transform: rotate(45deg);
  transition: 0.3s;
}
.pagination a.prev::after, .pagination a.next::after,
.pagination span.prev::after,
.pagination span.next::after {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: none;
}
.pagination a.next::before, .pagination a.next::after,
.pagination span.next::before,
.pagination span.next::after {
  transform: rotate(-135deg);
}
.pagination a.next::after,
.pagination span.next::after {
  transform: rotateY(180deg);
  left: auto;
  right: 0;
}

/* モーダル
---------------------------------------------------------- */
.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 15px;
  z-index: 1001;
}
@media screen and (max-width: 960px) {
  .modal {
    padding: 0;
  }
}
.modal_close_btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  aspect-ratio: 1/1;
  background-color: #0A1646;
  border-radius: 5px;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .modal_close_btn {
    width: 40px;
    top: -20px;
  }
}
.modal_close_btn::before, .modal_close_btn::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background-color: #fff;
  left: calc(50% - 12.5px);
  top: calc(50% - 1px);
  transform: rotate(45deg);
}
@media screen and (max-width: 960px) {
  .modal_close_btn::before, .modal_close_btn::after {
    width: 20px;
    left: calc(50% - 10px);
  }
}
.modal_close_btn::after {
  transform: rotate(-45deg);
}
.modal_content {
  display: none;
  position: relative;
  width: 1200px;
  max-width: calc(100vw - var(--sideW) * 2);
  max-height: 90vh;
  max-height: 90svh;
  overflow-y: scroll;
  padding: var(--sideW);
  background-color: #fff;
  border-radius: 5px;
}
@media screen and (max-width: 960px) {
  .modal_content {
    max-width: 94.5945945946vw;
    padding: 2.7027027027vw;
  }
}
.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: 960px) {
  .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(34, 34, 34, 0.8);
  top: 0;
  left: 0;
  z-index: 1000;
}

/* タブ切り替え
---------------------------------------------------------- */
.js_tab .tab_contents__item {
  display: none;
}
.js_tab .tab_contents__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: 960px) {
  .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(10, 22, 70, 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;
}

/* テンプレート template parts
---------------------------------------------------------- */
a:hover .arrow::after,
a:hover .arrow-blue::after,
a:hover .arrow-green::after {
  translate: 5px 0;
}
a:hover .arrow.sm::after,
a:hover .arrow-blue.sm::after,
a:hover .arrow-green.sm::after {
  translate: 2px 0;
}

.arrow,
.arrow-blue,
.arrow-green {
  position: absolute;
  width: 36px;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 5px 0 0 0;
}
.arrow::before,
.arrow-blue::before,
.arrow-green::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  background-color: #0A1646;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 2px;
}
.arrow::after,
.arrow-blue::after,
.arrow-green::after {
  content: "";
  position: absolute;
  width: 12px;
  aspect-ratio: 1/1;
  -webkit-mask: url(../images/ico_arrow.svg) no-repeat center/contain;
          mask: url(../images/ico_arrow.svg) no-repeat center/contain;
  background-color: #0A1646;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.arrow.sm,
.arrow-blue.sm,
.arrow-green.sm {
  width: 16px;
}
.arrow.sm::before,
.arrow-blue.sm::before,
.arrow-green.sm::before {
  width: 8px;
  height: 1px;
}
.arrow.sm::after,
.arrow-blue.sm::after,
.arrow-green.sm::after {
  width: 8px;
  -webkit-mask-image: url(../images/ico_arrow_sm.svg);
          mask-image: url(../images/ico_arrow_sm.svg);
}
.arrow.left,
.arrow-blue.left,
.arrow-green.left {
  left: 0;
}
.arrow.right,
.arrow-blue.right,
.arrow-green.right {
  right: 0;
}
.arrow.center,
.arrow-blue.center,
.arrow-green.center {
  top: 50%;
  transform: translateY(-50%);
}
.arrow.top,
.arrow-blue.top,
.arrow-green.top {
  top: 0;
}
.arrow.bottom,
.arrow-blue.bottom,
.arrow-green.bottom {
  bottom: 0;
}
@media screen and (max-width: 960px) {
  .arrow.sp_sm,
.arrow-blue.sp_sm,
.arrow-green.sp_sm {
    width: 24px;
  }
}

.arrow-blue {
  background-color: #0A1646;
}
.arrow-blue::before {
  background-color: #fff;
}
.arrow-blue::after {
  background-color: #fff;
}

.arrow-green {
  background-color: transparent;
}
.arrow-green::before {
  background-color: #5AEAD9;
}
.arrow-green::after {
  background-color: #5AEAD9;
}

.catch {
  display: block;
  color: #0A1646;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 960px) {
  .catch {
    line-height: 1.5;
  }
}
.catch:last-child {
  margin-bottom: 0;
}
.catch.center {
  text-align: center;
}

.lead {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.1;
  margin-bottom: 2.5rem;
}
.lead:last-child {
  margin-bottom: 0;
}
.lead.center {
  text-align: center;
}
@media screen and (max-width: 960px) {
  .lead.sp_left {
    text-align: left;
  }
}
@media screen and (max-width: 960px) {
  .lead.sp_center {
    text-align: center;
  }
}

.txt_cmn {
  font-size: 0.875rem;
  margin-bottom: 2.5rem;
}
.txt_cmn:last-child {
  margin-bottom: 0;
}

.img_cmn_01 {
  display: block;
  margin: 0 auto var(--space);
  border-radius: 5px;
}
@media screen and (max-width: 960px) {
  .img_cmn_01 {
    width: calc(100% + 8.1081081081vw);
    max-width: calc(100% + 8.1081081081vw);
    margin-inline: -4.0540540541vw;
  }
}
.img_cmn_01:last-child {
  margin-bottom: 0;
}

.fig_cmn {
  display: block;
  margin-bottom: 2.5rem;
}
.fig_cmn:last-child {
  margin-bottom: 0;
}
.fig_cmn img {
  display: block;
  border-radius: 5px;
  margin: 0 auto 8px;
}
.fig_cmn figcaption {
  font-size: 0.875rem;
  line-height: 1.7;
}

.list_dots {
  margin-bottom: 2.8125rem;
}
@media screen and (max-width: 960px) {
  .list_dots {
    margin-bottom: 2.1875rem;
  }
}
.list_dots:last-child {
  margin-bottom: 0;
}
.list_dots li {
  position: relative;
  padding-left: 10px;
  margin-bottom: 10px;
  font-size: 0.875rem;
  line-height: 1.7;
}
.list_dots li:last-child {
  margin-bottom: 0;
}
.list_dots li::before {
  content: "";
  position: absolute;
  width: 6px;
  aspect-ratio: 1/1;
  background-color: #0A1646;
  border-radius: 50%;
  left: 0;
  top: calc(1em - 3px);
}
.list_dots li strong {
  display: block;
  font-weight: 600;
}
.list_dots .list_num {
  margin-block: 10px;
}

.list_num {
  counter-reset: num;
  margin-bottom: 2.1875rem;
}
.list_num li {
  position: relative;
  counter-increment: num;
  padding-left: 1.5em;
}
@media screen and (max-width: 960px) {
  .list_num li {
    font-size: 0.875rem;
  }
}
.list_num li::before {
  content: none;
}
.list_num li::after {
  content: counter(num);
  position: absolute;
  left: 0;
  top: 1em;
  transform: translateY(-50%);
  font-size: 0.8125rem;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  text-align: center;
  background-color: #0A1646;
  color: #fff;
  border-radius: 50%;
  width: 1.5em;
  line-height: 1.5em;
}

.table_style_01 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 960px) {
  .table_style_01 {
    margin-bottom: 2.1875rem;
  }
}
.table_style_01:last-child {
  margin-bottom: 0;
}
.table_style_01 .item {
  display: grid;
  grid-template-columns: 250px 1fr;
  background-color: #F7F7F7;
  border-radius: 5px;
}
@media screen and (max-width: 960px) {
  .table_style_01 .item {
    grid-template-columns: 1fr;
    padding: 20px 5.4054054054vw;
  }
}
.table_style_01 dt {
  position: relative;
  padding: 18px 20px;
  font-weight: 700;
  color: #0A1646;
}
@media screen and (max-width: 960px) {
  .table_style_01 dt {
    padding: 0 0 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid #E6E6E6;
  }
}
.table_style_01 dt::after {
  content: "";
  position: absolute;
  width: 1px;
  height: calc(100% - 36px);
  background-color: #E6E6E6;
  right: 0;
  top: 18px;
}
@media screen and (max-width: 960px) {
  .table_style_01 dt::after {
    content: none;
  }
}
.table_style_01 dd {
  padding: 18px 20px 18px 10px;
}
@media screen and (max-width: 960px) {
  .table_style_01 dd {
    padding: 0;
  }
}
.table_style_01 dd strong {
  display: block;
  font-weight: 600;
}
.table_style_01 dd .list_dots strong {
  display: inline-block;
}
.table_style_01 dd a {
  color: #0A1646;
  text-decoration: underline;
}
.table_style_01 dd a:hover {
  text-decoration: none;
}
.table_style_01 dd table {
  border-top: 1px solid #D9D9D9;
  font-size: 0.875rem;
  margin-top: 5px;
  line-height: 1.75;
}
.table_style_01 dd table td {
  border: 1px solid #D9D9D9;
  padding: 5px;
  text-align: center;
  width: 33%;
}

.table_style_02 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  font-size: 0.875rem;
  line-height: 1.7;
  border-bottom: 1px solid #D9D9D9;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 960px) {
  .table_style_02 {
    gap: 15px;
    margin-bottom: 2.1875rem;
  }
}
.table_style_02:last-child {
  margin-bottom: 0;
}
.table_style_02::before {
  content: "";
  position: absolute;
  width: 225px;
  height: 1px;
  background-color: #0A1646;
  left: 0;
  bottom: -1px;
}
@media screen and (max-width: 960px) {
  .table_style_02::before {
    content: none;
  }
}
.table_style_02 .item {
  display: grid;
  grid-template-columns: 225px 1fr;
  position: relative;
  border-top: 1px solid #D9D9D9;
}
@media screen and (max-width: 960px) {
  .table_style_02 .item {
    grid-template-columns: 1fr;
    padding-top: 10px;
  }
}
.table_style_02 .item::before {
  content: "";
  position: absolute;
  width: 225px;
  height: 1px;
  background-color: #0A1646;
  left: 0;
  top: -1px;
}
@media screen and (max-width: 960px) {
  .table_style_02 .item::before {
    content: none;
  }
}
.table_style_02 dt {
  position: relative;
  padding: 13px 0;
  font-weight: 700;
  color: #0A1646;
}
@media screen and (max-width: 960px) {
  .table_style_02 dt {
    padding: 0 0 10px;
    border-bottom: 1px solid #0A1646;
  }
}
.table_style_02 dd {
  padding: 13px 0;
}
@media screen and (max-width: 960px) {
  .table_style_02 dd {
    padding: 8px 0 0;
  }
}
.table_style_02 dd strong {
  display: block;
  font-weight: 600;
}

.table_style_03 {
  width: auto;
  border-collapse: separate;
  line-height: 1.75;
  border-right: 1px solid #D9D9D9;
  border-bottom: 1px solid #D9D9D9;
}
.table_style_03 thead th {
  font-weight: 500;
  color: #0A1646;
  padding: 6px 10px;
  border-top: 1px solid #D9D9D9;
  border-left: 1px solid #D9D9D9;
}
.table_style_03 tbody td {
  border-top: 1px solid #D9D9D9;
  border-left: 1px solid #D9D9D9;
  padding: 6px 10px;
}
.table_style_03__caption {
  font-size: 0.875rem;
  text-indent: -1.5em;
  padding-left: 1.5em;
  margin-bottom: 40px;
  line-height: 1.75;
}

a.txt_link_01 {
  color: #0A1646;
  font-weight: 500;
  text-decoration: underline;
}
a.txt_link_01:hover {
  text-decoration: none;
}

a.txt_link_02 {
  display: inline-block;
  position: relative;
  padding-left: 20px;
  color: #0A1646;
  font-size: 0.875rem;
  text-decoration: underline;
}
a.txt_link_02::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background-color: #0A1646;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  border-radius: 2px;
}
a.txt_link_02::after {
  content: "";
  position: absolute;
  width: 10px;
  aspect-ratio: 1/1;
  -webkit-mask: url(../images/ico_arrow.svg) no-repeat center/contain;
          mask: url(../images/ico_arrow.svg) no-repeat center/contain;
  background-color: #0A1646;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  transition: 0.3s;
}
a.txt_link_02:hover::after {
  translate: 5px 0;
}

.list_btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 10px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 960px) {
  .list_btns {
    gap: 15px;
  }
}
.list_btns:last-child {
  margin-bottom: 0;
}
.list_btns.left {
  justify-content: start;
}

.list_journal {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem 1.4641288433vw;
  margin-bottom: 2.8125rem;
}
@media screen and (max-width: 960px) {
  .list_journal {
    margin-bottom: 2.1875rem;
  }
}
.list_journal:last-child {
  margin-bottom: 0;
}
.list_journal a {
  display: block;
  position: relative;
  background-color: #F7F7F7;
  border-radius: 5px;
  padding: 15px 20px;
}
.list_journal a:has(figure) {
  padding-top: 20px;
}
.list_journal a figure {
  display: block;
  background-color: #fff;
  aspect-ratio: 1/1;
  border-radius: 5px;
  margin-bottom: 15px;
}
.list_journal a figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.list_journal a p {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
  font-size: 1rem;
  font-weight: 700;
}
.list_journal a p::before {
  content: "";
  display: block;
  width: 30px;
  aspect-ratio: 1/1;
  background: url(../images/ico_pdf.svg) no-repeat center/contain;
}

.list_pdf {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 960px) {
  .list_pdf {
    margin-bottom: 2.1875rem;
  }
}
.list_pdf:last-child {
  margin-bottom: 0;
}
.list_pdf li > a {
  display: block;
  position: relative;
  background-color: #F7F7F7;
  border-radius: 5px;
  padding: 10px 40px 18px 20px;
}
@media screen and (max-width: 960px) {
  .list_pdf li > a {
    padding-left: 15px;
  }
}
.list_pdf li > a p {
  display: flex;
  align-items: baseline;
  gap: 10px;
  line-height: 1.5;
  font-size: 1rem;
  font-weight: 700;
}
.list_pdf li > a p::before {
  content: "";
  display: block;
  width: 30px;
  aspect-ratio: 1/1;
  background: url(../images/ico_pdf.svg) no-repeat center/contain;
  transform: translateY(8px);
  flex-shrink: 0;
}
.list_pdf li > p {
  font-size: 0.875rem;
  margin-bottom: 20px;
}
.list_pdf li > p a {
  display: block;
  text-decoration: underline;
  color: #0A1646;
}

.nolink {
  pointer-events: none;
}

/* アーカイブのページネーション
---------------------------------------------------------- */
.list_pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
  gap: 4px;
}
@media screen and (max-width: 960px) {
  .list_pagination {
    margin-bottom: 50px;
  }
}
.list_pagination:last-child {
  margin-bottom: 0;
}
.list_pagination li {
  position: relative;
  line-height: 1.5;
  font-size: 0.875rem;
}
.list_pagination li.prev a {
  padding-left: 46px;
}
.list_pagination li.prev a::after {
  right: 0;
}
.list_pagination li.prev .arrow {
  transform: rotateY(180deg) translateY(-50%);
}
.list_pagination li.next a {
  padding-right: 46px;
}
.list_pagination li.next a::after {
  left: 0;
}
.list_pagination li a {
  display: block;
  position: relative;
  padding-block: 10px;
}
.list_pagination li a:hover::after {
  width: 100%;
}
.list_pagination li a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #E6E6E6;
  left: 0;
  bottom: 0;
}
.list_pagination li a::after {
  content: "";
  position: absolute;
  width: 36px;
  height: 1px;
  background-color: #0A1646;
  bottom: 0;
  transition: 0.3s;
}
.list_pagination li.archive a {
  padding-inline: 30px;
}
@media screen and (max-width: 960px) {
  .list_pagination li.archive a {
    padding-inline: 18px;
  }
}
.list_pagination li.archive a::after {
  left: 50%;
  transform: translateX(-50%);
}

/* フォームパーツ
---------------------------------------------------------- */
.form_wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  margin-bottom: 40px;
}
.form_wrap:last-child {
  margin-bottom: 0;
}
.form_wrap dt {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 8px;
}
.form_wrap dt.req {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px;
}
.form_wrap dt.req::after {
  content: "必須";
  display: block;
  color: #C40000;
  font-weight: 400;
  font-size: 1.3rem;
}
.form_wrap .date {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.form_wrap .date input {
  width: 65px;
}
.form_wrap .date [name=year] {
  width: 125px;
}
@media screen and (max-width: 960px) {
  .form_wrap .date [name=year] {
    width: 100px;
  }
}
.form_wrap .set {
  display: flex;
  align-items: center;
  gap: 10px;
}
.form_wrap .set input {
  width: 325px;
}
@media screen and (max-width: 960px) {
  .form_wrap .set input {
    width: 300px;
  }
}
.form_wrap .address {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.form_wrap .address [name=zip] {
  width: 200px;
}
.form_wrap .address p {
  font-size: 1.4rem;
}
@media screen and (max-width: 960px) {
  .form_wrap .address p {
    margin-top: -10px;
  }
}
.form_wrap dd .error {
  color: #C40000;
  font-size: 1.3rem;
  font-weight: 400;
}

input[type=text],
input[type=email],
input[type=tel],
select,
textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px 20px;
  background-color: #F7F7F7;
  border: 1px solid #F7F7F7;
  line-height: 1.5;
  color: #0A1646;
  text-align: left;
  font-size: 0.9375rem;
}
@media screen and (max-width: 960px) {
  input[type=text],
input[type=email],
input[type=tel],
select,
textarea {
    padding: 8px 10px;
  }
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #898989;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #898989;
}
input[type=text].is_error,
input[type=email].is_error,
input[type=tel].is_error,
select.is_error,
textarea.is_error {
  border-color: #C40000;
}

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

select {
  width: 350px;
  max-width: 100%;
  padding-right: 55px;
  background: url(../images/ico_select.svg) no-repeat center right 10px;
  background-color: #F7F7F7;
}

.privacy_check {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}
.privacy_check label input {
  display: none;
}
.privacy_check label input:checked + p::before {
  background-color: #F7F7F7;
}
.privacy_check label input:checked + p::after {
  border-color: #fff;
}
.privacy_check label p {
  display: flex;
  align-items: center;
  position: relative;
}
.privacy_check label p::before {
  content: "";
  display: block;
  width: 30px;
  aspect-ratio: 1/1;
  background-color: #F7F7F7;
  border: 1px solid #F7F7F7;
  margin-right: 10px;
  transition: 0.3s;
}
.privacy_check label p::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 9px;
  border-left: 2px solid transparent;
  border-bottom: 2px solid transparent;
  left: 6px;
  top: 8px;
  transform: rotate(-45deg);
  transition: 0.3s;
}
@media screen and (max-width: 960px) {
  .privacy_check label p::after {
    top: 8px;
    left: 3px;
  }
}
.privacy_check label a {
  color: #01A592;
  text-decoration: underline;
}
.privacy_check label a:hover {
  text-decoration: none;
}

.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;
}