@charset "UTF-8";

.hero{
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
}

/* 背景（1枚目）＝左右は中央基準で固定しつつレスポンシブ */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;

  background-image: url("../img/background.png");
  background-repeat: no-repeat;

  /* ✅ここが「左右中央固定」 */
  background-position: center top;

  /* ✅レスポンシブに広げる（中心基準でトリミングされる） */
  background-size: cover;
}

/* 下半分から黒に落とす */
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0) 45%,
    rgba(0,0,0,.65) 70%,
    rgba(0,0,0,1) 100%
  );
}

/* 中央配置エリア */
.hero__inner{
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  place-items: center;
  padding: 24px 16px;

  /* ✅ MV → バナーの縦並び */
  gap: 16px;
}

/* メインビジュアル */
.hero__mv{
  width: 1100px;               
  height: auto;
  display: block;
  max-width: calc(100vw - 32px);
  filter: drop-shadow(0 20px 60px rgba(0,0,0,.65));
  margin-left: auto;
  margin-right: auto;
  justify-self: center;
}

/* ✅ バナーリンク */
.hero__banner{
    width: 1000px;               /* ✅MVと同じ幅 */
    max-width: calc(100vw - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
    border-radius: 70px;
    background: #d20000;
    color: #fff;
    font-size: 36px;       /* ←ここで大きさ調整 */
    font-weight: 900;
    text-align: center;
    text-decoration: none; /* ←これでアンダーライン消える */
    transition: transform .15s ease, opacity .15s ease;
    margin-left: auto;
    margin-right: auto;
    margin-inline: auto; /* ←左右を自動で中央 */
    justify-self: center; /* ←grid対策 */
}

/* hover */
.hero__banner:hover{
  transform: translateY(-2px);
  opacity: .95;
}

.week-wrap{
  width: min(1032px, calc(100vw - 160px)); /* 左右24px余白 */
  margin: 0 auto;
}

.frame-title{
  width: 100%;
  margin: 24px 0;        /* week-wrapに入ったのでauto不要 */
  display: flex;
  justify-content: center;
}

.frame-title span{
  width: 100%;           /* ✅week-wrapの幅と一致 */
  padding: 12px 0;
  text-align: center;
  border: 1px solid rgba(255,255,255,.95);
  color: rgba(255,255,255,.95);
  font-weight: 700;
  letter-spacing: .06em;
  background: rgba(0,0,0,.08);
  font-size: 30px;
}

.shop-grid{
  padding: 40px 16px 60px;
}

.shop-grid__inner{
    width: 100%;                 /* ✅week-wrapの幅に合わせる */
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, 1fr); /* 4×3（12件） */
    padding-top: 30px;
}

/* カード（外枠） */
.shop-card{
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(0,0,0,.75);
  box-shadow: 0 16px 40px rgba(0,0,0,.55);
}

/* 店名帯 */
/*
.shop-card__title{
  margin: 0;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  color: rgba(255,255,255,.95);

  border-bottom: 1px solid rgba(255,255,255,.95);
  background: rgba(255,255,255,.03);
}　
*/

/* 画像エリア */
.shop-card__imgwrap{
  aspect-ratio: 9 / 10; /* 正方形に近い見た目 */
  overflow: hidden;      /* ✅はみ出しを切る */
  background: #111;
}

.shop-card__imgwrap img{
  width: 100%;
  height: auto;
  object-fit: cover;  /* 切り抜いて綺麗に */
  display: block;
  transform: translateY(-10px); /* ✅数値を増やすほど下が切れる */
}

.shop-card__logo{
  width: 80px;
  height: auto;
  display: block;
}

.shop-card__text{
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255,255,255,.75);
}

.ad-banner{
  display: block;
  width: 100%;
  margin: 20px 0;
}

.ad-banner img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px; /* 任意 */
}

.ad-banner:hover{
  opacity: .95;
  transform: translateY(-2px);
  transition: .15s;
}

.sponsor{
  background: #000;
  padding: 70px 16px 80px;
}

/* タイトル */
.sponsor__head{
  text-align: center;
  margin-bottom: 26px;
}

.sponsor__title{
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,.95);
  letter-spacing: .08em;
}

.sponsor__sub{
  margin: 6px 0 0;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  letter-spacing: .12em;
}

/* ロゴグリッド（線だけの箱） */
.sponsor-grid{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* PCは4列 */
  border: 1px solid rgba(255,255,255,.4);
}

/* 1マス */
.sponsor-item{
  aspect-ratio: 1 / 1;
  border-right: 1px solid rgba(255,255,255,.4);
  border-bottom: 1px solid rgba(255,255,255,.4);

  display: grid;
  place-items: center;
  padding: 18px;
}

/* 右端の縦線を消す（4列想定） */
.sponsor-item:nth-child(4n){
  border-right: none;
}

/* 最下段の横線を消す（表示行数により変わるので必要なら調整） */
/* 例：16個（4×4）なら最後の4つ */
.sponsor-item:nth-last-child(-n + 4){
  border-bottom: none;
}

/* ロゴ画像 */
.sponsor-item img{
  width: 100%;
  height: auto;
  max-width: 300px;     /* ロゴの最大サイズ */
  max-height: 300px;     /* 横長ロゴの高さ制限 */
  object-fit: contain;  /* ロゴを潰さない */
  display: block;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.5));
}

/* 下の団体名一覧 */
.sponsor-names{
  margin: 18px 0 0;
  padding: 0;
  list-style: none;

  display: grid;
  grid-template-columns: repeat(8, auto); /* ✅1行8個 */
  justify-content: center;
  gap: 6px 10px;

  color: rgba(255,255,255,.85);
  font-size: 12px;
  letter-spacing: .03em;
  line-height: 1.8;
}

/* ✅ 区切り「／」は後ろにつける */
.sponsor-names li{
  white-space: nowrap;
}

.sponsor-names li::after{
  content: "／";
  margin-left: 6px;
  color: rgba(255,255,255,.55);
}

/* ✅ 行末（8個目）は「／」を消す */
.sponsor-names li:nth-child(8n)::after{
  content: "";
  margin-left: 0;
}

/* ✅ 最後の要素も「／」消す */
.sponsor-names li:last-child::after{
  content: "";
  margin-left: 0;
}

.access{
  background: #000;
  padding: 70px 16px 80px;
}

.access__head{
  text-align: center;
  margin-bottom: 24px;
}

.access__title{
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,.95);
  letter-spacing: .08em;
}

.access__sub{
  margin: 6px 0 0;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  letter-spacing: .12em;
}

/* ✅ 地図の枠 */
.map-wrap{
  width: 100%;
  border: 1px solid rgba(255,255,255,.35);
  background: #111;
  overflow: hidden;
}

/* ✅ iframeを「横幅100%・高さ固定」にする */
.map-wrap iframe{
  width: 100%;
  height: 520px; /* 好きな高さ */
  display: block;
}


/* 下のテキスト */
.access__info{
  margin-top: 16px;
  color: rgba(255,255,255,.85);
  font-size: 14px;
  line-height: 1.8;
}

.access__place{
  margin: 0 0 8px;
  font-weight: 700;
}

.is-hide-title .shop-card__title{
  display: none;
}

/* 画像にグラデ黒幕をかける */
.peek-edges{
  position: relative;
  overflow: hidden;
}

/* ✅上：真っ黒（完全に隠す） */
.peek-edges::before{
  content:"";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
	
  background: linear-gradient(
    180deg,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 15%,   /* ←ここまで完全に黒（調整） */
    rgba(0,0,0,.75) 30%,
    rgba(0,0,0,0) 60%
  );
}

/* 黒幕（左右端だけ見せる） */
.peek-edges::after{
  content:"";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;

  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.60) 0%,
    rgba(0,0,0,0.80) 15%,
    rgba(0,0,0,1.0) 40%,  /* ←ここから完全に黒 */
    rgba(0,0,0,1.0) 60%,  /* ←ここまで完全に黒 */ 
    rgba(0,0,0,0.80) 85%,
    rgba(0,0,0,0.60) 100%
  );
}

/* ✅Coming Soon の文字（これを追加） */
.peek-edges .coming-soon{
    position: absolute;
    inset: 0;
    z-index: 4;              /* ←グラデより上 */
    display: grid;
    place-items: center;
    pointer-events: none;
    color: #D7D7D7;
    font-weight: 400;
    letter-spacing: .08em;
    font-size: 24px;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", serif;	
}

.map-wrap iframe{
  width: 100%;
  height: 600px;   /* PCはこのくらい */
  border: 0;
  display: block;
}

/* ✅スマホだけ縮小（ここで初めてサイズ可変） */
@media (max-width: 768px){
  .hero__mv{
    width: min(92vw, 520px);
	margin: 0;
    display: block;
	padding-top: 50px;
	padding-bottom: -50px;
  }
	
  .hero{
    min-height: auto;  /* 余計な高さを持たせない */
  }
	
 /* MVとバナーを入れてる箱がある場合 */
  .hero__content{
    margin-top: 0;
    gap: 8px;
  }
	
  /* ヒーロー内側の余白をなくす */
  .hero__inner{
    padding: 0;
    gap: 8px; /* ←必要なら0でもOK */
  }

  .hero__banner{
    width: min(92vw, 520px);
    padding: 7px 16px;
    font-size: 14px;
    max-width: calc(100vw - 60px);
  }
	
.week-wrap{
  width: min(1032px, calc(100vw - 60px)); /* 左右24px余白 */
}
	
  .frame-title span{
	margin-top: -30px;
    font-size: 16px;
    padding-top: 7px;
    padding-bottom: 7px;
}
	
  .shop-grid__inner{
	margin-top: -30px;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .shop-card__title{
    font-size: 13px;
  }
	
.sponsor-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .sponsor-item:nth-child(4n){
    border-right: 1px solid rgba(255,255,255,.4);
  }
  .sponsor-item:nth-child(2n){
    border-right: none;
  }

  .sponsor-item:nth-last-child(-n + 4){
    border-bottom: 1px solid rgba(255,255,255,.4);
  }
  .sponsor-item:nth-last-child(-n + 2){
    border-bottom: none;
  }

    .sponsor-names{
    grid-template-columns: repeat(4, auto);
  }
  .sponsor-names li:nth-child(8n)::after{
    content: "／"; /* 8nルールを戻す */
    margin-left: 6px;
  }
  .sponsor-names li:nth-child(4n)::after{
    content: "";
    margin-left: 0;
  }
	
  .map-wrap iframe{
    height: 65vw; /* ←ここを好みで調整（220〜300くらい） */
  }

}

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Roboto:wght@900&display=swap");
@media (prefers-reduced-motion: reduce) {
  *,
*::before,
*::after {
    -webkit-animation-delay: -1ms;
    animation-delay: -1ms;
    -webkit-animation-duration: 1ms;
    animation-duration: 1ms;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    background-attachment: initial;
    scroll-behavior: auto;
    transition-delay: 0s;
    transition-duration: 0s;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  image-rendering: -webkit-optimize-contrast;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  margin: 0;
  padding: 0;
  border: none;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

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

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0;
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
  overflow: visible;
}

hr:not([size]) {
  height: 1px;
}

address {
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin: 0;
}

ol,
ul {
  list-style: none;
}

a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
}

a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  touch-action: manipulation;
}

iframe,
img,
input,
select,
textarea {
  height: auto;
  max-width: 100%;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

svg:not([fill]) {
  fill: currentColor;
}

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

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

table {
  caption-side: bottom;
  border-collapse: collapse;
  text-indent: 0;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: inherit;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
  text-transform: none;
}

button:focus {
  outline: dotted 1px;
  outline: -webkit-focus-ring-color auto 5px;
}

input,
button {
  overflow: visible;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input,
select,
textarea {
  background-color: transparent;
  border: none;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  padding: 0;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  text-transform: none;
  word-wrap: normal;
  box-sizing: content-box;
}

::-ms-expand {
  display: none;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(disabled),
[type=button]:not(disabled),
[type=reset]:not(disabled),
[type=submit]:not(disabled) {
  cursor: pointer;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

textarea {
  overflow: auto;
  -ms-overflow-style: scrollbar;
  resize: vertical;
  vertical-align: top;
}

fieldset {
  min-width: 0;
  padding: 0.35em 0.75em 0.625em;
  margin: 0;
  border: 1px solid inherit;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
  max-width: 100%;
  white-space: normal;
}

@media (max-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

dialog {
  background-color: inherit;
  border: solid;
  color: inherit;
  display: block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

input::-webkit-input-placeholder {
  opacity: 1;
}

input::-moz-placeholder {
  opacity: 1;
}

input:-ms-input-placeholder {
  opacity: 1;
}

input::placeholder {
  opacity: 1;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  -moz-appearance: none;
}

[type=tel],
[type=url],
[type=email],
[type=number] {
  direction: ltr;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

::-moz-ui-invalid {
  box-shadow: none;
}

::-moz-focusring {
  outline: 1px dotted ButtonText;
}

output {
  display: inline-block;
}

iframe {
  border: none;
}

audio,
canvas,
video {
  display: inline;
  display: inline-block;
  zoom: 1;
  max-width: 100%;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  display: inline-block;
  vertical-align: baseline;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

[aria-hidden=false][hidden=false] {
  display: initial;
}

[aria-hidden=false][hidden=false]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

:root {
  --s: 10px;
  --f: 10px;
}
@media screen and (max-width: 1400px) {
  :root {
    --s: 0.714vw;
  }
}
@media screen and (max-width: 960px) {
  :root {
    --s: 1.8vw;
    --f: 2vw;
  }
}

html {
  font-family: "Noto Sans JP", sans-serif;
  color: #3a3b3d;
  font-size: calc(var(--f) * 1.6);
  line-height: 1.7;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  text-align: justify;
  font-feature-settings: "palt";
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  background: linear-gradient(to right, #fff, #ebebeb);
}

h1, h2, h3, h4, h5, h6, b, strong, dt, th {
  font-weight: 400;
}

.sp {
  display: none;
}

@media screen and (max-width: 960px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
.angeltouch {
  position: fixed;
  left: 0;
  bottom: calc(var(--s) * 2);
  z-index: 1000;
  width: calc(var(--s) * 35);
  transition-duration: 300ms;
}
body.scroll .angeltouch {
  opacity: 0;
  left: calc(var(--s) * -4);
  pointer-events: none;
}

.cta {
  background: linear-gradient(to right, #00469b, #0c72b9);
  padding: calc(var(--s) * 6);
}
.cta__head {
  padding-bottom: 0.6em;
  color: #fff;
  font-size: calc(var(--f) * 3);
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}
.cta__text {
  color: #fff;
  text-align: center;
}
.cta__text p {
  padding-bottom: 2.6em;
}
.cta__text p.top {
  padding-bottom: 0.8em;
  font-size: calc(var(--f) * 2.2);
  line-height: 1.5;
  font-weight: 700;
}
body.subpage .cta:last-child {
  margin-top: calc(var(--s) * 14);
}
@media screen and (min-width: 960.02px) {
  .cta__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: calc(var(--s) * 67.6);
    margin: 0 auto;
  }
  .cta__item {
    display: flex;
    width: calc(var(--s) * 32);
    height: calc(var(--s) * 6);
  }
  .cta__item--admission {
    width: 100%;
    margin-bottom: calc(var(--s) * 2.6);
  }
  .cta__item--admission a {
    position: relative;
    overflow: hidden;
    z-index: 10;
    display: inline-block;
    padding: 0.9em 3em;
    min-width: calc(var(--s) * 30);
    line-height: 1.5;
    text-align: center;
    border-radius: 100px;
    transition-duration: 300ms;
    font-weight: 700;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0;
  }
  .cta__item--admission a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: -1;
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    transition-duration: 300ms;
  }
  .cta__item--admission a:hover {
    color: #00469b;
  }
  .cta__item--admission a:hover::before {
    opacity: 1;
  }
}
@media screen and (min-width: 960.02px) and (max-width: 960px) {
  .cta__item--admission a {
    padding: 1.1em 1em;
    width: calc(var(--s) * 40);
  }
}
@media screen and (min-width: 960.02px) {
  .cta__item--mail {
    margin-right: calc(var(--s) * 3.6);
  }
  .cta__item--mail a {
    position: relative;
    overflow: hidden;
    z-index: 10;
    display: inline-block;
    padding: 0.9em 3em;
    min-width: calc(var(--s) * 30);
    line-height: 1.5;
    text-align: center;
    border-radius: 100px;
    transition-duration: 300ms;
    background: linear-gradient(to right, #f1c309, #f9db10);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0;
  }
  .cta__item--mail a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: -1;
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    transition-duration: 300ms;
  }
  .cta__item--mail a:hover {
    color: #00469b;
  }
  .cta__item--mail a:hover::before {
    opacity: 1;
  }
}
@media screen and (min-width: 960.02px) and (max-width: 960px) {
  .cta__item--mail a {
    padding: 1.1em 1em;
    width: calc(var(--s) * 40);
  }
}
@media screen and (min-width: 960.02px) {
  .cta__item--tel a {
    color: #fff;
    line-height: 1;
    display: flex;
    flex-wrap: wrap;
  }
  .cta__item--tel a b {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    letter-spacing: 0.03em;
    width: 100%;
    font-size: calc(var(--f) * 3.8);
    white-space: nowrap;
  }
  .cta__item--tel a b::before {
    content: "";
    display: inline-block;
    width: calc(var(--s) * 3.4);
    aspect-ratio: 1/1;
    margin-right: calc(var(--s) * 1);
    background: url(../img/_common/ico-tel-white.svg) center/contain no-repeat;
  }
  .cta__item--tel a small {
    width: 100%;
    font-size: calc(var(--f) * 1.4);
  }
}
@media screen and (max-width: 960px) {
  .cta__text {
    text-align: left;
  }
  .cta__text p.top {
    white-space: nowrap;
  }
  .cta__item {
    display: flex;
    flex-wrap: wrap;
  }
  .cta__item--admission {
    width: 100%;
  }
  .cta__item--admission a {
    position: relative;
    overflow: hidden;
    z-index: 10;
    display: inline-block;
    padding: 0.9em 3em;
    min-width: calc(var(--s) * 30);
    line-height: 1.5;
    text-align: center;
    border-radius: 100px;
    transition-duration: 300ms;
    font-weight: 700;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    height: calc(var(--s) * 8);
    font-size: calc(var(--f) * 1.8);
    line-height: 3.8;
    padding: 0;
  }
  .cta__item--admission a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: -1;
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    transition-duration: 300ms;
  }
  .cta__item--admission a:hover {
    color: #00469b;
  }
  .cta__item--admission a:hover::before {
    opacity: 1;
  }
}
@media screen and (max-width: 960px) and (max-width: 960px) {
  .cta__item--admission a {
    padding: 1.1em 1em;
    width: calc(var(--s) * 40);
  }
}
@media screen and (max-width: 960px) {
  .cta__item--mail {
    width: 100%;
    margin-top: calc(var(--s) * 1.6);
  }
  .cta__item--mail a {
    position: relative;
    overflow: hidden;
    z-index: 10;
    display: inline-block;
    padding: 0.9em 3em;
    min-width: calc(var(--s) * 30);
    line-height: 1.5;
    text-align: center;
    border-radius: 100px;
    transition-duration: 300ms;
    background: linear-gradient(to right, #f1c309, #f9db10);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    height: calc(var(--s) * 8);
    font-size: calc(var(--f) * 1.8);
    line-height: 3.8;
    padding: 0;
  }
  .cta__item--mail a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: -1;
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    transition-duration: 300ms;
  }
  .cta__item--mail a:hover {
    color: #00469b;
  }
  .cta__item--mail a:hover::before {
    opacity: 1;
  }
}
@media screen and (max-width: 960px) and (max-width: 960px) {
  .cta__item--mail a {
    padding: 1.1em 1em;
    width: calc(var(--s) * 40);
  }
}
@media screen and (max-width: 960px) {
  .cta__item--tel {
    width: 100%;
    margin-top: calc(var(--s) * 1.6);
  }
  .cta__item--tel a {
    position: relative;
    overflow: hidden;
    z-index: 10;
    display: inline-block;
    padding: 0.9em 3em;
    min-width: calc(var(--s) * 30);
    line-height: 1.5;
    text-align: center;
    border-radius: 100px;
    transition-duration: 300ms;
    background: linear-gradient(to right, #f1c309, #f9db10);
    font-weight: 700;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    width: 100% !important;
    height: calc(var(--s) * 8);
    padding: 0;
    line-height: 1;
  }
  .cta__item--tel a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: -1;
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    transition-duration: 300ms;
  }
  .cta__item--tel a:hover {
    color: #00469b;
  }
  .cta__item--tel a:hover::before {
    opacity: 1;
  }
}
@media screen and (max-width: 960px) and (max-width: 960px) {
  .cta__item--tel a {
    padding: 1.1em 1em;
    width: calc(var(--s) * 40);
  }
}
@media screen and (max-width: 960px) {
  .cta__item--tel a b {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    letter-spacing: 0.03em;
    width: 100%;
    font-size: calc(var(--f) * 3.4);
    white-space: nowrap;
  }
  .cta__item--tel a b::before {
    content: "";
    display: inline-block;
    width: calc(var(--s) * 3.4);
    aspect-ratio: 1/1;
    margin-right: calc(var(--s) * 1);
    background: url(../img/_common/ico-tel-black.svg) center/contain no-repeat;
  }
}
@media screen and (max-width: 960px) {
  .cta__item--tel a small {
    width: 100%;
    font-size: calc(var(--f) * 1.4);
  }
}

.layout-footer {
  width: calc(var(--s) * 102.4);
  max-width: 86vw;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  padding: calc(var(--s) * 3.6) 0 calc(var(--s) * 2.6);
}
.layout-footer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  z-index: -1;
  display: block;
  width: 100vw;
  height: 100%;
  margin-left: -50vw;
  background: linear-gradient(to right, #191a1b 50%, #6c6e72);
}
.layout-footer__logo img {
  height: calc(var(--s) * 6.6);
}
.layout-footer__address p {
  padding-right: 2em;
  color: #c8c8c8;
  font-size: calc(var(--f) * 1.3);
  line-height: 1.6;
}
.layout-footer__address p a {
  text-decoration: underline;
}
.layout-footer__address-btn {
    display: inline-block;
    padding: 0 3em;
    margin: 1em 0 0;
  font-size: calc(var(--f) * 1.4);
    font-weight: 700;
  line-height: calc(var(--s) * 3.2);
    background: #fff;
    border-radius: 100px;
    color: #000000;
}
.layout-footer__nav {
  color: #fff;
}
.layout-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
}
.layout-footer__nav-item {
  margin-right: 1em;
}
.layout-footer__nav-item a {
  position: relative;
  padding-left: 0.8em;
  font-size: calc(var(--f) * 1.4);
}
.layout-footer__nav-item a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 0.3em;
  aspect-ratio: 1/2;
  margin: auto 0;
  background: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transition-duration: 300ms;
}
.layout-footer__nav-item a:hover::before {
  margin-left: 0.3em;
}
.layout-footer__banner-head {
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
  color: #c8c8c8;
  font-size: calc(var(--f) * 1.4);
  white-space: nowrap;
}
.layout-footer__banner-head::before, .layout-footer__banner-head::after {
  content: "";
  display: block;
  height: 1px;
  background: #c8c8c8;
}
.layout-footer__banner-head::before {
  width: 0.5em;
  margin-right: 0.5em;
}
.layout-footer__banner-head::after {
  width: 100%;
  margin-left: 0.5em;
}
.layout-footer__banner-list {
  display: flex;
  flex-wrap: wrap;
}
.layout-footer__banner-item {
  margin: 0 calc(var(--s) * 0.5) calc(var(--s) * 0.5) 0;
}
.layout-footer__banner-item img {
  height: calc(var(--s) * 5);
}
.layout-footer__sns-list {
  display: flex;
}
.layout-footer__sns-item {
  margin-right: calc(var(--f) * 1);
}
.layout-footer__sns-item img {
  display: block;
  width: calc(var(--f) * 3);
}
.layout-footer__copyright {
  color: #c8c8c8;
  font-size: calc(var(--f) * 1.1);
}
@media screen and (min-width: 960.02px) {
  .layout-footer {
    display: flex;
    flex-wrap: wrap;
  }
  .layout-footer__logo {
    width: calc(100% - var(--s) * 60);
    margin-bottom: calc(var(--s) * 2.6);
  }
  .layout-footer__nav {
    width: calc(var(--s) * 60);
  }
  .layout-footer__nav-list {
    align-items: center;
    height: calc(var(--s) * 6.6);
  }
  .layout-footer__address {
    width: calc(100% - var(--s) * 60);
    padding-top: calc(var(--s) * 0.5);
  }
  .layout-footer__banner {
    width: calc(var(--s) * 60);
    margin-bottom: calc(var(--s) * 2);
  }
  .layout-footer__sns {
    margin-right: calc(var(--s) * 2);
  }
  .layout-footer__copyright {
    line-height: calc(var(--s) * 3);
  }
}
@media screen and (max-width: 960px) {
  .layout-footer__logo {
    margin-bottom: calc(var(--s) * 2);
    text-align: center;
  }
  .layout-footer__nav {
    margin-bottom: calc(var(--s) * 2);
  }
  .layout-footer__nav-item {
    margin: 0 2em 0 0;
  }
  .layout-footer__address {
    margin-bottom: calc(var(--s) * 3);
  }
  .layout-footer__address-btn {
    padding-top: 0.4em;
    padding-bottom: 0.4em;
    margin-top: 1em;
  }
  .layout-footer__banner {
    margin-bottom: calc(var(--s) * 3);
  }
  .layout-footer__sns {
    margin-bottom: calc(var(--s) * 3);
  }
  .layout-footer__sns-list {
    justify-content: center;
  }
  .layout-footer__sns-item {
    margin: 0 calc(var(--f) * 0.5);
  }
  .layout-footer__sns-item img {
    width: calc(var(--f) * 3.6);
  }
  .layout-footer__copyright {
    display: block;
    text-align: center;
  }
}

.layout-header {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2000;
  width: 100%;
}
.layout-header__logo {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  color: #00469b;
  font-size: calc(var(--s) * 2.8);
  white-space: nowrap;
}
.layout-header__logo img {
  width: calc(var(--s) * 6.4);
  margin-right: calc(var(--s) * 1.4);
}
@media screen and (min-width: 960.02px) {
  .layout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: calc(var(--s) * 10.6);
    padding: 0 calc(var(--s) * 2.6);
    transition-duration: 300ms;
  }
  .layout-header__logo {
    padding-bottom: 0.6em;
  }
  .layout-header__nav-btn, .layout-header__nav-label {
    display: none;
  }
  .layout-header__nav-list {
    display: flex;
  }
  .layout-header__nav-item {
    margin-left: 2em;
  }
  .layout-header__nav-item a {
    display: block;
    font-size: calc(var(--f) * 1.4);
    line-height: calc(var(--s) * 3.4);
    font-weight: 700;
    white-space: nowrap;
    transition-duration: 300ms;
  }
  .layout-header__nav-item a:hover {
    color: #00469b;
  }
  .layout-header__nav-item--admission a {
    box-shadow: calc(var(--s) * 0.15) calc(var(--s) * 0.15) calc(var(--s) * 0.8) 0 rgba(0, 0, 0, 0.08);
    background: linear-gradient(to right, #00469b, #0c72b9);
    transition-duration: 300ms;
    padding: 0 3em;
    color: #fff;
    font-weight: 400;
    border-radius: 100px;
  }
  .layout-header__nav-item--admission a:hover {
    opacity: 0.7;
  }
  .layout-header__nav-item--admission a:hover {
    color: #fff;
  }
}
@media screen and (max-width: 960px) {
  .layout-header {
    display: flex;
    justify-content: space-between;
    height: calc(var(--s) * 10);
    padding: 0 0 0 3.5vw;
  }
  .layout-header__logo {
    font-size: calc(var(--f) * 2.8);
  }
  .layout-header__logo img {
    width: calc(var(--s) * 7.2);
    margin-right: calc(var(--s) * 1.6);
  }
  .layout-header__nav-btn {
    display: none;
  }
  .layout-header__nav-label {
    position: relative;
    z-index: 10;
    width: calc(var(--s) * 8);
  }
  .layout-header__nav-label span {
    background: linear-gradient(to right, #00469b, #0c72b9);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 40%;
    height: 3px;
    margin: auto;
    transition-duration: 300ms;
  }
  .layout-header__nav-label span::before, .layout-header__nav-label span:after {
    background: linear-gradient(to right, #00469b, #0c72b9);
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    transition-duration: 300ms;
  }
  .layout-header__nav-label span::before {
    top: calc(var(--s) * -1.4);
  }
  .layout-header__nav-label span::after {
    top: calc(var(--s) * 1.4);
  }
  .layout-header__nav-btn:checked + .layout-header__nav-label span {
    background: none;
  }
  .layout-header__nav-btn:checked + .layout-header__nav-label span::before {
    top: 0;
    transform: rotate(135deg);
    background: #fff;
  }
  .layout-header__nav-btn:checked + .layout-header__nav-label span::after {
    top: 0;
    transform: rotate(-135deg);
    background: #fff;
  }
  .layout-header__nav-wrap {
    position: absolute;
    left: 100vw;
    top: 0;
    overflow: hidden;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background: rgba(58, 59, 61, 0.86);
    transition-duration: 300ms;
  }
  .layout-header__nav-btn:checked + .layout-header__nav-label + .layout-header__nav-wrap {
    opacity: 1;
    left: 0;
  }
  .layout-header__nav-list {
    width: 70vw;
  }
  .layout-header__nav-item {
    padding: calc(var(--s) * 0.6) 0;
  }
  .layout-header__nav-item a {
    display: block;
    font-size: calc(var(--f) * 1.7);
    line-height: 3.6;
    font-weight: 700;
    text-align: center;
    border-radius: 100px;
    background: #fff;
  }
}
body.scroll .layout-header {
  background: #fff;
}
@media screen and (min-width: 960.02px) {
  body.scroll .layout-header {
    height: calc(var(--s) * 8);
  }
}

body.subpage .layout-main {
  padding: calc(var(--s) * 14) 0 0;
}

.home-about {
  width: calc(var(--s) * 140);
  max-width: 86vw;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  margin-bottom: calc(var(--s) * 12);
}
.home-about__text p {
  padding: 0 0 1.7em;
  font-size: calc(var(--f) * 1.7);
}
.home-about__btn {
  padding-top: 1em;
}
.home-about__btn a {
  position: relative;
  overflow: hidden;
  z-index: 10;
  display: inline-block;
  padding: 0.9em 3em;
  min-width: calc(var(--s) * 30);
  line-height: 1.5;
  text-align: center;
  border-radius: 100px;
  transition-duration: 300ms;
  background: linear-gradient(to right, #191a1b, #6c6e72);
  color: #fff;
}
.home-about__btn a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  transition-duration: 300ms;
}
.home-about__btn a:hover {
  color: #00469b;
}
.home-about__btn a:hover::before {
  opacity: 1;
}
@media screen and (max-width: 960px) {
  .home-about__btn a {
    padding: 1.1em 1em;
    width: calc(var(--s) * 40);
  }
}
.home-about__img {
  overflow: hidden;
  border-radius: calc(var(--s) * 1.6);
  box-shadow: calc(var(--s) * 0.3) calc(var(--s) * 0.3) calc(var(--s) * 2) 0 rgba(0, 0, 0, 0.1);
}
.home-about__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 960.02px) {
  .home-about {
    display: flex;
    align-items: center;
  }
  .home-about__text p {
    white-space: nowrap;
  }
  .home-about__img {
    flex-shrink: 0;
    width: calc(var(--s) * 74);
    margin: 0 calc(var(--s) * 8) 0 0;
  }
}
@media screen and (max-width: 960px) {
  .home-about__img {
    position: relative;
    margin: 0 0 7vw -10.5vw;
  }
}

.home-announce {
  padding: calc(var(--f) * 7) 0;
  background: linear-gradient(150deg, #f6f6f6 30%, #e2e2e2);
}
.home-announce__head {
  width: calc(var(--s) * 102.4);
  max-width: 86vw;
  margin: 0 auto;
  margin-bottom: 1.5em;
}
.home-announce__head span {
  background: linear-gradient(to right, #191a1b, #6c6e72);
  display: inline-block;
  font-size: calc(var(--f) * 3.4);
  line-height: 1.5;
  font-weight: 700;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.home-announce__box {
  width: calc(var(--s) * 102.4);
  max-width: 86vw;
  margin: 0 auto;
  overflow: hidden;
  border-radius: calc(var(--s) * 1.6);
  box-shadow: calc(var(--s) * 0.3) calc(var(--s) * 0.3) calc(var(--s) * 3) 0 rgba(0, 0, 0, 0.06);
  display: block;
  padding: calc(var(--s) * 4.2) calc(var(--s) * 3.6);
  background: #fff;
}
.home-announce__box .text h3 {
  margin: 0.6em 0 1em;
  font-size: calc(var(--f) * 2.4);
  line-height: 1.5;
  font-weight: 700;
}
.home-announce__box .text table {
  margin-bottom: 1em;
}
.home-announce__box .text table th, .home-announce__box .text table td {
  padding-bottom: 1em;
  font-size: calc(var(--f) * 1.4);
  line-height: 1.5;
}
.home-announce__box .text table th {
  padding-right: 1em;
}
.home-announce__box .text table th span {
  display: block;
  padding: 0 0.7em 0 0.9em;
  letter-spacing: 0.2em;
  text-align: center;
  white-space: nowrap;
  background: #efefef;
  border-radius: 100px;
}
.home-announce__box .text .contents {
  font-size: calc(var(--f) * 1.4);
  line-height: 1.5;
}
.home-announce__box .text .contents p {
  margin-bottom: 1.7em;
}
.home-announce__box .img img {
  border-radius: calc(var(--s) * 1);
}
.home-announce__link {
  margin-top: calc(var(--s) * 4);
  text-align: center;
}
.home-announce__link a {
  position: relative;
  overflow: hidden;
  z-index: 10;
  display: inline-block;
  padding: 0.9em 3em;
  min-width: calc(var(--s) * 30);
  line-height: 1.5;
  text-align: center;
  border-radius: 100px;
  transition-duration: 300ms;
  background: linear-gradient(to right, #00469b, #0c72b9);
  color: #fff;
}
.home-announce__link a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  transition-duration: 300ms;
}
.home-announce__link a:hover {
  color: #00469b;
}
.home-announce__link a:hover::before {
  opacity: 1;
}
@media screen and (max-width: 960px) {
  .home-announce__link a {
    padding: 1.1em 1em;
    width: calc(var(--s) * 40);
  }
}
@media screen and (min-width: 960.02px) {
  .home-announce__box {
    display: flex;
  }
  .home-announce__box .img {
    width: calc(var(--s) * 26);
    margin: 0 calc(var(--s) * 4) 0 0;
  }
}
@media screen and (max-width: 960px) {
  .home-announce__box .img {
    margin-bottom: calc(var(--s) * 3.2);
    text-align: center;
  }
  .home-announce__box .img img {
    width: 76%;
  }
}

#home-announce-interstitial {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background: rgba(239, 239, 239, 0.9);
  opacity: 0;
  pointer-events: none;
  transition-duration: 600ms;
}
#home-announce-interstitial__close {
  position: fixed;
  right: calc(var(--s) * 2);
  top: calc(var(--s) * 2);
  display: block;
  padding: 0 2em;
  color: #fff;
  background: #3a3b3d;
  border-radius: 100px;
}
#home-announce-interstitial .home-announce {
  max-height: 100%;
  overflow: auto;
  background: none;
  padding: 5vh 0;
}

#home-announce-interstitial.show {
  opacity: 1;
  pointer-events: all;
}

.home-event {
  padding: 0 0 calc(var(--s) * 10);
}
.home-event__swiper {
  position: relative;
  left: 50%;
  width: calc(var(--s) * 360);
}
.home-event__swiper .swiper-wrapper {
  transition-timing-function: linear;
}
.home-event__swiper .swiper-slide {
  width: calc(var(--s) * 42);
  padding: 0 calc(var(--s) * 1.5) calc(var(--s) * 3);
}
.home-event__swiper .swiper-slide a img {
  transition-duration: 400ms;
  transform-origin: center;
}
.home-event__swiper .swiper-slide a:hover img {
  transform: scale(1.15);
}
.home-event__swiper .swiper-slide .img {
  overflow: hidden;
  border-radius: calc(var(--s) * 1.6);
  box-shadow: calc(var(--s) * 0.2) calc(var(--s) * 0.2) calc(var(--s) * 1) 0 rgba(0, 0, 0, 0.1);
  display: block;
  aspect-ratio: 3/2;
}
.home-event__swiper .swiper-slide .img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 960px) {
  .home-event__swiper {
    width: calc(var(--s) * 300);
  }
}

.home-facebook {
  padding: calc(var(--s) * 8) 0;
}
.home-facebook__iframe {
  position: relative;
  display: block;
  width: calc(var(--s) * 50);
  aspect-ratio: 5/8;
  margin: 0 auto;
}
.home-facebook__iframe iframe {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.home-mv {
  width: calc(var(--s) * 120);
  max-width: 86vw;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  height: calc(var(--s) * 94);
}
.home-mv::before {
  content: "";
  position: absolute;
  left: calc(var(--s) * -2.6);
  bottom: calc(var(--s) * -7);
  z-index: -1;
  opacity: 0.1;
  display: block;
  width: calc(var(--s) * 77);
  aspect-ratio: 77/50;
  background: url(../img/_common/logo-grd.svg) center/contain no-repeat;
}
.home-mv__text {
  width: calc(var(--s) * 58.2);
  padding: calc(var(--s) * 20) 0 0;
}
.home-mv__btn {
  padding: calc(var(--s) * 3) 0 0;
}
.home-mv__btn p {
  margin-bottom: 1em;
  color: #00469b;
}
.home-mv__btn a {
  position: relative;
  overflow: hidden;
  z-index: 10;
  display: inline-block;
  padding: 0.9em 3em;
  min-width: calc(var(--s) * 30);
  line-height: 1.5;
  text-align: center;
  border-radius: 100px;
  transition-duration: 300ms;
  background: linear-gradient(to right, #00469b, #0c72b9);
  color: #fff;
}
.home-mv__btn a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  transition-duration: 300ms;
}
.home-mv__btn a:hover {
  color: #00469b;
}
.home-mv__btn a:hover::before {
  opacity: 1;
}
@media screen and (max-width: 960px) {
  .home-mv__btn a {
    padding: 1.1em 1em;
    width: calc(var(--s) * 40);
  }
}
.home-mv__photo-item {
  position: absolute;
  z-index: 10;
  width: calc(var(--s) * 58.4);
  aspect-ratio: 584/300;
}
.home-mv__photo-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-mv__photo-item img {
  position: relative;
  clip-path: url(#home-mv__photo-path);
}
.home-mv__photo-item::before {
  content: "";
  position: absolute;
  left: -2.05%;
  top: -4.67%;
  display: block;
  width: 105%;
  height: 111%;
  background: url(../img/home/mv-photo-shadow.png) center/contain no-repeat;
}
@media screen and (min-width: 960.02px) {
  .home-mv__photo-item--1 {
    left: calc(var(--s) * 44.5);
    top: calc(var(--s) * 40.9);
  }
  .home-mv__photo-item--2 {
    left: calc(var(--s) * 103);
    top: calc(var(--s) * 21.3);
  }
  .home-mv__photo-item--3 {
    left: calc(var(--s) * 93.8);
    top: calc(var(--s) * 53.5);
  }
}
@media screen and (max-width: 960px) {
  .home-mv {
    height: calc(var(--s) * 107);
  }
  .home-mv::before {
    left: calc(var(--s) * -16);
    bottom: calc(var(--s) * -7);
    width: calc(var(--s) * 55);
  }
  .home-mv__text {
    width: calc(var(--s) * 38);
    padding: calc(var(--s) * 17) 0 0;
  }
  .home-mv__btn {
    padding: calc(var(--s) * 3) 0 0;
  }
  .home-mv__btn a {
    width: calc(var(--s) * 28);
  }
  .home-mv__photo-item {
    width: calc(var(--s) * 46);
  }
  .home-mv__photo-item--1 {
    left: calc(var(--s) * -18);
    top: calc(var(--s) * 58);
  }
  .home-mv__photo-item--2 {
    left: calc(var(--s) * 28.5);
    top: calc(var(--s) * 41.3);
  }
  .home-mv__photo-item--3 {
    left: calc(var(--s) * 21.2);
    top: calc(var(--s) * 66.7);
  }
}

.home-nav__item a {
  position: relative;
  display: block;
}
.home-nav__item a img {
  transition-duration: 400ms;
  transform-origin: center;
}
.home-nav__item a:hover img {
  transform: scale(1.15);
}
.home-nav__item a::after {
  content: "";
  position: absolute;
  right: calc(var(--s) * 3);
  bottom: calc(var(--s) * 3);
  display: block;
  width: calc(var(--s) * 16);
  height: calc(var(--s) * 1.4);
  background: url(../img/_common/arrow-line-white.svg) right center/cover no-repeat;
}
.home-nav__item a .text {
  position: absolute;
  left: calc(var(--s) * 3.6);
  bottom: calc(var(--s) * 3);
  z-index: 10;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}
.home-nav__item a .text h2 {
  padding-bottom: 0.6em;
  font-size: calc(var(--f) * 2.8);
  font-weight: 700;
}
.home-nav__item a .text p {
  font-size: calc(var(--f) * 1.6);
}
.home-nav__item a .img {
  overflow: hidden;
  background: #000;
}
.home-nav__item a .img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-nav__item a .img img {
  opacity: 0.6;
}
.home-nav__item a:hover .img img {
  opacity: 1;
}
@media screen and (min-width: 960.02px) {
  .home-nav__list {
    display: flex;
  }
  .home-nav__item {
    width: 50%;
  }
  .home-nav__item .img {
    height: calc(var(--s) * 33.4);
  }
}
.home-news {
  padding: calc(var(--f) * 7) 0;
  background: linear-gradient(150deg, #eff4f7 30%, #d4e2ec);
}
.home-news__head {
  width: calc(var(--s) * 102.4);
  max-width: 86vw;
  margin: 0 auto;
  margin-bottom: 1.5em;
}
.home-news__head span {
  background: linear-gradient(to right, #191a1b, #6c6e72);
  display: inline-block;
  font-size: calc(var(--f) * 3.4);
  line-height: 1.5;
  font-weight: 700;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.home-news__swiper {
  width: calc(var(--s) * 102.4);
  max-width: 86vw;
  margin: 0 auto;
}
.home-news .swiper-slide {
  display: flex;
  height: auto;
  padding-right: calc(var(--s) * 3);
}
.home-news__link {
  overflow: hidden;
  border-radius: calc(var(--s) * 1.6);
  box-shadow: calc(var(--s) * 0.3) calc(var(--s) * 0.3) calc(var(--s) * 3) 0 rgba(0, 0, 0, 0.06);
  display: block;
  width: 100%;
  background: #fff;
  transition-duration: 300ms;
}
.home-news__link .img {
  aspect-ratio: 400/224;
}
.home-news__link .img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-news__link .text {
  padding: 0 calc(var(--f) * 3.6) calc(var(--f) * 3.6);
}
.home-news__link .text h3 {
  padding: 1.5em 0 1.25em;
  margin-bottom: 1.25em;
  font-size: calc(var(--f) * 1.8);
  line-height: 1.5;
  border-bottom: 1px solid #bebebe;
}
.home-news__link .text p {
  margin-bottom: 1em;
  line-height: 1.5;
}
.home-news__link .text .date {
  color: #00469b;
  font-size: calc(var(--f) * 1.2);
}
.home-news__swiper:hover .home-news__link {
  opacity: 0.5;
}
.home-news__swiper:hover .home-news__link:hover {
  opacity: 1;
}
.home-news__banner {
  width: calc(var(--s) * 102.4);
  max-width: 86vw;
  margin: 0 auto;
}
.home-news__banner ul {
  overflow: hidden;
  border-radius: calc(var(--s) * 1.6);
  box-shadow: calc(var(--s) * 0.3) calc(var(--s) * 0.3) calc(var(--s) * 3) 0 rgba(0, 0, 0, 0.06);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: calc(var(--s) * 1.8) calc(var(--s) * 0.8) calc(var(--s) * 0.8);
  margin-top: calc(var(--s) * 7);
  background: #fff;
}
.home-news__banner ul li {
  margin: 0 calc(var(--s) * 0.5) calc(var(--s) * 1);
}
.home-news__banner ul img {
  height: calc(var(--s) * 3);
}
.home-news__facebook {
  position: relative;
  display: block;
  width: calc(var(--s) * 50);
  aspect-ratio: 5/7;
  margin: calc(var(--s) * 7) auto 0;
}
@media screen and (min-width: 960.02px) {
  .home-news__banner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .home-news__banner ul {
    width: 100%;
  }
  .home-news__facebook {
    width: calc(var(--s) * 50);
    margin-left: calc(var(--s) * 3);
    flex-shrink: 0;
  }
}

.home-notice {
  width: calc(var(--s) * 102.4);
  max-width: 86vw;
  margin: 0 auto;
  position: relative;
  z-index: 100;
  padding: 0 0 calc(var(--s) * 10);
  text-align: center;
}
.home-notice a {
  display: inline-block;
  padding: 0.5em 2em;
  background: #fff;
  border: 2px solid #b80202;
}
.home-notice b {
  color: #b80202;
}

.home-op {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 3000;
  pointer-events: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #fff;
}
.home-op__head {
  width: 100%;
  padding-bottom: 1em;
  color: #000;
  font-size: calc(var(--f) * 1.7);
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}
.home-op__logo {
  width: calc(var(--s) * 52);
}
.home-op__loading {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  display: block;
  margin: auto;
}

.home-op__head {
  opacity: 0;
  transform: translate(0, calc(var(--s) * 2));
}
.home-op__logo {
  opacity: 0;
  transform: scale(0.8);
}
.home-op__loading {
  opacity: 1;
}

.loaded.home-op {
  opacity: 0;
  transition-delay: 5000ms;
  transition-duration: 600ms;
}

.loaded .home-op__head {
  opacity: 1;
  transform: translate(0, 0);
  transition-delay: 1600ms;
  transition-duration: 400ms;
}
.loaded .home-op__logo {
  opacity: 1;
  transform: scale(1);
  transition-delay: 2400ms;
  transition-duration: 400ms;
  transition-timing-function: cubic-bezier(0.255, -0.245, 0.435, 1.595);
}
.loaded .home-op__loading {
  opacity: 0;
  transform: scale(1.4);
  transition-delay: 800ms;
  transition-duration: 600ms;
}

.secondAccess.home-op {
  display: none;
}

.admission-entry {
  width: calc(var(--s) * 102.4);
  max-width: 86vw;
  margin: 0 auto;
  overflow: hidden;
  border-radius: calc(var(--s) * 1.6);
  box-shadow: calc(var(--s) * 0.3) calc(var(--s) * 0.3) calc(var(--s) * 3) 0 rgba(0, 0, 0, 0.06);
  padding: calc(var(--s) * 5.6) 0;
  margin-bottom: calc(var(--s) * 16);
  text-align: center;
  background: #fff;
}
.admission-entry__head {
  padding: 0 0 calc(var(--s) * 2);
  color: #00469b;
  font-size: calc(var(--f) * 1.8);
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}
.admission-entry__text {
  font-size: calc(var(--f) * 1.7);
  line-height: 2;
  text-align: center;
}
.admission-entry__text b {
  font-weight: 700;
}
.admission-entry__list {
  display: inline-block;
  font-size: calc(var(--f) * 1.7);
  text-align: left;
}
@media screen and (min-width: 960.02px) {
  .admission-entry__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: calc(var(--s) * 2) 0 0;
  }
  .admission-entry__item {
    display: flex;
    width: calc(var(--s) * 32);
    height: calc(var(--s) * 6);
  }
  .admission-entry__item--mail {
    margin-right: calc(var(--s) * 3.6);
  }
  .admission-entry__item--mail a {
    position: relative;
    overflow: hidden;
    z-index: 10;
    display: inline-block;
    padding: 0.9em 3em;
    min-width: calc(var(--s) * 30);
    line-height: 1.5;
    text-align: center;
    border-radius: 100px;
    transition-duration: 300ms;
    background: linear-gradient(to right, #00469b, #0c72b9);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0;
  }
  .admission-entry__item--mail a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: -1;
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    transition-duration: 300ms;
  }
  .admission-entry__item--mail a:hover {
    color: #00469b;
  }
  .admission-entry__item--mail a:hover::before {
    opacity: 1;
  }
}
@media screen and (min-width: 960.02px) and (max-width: 960px) {
  .admission-entry__item--mail a {
    padding: 1.1em 1em;
    width: calc(var(--s) * 40);
  }
}
@media screen and (min-width: 960.02px) {
  .admission-entry__item--tel a {
    display: flex;
    flex-wrap: wrap;
    line-height: 1;
  }
  .admission-entry__item--tel a b {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    letter-spacing: 0.03em;
    width: 100%;
    font-size: calc(var(--f) * 3.8);
    white-space: nowrap;
  }
  .admission-entry__item--tel a b::before {
    content: "";
    display: inline-block;
    width: calc(var(--s) * 3.4);
    aspect-ratio: 1/1;
    margin-right: calc(var(--s) * 1);
    background: url(../img/_common/ico-tel-black.svg) center/contain no-repeat;
  }
  .admission-entry__item--tel a small {
    width: 100%;
    font-size: calc(var(--f) * 1.4);
  }
}
@media screen and (max-width: 960px) {
  .admission-entry__text {
    margin-bottom: calc(var(--s) * 2);
  }
  .admission-entry__list {
    width: 100%;
    text-align: center;
  }
  .admission-entry__item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
  }
  .admission-entry__item--mail {
    width: 80%;
    margin-top: calc(var(--s) * 1.6);
  }
  .admission-entry__item--mail a {
    position: relative;
    overflow: hidden;
    z-index: 10;
    display: inline-block;
    padding: 0.9em 3em;
    min-width: calc(var(--s) * 30);
    line-height: 1.5;
    text-align: center;
    border-radius: 100px;
    transition-duration: 300ms;
    background: linear-gradient(to right, #00469b, #0c72b9);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    height: calc(var(--s) * 8);
    font-size: calc(var(--f) * 1.8);
    line-height: 3.8;
    padding: 0;
  }
  .admission-entry__item--mail a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: -1;
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    transition-duration: 300ms;
  }
  .admission-entry__item--mail a:hover {
    color: #00469b;
  }
  .admission-entry__item--mail a:hover::before {
    opacity: 1;
  }
}
@media screen and (max-width: 960px) and (max-width: 960px) {
  .admission-entry__item--mail a {
    padding: 1.1em 1em;
    width: calc(var(--s) * 40);
  }
}
@media screen and (max-width: 960px) {
  .admission-entry__item--tel {
    width: 80%;
    margin-top: calc(var(--s) * 1.6);
  }
  .admission-entry__item--tel a {
    position: relative;
    overflow: hidden;
    z-index: 10;
    display: inline-block;
    padding: 0.9em 3em;
    min-width: calc(var(--s) * 30);
    line-height: 1.5;
    text-align: center;
    border-radius: 100px;
    transition-duration: 300ms;
    background: linear-gradient(to right, #00469b, #0c72b9);
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    width: 100% !important;
    height: calc(var(--s) * 8);
    padding: 0;
    color: #fff;
    line-height: 1;
  }
  .admission-entry__item--tel a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: -1;
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    transition-duration: 300ms;
  }
  .admission-entry__item--tel a:hover {
    color: #00469b;
  }
  .admission-entry__item--tel a:hover::before {
    opacity: 1;
  }
}
@media screen and (max-width: 960px) and (max-width: 960px) {
  .admission-entry__item--tel a {
    padding: 1.1em 1em;
    width: calc(var(--s) * 40);
  }
}
@media screen and (max-width: 960px) {
  .admission-entry__item--tel a b {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    letter-spacing: 0.03em;
    width: 100%;
    font-size: calc(var(--f) * 3.4);
    white-space: nowrap;
  }
  .admission-entry__item--tel a b::before {
    content: "";
    display: inline-block;
    width: calc(var(--s) * 3.4);
    aspect-ratio: 1/1;
    margin-right: calc(var(--s) * 1);
    background: url(../img/_common/ico-tel-white.svg) center/contain no-repeat;
  }
}
@media screen and (max-width: 960px) {
  .admission-entry__item--tel a small {
    width: 100%;
    font-size: calc(var(--f) * 1.4);
  }
}

.admission-intro {
  width: calc(var(--s) * 102.4);
  max-width: 86vw;
  margin: 0 auto;
  text-align: center;
}

.admission-requirements {
  width: calc(var(--s) * 102.4);
  max-width: 86vw;
  margin: 0 auto;
  margin-bottom: calc(var(--s) * 8);
  text-align: center;
}
.admission-requirements__head {
  padding: 0 0 calc(var(--s) * 2);
  color: #00469b;
  font-size: calc(var(--f) * 1.8);
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  margin-top: calc(var(--s) * 8);
}
.admission-requirements__table {
  padding-top: calc(var(--s) * 2);
}
.admission-requirements__table table {
  width: 100%;
  border-top: 1px solid #bebebe;
}
.admission-requirements__table th {
  font-weight: 700;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}
.admission-requirements__table td {
  text-align: left;
}
@media screen and (min-width: 960.02px) {
  .admission-requirements__table th, .admission-requirements__table td {
    padding: 1em;
    border-bottom: 1px solid #bebebe;
  }
}
@media screen and (max-width: 960px) {
  .admission-requirements__table th, .admission-requirements__table td {
    display: block;
  }
  .admission-requirements__table th {
    padding-top: 1em;
  }
  .admission-requirements__table td {
    padding-bottom: 1em;
    border-bottom: 1px solid #bebebe;
  }
}

.contact-form {
  width: calc(var(--f) * 86);
  max-width: 86vw;
  margin: 0 auto;
  margin-bottom: calc(var(--s) * 12);
}
.contact-form b.hissu {
  display: inline-block;
  padding: 0 0.75em;
  margin-right: 0.5em;
  color: #fff;
  font-size: calc(var(--f) * 1.4);
  line-height: 1.6;
  background: #b80202;
  border-radius: 100px;
}
.contact-form__head {
  padding: 0 0 calc(var(--s) * 2);
  color: #00469b;
  font-size: calc(var(--f) * 1.8);
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  padding-bottom: calc(var(--s) * 6);
  font-size: calc(var(--f) * 2.4);
}
.contact-form__notice {
  margin-bottom: calc(var(--s) * 4);
  text-align: center;
}
.contact-form__body table {
  width: 100%;
  border-top: 1px solid #bebebe;
}
.contact-form__body th, .contact-form__body td {
  vertical-align: top;
}
.contact-form__body td small {
  display: block;
  padding: 0.8em 0 0;
  color: #878a8d;
  font-size: calc(var(--f) * 1.5);
  line-height: 1.5;
}
.contact-form__body input[type=text],
.contact-form__body input[type=email],
.contact-form__body input[type=tel],
.contact-form__body textarea {
  display: block;
  width: 100%;
  padding: 0.7em;
  box-shadow: calc(var(--s) * 0.2) calc(var(--s) * 0.2) calc(var(--s) * 1) 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: calc(var(--s) * 0.8);
  background: #fff;
}
.contact-form__body .radio {
  display: flex;
  flex-wrap: wrap;
}
.contact-form__body .radio li {
  margin: 0 2em 0 0;
  white-space: nowrap;
}
.contact-form__body .radio input {
  display: none;
}
.contact-form__body .radio .wpcf7-list-item-label {
  cursor: pointer;
}
.contact-form__body .radio .wpcf7-list-item-label::before {
  content: "";
  display: inline-block;
  width: 1.1em;
  aspect-ratio: 1/1;
  margin-right: 0.5em;
  background: #fff;
  border: 3px solid #fff;
  border-radius: 50%;
  vertical-align: middle;
  box-shadow: 0 0 0 2px #00469b;
}
.contact-form__body .radio input:checked + .wpcf7-list-item-label {
  color: #00469b;
  font-weight: 700;
}
.contact-form__body .radio input:checked + .wpcf7-list-item-label::before {
  background: #00469b;
}
.contact-form__submit {
  text-align: center;
}
.contact-form__submit p {
  padding: 2em 0;
}
.contact-form__submit p a {
  position: relative;
  padding-left: 0.8em;
  color: #00469b;
  text-decoration: underline;
}
.contact-form__submit p a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 0.3em;
  aspect-ratio: 1/2;
  margin: auto 0;
  background: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transition-duration: 300ms;
}
.contact-form__submit p a:hover::before {
  margin-left: 0.3em;
}
.contact-form__submit p a::before {
  background: #00469b;
}
.contact-form__submit input {
  position: relative;
  overflow: hidden;
  z-index: 10;
  display: inline-block;
  padding: 0.9em 3em;
  min-width: calc(var(--s) * 30);
  line-height: 1.5;
  text-align: center;
  border-radius: 100px;
  transition-duration: 300ms;
  background: linear-gradient(to right, #00469b, #0c72b9);
  color: #fff;
  font-size: calc(var(--f) * 2);
}
.contact-form__submit input::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  transition-duration: 300ms;
}
.contact-form__submit input:hover {
  color: #00469b;
}
.contact-form__submit input:hover::before {
  opacity: 1;
}
@media screen and (max-width: 960px) {
  .contact-form__submit input {
    padding: 1.1em 1em;
    width: calc(var(--s) * 40);
  }
}
.contact-form__submit .wpcf7-spinner {
  display: none;
}
@media screen and (min-width: 960.02px) {
  .contact-form__body th, .contact-form__body td {
    padding: calc(var(--s) * 3) 0;
    border-bottom: 1px solid #bebebe;
  }
  .contact-form__body th {
    padding-right: 2em;
    padding-top: calc(var(--s) * 4);
    font-weight: 700;
    white-space: nowrap;
  }
}
@media screen and (max-width: 960px) {
  .contact-form__body th, .contact-form__body td {
    display: block;
  }
  .contact-form__body th {
    padding: 1.2em 0 0.5em;
    font-weight: 700;
  }
  .contact-form__body td {
    padding: 0 0 2em;
    border-bottom: 1px solid #bebebe;
  }
}

.intro-message-top {
  width: calc(var(--s) * 102.4);
  max-width: 86vw;
  margin: 0 auto;
  padding: calc(var(--s) * 5) 0;
  margin-top: calc(var(--s) * 6);
  border-top: 1px solid #bebebe;
}
.intro-message-top__text img {
  overflow: hidden;
  border-radius: calc(var(--s) * 1.6);
}
.intro-message-top__text h2 {
  margin-bottom: 1em;
  color: #00469b;
}
.intro-message-top__text h2 span {
  display: block;
  font-size: calc(var(--f) * 2.6);
  font-weight: 700;
}
.intro-message-top__text h2 b {
  font-size: calc(var(--f) * 1.8);
  font-weight: 700;
}
.intro-message-top__text h2 b small {
  display: inline-block;
  margin-right: 0.5em;
  font-size: 1em;
}
@media screen and (min-width: 960.02px) {
  .intro-message-top__text::after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
  }
  .intro-message-top__text img {
    float: right;
    display: inline;
    width: calc(var(--s) * 20);
    margin: 0 0 calc(var(--s) * 4) calc(var(--s) * 4);
  }
}
@media screen and (max-width: 960px) {
  .intro-message-top__text img {
    display: block;
    width: 70%;
    margin: 0 auto calc(var(--s) * 2);
  }
}

.intro-message {
  width: calc(var(--s) * 102.4);
  max-width: 86vw;
  margin: 0 auto;
}
.intro-message__item {
  padding: calc(var(--s) * 4.5) 0 calc(var(--s) * 5);
  border-top: 1px solid #bebebe;
}
.intro-message__item:last-child {
  border-bottom: 1px solid #bebebe;
}
.intro-message__item h2 {
  margin-bottom: 0.7em;
  color: #00469b;
  font-size: calc(var(--f) * 1.7);
  font-weight: 700;
}
.intro-message__item h2 small {
  display: inline-block;
  margin-right: 0.5em;
  font-size: 1em;
}
@media screen and (min-width: 960.02px) {
  .intro-message__list {
    display: flex;
    flex-wrap: wrap;
  }
  .intro-message__item {
    width: calc((100% - var(--s) * 6) / 2);
    margin-right: calc(var(--s) * 6);
  }
  .intro-message__item:nth-child(2n) {
    margin-right: 0;
  }
  .intro-message__item:nth-child(2n+1):last-child {
    width: 100%;
    margin-right: 0;
  }
}

.intro-organization {
  width: calc(var(--s) * 102.4);
  max-width: 86vw;
  margin: 0 auto;
  padding: calc(var(--s) * 4) 0 calc(var(--s) * 3);
  margin-top: calc(var(--s) * 8);
  text-align: center;
  background: rgba(58, 59, 61, 0.1);
}
.intro-organization a {
  position: relative;
  overflow: hidden;
  z-index: 10;
  display: inline-block;
  padding: 0.9em 3em;
  min-width: calc(var(--s) * 30);
  line-height: 1.5;
  text-align: center;
  border-radius: 100px;
  transition-duration: 300ms;
  background: linear-gradient(to right, #191a1b, #6c6e72);
  color: #fff;
}
.intro-organization a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  transition-duration: 300ms;
}
.intro-organization a:hover {
  color: #00469b;
}
.intro-organization a:hover::before {
  opacity: 1;
}
@media screen and (max-width: 960px) {
  .intro-organization a {
    padding: 1.1em 1em;
    width: calc(var(--s) * 40);
  }
}

.intro-philosophy {
  width: calc(var(--s) * 102.4);
  max-width: 86vw;
  margin: 0 auto;
  margin-bottom: calc(var(--s) * 8);
  text-align: center;
}
.intro-philosophy__head {
  padding: 0 0 calc(var(--s) * 2);
  color: #00469b;
  font-size: calc(var(--f) * 1.8);
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  margin-top: calc(var(--s) * 8);
}
.intro-philosophy__text {
  font-size: calc(var(--f) * 1.7);
  line-height: 2;
  text-align: center;
}
.intro-philosophy__list {
  display: inline-block;
  font-size: calc(var(--f) * 1.7);
  text-align: left;
}
@media screen and (max-width: 960px) {
  .intro-philosophy__text--left {
    text-align: left;
  }
}

.intro-plan {
  width: calc(var(--s) * 102.4);
  max-width: 86vw;
  margin: 0 auto;
  padding: calc(var(--s) * 8) 0 0;
}
.intro-plan__head {
  padding: 0 0 0 calc(var(--f) * 1.2);
  margin-bottom: 1em;
  font-size: calc(var(--f) * 1.8);
  line-height: 1.5;
  font-weight: 700;
  border-left: 4px solid #3a3b3d;
  margin-bottom: -1em;
}
.intro-plan__contents {
  padding-left: calc(var(--f) * 1.2);
  font-size: calc(var(--f) * 1.5);
}
.intro-plan__contents p {
  margin-bottom: 1em;
}
.intro-plan__list {
  counter-reset: item;
  margin-left: calc(var(--f) * 1.2);
  margin-top: calc(var(--s) * 2);
}
.intro-plan__item {
  position: relative;
  padding: calc(var(--f) * 3.6) 0 calc(var(--f) * 3.6) 1.8em;
  border-bottom: 1px solid #bebebe;
}
.intro-plan__item::before {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  letter-spacing: 0.03em;
  counter-increment: item;
  content: counter(item) ".";
  position: absolute;
  left: 0;
  top: calc(var(--f) * 1.3);
  display: flex;
  height: 100%;
  padding-top: 0.85em;
  color: #00469b;
  font-size: 1.6em;
  line-height: 1;
}
.intro-plan__item h3 {
  color: #00469b;
  line-height: 1.5;
  font-weight: 700;
}
.intro-plan__item ol {
  padding: 0.5em 0 0;
}
.intro-plan__item li {
  position: relative;
  padding: 0.6em 0 0 1em;
  font-size: calc(var(--f) * 1.5);
  line-height: 1.5;
}
.intro-plan__item li::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(var(--f) * 1.8);
  display: block;
  width: calc(var(--f) * 0.6);
  height: calc(var(--f) * 0.6);
  border-radius: 50%;
  margin-right: 0.4em;
  background: #00469b;
}
@media screen and (min-width: 960.02px) {
  .intro-plan__list {
    display: flex;
    flex-wrap: wrap;
  }
  .intro-plan__item {
    width: calc((100% - var(--s) * 4) / 3);
    margin-right: calc(var(--s) * 2);
  }
  .intro-plan__item:nth-child(3n) {
    margin-right: 0;
  }
}

.intro-policy {
  width: calc(var(--s) * 102.4);
  max-width: 86vw;
  margin: 0 auto;
  padding: calc(var(--s) * 8) 0 0;
}
.intro-policy__head {
  padding: 0 0 0 calc(var(--f) * 1.2);
  margin-bottom: 1em;
  font-size: calc(var(--f) * 1.8);
  line-height: 1.5;
  font-weight: 700;
  border-left: 4px solid #3a3b3d;
}
.intro-policy__contents {
  padding-left: calc(var(--f) * 1.2);
  font-size: calc(var(--f) * 1.5);
}
.intro-policy__contents p {
  margin-bottom: 1em;
}
.intro-policy__list {
  counter-reset: item;
  margin-left: calc(var(--f) * 1.2);
  margin-top: calc(var(--s) * 2);
}
.intro-policy__list li {
  position: relative;
  padding: 1.4em 0 0.6em 1.8em;
  color: #00469b;
  line-height: 1.5;
  font-weight: 700;
  border-bottom: 1px solid #bebebe;
}
.intro-policy__list li::before {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  letter-spacing: 0.03em;
  counter-increment: item;
  content: counter(item) ".";
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  height: 100%;
  padding-top: 0.85em;
  color: #00469b;
  font-size: 1.6em;
  line-height: 1;
}

.intro-slogan {
  width: calc(var(--s) * 102.4);
  max-width: 86vw;
  margin: 0 auto;
  margin-bottom: calc(var(--s) * 8);
}
.intro-slogan__head {
  padding: calc(var(--s) * 6) 0 calc(var(--s) * 3);
  color: #0e52a4;
  font-size: calc(var(--f) * 1.8);
  font-weight: 700;
  text-align: center;
}
.intro-slogan__logo {
  display: block;
  width: calc(var(--s) * 52);
  margin: 0 auto calc(var(--s) * 3);
}
.intro-slogan__caption {
  color: #0e52a4;
  font-size: calc(var(--f) * 1.8);
  font-weight: 700;
  line-height: 2;
  text-align: center;
}

.member-list {
  width: calc(var(--s) * 102.4);
  max-width: 86vw;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.member-list__nav {
  margin-bottom: calc(var(--s) * 6);
}
.member-list__nav ul {
  display: flex;
  flex-wrap: wrap;
}
.member-list__nav li {
  margin: 0 calc(var(--s) * 0.6) calc(var(--s) * 0.6) 0;
}
.member-list__nav a {
  display: block;
  padding: 0 1.2em;
  font-size: calc(var(--f) * 1.5);
  line-height: 2.5;
  font-weight: 700;
  white-space: nowrap;
  border: 2px solid #00469b;
  border-radius: 100px;
  transition-duration: 300ms;
}
.member-list__nav li.current a,
.member-list__nav a:hover {
  color: #fff;
  background: #00469b;
}
.member-list__tab {
  display: none;
}
.member-list__label-top, .member-list__label-bottom {
  cursor: pointer;
  display: block;
  padding: 0 1.2em;
  margin: 0 calc(var(--s) * 0.6) calc(var(--s) * 0.6) 0;
  font-size: calc(var(--f) * 1.5);
  line-height: 2.5;
  font-weight: 700;
  white-space: nowrap;
  border: 2px solid #00469b;
  border-radius: 100px;
  transition-duration: 300ms;
}
.member-list__label-top {
  order: -1;
}
.member-list__label-bottom {
  order: 9999;
}
.member-list__tab:checked + .member-list__label-top, .member-list__tab:checked + .member-list__label-top + .member-list__label-bottom {
  color: #fff;
  background: #00469b;
}
.member-list__date-top, .member-list__date-bottom {
  width: 100%;
  padding: calc(var(--s) * 4) 0 calc(var(--s) * 1);
  color: #878a8d;
  font-size: calc(var(--f) * 1.4);
  text-align: right;
}
.member-list__box {
  display: none;
  width: 100%;
  margin-bottom: calc(var(--s) * 8);
}
.member-list__tab:checked + .member-list__label-top + .member-list__label-bottom + .member-list__box {
  display: block;
}
.member-list__title {
  padding: 0 0 0 calc(var(--f) * 1.2);
  margin-bottom: 1em;
  font-size: calc(var(--f) * 1.8);
  line-height: 1.5;
  font-weight: 700;
  border-left: 4px solid #3a3b3d;
}
.member-list__item {
  padding: calc(var(--s) * 4) 0 calc(var(--s) * 5);
  border-top: 1px solid #bebebe;
}
.member-list__item:last-child {
  border-bottom: 1px solid #bebebe;
}
.member-list__item h3 {
  margin-bottom: 0.2em;
  color: #00469b;
  font-size: calc(var(--f) * 2.4);
  line-height: 1.6;
  font-weight: 700;
  white-space: nowrap;
}
.member-list__item p.title {
  margin-bottom: 0.5em;
  color: #00469b;
  font-size: calc(var(--f) * 1.5);
}
.member-list__item table {
  border-collapse: separate;
  border-spacing: 0 0.4em;
}
.member-list__item table th {
  padding: 0.2em 1.6em;
  font-size: calc(var(--f) * 1.4);
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background: #efefef;
  border-radius: 0.25em;
}
.member-list__item table td {
  padding: 0.2em 0 0.2em 1em;
  font-size: calc(var(--f) * 1.5);
  line-height: 1.5;
}
.member-list__item table td a {
  text-decoration: underline;
}
@media screen and (min-width: 960.02px) {
  .member-list__nav {
    display: flex;
    align-items: flex-end;
  }
  .member-list__date {
    white-space: nowrap;
  }
  .member-list__list {
    display: flex;
    flex-wrap: wrap;
  }
  .member-list__item {
    width: calc((100% - var(--s) * 4) / 2);
    margin-right: calc(var(--s) * 4);
  }
  .member-list__item:nth-child(2n) {
    margin-right: 0;
  }
  .member-list__item:nth-last-child(2) {
    border-bottom: 1px solid #bebebe;
  }
}

.news-detail {
  width: calc(var(--f) * 86);
  max-width: 86vw;
  margin: 0 auto;
}
.news-detail__head {
  padding: calc(var(--s) * 2) 0 calc(var(--s) * 3.6);
  margin-bottom: calc(var(--s) * 5);
  border-bottom: 1px solid #bebebe;
}
.news-detail__head h1 {
  padding: 0 0 0.5em;
  font-size: calc(var(--f) * 2.8);
  line-height: 1.5;
  font-weight: 700;
}
.news-detail__head span.date {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  letter-spacing: 0.03em;
  display: inline-block;
  margin-right: 0.5em;
  color: #00469b;
  font-size: calc(var(--f) * 1.6);
}
.news-detail__head span.cate {
  display: inline-block;
  padding: 0 1.8em;
  color: #fff;
  font-size: calc(var(--f) * 1.4);
  line-height: 1.6;
  background: #00469b;
  border-radius: 100px;
}
.news-detail__head span.cate span::after {
  content: "/";
  display: inline-block;
  margin: 0 0.5em;
  vertical-align: middle;
}
.news-detail__head span.cate span:last-child::after {
  display: none;
}
.news-detail__thumb {
  text-align: center;
}
.news-detail__thumb img {
  overflow: hidden;
  border-radius: calc(var(--s) * 1.6);
  box-shadow: calc(var(--s) * 0.3) calc(var(--s) * 0.3) calc(var(--s) * 2) 0 rgba(0, 0, 0, 0.1);
}
.news-detail__thumb img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-detail__contents {
  padding-top: 3em;
}
.news-detail__contents > * {
  margin-bottom: 2em;
}
.news-detail__contents h1, .news-detail__contents h2, .news-detail__contents h3, .news-detail__contents h4, .news-detail__contents h5, .news-detail__contents h6 {
  margin: 3em 0 1em;
  line-height: 1.5;
  font-weight: 700;
}
.news-detail__contents h1:first-child, .news-detail__contents h2:first-child, .news-detail__contents h3:first-child, .news-detail__contents h4:first-child, .news-detail__contents h5:first-child, .news-detail__contents h6:first-child {
  margin-top: 0;
}
.news-detail__contents h1 {
  font-size: calc(var(--f) * 2.8);
}
.news-detail__contents h2 {
  font-size: calc(var(--f) * 2.5);
}
.news-detail__contents h3 {
  font-size: calc(var(--f) * 2.2);
}
.news-detail__contents h4 {
  font-size: calc(var(--f) * 1.9);
  margin-top: 1.5em;
}
.news-detail__contents h5 {
  font-size: calc(var(--f) * 1.6);
  margin-top: 1.5em;
}
.news-detail__contents h6 {
  font-size: calc(var(--f) * 1.5);
  margin-top: 1.5em;
}
.news-detail__contents .wp-block-image a {
  transition-duration: 300ms;
}
.news-detail__contents .wp-block-image a:hover {
  opacity: 0.7;
}
.news-detail__contents .wp-block-table table {
  border-bottom: 1px solid #bebebe;
}
.news-detail__contents .wp-block-table table th, .news-detail__contents .wp-block-table table td {
  border-top: 1px solid #bebebe;
  border-right: none;
  border-left: none;
  border-bottom: none;
}
.news-detail__contents .wp-block-table table th {
  font-weight: 700;
}
.news-detail__contents > ul > li {
  position: relative;
  padding-left: 0.75em;
  line-height: 1.7;
  margin-bottom: 0.5em;
}
.news-detail__contents > ul > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(var(--f) * 1.2);
  display: inline-block;
  width: calc(var(--f) * 0.7);
  height: calc(var(--f) * 0.7);
  border-radius: 50%;
  background: #00469b;
}
.news-detail__contents > ol {
  counter-reset: item;
}
.news-detail__contents > ol > li {
  position: relative;
  padding-left: 1.1em;
  line-height: 1.7;
  margin-bottom: 0.5em;
}
.news-detail__contents > ol > li::before {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  letter-spacing: 0.03em;
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  width: 1em;
  color: #00469b;
  font-size: 1.2em;
  line-height: 1.6;
}
.news-detail__contents > ul > li ul, .news-detail__contents > ol > li ul {
  padding-top: 0.286em;
  font-size: calc(var(--f) * 1.5);
}
.news-detail__contents > ul > li ul > li, .news-detail__contents > ol > li ul > li {
  position: relative;
  padding-left: 0.429em;
  line-height: 1.7;
}
.news-detail__contents > ul > li ul > li::before, .news-detail__contents > ol > li ul > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(var(--f) * 1);
  display: inline-block;
  width: calc(var(--f) * 0.3);
  height: calc(var(--f) * 0.3);
  border-radius: 50%;
  background: rgba(0, 70, 155, 0.6);
}
.news-detail__contents > ul > li ol, .news-detail__contents > ol > li ol {
  counter-reset: item;
  padding-top: 0.286em;
  font-size: calc(var(--f) * 1.5);
}
.news-detail__contents > ul > li ol > li, .news-detail__contents > ol > li ol > li {
  position: relative;
  padding-left: 1.1em;
  line-height: 1.7;
}
.news-detail__contents > ul > li ol > li::before, .news-detail__contents > ol > li ol > li::before {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  letter-spacing: 0.03em;
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  width: 1em;
  font-size: 1.3em;
  line-height: 1.4;
  opacity: 0.4;
}
.news-detail__link {
  padding-top: calc(var(--s) * 5);
  text-align: center;
}
.news-detail__link a {
  position: relative;
  overflow: hidden;
  z-index: 10;
  display: inline-block;
  padding: 0.9em 3em;
  min-width: calc(var(--s) * 30);
  line-height: 1.5;
  text-align: center;
  border-radius: 100px;
  transition-duration: 300ms;
  background: linear-gradient(to right, #191a1b, #6c6e72);
  color: #fff;
}
.news-detail__link a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  transition-duration: 300ms;
}
.news-detail__link a:hover {
  color: #00469b;
}
.news-detail__link a:hover::before {
  opacity: 1;
}
@media screen and (max-width: 960px) {
  .news-detail__link a {
    padding: 1.1em 1em;
    width: calc(var(--s) * 40);
  }
}

.news-list {
  width: calc(var(--s) * 102.4);
  max-width: 86vw;
  margin: 0 auto;
}
.news-list__head {
  width: calc(var(--s) * 102.4);
  max-width: 86vw;
  margin: 0 auto;
  margin-bottom: 1.5em;
}
.news-list__head span {
  background: linear-gradient(to right, #191a1b, #6c6e72);
  display: inline-block;
  font-size: calc(var(--f) * 3.4);
  line-height: 1.5;
  font-weight: 700;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.news-list__item {
  margin-bottom: calc(var(--s) * 6);
}
.news-list__link {
  overflow: hidden;
  border-radius: calc(var(--s) * 1.6);
  box-shadow: calc(var(--s) * 0.3) calc(var(--s) * 0.3) calc(var(--s) * 3) 0 rgba(0, 0, 0, 0.06);
  display: block;
  width: 100%;
  background: #fff;
  transition-duration: 300ms;
}
.news-list__link .img {
  aspect-ratio: 400/224;
}
.news-list__link .img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-list__link .text {
  padding: 0 calc(var(--f) * 2.4) calc(var(--f) * 3.6);
}
.news-list__link .text h2 {
  padding: 1.5em 0 1.25em;
  margin-bottom: 1.25em;
  font-size: calc(var(--f) * 1.7);
  line-height: 1.5;
  border-bottom: 1px solid #bebebe;
}
.news-list__link .text p {
  margin-bottom: 1em;
  font-size: calc(var(--f) * 1.5);
  line-height: 1.5;
}
.news-list__link .text .date {
  color: #00469b;
  font-size: calc(var(--f) * 1.2);
}
.news-list__list:hover .news-list__link {
  opacity: 0.5;
}
.news-list__list:hover .news-list__link:hover {
  opacity: 1;
}
@media screen and (min-width: 960.02px) {
  .news-list__list {
    display: flex;
    flex-wrap: wrap;
  }
  .news-list__item {
    display: flex;
    width: calc((100% - var(--s) * 6) / 3);
    margin-right: calc(var(--s) * 3);
  }
  .news-list__item:nth-child(3n) {
    margin-right: 0;
  }
}

.news-pagination {
  display: flex;
  justify-content: center;
}
.news-pagination .page-numbers {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  letter-spacing: 0.03em;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(var(--f) * 5);
  aspect-ratio: 1/1;
  margin: 0 calc(var(--f) * 0.5);
  border-radius: 50%;
  font-size: calc(var(--f) * 1.8);
  text-align: center;
  background: rgba(58, 59, 61, 0.15);
}
.news-pagination .page-numbers.current {
  background: #00469b;
  color: #fff;
}
.news-pagination .page-numbers.prev,
.news-pagination .page-numbers.next {
  margin: 0;
  background: none;
}
.news-pagination .page-numbers.prev::before,
.news-pagination .page-numbers.next::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--f) * 1.2);
  display: block;
  width: calc(var(--f) * 1.1);
  aspect-ratio: 1/1;
  margin: auto 0;
  border-right: 2px solid #3a3b3d;
  border-bottom: 2px solid #3a3b3d;
  transform: rotate(-45deg);
}
.news-pagination .page-numbers.prev {
  transform: scale(-1, 1);
}

.page-title {
  width: calc(var(--s) * 120);
  max-width: 86vw;
  margin: 0 auto;
  margin-bottom: 1.5em;
  position: relative;
  z-index: 10;
  padding-top: calc(var(--s) * 2);
  margin-bottom: calc(var(--s) * 6);
  text-align: center;
}
.page-title span {
  background: linear-gradient(to right, #191a1b, #6c6e72);
  display: inline-block;
  font-size: calc(var(--f) * 3.4);
  line-height: 1.5;
  font-weight: 700;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-title::before {
  content: "";
  position: absolute;
  right: calc(var(--s) * -7);
  top: calc(var(--s) * -13);
  z-index: -1;
  opacity: 0.1;
  display: block;
  width: calc(var(--s) * 60);
  aspect-ratio: 77/50;
  background: url(../img/_common/logo-grd.svg) center/contain no-repeat;
}
.page-title small {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  letter-spacing: 0.03em;
  display: block;
  padding: calc(var(--s) * 1) 0 0;
  color: #00469b;
  font-size: calc(var(--f) * 1.8);
  text-align: center;
  letter-spacing: 0.2em;
}
.page-title small::after {
  background: linear-gradient(to right, #00469b, #0c72b9);
  content: "";
  display: block;
  width: 1.6em;
  height: 3px;
  margin: calc(var(--s) * 3) auto 0;
}
@media screen and (max-width: 960px) {
  .page-title::before {
    right: calc(var(--s) * -14);
  }
}

.page-title + section,
.page-title + nav {
  position: relative;
  z-index: 10;
}

.yeg_activity-gallery {
  width: calc(var(--s) * 102.4);
  max-width: 86vw;
  margin: 0 auto;
}
.yeg_activity-gallery__item {
  display: flex;
  padding-bottom: calc(var(--s) * 5);
  margin-bottom: calc(var(--s) * 6.6);
  border-bottom: 1px solid #bebebe;
}
.yeg_activity-gallery__text h2 {
  margin: 0 0 0.5em;
  color: #00469b;
  font-size: calc(var(--f) * 2.8);
  line-height: 1.5;
  font-weight: 700;
}
.yeg_activity-gallery__text p {
  margin-bottom: 0.7em;
}
.yeg_activity-gallery__text ul {
  display: flex;
  flex-wrap: wrap;
}
.yeg_activity-gallery__text ul li {
  position: relative;
  padding: 0.4em 0 0 0.8em;
  margin-right: 1.5em;
  color: #00469b;
  line-height: 1.5;
  white-space: nowrap;
}
.yeg_activity-gallery__text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(var(--f) * 1.6);
  display: block;
  width: calc(var(--f) * 0.6);
  height: calc(var(--f) * 0.6);
  border-radius: 50%;
  margin-right: 0.4em;
  background: #00469b;
}
.yeg_activity-gallery__photo {
  display: flex;
  flex-wrap: wrap;
}
.yeg_activity-gallery__photo li {
  width: calc((100% - var(--s) * 1.6) / 2);
  margin: 0 calc(var(--s) * 1.6) calc(var(--s) * 1.6) 0;
}
.yeg_activity-gallery__photo li:nth-child(2n) {
  margin-right: 0;
}
.yeg_activity-gallery__photo a {
  overflow: hidden;
  border-radius: calc(var(--s) * 0.8);
  box-shadow: calc(var(--s) * 0.2) calc(var(--s) * 0.2) calc(var(--s) * 1) 0 rgba(0, 0, 0, 0.1);
  transition-duration: 300ms;
  display: block;
  aspect-ratio: 1/1;
}
.yeg_activity-gallery__photo a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.yeg_activity-gallery__photo a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 960.02px) {
  .yeg_activity-gallery__item {
    align-items: flex-start;
  }
  .yeg_activity-gallery__text {
    width: 100%;
    padding-top: 1em;
  }
  .yeg_activity-gallery__photo {
    flex-shrink: 0;
    width: calc(var(--s) * 54);
    margin-left: calc(var(--s) * 6);
  }
  .yeg_activity-gallery__item:nth-child(2n) .yeg_activity-gallery__photo {
    order: -1;
    margin-left: 0;
    margin-right: calc(var(--s) * 6);
  }
}
@media screen and (max-width: 960px) {
  .yeg_activity-gallery__item {
    flex-wrap: wrap;
  }
  .yeg_activity-gallery__text {
    width: 100%;
  }
  .yeg_activity-gallery__text ul {
    margin-bottom: 1.5em;
  }
  .yeg_activity-gallery__photo {
    width: 100%;
  }
}

.yeg_activity-intro {
  width: calc(var(--s) * 102.4);
  max-width: 86vw;
  margin: 0 auto;
  margin-bottom: calc(var(--s) * 8);
}
@media screen and (min-width: 960.02px) {
  .yeg_activity-intro p {
    text-align: center;
  }
}

body{
  background: #000;
  color: #fff;
}