@charset "UTF-8";
/*
  Made by Elly Loel - https://ellyloel.com/
  参考記事:
    - Josh W Comeau - https://courses.joshwcomeau.com/css-for-js/treasure-trove/010-global-styles/
    - Andy Bell - https://piccalil.li/blog/a-modern-css-reset/
    - Adam Argyle - https://unpkg.com/open-props@1.3.16/normalize.min.css / https://codepen.io/argyleink/pen/KKvRORE
  メモ:
    - :where()は簡単に上書きできるように詳細度を低くするために使用しています。
*/
* {
  /* すべてのデフォルトのマージンを削除 */
  margin: 0;
  /* すべてのデフォルトのパディングを削除 */
  padding: 0;
  /* line-heightをemベースでcalc()で計算。font-sizeを小さくするとline-heightは大きくなり、font-sizeを大きくするとline-heightは小さくなります。参考: https://kittygiraudel.com/2020/05/18/using-calc-to-figure-out-optimal-line-height/ */
  line-height: calc(0.25rem + 1em + 0.25rem);
}

/* より直感的なボックスサイズのモデルを使用 */
*,
::before,
::after {
  box-sizing: border-box;
}

/* fieldset, progress, meter以外のすべての要素でボーダーを削除し、背景に適切なデフォルトを設定 */
*:where(:not(fieldset, progress, meter)) {
  border-collapse: collapse;
  border-width: 0;
  border-style: solid;
  background-origin: border-box;
  background-repeat: no-repeat;
}

html {
  /* アプリケーションでパーセントによる高さを許可する  */
  block-size: 100%;
  /* テキストのサイズはfont-sizeのみで制御されるようにする */
  -webkit-text-size-adjust: none;
}

/* 減速を好まないユーザーのためにスムーズなスクロールを実現 */
body {
  /* テキストのレンダリングを改善 */
  -webkit-font-smoothing: antialiased;
  /* https://marco.org/2012/11/15/text-rendering-optimize-legibility */
  text-rendering: optimizeSpeed;
  /* アプリケーションでパーセントによる高さを許可する */
  min-block-size: 100%;
  /* https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-gutter#example_2 */
  /* scrollbar-gutter: stable both-edges; バグが修正されるまで削除: https://bugs.chromium.org/p/chromium/issues/detail?id=1318404#c2 */
}

/* 各メディア要素のデフォルトを改善 */
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
}

/* ストロークを削除し、fillの塗りつぶしカラーはフォントカラーを継承 */
:where(svg) {
  stroke: none;
  fill: currentColor;
}

/* fill属性のないSVG */
:where(svg):where(:not([fill])) {
  /* fillを取り除き、ストロークのカラーはフォントカラーを継承 */
  stroke: currentColor;
  fill: none;
  /* 丸みを帯びたストローク */
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* width属性のないSVGのサイズを設定 */
:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

/* フォーム内のタイポグラフィのスタイルを削除 */
:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

/* textareaのサイズ変更は垂直のみにし、ブラウザがサポートしている場合にのみblockにします */
:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
/* テキストのオーバーフローを回避 */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

/* article、aside、nav、section内のh1フォントサイズを修正 */
h1 {
  font-size: 2em;
}

/* リストの役割をするul、ol要素のリストスタイルを削除。デフォルトのスタイルが削除されることを示唆しています */
:where(ul, ol) {
  list-style: none;
}

/* クラスを持たないアンカータグに、より読みやすい下線スタイルを設定。アンカータグに設定することもできますが、コンフリクトを引き起こす可能性があります */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* インタラクティブな要素は適切なカーソルを設定して操作できることを明確にする */
:where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  touch-action: manipulation;
  text-decoration: none;
}

:where(input[type=file]) {
  cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button {
  cursor: pointer;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

/* フォーカスのアウトラインをアニメーション化 */
:where(:not(:active)):focus-visible {
  outline-offset: 5px;
}

/* ユーザーがボタンのテキストを選択できないようにする */
:where(input[type=file])::-webkit-file-upload-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}
:where(button, button[type], input[type=button], input[type=submit], input[type=reset]),
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}

/* 無効化されたボタンには無効化されたカーソルを表示 */
:where(button, button[type], input[type=button], input[type=submit], input[type=reset])[disabled] {
  cursor: not-allowed;
}

:where(iframe[src*=youtube]) {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.is-pc {
  display: block;
}

.is-sp {
  display: none;
}

[data-anim-elm] {
  opacity: 0;
}

[v-cloak] {
  display: none;
}

table {
  width: 100%;
  border-collapse: collapse;
}

button {
  outline: none;
  background: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", Helvetica, Arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", 游ゴシック, "Yu Gothic ", YuGothic, Osaka, メイリオ, Meiryo, "MS Pゴシック", "MS P Gothic", sans-serif;
  background: #fff;
}

.archive_block {
  min-width: 317px;
  margin-right: 30px;
  background-color: #fff;
  border-radius: 12px;
}
.archive_block__inner {
  padding: 30px;
}
.archive_block__head {
  display: flex;
  margin-bottom: 20px;
}
.archive_block__head .archive_head_main {
  color: #ef858c;
  text-align: justify;
  font-family: Zen Maru Gothic;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-right: 12px;
}
.archive_block__head .archive_head_sub {
  color: #f2d1d3;
  text-align: justify;
  font-family: Manrope;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
}
.archive_block__selectbox {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 100%;
}
.archive_block__selectbox::after {
  position: absolute;
  content: "";
  pointer-events: none;
}
.archive_block__selectbox::after {
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translate(50%, -50%) rotate(45deg);
          transform: translate(50%, -50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #c7c7c7;
  border-right: 2px solid #c7c7c7;
  content: "";
}
.archive_block__selectbox select {
  -webkit-appearance: none;
          appearance: none;
  width: 100%;
  padding: 13px 20px 13px 20px;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  box-sizing: border-box;
  cursor: pointer;
  color: #989898;
  text-align: justify;
  font-family: Zen Maru Gothic;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.85px;
  background-color: #fff;
}

.breadcrumbs_block {
  padding: 0 20px;
}
.breadcrumbs_block__inner {
  margin: 0 auto;
  max-width: 1285px;
  width: 100%;
}
.breadcrumbs_block ul {
  display: flex;
  flex-wrap: wrap;
}
.breadcrumbs_block ul li {
  position: relative;
}
.breadcrumbs_block ul li:not(:last-child) {
  padding-right: 33px;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.breadcrumbs_block ul li:not(:last-child)::before {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: ">";
  color: #666;
}
.breadcrumbs_block ul li:last-child a {
  pointer-events: none;
}
.breadcrumbs_block ul li a {
  color: #666;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.footer_block {
  padding: 100px 20px 60px;
  background: #ef858c;
}
.footer_block__inner {
  width: min(100%, 1320px);
  margin-inline: auto;
}
.footer_block__contents {
  display: flex;
}
.footer_block__copyright {
  color: #fff;
  text-align: justify;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.7px;
  margin-top: 23px;
  text-align: right;
}
.footer_block .footer_head__logo {
  width: min(100%, 234px);
}
.footer_block .footer_head__logo img {
  width: 100%;
}
.footer_block .footer_head__title {
  color: #fff;
  text-align: justify;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.1px;
  margin-top: 44px;
  line-height: 1.8;
}
.footer_block .footer_head__company {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.85px;
}
.footer_block .footer_head__company a {
  color: #fff;
}
.footer_block .footer_head__address {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.7px;
}
.footer_block .footer_body {
  display: flex;
  width: min(100%, 830px);
  margin-left: auto;
  align-items: flex-start;
  justify-content: space-between;
}
.footer_block .footer_body__lists {
  display: flex;
  justify-content: space-between;
  width: min(100%, 530px);
}
.footer_block .footer_body__item {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.7px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer_block .footer_body__item:nth-of-type(1) {
  font-weight: 700;
}
.footer_block .footer_body__item:nth-of-type(1) + .footer_body__item {
  margin-top: 30px;
}
.footer_block .footer_body__item + .footer_body__item {
  margin-top: 10px;
}
.footer_block .footer_body__item + .footer_body__item::before {
  content: "";
  display: block;
  width: 8px;
  height: 1px;
  background: #fff;
}
.footer_block .footer_body__item a {
  color: #fff;
}
.footer_block .footer_body__btn {
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-align: center;
  background: #fff;
  border-radius: 100px;
  width: 208px;
}
.footer_block .footer_body__btn a {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  color: #ef858c;
  padding: 12px 10px 13px;
}
.footer_block .footer_body__btn a::after {
  content: "";
  display: block;
  background: url("/assets/img/common/ico_window_pink.svg") center center no-repeat;
  width: 18px;
  height: 18px;
  background-size: contain;
}

.to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 100;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.to-top.is-active {
  opacity: 1;
  visibility: visible;
}

.head_block {
  padding: 61px 0 65px;
  position: relative;
  margin-bottom: 62px;
}
.head_block__title {
  position: absolute;
  top: 43%;
  left: 13%;
}
.head_block__title .head_title_main {
  color: #ef858c;
  text-align: justify;
  font-family: Poppins;
  font-weight: 600;
  letter-spacing: -2px;
  font-size: 5.787037037vw;
  margin-bottom: 20px;
}
.head_block__title .head_title_sub {
  color: #ef858c;
  text-align: justify;
  font-family: Zen Maru Gothic;
  font-size: 2.3148148148vw;
  font-weight: 700;
  letter-spacing: 2px;
}
.head_block__image img {
  width: 100%;
  display: block;
  vertical-align: bottom;
}

.header_block {
  position: -webkit-sticky;
  position: sticky;
  background: #fff;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 56px 18px 40px;
  transition: padding 0.3s, background 0.3s;
}
.header_block__contents {
  display: flex;
  align-items: center;
  margin-top: 6px;
  gap: 15px;
  width: 100%;
  justify-content: flex-end;
}
.header_block__logo {
  width: min(15vw, 136px);
  transition: width 0.3s;
}
.header_block__list {
  display: flex;
  align-items: center;
}
.header_block__item {
  font-family: "Noto Sans JP";
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1.36px;
}
.header_block__item.is-current a {
  background: #fd737c;
  color: #fff;
  border-radius: 10px;
}
.header_block__item a {
  padding: 20px 34px;
  color: #fd737c;
  -webkit-transform: color 0.3s;
          transform: color 0.3s;
}
.header_block__btn {
  cursor: pointer;
  width: 28px;
  height: 20px;
}
.header_block__btn span {
  width: 28px;
  height: 1px;
  background: #ef858c;
  display: block;
  transition: opacity 0.4s ease-in-out, margin 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out, margin 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out, margin 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}
.header_block__btn span:nth-child(2) {
  margin: 9px 0;
}
.header_block__btn.is-active span:nth-child(1) {
  -webkit-transform: rotate(390deg);
          transform: rotate(390deg);
  margin-top: 10px;
}
.header_block__btn.is-active span:nth-child(2) {
  opacity: 0;
}
.header_block__btn.is-active span:nth-child(3) {
  -webkit-transform: rotate(-390deg);
          transform: rotate(-390deg);
  margin-top: -20px;
}
.header_block .header_block_search {
  position: relative;
  width: 50px;
  transition: width 0.4s ease-in-out;
}
.header_block .header_block_search.is-active {
  width: min(100%, 370px);
}
.header_block .header_block_search.is-active input {
  border: 1px solid #ef858c;
}
.header_block .header_block_search input {
  width: 100%;
  padding: 12px 22px 13px;
  border-radius: 216px;
  background: #fff;
  outline: none;
}
.header_block .header_block_search input::-webkit-input-placeholder {
  color: #ddd;
}
.header_block .header_block_search input::placeholder {
  color: #ddd;
}
.header_block .header_block_search input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.header_block .header_block_search__icon {
  width: 18px;
  height: 18px;
  stroke: #fd737c;
  cursor: pointer;
  fill: #fd737c;
  margin-left: auto;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.hamburger_menu {
  position: fixed;
  background: #fff;
  z-index: 100;
  width: 100%;
  padding: calc(42 / 393 * 100vw) 10px calc(60 / 393 * 100vw);
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.hamburger_menu.is-active {
  opacity: 1;
  visibility: visible;
}
.hamburger_menu__logo {
  width: calc(214 / 393 * 100vw);
  display: block;
}
.hamburger_menu__logo img {
  width: 100%;
}
.hamburger_menu__item {
  font-size: calc(16 / 393 * 100vw);
  font-weight: 700;
  letter-spacing: 0.8px;
}
.hamburger_menu__item.is-external a::after {
  content: "";
  display: inline-block;
  width: calc(14 / 393 * 100vw);
  aspect-ratio: 1;
  margin-left: 10px;
  background: url("/assets/img/common/icon_link.svg") no-repeat center center/contain;
}
.hamburger_menu__item a {
  border-radius: 8px;
  padding: calc(18 / 393 * 100vw) calc(20 / 393 * 100vw);
  display: block;
  color: #fd737c;
  transition: background 0.2s, color 0.2s;
}
.hamburger_menu__item:hover a {
  background: #fd737c;
  color: #fff;
}
.hamburger_menu .hamburger_menu_search {
  position: relative;
  width: calc(333 / 393 * 100vw);
  margin: calc(20 / 393 * 100vw) auto 0;
}
.hamburger_menu .hamburger_menu_search input {
  background: transparent;
  padding: calc(10 / 393 * 100vw) calc(16 / 393 * 100vw) calc(11 / 393 * 100vw) calc(50 / 393 * 100vw);
  width: 100%;
  border: 1px solid #ef858c;
  border-radius: 100px;
  outline: none;
}
.hamburger_menu .hamburger_menu_search input::-webkit-input-placeholder {
  color: #ddd;
}
.hamburger_menu .hamburger_menu_search input::placeholder {
  color: #ddd;
}
.hamburger_menu .hamburger_menu_search__icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: calc(20 / 393 * 100vw);
  width: calc(18 / 393 * 100vw);
  height: calc(18 / 393 * 100vw);
  stroke: #fd737c;
  cursor: pointer;
  fill: #fd737c;
}

.c-pagenavi_block {
  width: 100%;
  text-align: center;
}
.c-pagenavi_block .wp-pagenavi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.c-pagenavi_block .wp-pagenavi .nextpostslink,
.c-pagenavi_block .wp-pagenavi .previouspostslink {
  border: none;
  color: #ef858c;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.54px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.c-pagenavi_block .wp-pagenavi .nextpostslink::before,
.c-pagenavi_block .wp-pagenavi .previouspostslink::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #ef858c;
  width: 9px;
  height: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-pagenavi_block .wp-pagenavi .nextpostslink {
  right: -70px;
}
.c-pagenavi_block .wp-pagenavi .nextpostslink::before {
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
          clip-path: polygon(0 0, 0 100%, 100% 50%);
  right: -20px;
}
.c-pagenavi_block .previouspostslink {
  left: -70px;
}
.c-pagenavi_block .previouspostslink::before {
  -webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
          clip-path: polygon(100% 0, 0 50%, 100% 100%);
  left: -20px;
}
.c-pagenavi_block .page {
  color: #333;
  -webkit-font-feature-settings: "pcap" on;
          font-feature-settings: "pcap" on;
  font-size: 18px;
  font-weight: 500;
  padding: 4px 11px;
  margin: 0 3px;
  min-width: 34px;
  display: block;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.c-pagenavi_block .current {
  color: #fff;
  -webkit-font-feature-settings: "pcap" on;
          font-feature-settings: "pcap" on;
  font-size: 18px;
  font-weight: 500;
  padding: 4px 11px;
  margin: 0 3px;
  min-width: 34px;
  background-color: #ef858c;
  border-radius: 50%;
}
.c-pagenavi_block .extend {
  color: #333;
  -webkit-font-feature-settings: "pcap" on;
          font-feature-settings: "pcap" on;
  font-size: 18px;
  font-weight: 500;
  line-height: 190%;
  letter-spacing: 0.9px;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.article_pager {
  display: flex;
  justify-content: space-between;
}
.article_pager a {
  display: flex;
  align-items: center;
  color: #EF858C;
  font-size: 17px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 2.72px;
}
.article_pager a:hover {
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.article_pager__prev a::after {
  content: "";
  width: 62px;
  height: 46px;
  margin: 0 0 0 20px;
  background: url(/assets/img/common/icon_pager_arrow_01_prev.svg) left top/cover no-repeat;
}
.article_pager__next a::before {
  content: "";
  width: 62px;
  height: 46px;
  margin: 0 20px 0 0;
  background: url(/assets/img/common/icon_pager_arrow_01_next.svg) left top/cover no-repeat;
}

.subpage_bg {
  padding: 0px 0 130px;
  background: #fef9f1;
}

.subpage_wrapper {
  width: 90%;
  max-width: 1285px;
  margin: 0 auto;
}

.subpage_mainvisual {
  padding: 88px 0 0;
  background: url(/assets/img/seminar/bg_subpage.svg) center top/100% auto no-repeat;
}
.subpage_mainvisual__title {
  display: block;
  margin: 0 0 16px;
  color: #ef858c;
  font-family: "Poppins";
  font-size: 100px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -2px;
}
.subpage_mainvisual__subtitle {
  color: #ef858c;
  font-family: "Zen Maru Gothic";
  font-size: 40px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 2px;
}
.subpage_mainvisual .breadcrumb {
  display: flex;
  margin: 80px 0 30px;
  color: #666;
  font-size: 15px;
  letter-spacing: 0.3px;
}
.subpage_mainvisual .breadcrumb li {
  white-space: nowrap;
}
.subpage_mainvisual .breadcrumb li:last-of-type {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.subpage_mainvisual .breadcrumb li + li::before {
  content: ">";
  margin: 0 12px 0 14px;
}
.subpage_mainvisual .breadcrumb li a {
  color: #666;
}

.subpage_pager {
  display: flex;
  justify-content: center;
}
.subpage_pager__prev, .subpage_pager__next {
  display: flex;
  align-items: center;
  position: relative;
  color: #EF858C;
  font-size: 14px;
  font-weight: 700;
}
.subpage_pager__prev:hover, .subpage_pager__next:hover {
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.subpage_pager__prev::before {
  content: "";
  display: block;
  left: -24px;
  top: 50%;
  border: solid transparent;
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(239, 133, 140, 0);
  border-right-color: #EF858C;
  border-width: 7px;
  margin-top: -7px;
}
.subpage_pager__next::after {
  right: -24px;
  top: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(239, 133, 140, 0);
  border-left-color: #EF858C;
  border-width: 7px;
  margin-top: -7px;
}
.subpage_pager__number {
  display: flex;
  justify-content: center;
  margin: 0 58px;
}
.subpage_pager__number li {
  margin: 0 6px;
  color: #4B6185;
}
.subpage_pager__number li a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 20px;
  height: 34px;
  color: #4B6185;
}
.subpage_pager__number li a:hover {
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.subpage_pager__number li.current a {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 17px;
  color: #FFF;
  background: #EF858C;
}
.subpage_pager__number li span {
  display: flex;
  align-items: flex-end;
  height: 100%;
  padding: 0 0 4px;
}

.seminar_tag__list {
  display: flex;
  flex-wrap: wrap;
}
.seminar_tag__list li {
  display: inline-block;
  margin: 0 8px 10px 0;
}
.seminar_tag__list li a {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 9999px;
  background: #FFE8E9;
  color: #EF858C;
  font-size: 12px;
  font-weight: 700;
}
.seminar_tag__list li a::before {
  content: "#";
  margin: 0 4px 0 0;
}
.seminar_tag__list li a:hover {
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ▼ 2025年8月 追加 */
.seminar_schedule__item-inner {
    display: flex;
    align-items: center;
    gap: 0.5em; /* 必要に応じて調整 */
}

.seminar_schedule__link {
    margin-left: auto;
    white-space: nowrap;
}
/* ▲ 2025年8月 */

.faq_page {
  background-color: #fef9f1;
}
.faq_page .faq_block__inner {
  max-width: 1336px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 25px;
}
.faq_page .faq_block__contents {
  padding-top: 30px;
  padding-bottom: 130px;
}
.faq_page .faq_block__wrap:not(:first-child) {
  margin-top: 50px;
}
.faq_page .faq_block__title {
  padding: 30px 40px;
  border-radius: 10px;
  background: #fff;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
}
.faq_page .faq_block__title.is-open {
  background: #fff1f2;
  border-radius: 10px 10px 0px 0px;
}
.faq_page .faq_block__title::before, .faq_page .faq_block__title::after {
  position: absolute;
  content: "";
  width: 27px;
  height: 1px;
  background-color: #666666;
  transition: 0.35s;
}
.faq_page .faq_block__title::before {
  right: 46px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}
.faq_page .faq_block__title::after {
  right: 46px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.faq_page .faq_block .faq_block__title.is-open::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.faq_page .faq_block__column {
  display: flex;
  align-items: center;
  gap: 18px;
}
.faq_page .faq_block__q {
  color: #ef858c;
  font-family: Inter;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.01em;
}
.faq_page .faq_block__question {
  color: #333;
  font-family: Noto Sans JP;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.01em;
}
.faq_page .faq_block__content {
  padding: 30px 40px 45px;
  background-color: #fff;
  border-radius: 0px 0px 10px 10px;
  display: none;
  transition: 0.3s;
}
.faq_page .faq_block__content p {
  color: #333;
  font-family: Noto Sans JP;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.01em;
}
.faq_page .faq_block__content p:not(:first-child) {
  margin-top: 20px;
}
.faq_page .faq_block__content p span {
  font-weight: 500;
  text-decoration-line: underline;
}

.index_page {
  overflow: hidden;
}
.index_page .mainvisual {
  position: relative;
  z-index: 1;
  padding-top: calc(180 / 1728 * 100vw);
}
.index_page .mainvisual::before {
  content: "";
  display: block;
  position: absolute;
  width: calc(1200 / 1728 * 100vw);
  height: calc(788 /1728 * 100vw);
  top: 0;
  right: 0;
  border-radius: 0px 0px 0px 30px;
  background: url("/assets/img/top/bg_mainvisual.jpg") no-repeat;
  background-size: cover;
  z-index: -1;
}
.index_page .mainvisual__inner {
  display: flex;
  align-items: flex-end;
  width: calc(1560 / 1728 * 100vw);
  margin-left: auto;
}
.index_page .mainvisual__title {
  color: #e86c74;
  font-family: "Noto Sans JP";
  font-size: calc(58 / 1728 * 100vw);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 9.414px;
}
.index_page .mainvisual__title span {
  font-family: "Poppins";
  font-size: calc(77 / 1728 * 100vw);
  font-weight: 600;
  letter-spacing: 4.663px;
}
.index_page .mainvisual__lead {
  color: #686868;
  font-family: "Noto Sans JP";
  font-size: calc(15 / 1728 * 100vw);
  font-weight: 700;
  line-height: 2.2;
  letter-spacing: 0.3px;
  margin-top: calc(30 / 1728 * 100vw);
}
.index_page .mainvisual__note {
  color: #777;
  font-size: calc(12 / 1728 * 100vw);
  font-weight: 350;
  line-height: 1.6;
  margin-top: calc(26 / 1728 * 100vw);
}
.index_page .mainvisual__note + .mainvisual__note {
  margin-top: 0;
}
.index_page .mainvisual__img {
  width: calc(880 / 1728 * 100vw);
  margin-bottom: calc(70 / 1728 * 100vw);
  margin-right: calc(70 / 1728 * 100vw);
  position: absolute;
  bottom: 0;
  right: 0;
}
.index_page .mainvisual .mainvisual_banner {
  margin-top: calc(35 / 1728 * 100vw);
  display: flex;
  align-items: center;
  gap: calc(18 / 1728 * 100vw);
  width: calc(460 / 1728 * 100vw);
  outline: 1px solid #969bc5;
  outline-offset: -8px;
  box-shadow: 0px 4px 14px 0px rgba(119, 101, 79, 0.07);
  padding: calc(24 / 1728 * 100vw);
  background: #fff;
}
.index_page .mainvisual .mainvisual_banner__img {
  width: calc(65 / 1728 * 100vw);
}
.index_page .mainvisual .mainvisual_banner__text {
  color: #041e60;
  font-size: calc(15 / 1728 * 100vw);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 2.011px;
}
.index_page .mainvisual .mainvisual_award {
  margin-top: calc(90 / 1728 * 100vw);
  display: flex;
  align-items: center;
  gap: calc(30 / 1728 * 100vw);
}
.index_page .mainvisual .mainvisual_award__item {
  padding-inline: calc(70 / 1728 * 100vw);
  position: relative;
}
.index_page .mainvisual .mainvisual_award__item::before, .index_page .mainvisual .mainvisual_award__item::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: calc(55 / 1728 * 100vw);
  height: calc(97 / 1728 * 100vw);
  background: url("/assets/img/top/pic_mv_award.svg") no-repeat;
  background-size: cover;
}
.index_page .mainvisual .mainvisual_award__item::before {
  left: 0;
}
.index_page .mainvisual .mainvisual_award__item::after {
  right: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.index_page .mainvisual .mainvisual_award__label {
  color: #bba556;
  text-align: center;
  font-family: "Poppins";
  font-size: calc(14 / 1728 * 100vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.848px;
}
.index_page .mainvisual .mainvisual_award__label--small {
  font-size: calc(12 / 1728 * 100vw);
}
.index_page .mainvisual .mainvisual_award__text {
  color: #bba556;
  font-family: "Poppins";
  font-size: calc(55 / 1728 * 100vw);
  font-weight: 600;
  letter-spacing: -3.351px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: calc(10 / 1728 * 100vw);
}
.index_page .mainvisual .mainvisual_award__text span {
  font-size: calc(14 / 1728 * 100vw);
  display: block;
  margin-bottom: calc(10 / 1728 * 100vw);
  line-height: 1.3;
}
.index_page .recommend {
  padding-inline: 20px;
  background: url("/assets/img/top/bg_recommend.svg") no-repeat;
  background-size: cover;
}
.index_page .recommend__inner {
  width: min(100%, 822px);
  margin: 160px auto 100px; /* 2025年8月　レイアウト調整 */
  border-radius: 20px;
  background: #fbedee;
  padding: 45px 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
}
.index_page .recommend__inner::before, .index_page .recommend__inner::after {
  width: 106px;
  height: 170px;
  display: block;
  margin-bottom: -50px;
}
.index_page .recommend__inner::before {
  content: "";
  background: url("/assets/img/top/pic_recommend_icon01.svg") no-repeat;
  background-size: cover;
}
.index_page .recommend__inner::after {
  content: "";
  background: url("/assets/img/top/pic_recommend_icon02.svg") no-repeat;
  background-size: cover;
}
.index_page .recommend__title {
  color: #ef858c;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 3.45px;
}
.index_page .recommend__list {
  margin: 30px auto 0;
  width: min(100%, 450px);
}
.index_page .recommend__item {
  color: #666;
  font-family: "Zen Maru Gothic";
  font-size: 15px;
  font-weight: 700;
  line-height: 2.3;
  letter-spacing: 0.9px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}
.index_page .recommend__item::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #fcd1d1;
  border-radius: 100%;
}
.index_page .seminar__inner {
  width: min(100%, 1320px);
  margin: 120px auto 80px;
  padding: 0 20px;
}
.index_page .seminar__head {
  display: flex;
  align-items: center;
  gap: 94px;
}
.index_page .seminar__en_title {
  color: #ef858c;
  font-family: "Poppins";
  font-size: 67px;
  font-weight: 600;
  letter-spacing: -1.34px;
}
.index_page .seminar__jp_title {
  color: #ef858c;
  font-family: "Zen Maru Gothic";
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 2.72px;
}
.index_page .seminar__lead {
  color: #767676;
  font-family: "Zen Maru Gothic";
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 1.08px;
}
.index_page .seminar__contents {
  margin-top: 60px;
  display: grid;
  gap: 60px;
  grid-template-columns: repeat(2, 1fr);
}
.index_page .seminar__btn {
  font-family: "Zen Maru Gothic";
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 2.72px;
  text-align: center;
  margin-top: 80px;
}
.index_page .seminar__btn a {
  gap: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ef858c;
}
.index_page .seminar__btn a::before {
  content: "";
  background: url("/assets/img/common/ico_arrow01_pink.svg") center center no-repeat;
  background-size: contain;
  width: 62px;
  height: 46px;
  display: block;
}
.index_page .seminar .seminar_item {
  display: flex;
  flex-direction: column;
}
.index_page .seminar .seminar_item__img {
  height: 290px;
  overflow: hidden;
  border-radius: 20px;
}
.index_page .seminar .seminar_item__img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  width: 100%;
}
.index_page .seminar .seminar_item__title {
  color: #4b6185;
  font-size: 20px;
  font-weight: 700;
  margin-top: 25px;
}
.index_page .seminar .seminar_item__lead {
  color: #878787;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 20px;
}
.index_page .seminar .seminar_category {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
}
.index_page .seminar .seminar_category__item {
  font-size: 11px;
  font-weight: 400;
}
.index_page .seminar .seminar_category__item a {
  border-radius: 100px;
  background: #ffe8e9;
  color: #f17078;
  padding: 7px 11px 6px;
}
.index_page .seminar .seminar_schedule {
  display: grid;
  align-items: flex-start;
  grid-template-columns: repeat(2, 1fr);
  gap: 52px;
  margin-top: auto;
  position: relative;
}
.index_page .seminar .seminar_schedule::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  background: #e5e5e5;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
}
.index_page .seminar .seminar_schedule__content {
  width: 100%;
}
.index_page .seminar .seminar_schedule__label {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
  border-radius: 4px;
  background: #ef858c;
  padding: 4px 20px;
  text-align: center;
}
.index_page .seminar .seminar_schedule__list {
  margin-top: 15px;
}
.index_page .seminar .seminar_schedule__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.index_page .seminar .seminar_schedule__item + .seminar_schedule__item {
  margin-top: 10px;
}
.index_page .seminar .seminar_schedule__item--disabled .seminar_schedule__time {
  color: #b9b9b9;
}
.index_page .seminar .seminar_schedule__item--disabled .seminar_schedule__link a {
  color: #b9b9b9;
}
.index_page .seminar .seminar_schedule__item--disabled .seminar_schedule__link::after {
  border-left: 7px solid #b9b9b9;
}
.index_page .seminar .seminar_schedule__date {
  flex: 1 1 40px;
  color: #4b6185;
  font-size: 15px;
  font-weight: 700;
}
.index_page .seminar .seminar_schedule__time {
  flex: 1 1 115px;
  color: #4b6185;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}
.index_page .seminar .seminar_schedule__time span {
  font-size: 12px;
  font-weight: 500;
}
.index_page .seminar .seminar_schedule__link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.43px;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 8px;
  margin-right: -6px;
}
.index_page .seminar .seminar_schedule__link::after {
  content: "";
  display: block;
  width: 4px;
  height: 7px;
  border: 7px solid transparent;
  border-left: 7px solid #ef858c;
}
.index_page .seminar .seminar_schedule__link a {
  color: #ef858c;
}
.index_page .about {
  padding: 130px 20px 50px; /* 2025年8月　レイアウト調整：130px 20px 500px;→130px 20px 50px;   */
  background: #fef9f1;
  position: relative;
}
.index_page .about::before {
  content: "";
  display: block;
  position: absolute;
  width: 234px;
  height: 322px;
  background: url("/assets/img/top/bg_about_decoration01.svg") no-repeat;
  background-size: contain;
  top: -120px;
  right: -25px;
}
.index_page .about__inner {
  width: min(100%, 1315px);
  margin-inline: auto;
}
.index_page .about__head {
  display: flex;
  gap: 95px;
}
.index_page .about__en_title {
  color: #ef858c;
  font-family: "Poppins";
  font-size: 67px;
  font-weight: 600;
  letter-spacing: -1.34px;
}
.index_page .about__jp_title {
  color: #ef858c;
  font-family: "Zen Maru Gothic";
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 2.72px;
}
.index_page .about__lead {
  color: #878787;
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.96px;
  width: min(100%, 862px);
}
.index_page .about__contents {
  margin-top: 122px;
  display: flex;
  gap: 55px;
}
.index_page .about .about_item {
  width: min(100%, 386px);
  position: relative;
}
.index_page .about .about_item__label {
  color: #ef858c;
  font-family: "Manrope";
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 3.616px;
  text-transform: capitalize;
  text-align: center;
  position: absolute;
  right: 0;
  top: -70px;
}
.index_page .about .about_item__label span {
  font-size: 70px;
  letter-spacing: 0;
}
.index_page .about .about_item__img img {
  width: 100%;
}
.index_page .about .about_item__title {
  color: #ef858c;
  font-family: "Zen Maru Gothic";
  font-size: 21px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 2.52px;
  margin-top: 28px;
  text-align: center;
}
.index_page .about .about_item__text {
  color: #666;
  text-align: justify;
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  margin-top: 22px;
}
.index_page .teacher {
  margin-top: 0; /* 2025年8月　レイアウト調整 */
  position: relative;
}
.index_page .teacher__inner {
  width: min(100%, 1240px);
  padding-inline: 20px;
  display: flex;
  align-items: flex-start;
  margin-inline: auto;
}
.index_page .teacher__img {
  width: min(100%, 516px);
  margin-right: -200px;
  margin-top: 0;    /* 2025年8月　レイアウト調整： -100px→0　*/
  z-index: 1;
  position: relative
}
.index_page .teacher__img::before {
  content: "";
  background: url("/assets/img/top/bg_teacher_decoration02.svg") no-repeat;
  background-size: contain;
  display: block;
  width: 232px;
  height: 299px;
  position: absolute;
  bottom: -100px;
  left: -100px;
}
.index_page .teacher .teacher_main {
  position: relative;
  width: min(100%, 911px);
  border-radius: 20px;
  background: #fff;
  padding: 95px 123px 60px 54px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}
.index_page .teacher .teacher_main::before {
  content: "";
  background: url("/assets/img/top/bg_teacher_decoration01.svg") no-repeat;
  background-size: contain;
  display: block;
  width: 174px;
  height: 264px;
  position: absolute;
  top: -140px;
  right: -100px;
}
.index_page .teacher .teacher_main__inner {
  width: min(100%, 663px);
  padding-left: 200px;
  margin-left: auto;
}
.index_page .teacher .teacher_main__en_title {
  color: #ef858c;
  font-family: "Poppins";
  font-size: 67px;
  font-weight: 600;
  letter-spacing: -1.34px;
}
.index_page .teacher .teacher_main__jp_title {
  color: #ef858c;
  font-family: "Zen Maru Gothic";
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 2.72px;
  margin-top: 6px;
}
.index_page .teacher .teacher_main__lead {
  color: #666;
  text-align: justify;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.2;
  margin-top: 30px;
  letter-spacing: 0.32px;
}
.index_page .teacher .teacher_foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 38px;
}
.index_page .teacher .teacher_foot__btn {
  font-family: "Zen Maru Gothic";
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 2.72px;
}
.index_page .teacher .teacher_foot__btn a {
  gap: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ef858c;
}
.index_page .teacher .teacher_foot__btn a::before {
  content: "";
  background: url("/assets/img/common/ico_arrow01_pink.svg") center center no-repeat;
  background-size: contain;
  width: 62px;
  height: 46px;
  display: block;
}
.index_page .teacher .teacher_foot__name {
  color: #666;
  font-size: 15px;
  font-weight: 500;
}
.index_page .teacher .teacher_foot__name span {
  font-size: 24px;
  margin-left: 15px;
}
.index_page .voice__inner {
  width: min(100%, 1320px);
  padding-inline: 20px;
  margin: 180px auto 0;
}
.index_page .voice__head {
  display: flex;
  align-items: center;
  gap: 94px;
}
.index_page .voice__en_title {
  color: #ef858c;
  font-family: "Poppins";
  font-size: 67px;
  font-weight: 600;
  letter-spacing: -1.34px;
}
.index_page .voice__jp_title {
  color: #ef858c;
  font-family: "Zen Maru Gothic";
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 2.72px;
  margin-top: 6px;
}
.index_page .voice__lead {
  color: #767676;
  font-family: "Zen Maru Gothic";
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 1.08px;
}
.index_page .voice__btn {
  font-family: "Zen Maru Gothic";
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 2.72px;
  margin-left: auto;
}
.index_page .voice__btn a {
  gap: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ef858c;
}
.index_page .voice__btn a::before {
  content: "";
  background: url("/assets/img/common/ico_arrow01_pink.svg") center center no-repeat;
  background-size: contain;
  width: 62px;
  height: 46px;
  display: block;
}
.index_page .voice__contents {
  margin-top: 54px;
  display: grid;
  gap: 50px 60px;
  grid-template-columns: repeat(2, 1fr);
}
.index_page .voice .voice_item {
  display: flex;
  align-items: center;
  padding: 30px 50px 22px 30px;
  gap: 30px;
  border-radius: 30px;
  background: #faebeb;
  box-shadow: 0px 4px 100px 0px rgba(71, 37, 37, 0.05);
}
.index_page .voice .voice_item__img {
  min-width: 100px;
  max-width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
.index_page .voice .voice_item__text {
  color: #666;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.56px;
}
.index_page .voice .voice_item__name {
  color: #ef858c;
  font-family: "Zen Maru Gothic";
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-top: 10px;
}
.index_page .thanks {
  margin: 190px 0 120px;
}
.index_page .thanks__en_title {
  color: #ef858c;
  text-align: center;
  font-family: "Poppins";
  font-size: 67px;
  font-weight: 600;
  letter-spacing: -1.34px;
}
.index_page .thanks__jp_title {
  color: #ef858c;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 17px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 2.72px;
  margin-top: 15px;
}
.index_page .thanks__lead {
  color: #767676;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 2.4px;
  margin-top: 30px;
}
.index_page .thanks__contents {
  margin-top: 60px;
}
.index_page .thanks__item {
  display: flex;
  align-items: center;
}
.index_page .thanks__item img {
  width: 100vw;
  -webkit-animation: loop 60s linear infinite;
          animation: loop 60s linear infinite;
}
.index_page .thanks__item + .thanks__item img {
  margin-top: 20px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-animation: loopReverse 60s linear infinite;
          animation: loopReverse 60s linear infinite;
}
@-webkit-keyframes loop {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes loop {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes loopReverse {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes loopReverse {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.index_page .donations {
  background: #f5f4ec;
  padding: 60px 20px 80px;
}
.index_page .donations__inner {
  width: min(100%, 845px);
  margin-inline: auto;
}
.index_page .donations__title {
  color: #ef858c;
  font-family: "Poppins";
  font-size: 67px;
  font-weight: 600;
  letter-spacing: -1.34px;
  text-align: center;
}
.index_page .donations__lead {
  color: #ef858c;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.9px;
  margin-top: 18px;
}
.index_page .donations__contents {
  margin-top: 60px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.index_page .donations .donations_item {
  width: min(100%, 420px);
}
.index_page .donations .donations_item + .donations_item {
  width: min(100%, 325px);
}
.index_page .donations .donations_item__text {
  color: #909090;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.7px;
  margin-top: 20px;
}
.index_page .news {
  margin: 100px auto 130px;
  padding-inline: 20px;
  width: min(100%, 1320px);
}
.index_page .news__inner {
  width: min(100%, 1050px);
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.index_page .news .news_head__en_title {
  color: #ef858c;
  font-family: "Poppins";
  font-size: 67px;
  font-weight: 600;
  letter-spacing: -1.34px;
}
.index_page .news .news_head__jp_title {
  color: #ef858c;
  font-family: "Zen Maru Gothic";
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 2.72px;
  margin-top: 8px;
}
.index_page .news .news_head__btn {
  margin-top: 52px;
  font-family: "Zen Maru Gothic";
}
.index_page .news .news_head__btn a {
  gap: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ef858c;
  font-weight: 700;
}
.index_page .news .news_head__btn a::before {
  content: "";
  background: url("/assets/img/common/ico_arrow01_pink.svg") center center no-repeat;
  background-size: contain;
  width: 62px;
  height: 46px;
  display: block;
}
.index_page .news .news_list__item {
  display: flex;
  gap: 20px;
}
.index_page .news .news_list__item + .news_list__item {
  margin-top: 15px;
}
.index_page .news .news_list__date {
  color: #ef858c;
  font-family: "Poppins";
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.7px;
  line-height: 2.2;
  min-width: 115px;
}
.index_page .news .news_list__title {
  color: #666;
  font-family: "Zen Kaku Gothic New";
  font-size: 15px;
  font-weight: 500;
  line-height: 2.2;
}

.news_detail_page {
  background-color: #fef9f1;
}
.news_detail_page .archive_block__selectbox form {
  width: 100%;
}
.news_detail_page .news_detail_block {
  padding: 35px 20px 135px;
}
.news_detail_page .news_detail_block__inner {
  margin: 0 auto;
  max-width: 1285px;
  width: 100%;
  display: flex;
  align-items: flex-start;
}
.news_detail_page .news_content_block {
  width: 100%;
}
.news_detail_page .news_content_block__detail {
  background-color: #fff;
  border-radius: 16px;
  margin-bottom: 45px;
}
.news_detail_page .news_content_block__detail .news_content_block_detail_inner {
  padding: 60px;
}
.news_detail_page .news_content_block__detail .news_content_block_detail_head {
  padding-bottom: 34px;
  margin-bottom: 30px;
  position: relative;
}
.news_detail_page .news_content_block__detail .news_content_block_detail_head::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #e9e9e9;
  display: block;
  position: absolute;
  bottom: 0;
}
.news_detail_page .news_content_block__detail .news_content_block_detail_head__time {
  color: #ef858c;
  font-family: Zen Maru Gothic;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
  margin-bottom: 12px;
}
.news_detail_page .news_content_block__detail .news_content_block_detail_head__title h2 {
  color: #666;
  font-size: 24px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 1.2px;
}
.news_detail_page .news_content_block__detail .news_content_block_detail_text {
  color: #333;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.75px;
  /* img */
  /* clearfix */
}
.news_detail_page .news_content_block__detail .news_content_block_detail_text a {
  text-decoration: underline;
  transition-property: all;
  transition: 0.3s linear;
}
.news_detail_page .news_content_block__detail .news_content_block_detail_text a:hover {
  text-decoration: none;
}
.news_detail_page .news_content_block__detail .news_content_block_detail_text img {
  max-width: 100% !important;
  height: auto !important;
}
.news_detail_page .news_content_block__detail .news_content_block_detail_text p {
  display: block;
  margin: 0.5em 0;
}
.news_detail_page .news_content_block__detail .news_content_block_detail_text strong {
  font-weight: bold;
}
.news_detail_page .news_content_block__detail .news_content_block_detail_text em {
  font-style: italic;
}
.news_detail_page .news_content_block__detail .news_content_block_detail_text blockquote {
  display: block;
  -webkit-margin-before: 1em;
  -webkit-margin-after: 1em;
  -webkit-margin-start: 40px;
  -webkit-margin-end: 40px;
}
.news_detail_page .news_content_block__detail .news_content_block_detail_text .aligncenter {
  display: block;
  margin: 0 auto;
}
.news_detail_page .news_content_block__detail .news_content_block_detail_text .alignright {
  float: right;
}
.news_detail_page .news_content_block__detail .news_content_block_detail_text .alignleft {
  float: left;
}
.news_detail_page .news_content_block__detail .news_content_block_detail_text img[class*=wp-image-],
.news_detail_page .news_content_block__detail .news_content_block_detail_text img[class*=attachment-] {
  height: auto;
  max-width: 100%;
}
.news_detail_page .news_content_block__detail .news_content_block_detail_text .clearfix {
  overflow: hidden;
  zoom: 1;
}
.news_detail_page .news_content_block__detail .news_content_block_detail_text .clearfix:after {
  content: "";
  display: block;
  clear: both;
}
.news_detail_page .news_content_block__link .news_content_block_link_inner {
  display: flex;
  justify-content: space-between;
}
.news_detail_page .news_content_block__link .news_content_block_link_next a,
.news_detail_page .news_content_block__link .news_content_block_link_previous a {
  color: #ef858c;
  font-family: Zen Maru Gothic;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 2.72px;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  display: block;
}
.news_detail_page .news_content_block__link .news_content_block_link_next a::before,
.news_detail_page .news_content_block__link .news_content_block_link_previous a::before {
  content: "";
  display: block;
  width: 62px;
  height: 48px;
  background: url(/assets/img/common/icon_pink_arrow.svg) no-repeat center center/contain;
}
.news_detail_page .news_content_block__link .news_content_block_link_next a {
  padding-right: 80px;
}
.news_detail_page .news_content_block__link .news_content_block_link_next a::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}
.news_detail_page .news_content_block__link .news_content_block_link_previous a {
  padding-left: 80px;
}
.news_detail_page .news_content_block__link .news_content_block_link_previous a::before {
  position: absolute;
  top: 50%;
  -webkit-transform: scale(-1, 1) translateY(-50%);
          transform: scale(-1, 1) translateY(-50%);
  left: 0;
}

.news_page {
  background-color: #fef9f1;
  padding-bottom: 130px;
}
.news_page .news_block {
  padding: 35px 20px 115px;
}
.news_page .news_block__inner {
  margin: 0 auto;
  max-width: 1285px;
  width: 100%;
  display: flex;
  align-items: flex-start;
}
.news_page .archive_block {
  min-width: 317px;
  margin-right: 30px;
  background-color: #fff;
  border-radius: 12px;
}
.news_page .archive_block__inner {
  padding: 30px;
}
.news_page .archive_block__head {
  display: flex;
  margin-bottom: 20px;
}
.news_page .archive_block__head .archive_head_main {
  color: #ef858c;
  text-align: justify;
  font-family: Zen Maru Gothic;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-right: 12px;
}
.news_page .archive_block__head .archive_head_sub {
  color: #f2d1d3;
  text-align: justify;
  font-family: Manrope;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
}
.news_page .archive_block__selectbox {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 100%;
}
.news_page .archive_block__selectbox::after {
  position: absolute;
  content: "";
  pointer-events: none;
}
.news_page .archive_block__selectbox::after {
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translate(50%, -50%) rotate(45deg);
          transform: translate(50%, -50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #c7c7c7;
  border-right: 2px solid #c7c7c7;
  content: "";
}
.news_page .archive_block__selectbox form {
  width: 100%;
}
.news_page .archive_block__selectbox select {
  -webkit-appearance: none;
          appearance: none;
  width: 100%;
  padding: 13px 20px 13px 20px;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  box-sizing: border-box;
  cursor: pointer;
  color: #989898;
  text-align: justify;
  font-family: Zen Maru Gothic;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.85px;
}
.news_page .news_list_block {
  border-radius: 16px;
  background: #fff;
  width: 100%;
}
.news_page .news_list_block__inner {
  padding: 58px 40px 70px;
}
.news_page .news_list_block ul li {
  position: relative;
  padding-bottom: 33px;
  margin-bottom: 28px;
}
.news_page .news_list_block ul li::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #e9e9e9;
  display: block;
  position: absolute;
  bottom: 0;
}
.news_page .news_list_block ul li:last-child::before {
  display: none;
}
.news_page .news_list_block ul li article a {
  display: flex;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.news_page .news_list_block__time {
  min-width: 145px;
  padding-right: 10px;
}
.news_page .news_list_block__time time {
  color: #ef858c;
  leading-trim: both;
  text-edge: cap;
  font-family: Poppins;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.75px;
  line-height: 180%;
}
.news_page .news_list_block__title h3 {
  color: #666;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.15px;
  line-height: 180%;
}
.news_page .news_pagelink_block {
  width: 100%;
}
.news_page .news_pagelink_block .wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
}
.news_page .news_pagelink_block .wp-pagenavi .nextpostslink,
.news_page .news_pagelink_block .wp-pagenavi .previouspostslink {
  border: none;
  color: #ef858c;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.54px;
  position: relative;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.news_page .news_pagelink_block .wp-pagenavi .nextpostslink::before,
.news_page .news_pagelink_block .wp-pagenavi .previouspostslink::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #ef858c;
  width: 9px;
  height: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.news_page .news_pagelink_block .wp-pagenavi .nextpostslink {
  margin-left: 55px;
}
.news_page .news_pagelink_block .wp-pagenavi .nextpostslink::before {
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
          clip-path: polygon(0 0, 0 100%, 100% 50%);
  right: -20px;
}
.news_page .news_pagelink_block .previouspostslink {
  margin-right: 55px;
}
.news_page .news_pagelink_block .previouspostslink::before {
  -webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
          clip-path: polygon(100% 0, 0 50%, 100% 100%);
  left: -20px;
}
.news_page .news_pagelink_block .page {
  color: #333;
  -webkit-font-feature-settings: "pcap" on;
          font-feature-settings: "pcap" on;
  font-size: 18px;
  font-weight: 500;
  padding: 4px 11px;
  margin: 0 3px;
  min-width: 34px;
  display: block;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.news_page .news_pagelink_block .current {
  color: #fff;
  -webkit-font-feature-settings: "pcap" on;
          font-feature-settings: "pcap" on;
  font-size: 18px;
  font-weight: 500;
  padding: 4px 11px;
  margin: 0 3px;
  min-width: 34px;
  background-color: #ef858c;
  border-radius: 50%;
}
.news_page .news_pagelink_block .extend {
  color: #333;
  -webkit-font-feature-settings: "pcap" on;
          font-feature-settings: "pcap" on;
  font-size: 18px;
  font-weight: 500;
  line-height: 190%;
  letter-spacing: 0.9px;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.news_page .press_release_block {
  padding: 0 20px;
}
.news_page .press_release_block__inner {
  margin: 0 auto;
  max-width: 1285px;
  width: 100%;
  padding: 80px 150px 80px;
  background-color: #fff;
  border-radius: 16px;
  box-sizing: border-box;
}
.news_page .press_release_block__head {
  margin-bottom: 38px;
  text-align: center;
}
.news_page .press_release_block__head h3 {
  color: #ef858c;
  font-family: Poppins;
  font-size: 54px;
  font-weight: 600;
  letter-spacing: -1.08px;
  margin-bottom: 6px;
}
.news_page .press_release_block__head p {
  color: #ef858c;
  font-family: Zen Maru Gothic;
  font-size: 17px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 2.72px;
}
.news_page .press_release_block__lead {
  margin-bottom: 60px;
}
.news_page .press_release_block__lead p {
  text-align: center;
  color: #333;
  font-family: Zen Maru Gothic;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.96px;
}
.news_page .press_release_block__list ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: -60px -60px 0 0;
}
.news_page .press_release_block__list ul li {
  margin: 60px 60px 0 0;
  width: calc(50% - 60px);
}
.news_page .press_release_block__item .press_release_item_image {
  margin-bottom: 15px;
  padding-top: 69%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 16px;
  display: block;
}
.news_page .press_release_block__item .press_release_item_detail {
  display: flex;
  align-items: flex-start;
}
.news_page .press_release_block__item .press_release_item_detail__tag {
  padding: 4px 20px;
  border-radius: 6px;
  background-color: #fdf2f2;
  color: #ef858c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24px;
  margin-right: 20px;
  min-width: 100px;
  text-align: center;
  box-sizing: border-box;
}
.news_page .press_release_block__item .press_release_item_detail__text {
  color: #333;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.search_page {
  background-color: #fef9f1;
}
.search_page .search_block__inner {
  max-width: 1336px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 25px;
  padding-top: 36px;
  padding-bottom: 130px;
}
.search_page .search_block__wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}
.search_page .search_block__tag {
  color: #ef858c;
  text-align: justify;
  font-family: Zen Maru Gothic;
  font-size: 23px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.search_page .search_block__result {
  color: #666;
  font-family: Noto Sans JP;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 2.4;
  letter-spacing: 0.01em;
}
.search_page .search_block__contents {
  border-radius: 16px;
  padding: 28px 40px;
  margin-top: 36px;
  background: #fff;
}
.search_page .search_block__content {
  padding: 60px 0;
  display: flex;
  gap: 20px;
}
.search_page .search_block__content:not(:first-child) {
  border-top: 1px solid #e9e9e9;
}
.search_page .search_block__content mask {
  background: #e5ff9b;
}
.search_page .search_block__img {
  max-width: 140px;
  width: 100%;
  height: auto;
  aspect-ratio: 140/140;
}
.search_page .search_block__img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.search_page .search_block__head {
  color: #333;
  font-family: Noto Sans JP;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.01em;
}
.search_page .search_block .breadcrumb {
  margin-top: 14px;
  color: #666;
  font-family: Noto Sans JP;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 2.4;
  letter-spacing: 0.01em;
}
.search_page .search_block .breadcrumb span {
  color: #666;
  font-family: Noto Sans JP;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 2.4;
  letter-spacing: 0.01em;
}
.search_page .search_block .breadcrumb span:not(:first-child) {
  margin-left: 12px;
}
.search_page .search_block__text {
  color: #333;
  font-family: Noto Sans JP;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.01em;
  margin-top: 6px;
}
.search_page .search_block__pagenavi {
  margin-top: 60px;
}

.seminar_detail_page {
  /*-----------------------------------------------
    article_main
  -----------------------------------------------*/
  /*-----------------------------------------------
    article_sub
  -----------------------------------------------*/
}
.seminar_detail_page .article_column {
  display: flex;
  justify-content: space-between;
  margin: 0 auto 80px;
}
.seminar_detail_page .article_main {
  width: 73.5%;
  padding: 40px 6% 20px;
  border-radius: 16px;
  background: #fff;
}
.seminar_detail_page .article_main__heading {
  margin: 0 0 19px;
}
.seminar_detail_page .article_main__heading h1 {
  margin: 0 0 20px;
  color: #666;
  font-family: "Zen Maru Gothic";
  font-size: 22px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 1.32px;
}
.seminar_detail_page .article_main__heading .seminar_tag__list li {
  margin: 0 11px 8px 0;
}
.seminar_detail_page .article_main__heading .seminar_tag__list li a {
  padding: 7px 22px;
}
.seminar_detail_page .article_main__img {
  margin: 0 0 40px;
}
.seminar_detail_page .article_main__section {
  margin: 0 0 40px;
}
.seminar_detail_page .article_main__section hr {
  border: 0.5px solid #e6e6e6;
  margin: 40px 0;
}
.seminar_detail_page .article_main__section h2 {
  margin: 0 0 14px;
  color: #ef858c;
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 0.96px;
}
.seminar_detail_page .article_main__section_column {
  display: flex;
  justify-content: space-between;
}
.seminar_detail_page .article_main__section_column_01 {
  width: 44%;
}
.seminar_detail_page .article_main__section_column_02 {
  width: 51%;
}
.seminar_detail_page .article_main__section ul li {
  display: flex;
}
.seminar_detail_page .article_main__section ul li + li {
  margin-top: 6px;
}
.seminar_detail_page .article_main__section ul li::before {
  content: "・";
  margin: 0 6px 0 3px;
}
.seminar_detail_page .article_main p,
.seminar_detail_page .article_main ul {
  color: #666;
  font-size: 15px;
  font-weight: 400;
  line-height: 190%;
}
.seminar_detail_page .article_main p + ul,
.seminar_detail_page .article_main ul + p {
  margin-top: 28px;
}
.seminar_detail_page .article_main__dl {
  display: flex;
  flex-wrap: wrap;
  padding: 15px 5% 15px;
  border-radius: 12px;
  background: #fcfcfc;
}
.seminar_detail_page .article_main__dl dt,
.seminar_detail_page .article_main__dl dd {
  border-bottom: 1px solid #e6e6e6;
}
.seminar_detail_page .article_main__dl dt:last-of-type,
.seminar_detail_page .article_main__dl dd:last-of-type {
  border-bottom: none;
}
.seminar_detail_page .article_main__dl dt {
  width: 35.5%;
  padding: 24px 2% 24px 0;
  color: #ef858c;
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 0.96px;
}
.seminar_detail_page .article_main__dl dd {
  width: 64.5%;
  padding: 26px 0 22px;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  line-height: 170%;
}
.seminar_detail_page .article_main__dl dd .is-fontsize-13 {
  font-size: 13px;
}
.seminar_detail_page .article_main__button {
  margin: 0 auto 30px;
  width: 300px;
}
.seminar_detail_page .article_sub {
  width: 24%;
}
.seminar_detail_page .article_sub__aside {
  padding: 9px 25px 30px;
  border-radius: 16px;
  background: #fff;
}
.seminar_detail_page .article_sub__aside dl dt {
  padding: 20px 0 8px;
  color: #ef858c;
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 0.96px;
}
.seminar_detail_page .article_sub__aside dl dd {
  padding: 0 0 20px;
  border-bottom: 1px solid #e6e6e6;
  color: #666;
  font-size: 15px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.9px;
}
.seminar_detail_page .article_sub__aside_note {
  color: #666;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01px;
  line-height: 170%;
}
.seminar_detail_page .article_sub__aside_reason {
  margin: 10px 0 0;
  color: #666;
  font-size: 12px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0.24px;
}
.seminar_detail_page .article_sub__aside_button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 54px;
  margin: 16px 0 0;
  color: #fff;
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.02px;
  border-radius: 6px;
  background: #ef858c;
}
.seminar_detail_page .article_sub__aside_button--disable {
  background: #bfbfbf;
}
.seminar_detail_page .article_sub__aside_button:hover {
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.seminar_detail_page .article_sub__aside_button.is-disabled {
  background: #bfbfbf;
  cursor: not-allowed;
}
.seminar_detail_page .article_sub__note {
  color: #666;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.24px;
  margin-top: 10px;
}

.seminar_page {
  /*-----------------------------------------------
    lead_block
  -----------------------------------------------*/
  /*-----------------------------------------------
    seminar_block
  -----------------------------------------------*/
}
.seminar_page .mainvisual_award {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: auto;
  justify-content: center;
}
.seminar_page .mainvisual_award__item {
  padding-inline: 60px;
  position: relative;
}
.seminar_page .mainvisual_award__item::before, .seminar_page .mainvisual_award__item::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 55px;
  height: 97px;
  background: url("/assets/img/top/pic_mv_award.svg") no-repeat;
  background-size: cover;
}
.seminar_page .mainvisual_award__item::before {
  left: 0;
}
.seminar_page .mainvisual_award__item::after {
  right: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.seminar_page .mainvisual_award__label {
  color: #bba556;
  text-align: center;
  font-family: "Poppins";
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.848px;
}
.seminar_page .mainvisual_award__label--small {
  font-size: 11px;
}
.seminar_page .mainvisual_award__text {
  color: #bba556;
  font-family: "Poppins";
  font-size: 55px;
  font-weight: 600;
  letter-spacing: -3.351px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
}
.seminar_page .mainvisual_award__text span {
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: 0.03em;
}
.seminar_page .lead_block {
  overflow: hidden;
  margin: 0 0 160px;
}
.seminar_page .lead_block__inner {
  position: relative;
  width: 87%;
  max-width: 970px;
  margin: 0 auto;
  padding: 66px 4.6% 87px;
  border-radius: 16px;
  background: #fff;
}
.seminar_page .lead_block__text {
  margin: 0 0 59px;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 220%;
  letter-spacing: 0.32px;
}
.seminar_page .lead_block__number ul {
  display: flex;
  justify-content: center;
}
.seminar_page .lead_block__number ul li {
  margin: 0 12px;
}
.seminar_page .lead_block__number p {
  padding: 18px 10.5% 70px;
  color: #777;
  font-size: 12px;
  line-height: 180%;
}
.seminar_page .lead_block__bg01, .seminar_page .lead_block__bg02 {
  position: absolute;
}
.seminar_page .lead_block__bg01 {
  top: 99px;
  left: -281px;
}
.seminar_page .lead_block__bg02 {
  top: 195px;
  right: -244px;
}
.seminar_page .lead_block__recommend {
  position: relative;
  width: 77%;
  margin: 0 auto;
  padding: 30px 10% 36px 12%;
  border-radius: 20px;
  background: #fbedee;
}
.seminar_page .lead_block__recommend h2 {
  margin: 0 0 20px;
  color: #ef858c;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 23px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 3.45px;
}
.seminar_page .lead_block__recommend ul li {
  display: flex;
  color: #666;
  font-family: "Zen Maru Gothic";
  font-size: 15px;
  font-weight: 700;
  line-height: 230%;
  letter-spacing: 0.9px;
}
.seminar_page .lead_block__recommend ul li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  margin: 14px 16px 0 0;
  border-radius: 4px;
  background: #fcd1d1;
}
.seminar_page .lead_block__recommend_bg01, .seminar_page .lead_block__recommend_bg02, .seminar_page .lead_block__recommend_bg03 {
  position: absolute;
}
.seminar_page .lead_block__recommend_bg01 {
  left: -68px;
  bottom: -43px;
  width: 107px;
}
.seminar_page .lead_block__recommend_bg02 {
  right: -66px;
  bottom: -39px;
  width: 107px;
}
.seminar_page .seminar_block {
  /*-----( sub )-----*/
  /*-----( main )-----*/
}
.seminar_page .seminar_block h2 {
  margin: 0 0 50px;
  color: #ef858c;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 40px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 2px;
}
.seminar_page .seminar_block__wrapper {
  display: flex;
  justify-content: space-between;
}
.seminar_page .seminar_block__sub {
  width: 24.4%;
}
.seminar_page .seminar_block__sub_frame {
  padding: 30px;
  background: #fff;
}
.seminar_page .seminar_block__sub_heading {
  margin: 0 0 10px;
}
.seminar_page .seminar_block__sub_heading span:nth-child(1) {
  color: #ef858c;
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 0.8px;
}
.seminar_page .seminar_block__sub_heading span:nth-child(2) {
  margin-left: 6px;
  color: #f2d1d3;
  font-family: "Poppins";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 25.2px */
  letter-spacing: 0.7px;
}
.seminar_page .seminar_block__sub_body + .seminar_block__sub_heading {
  margin-top: 33px;
}
.seminar_page .seminar_block__sub_body select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 46px;
  padding: 0 16px;
  border-radius: 6px;
  border: 1px solid #e2e2e2;
  background: #fff url(/assets/img/seminar/ico_select_arrow.svg) calc(100% - 20px) center/20px 20px no-repeat;
  font-family: "Zen Maru Gothic";
  color: #afafaf;
  font-size: 14px;
  font-weight: 700;
}
.seminar_page .seminar_block__main {
  width: 72.2%;
}
.seminar_page .seminar_block__main_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 30px;
  margin: 0 0 80px;
}
.seminar_page .seminar_block__main_item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
}
.seminar_page .seminar_block__main_item > a:hover {
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.seminar_page .seminar_block__main_img {
  display: block;
  overflow: hidden;
  border-radius: 20px;
  margin: 0 0 20px;
}
.seminar_page .seminar_block__main_text {
  margin: 0 0 24px;
  color: #4b6185;
  font-size: 17px;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 0.85px;
}
.seminar_page .seminar_block__main_date {
  margin: 0 0 18px;
  color: #afafaf;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 1.26px;
}
.seminar_page .seminar_block__main .seminar_tag__list li {
  margin: 0 12px 8px 0;
}
.seminar_page .seminar_block__main .seminar_tag__list li a {
  padding: 5px 14px;
  font-size: 14px;
}
.seminar_page .seminar_block__main .seminar_tag__list li a::before {
  margin: 0 0 0 0;
}
.seminar_page .seminar_block .tablecalendar {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  z-index: 1;
}
.seminar_page .seminar_block .tablecalendar h4 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.seminar_page .seminar_block .tablecalendar__year {
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.6px;
}
.seminar_page .seminar_block .tablecalendar__year a {
  color: #ef858c;
}
.seminar_page .seminar_block .tablecalendar__year a span {
  color: #ef858c;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.6px;
  margin-left: 0;
}
.seminar_page .seminar_block .tablecalendar__btn {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #ef858c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.43px;
  margin-bottom: 2px;
}
.seminar_page .seminar_block .tablecalendar__btn.next::after {
  content: "";
  display: block;
  border: 5px solid transparent;
  border-left: 5px solid #ef858c;
}
.seminar_page .seminar_block .tablecalendar__btn.prev::before {
  content: "";
  display: block;
  border: 5px solid transparent;
  border-right: 5px solid #ef858c;
}
.seminar_page .seminar_block .tablecalendar table {
  margin-top: 10px;
}
.seminar_page .seminar_block .tablecalendar thead {
  padding-bottom: 10px;
}
.seminar_page .seminar_block .tablecalendar thead th {
  color: #999;
  font-family: "Zen Maru Gothic";
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
}
.seminar_page .seminar_block .tablecalendar tbody td {
  color: #333;
  font-family: "Zen Maru Gothic";
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-align: center;
  padding: 5px;
}
.seminar_page .seminar_block .tablecalendar tbody td.event-day a {
  color: #ef858c;
}
.seminar_page .seminar_block .tablecalendar tbody td.today {
  position: relative;
  color: #fff;
  z-index: 1;
}
.seminar_page .seminar_block .tablecalendar tbody td.today::before {
  content: "";
  width: 20px;
  height: 20px;
  background: #ef858c;
  position: absolute;
  top: 52%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 100%;
  z-index: -1;
}

.teacher_detail_page {
  background-color: #fef9f1;
}
.teacher_detail_page .teacher_block {
  padding: 35px 20px 75px;
}
.teacher_detail_page .teacher_block__inner {
  margin: 0 auto;
  max-width: 1285px;
  width: 100%;
  background-color: #fff;
  border-radius: 16px;
  padding: 170px 194px 100px 180px;
  box-sizing: border-box;
  position: relative;
}
.teacher_detail_page .teacher_block__shape {
  width: 306px;
  position: absolute;
  top: -146px;
  right: -10px;
}
.teacher_detail_page .teacher_block__shape img {
  width: 100%;
  vertical-align: bottom;
}
.teacher_detail_page .teacher_block__head {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 46px;
  margin-bottom: 66px;
  position: relative;
}
.teacher_detail_page .teacher_block__head::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: 0;
  background-color: #e9e9e9;
}
.teacher_detail_page .teacher_block__head .teacher_head_left {
  margin-right: 70px;
  min-width: 300px;
}
.teacher_detail_page .teacher_block__head .teacher_head_left__image {
  margin-bottom: 28px;
  padding-top: 125%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 16px;
  display: block;
}
.teacher_detail_page .teacher_block__head .teacher_head_left__enName {
  color: #ef858c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.17px;
  margin-bottom: 20px;
}
.teacher_detail_page .teacher_block__head .teacher_head_left__jpName {
  color: #333;
  font-size: 33px;
  font-weight: 500;
  letter-spacing: 2.64px;
}
.teacher_detail_page .teacher_block__head .teacher_head_right {
  width: calc(100% - 300px);
}
.teacher_detail_page .teacher_block__head .teacher_head_right__title {
  position: relative;
  margin-top: 10px;
  padding: 55px 30px;
  margin-bottom: 60px;
}
.teacher_detail_page .teacher_block__head .teacher_head_right__title::before, .teacher_detail_page .teacher_block__head .teacher_head_right__title::after {
  position: absolute;
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url(/assets/img/teacher/icon_parentheses.svg) no-repeat center center/contain;
}
.teacher_detail_page .teacher_block__head .teacher_head_right__title::before {
  top: 0;
  left: 0;
}
.teacher_detail_page .teacher_block__head .teacher_head_right__title::after {
  bottom: 0;
  right: 0;
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
}
.teacher_detail_page .teacher_block__head .teacher_head_right__title h2 {
  color: #ef858c;
  font-size: 25px;
  font-weight: 700;
  text-align: center;
  line-height: 155%;
}
.teacher_detail_page .teacher_block__head .teacher_head_right__profile {
  border-radius: 12px;
  background: #fff2ed;
  padding: 30px 40px;
}
.teacher_detail_page .teacher_block__head .teacher_head_right__profile .teacher_profile_title {
  min-width: 111px;
  padding-right: 10px;
  box-sizing: border-box;
  color: #ef858c;
  font-size: 14px;
  font-weight: 700;
  line-height: 180%;
}
.teacher_detail_page .teacher_block__head .teacher_head_right__profile .teacher_profile_text {
  color: #666;
  font-size: 14px;
  font-weight: 500;
  line-height: 180%;
}
.teacher_detail_page .teacher_block__head .teacher_head_right__profile ul li {
  display: flex;
}
.teacher_detail_page .teacher_block__head .teacher_head_right__profile ul li + li {
  margin-top: 12px;
}
.teacher_detail_page .teacher_block__label {
  color: #ef858c;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.32px;
  margin-bottom: 15px;
}
.teacher_detail_page .teacher_block__qualification {
  padding-bottom: 67px;
  margin-bottom: 67px;
  position: relative;
}
.teacher_detail_page .teacher_block__qualification::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: 0;
  background-color: #e9e9e9;
}
.teacher_detail_page .teacher_block__qualification ul li {
  color: #666;
  text-align: justify;
  font-size: 15px;
  font-weight: 500;
  line-height: 250%;
  letter-spacing: 0.3px;
  position: relative;
  padding-left: 20px;
}
.teacher_detail_page .teacher_block__qualification ul li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}
.teacher_detail_page .teacher_block__short_cv .teacher_short_cv_text {
  color: #666;
  text-align: justify;
  font-size: 15px;
  font-weight: 500;
  line-height: 210%;
  letter-spacing: 0.3px;
}
.teacher_detail_page .teacher_link {
  padding: 0 20px 130px;
}
.teacher_detail_page .teacher_link__inner {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1285px;
  width: 100%;
}
.teacher_detail_page .teacher_link__next a, .teacher_detail_page .teacher_link__previous a {
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  display: block;
}
.teacher_detail_page .teacher_link__next a::before, .teacher_detail_page .teacher_link__previous a::before {
  content: "";
  display: block;
  width: 62px;
  height: 48px;
  background: url(/assets/img/common/icon_pink_arrow.svg) no-repeat center center/contain;
}
.teacher_detail_page .teacher_link__next a {
  padding-right: 91px;
}
.teacher_detail_page .teacher_link__next a::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}
.teacher_detail_page .teacher_link__previous a {
  padding-left: 91px;
}
.teacher_detail_page .teacher_link__previous a::before {
  position: absolute;
  top: 50%;
  -webkit-transform: scale(-1, 1) translateY(-50%);
          transform: scale(-1, 1) translateY(-50%);
  left: 0;
}
.teacher_detail_page .teacher_link__label {
  color: #ef858c;
  font-family: Zen Maru Gothic;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.teacher_detail_page .teacher_link__name {
  color: #ef858c;
  font-family: Zen Maru Gothic;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 3.84px;
}

.teacher_page {
  background-color: #fef9f1;
}
.teacher_page .mainvisual_block {
  padding: 30px 20px 60px;
}
.teacher_page .mainvisual_block__inner {
  max-width: 1260px;
  width: 100%;
  margin: auto;
  position: relative;
}
.teacher_page .mainvisual_block__image {
  max-width: 1235px;
  width: 100%;
  padding-left: 25px;
  box-sizing: border-box;
  position: relative;
}
.teacher_page .mainvisual_block__image img {
  width: 100%;
  vertical-align: bottom;
  border-radius: 0.6em;
}
.teacher_page .mainvisual_block__content {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 697px;
  width: calc(697 / 1728 * 100vw);
  padding: calc(50 / 1728 * 100vw);
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 16px;
}
.teacher_page .mainvisual_block__content .mainvisual_content_title {
  color: #ef858c;
  font-family: Zen Maru Gothic;
  font-size: calc(28 / 1728 * 100vw);
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 1.68px;
  margin-bottom: 24px;
}
.teacher_page .mainvisual_block__content .mainvisual_content_text p {
  color: #666;
  font-size: calc(16 / 1728 * 100vw);
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0.8px;
}
.teacher_page .mainvisual_block__content .mainvisual_content_text p + p {
  margin-top: 30px;
}
.teacher_page .about_block {
  background-color: #fff;
  padding: 70px 20px 100px;
}
.teacher_page .about_block__inner {
  max-width: 1285px;
  width: 100%;
  margin: 0 auto;
}
.teacher_page .about_block__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 35px;
}
.teacher_page .about_block__title {
  margin-right: 15px;
}
.teacher_page .about_block__title h2 {
  color: #4b6185;
  font-family: Zen Maru Gothic;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1.8px;
  padding-bottom: 15px;
  line-height: 1.85;
  background: linear-gradient(transparent 90%, rgba(105, 139, 189, 0.2) 0%);
  display: inline;
}
.teacher_page .about_block__image {
  width: 192px;
}
.teacher_page .about_block__image img {
  width: 100%;
  vertical-align: bottom;
}
.teacher_page .about_block__text {
  color: #333;
  text-align: justify;
  font-size: 16px;
  font-weight: 400;
  line-height: 220%;
  letter-spacing: 0.32px;
  margin-bottom: 70px;
}
.teacher_page .about_block__item > ul {
  display: flex;
  justify-content: space-between;
}
.teacher_page .about_block__item > ul li {
  width: calc(50% - 30px);
}
.teacher_page .about_block__item > ul li .about_item_content {
  border-radius: 16px;
  background: #fdede7;
}
.teacher_page .about_block__item > ul li .about_item_content__inner {
  padding: 40px 40px 35px;
  position: relative;
}
.teacher_page .about_block__item > ul li .about_item_content__image {
  position: absolute;
  top: -30px;
  right: 40px;
}
.teacher_page .about_block__item > ul li .about_item_content__image.is-court_of_the_table {
  width: 55px;
}
.teacher_page .about_block__item > ul li .about_item_content__image.is-top_of_the_table {
  width: 95px;
}
.teacher_page .about_block__item > ul li .about_item_content__image img {
  width: 100%;
}
.teacher_page .about_block__item > ul li .about_item_content__title {
  color: #ef858c;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}
.teacher_page .about_block__item > ul li .about_item_content__text {
  color: #333;
  font-size: 15px;
  font-weight: 400;
  line-height: 220%;
  letter-spacing: 0.3px;
  margin-bottom: 30px;
}
.teacher_page .about_block__item > ul li .about_item_content__card ul {
  display: flex;
}
.teacher_page .about_block__item > ul li .about_item_content__card ul li {
  border-radius: 6px;
  border: 3px solid #e86c74;
  background: #fff;
  max-width: 255px;
  width: 100%;
  box-sizing: border-box;
  padding: 23px 10px;
}
.teacher_page .about_block__item > ul li .about_item_content__card ul li + li {
  margin-left: 10px;
}
.teacher_page .about_block__item > ul li .about_item_content__card ul li p {
  color: #e86c74;
  font-size: 17px;
  font-weight: 700;
  line-height: 220%;
  letter-spacing: 0.85px;
  text-align: center;
}
.teacher_page .profiles_block {
  padding: 120px 75px 130px;
}
.teacher_page .profiles_block__inner {
  max-width: 1155px;
  width: 100%;
  margin: 0 auto;
}
.teacher_page .profiles_block__head {
  margin-bottom: 80px;
}
.teacher_page .profiles_block__head .profiles_head_mainTitle {
  color: #ef858c;
  text-align: center;
  font-family: Poppins;
  font-size: 54px;
  font-weight: 600;
  letter-spacing: -1.08px;
  margin-bottom: 5px;
}
.teacher_page .profiles_block__head .profiles_head_subTitle {
  color: #ef858c;
  text-align: center;
  font-family: Zen Maru Gothic;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 2.72px;
}
.teacher_page .profiles_block__swiper ul {
  display: flex;
  flex-wrap: wrap;
  margin: -70px -65px 0 0;
}
.teacher_page .profiles_block__swiper ul li {
  margin: 70px 65px 0 0;
  width: calc(33.3% - 65px);
}
.teacher_page .profiles_block__swiper .profiles_swiper_content {
  position: relative;
}
.teacher_page .profiles_block__swiper .profiles_swiper_content a {
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  display: block;
}
.teacher_page .profiles_block__swiper .profiles_swiper_content a::before {
  content: "";
  height: 100%;
  width: 100%;
  inset: 0;
  display: block;
  position: absolute;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 19.42%, rgba(0, 0, 0, 0) 80.48%);
}
.teacher_page .profiles_block__swiper .profiles_swiper_content__image {
  padding-top: 123%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.6em;
  display: block;
}
.teacher_page .profiles_block__swiper .profiles_swiper_content__detail {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.teacher_page .profiles_block__swiper .profiles_swiper_content__name {
  display: flex;
  align-items: center;
  padding-left: 27px;
  margin-bottom: 12px;
}
.teacher_page .profiles_block__swiper .profiles_swiper_content__name .profiles_swiper_name_kanji {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-right: 10px;
}
.teacher_page .profiles_block__swiper .profiles_swiper_content__name .profiles_swiper_name_hira {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.78px;
}
.teacher_page .profiles_block__swiper .profiles_swiper_content__text {
  padding: 0 10px 30px 27px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.78px;
}
.teacher_page .profiles_block__swiper .pagination_block {
  margin-top: calc(30 / 393 * 100vw);
}
.teacher_page .profiles_block__swiper .pagination_block__inner {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(35 / 393 * 100vw);
}
.teacher_page .profiles_block__swiper .pagination_block .swiper_button {
  width: calc(42 / 393 * 100vw);
}
.teacher_page .profiles_block__swiper .pagination_block .swiper_button--next {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  margin-left: calc(20 / 393 * 100vw);
}
.teacher_page .profiles_block__swiper .pagination_block .swiper_button button img {
  width: 100%;
  vertical-align: bottom;
}

.voice_page {
  /*-----------------------------------------------
    lead_block
  -----------------------------------------------*/
  /*-----------------------------------------------
    index_block
  -----------------------------------------------*/
}
.voice_page .lead_block {
  margin: 0 auto 120px;
}
.voice_page .lead_block h2 {
  margin: 38px 0 29px;
  color: #EF858C;
  font-family: "Zen Maru Gothic";
  font-size: 23px;
  font-weight: 700;
  line-height: 41px;
  letter-spacing: 0.05em;
}
.voice_page .lead_slider__item {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: #FFF;
  height: auto;
}
.voice_page .lead_slider__item_img {
  position: relative;
  z-index: 1;
}
.voice_page .lead_slider__item_img img {
  width: 100%;
}
.voice_page .lead_slider__item_body {
  position: relative;
  z-index: 2;
  padding: 26px 42px 54px 32px;
}
.voice_page .lead_slider__item_ico {
  position: absolute;
  z-index: 3;
  left: 32px;
  top: -28px;
  width: 47px;
  height: 47px;
}
.voice_page .lead_slider__item_title {
  margin: 0 0 10px;
  color: #EF858C;
  font-size: 17px;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 0.85px;
}
.voice_page .lead_slider__item_text {
  color: #333;
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 0.56px;
}
.voice_page .lead_slider__util {
  display: flex;
  justify-content: space-between;
  width: 144px;
  margin: 30px 0 0 auto;
}
.voice_page .lead_slider__prev:hover, .voice_page .lead_slider__next:hover {
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.voice_page .index_block {
  scroll-margin-top: 150px;
}
.voice_page .index_block__heading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 54px;
  background: #FCD1D1;
}
.voice_page .index_block__heading_inner {
  position: relative;
  color: #666;
  font-family: "Zen Maru Gothic";
  font-size: 14px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 1px;
}
.voice_page .index_block__heading_inner ::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -64px;
  width: 50px;
  height: 50px;
  background: url(/assets/img/voice/ico_voice.svg) left top/cover no-repeat;
}
.voice_page .index_block__body {
  padding: 30px 0 60px;
  border-radius: 0px 0px 20px 20px;
  background: #FFF;
}
.voice_page .index_block__body_util {
  display: flex;
  justify-content: flex-end;
  padding: 0 3% 36px;
}
.voice_page .index_block__body_util button, .voice_page .index_block__body_util a {
  display: flex;
  align-items: center;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  line-height: 220%;
  letter-spacing: 0.28px;
}
.voice_page .index_block__body_util button:hover, .voice_page .index_block__body_util a:hover {
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.voice_page .index_block__body_util button::before, .voice_page .index_block__body_util a::before {
  content: "";
  width: 19px;
  height: 19px;
  margin: 0 5px 0 0;
  background: url(/assets/img/voice/ico_sort.svg) left top/cover no-repeat;
}
.voice_page .index_block__column {
  display: flex;
  justify-content: space-between;
  padding: 0 4.6%;
}
.voice_page .index_block__sub {
  width: 21.7%;
}
.voice_page .index_block__sub_box {
  padding: 30px 4% 20px 12%;
  border-radius: 12px;
  background: #FEF9F1;
}
.voice_page .index_block__sub_box p {
  margin: 0 0 22px;
  font-size: 15px;
  font-weight: 700;
  line-height: 220%;
  letter-spacing: 0.3px;
}
.voice_page .index_block__main {
  width: 74.5%;
}
.voice_page .index_block__list {
  margin: 0 0 60px;
}
.voice_page .index_block__list li + li {
  margin-top: 30px;
}
.voice_page .index_block__list li {
  padding: 19px 4.7% 28px;
  border-radius: 10px;
  background: #FEF9F1;
}
.voice_page .index_block__list_heading {
  display: flex;
  align-items: center;
  margin: 0 0 14px;
}
.voice_page .index_block__list_img {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin: 0 12px 0 0;
  border-radius: 20px;
}
.voice_page .index_block__list_title {
  padding: 6px 0 0;
  color: #FD737C;
  font-size: 17px;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 0.68px;
}
.voice_page .index_block__list_text {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0.56px;
}

/**
 * Swiper 8.4.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 30, 2023
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev,
.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
          filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: opacity, height, -webkit-transform;
  transition-property: transform, opacity, height;
  transition-property: transform, opacity, height, -webkit-transform;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

@media screen and (769px <= width) {
  .header_block.is-top {
    position: fixed;
    background: transparent;
    align-items: flex-start;
    padding: 30px 68px 30px 40px;
  }
  .header_block.is-top .header_block__logo {
    width: min(15vw, 308px);
  }
  .header_block.is-top .header_block__contents {
    gap: 62px;
  }
  .header_block.is-top .header_block__list {
    gap: 50px;
  }
  .header_block.is-top .header_block__item a {
    color: #fff;
    padding: 0;
  }
  .header_block.is-top .header_block_search {
    width: 30px;
  }
  .header_block.is-top .header_block_search.is-active {
    width: min(100%, 370px);
  }
  .header_block.is-top .header_block_search.is-active input {
    background: #fff;
  }
  .header_block.is-top .header_block_search.is-active .header_block_search__icon {
    stroke: #fd737c;
    fill: #fd737c;
  }
  .header_block.is-top .header_block_search input {
    background: transparent;
  }
  .header_block.is-top .header_block_search::-webkit-search-cancel-button {
    -webkit-appearance: none;
  }
  .header_block.is-top .header_block_search::-webkit-input-placeholder {
    color: transparent;
  }
  .header_block.is-top .header_block_search::placeholder {
    color: transparent;
  }
  .header_block.is-top .header_block_search__icon {
    stroke: #fff;
    fill: #fff;
  }
  .header_block.is-active {
    background: #fff;
    align-items: center;
    padding: 20px 40px 20px 30px;
  }
  .header_block.is-active .header_block__logo {
    width: min(15vw, 250px);
  }
  .header_block.is-active .header_block__item a {
    color: #fd737c;
  }
  .header_block.is-active .header_block_search__icon {
    stroke: #fd737c;
    fill: #fd737c;
  }
}

@media screen and (769px <= width) and (max-width: 768px) {
  .header_block.is-top {
    background: #fff;
    padding: 20px 56px 18px 40px;
  }
  .header_block.is-top .header_block_search__icon {
    stroke: #fd737c;
    fill: #fd737c;
  }
}

@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
  html {
    font-size: calc(16 / 393 * 100vw);
  }
  .archive_block {
    margin-right: 0;
    margin: 0 0 calc(30 / 393 * 100vw) 0;
    border-radius: 0.8em;
  }
  .archive_block__inner {
    padding: calc(30 / 393 * 100vw) calc(20 / 393 * 100vw);
  }
  .archive_block__head {
    margin-bottom: calc(14 / 393 * 100vw);
  }
  .archive_block__head .archive_head_main {
    font-size: calc(14 / 393 * 100vw);
    margin-right: calc(12 / 393 * 100vw);
  }
  .archive_block__head .archive_head_sub {
    font-size: calc(13 / 393 * 100vw);
  }
  .archive_block__selectbox::after {
    width: calc(10 / 393 * 100vw);
    height: calc(10 / 393 * 100vw);
    border-bottom: calc(2 / 393 * 100vw) solid #c7c7c7;
    border-right: calc(2 / 393 * 100vw) solid #c7c7c7;
    right: calc(30 / 393 * 100vw);
  }
  .archive_block__selectbox select {
    font-size: calc(17 / 393 * 100vw);
    padding: calc(13 / 393 * 100vw) calc(20 / 393 * 100vw) calc(13 / 393 * 100vw) calc(12 / 393 * 100vw);
    border: calc(1 / 393 * 100vw) solid #e2e2e2;
    border-radius: 0.6em;
  }
  .breadcrumbs_block {
    padding: 0 calc(20 / 393 * 100vw);
  }
  .breadcrumbs_block ul li:not(:last-child) {
    padding-right: calc(25 / 393 * 100vw);
  }
  .breadcrumbs_block ul li:not(:last-child)::before {
    right: calc(7 / 393 * 100vw);
  }
  .breadcrumbs_block ul li a {
    font-size: calc(13 / 393 * 100vw);
  }
  .footer_block {
    padding: calc(100 / 393 * 100vw) calc(20 / 393 * 100vw) calc(20 / 393 * 100vw);
  }
  .footer_block__contents {
    flex-direction: column-reverse;
  }
  .footer_block__copyright {
    font-size: calc(12 / 393 * 100vw);
    margin-top: calc(54 / 393 * 100vw);
    text-align: center;
  }
  .footer_block .footer_head__logo {
    margin: calc(60 / 393 * 100vw) auto 0;
    width: calc(190 / 393 * 100vw);
  }
  .footer_block .footer_head__title {
    margin-top: calc(40 / 393 * 100vw);
    text-align: center;
    font-size: calc(13 /393 * 100vw);
  }
  .footer_block .footer_head__company {
    text-align: center;
    font-size: calc(14 /393 * 100vw);
    margin-top: calc(6 / 393 * 100vw);
  }
  .footer_block .footer_head__address {
    text-align: center;
    font-size: calc(13 /393 * 100vw);
    margin-top: calc(6 / 393 * 100vw);
  }
  .footer_block .footer_body {
    flex-direction: column;
    gap: calc(50 / 393 * 100vw);
  }
  .footer_block .footer_body__lists {
    flex-direction: column;
    gap: calc(30 / 393 * 100vw);
  }
  .footer_block .footer_body__item {
    font-size: calc(14 / 393 * 100vw);
  }
  .footer_block .footer_body__item:nth-of-type(1) + .footer_body__item {
    margin-top: calc(16 / 393 * 100vw);
  }
  .footer_block .footer_body__item + .footer_body__item::before {
    width: calc(8 / 393 * 100vw);
  }
  .footer_block .footer_body__item + .footer_body__item {
    margin-top: calc(10 /393 * 100vw);
  }
  .footer_block .footer_body__btn {
    width: calc(335 / 393 * 100vw);
    align-self: center;
    font-size: calc(16 / 393 * 100vw);
  }
  .footer_block .footer_body__btn a {
    gap: calc(10 / 393 * 100vw);
  }
  .footer_block .footer_body__btn a::after {
    width: calc(15 / 393 * 100vw);
    height: calc(15 / 393 * 100vw);
  }
  .footer_block .footer_body__btn a {
    padding: calc(12 / 393 * 100vw) 10px calc(11 / 393 * 100vw);
  }
  .head_block {
    padding: 61px 0 calc(43 / 393 * 100vw);
    margin-bottom: 0;
  }
  .head_block__title {
    top: 49%;
    left: 0;
    right: 0;
  }
  .head_block__title .head_title_main {
    font-size: calc(36 / 393 * 100vw);
    margin-bottom: calc(6 / 393 * 100vw);
    text-align: center;
  }
  .head_block__title .head_title_sub {
    font-size: calc(16 / 393 * 100vw);
    text-align: center;
  }
  .header_block {
    position: -webkit-sticky;
    position: sticky;
    padding: 13px 20px 14px;
    background: #fff;
  }
  .header_block__logo {
    width: 115px;
  }
  .header_block .header_block_search {
    width: 40px;
  }
  .header_block .header_block_search input {
    border: none;
    padding: 0;
  }
  .header_block .header_block_search__icon {
    width: calc(20 / 393 * 100vw);
    height: calc(18 / 393 * 100vw);
    stroke: #fd737c;
    fill: #fd737c;
    right: 50%;
    top: 50%;
    -webkit-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
  }
  .c-pagenavi_block .wp-pagenavi {
    flex-wrap: wrap;
    max-width: calc(230 / 393 * 100vw);
  }
  .c-pagenavi_block .wp-pagenavi .nextpostslink,
  .c-pagenavi_block .wp-pagenavi .previouspostslink {
    font-size: calc(13 / 393 * 100vw);
  }
  .c-pagenavi_block .wp-pagenavi .nextpostslink::before,
  .c-pagenavi_block .wp-pagenavi .previouspostslink::before {
    width: calc(9 / 393 * 100vw);
    height: calc(10 / 393 * 100vw);
  }
  .c-pagenavi_block .wp-pagenavi .nextpostslink {
    margin-left: calc(25 / 393 * 100vw);
  }
  .c-pagenavi_block .wp-pagenavi .nextpostslink::before {
    right: calc(-15 / 393 * 100vw);
  }
  .c-pagenavi_block .previouspostslink {
    margin-right: calc(25 / 393 * 100vw);
  }
  .c-pagenavi_block .previouspostslink::before {
    left: calc(-15 / 393 * 100vw);
  }
  .c-pagenavi_block .page {
    font-size: calc(16 / 393 * 100vw);
    min-width: calc(32 / 393 * 100vw);
    margin: 0 calc(3 / 393 * 100vw);
    padding: calc(4 / 393 * 100vw) calc(9 / 393 * 100vw);
  }
  .c-pagenavi_block .current {
    font-size: calc(16 / 393 * 100vw);
    min-width: calc(32 / 393 * 100vw);
    margin: 0 calc(3 / 393 * 100vw);
    padding: calc(4 / 393 * 100vw) calc(9 / 393 * 100vw);
  }
  .c-pagenavi_block .extend {
    font-size: calc(16 / 393 * 100vw);
  }
  .article_pager a {
    font-size: calc(16 / 393 * 100vw);
    line-height: 100%;
    letter-spacing: 2.56px;
  }
  .article_pager__prev a::after {
    width: 42px;
    height: 31.161px;
    margin: 0 0 0 10px;
  }
  .article_pager__next a::before {
    width: 42px;
    margin: 0 10px 0 0;
    height: 31.161px;
  }
  .subpage_bg {
    padding: 0px 0 130px;
  }
  .subpage_mainvisual {
    padding: 66px 0 0;
    background: url(/assets/img/seminar/bg_subpage_sp.svg) center top/100% auto no-repeat;
  }
  .subpage_mainvisual__title {
    margin: 0 0 8px;
    text-align: center;
    font-size: calc(36 / 393 * 100vw);
    line-height: 100%;
    letter-spacing: -0.8px;
  }
  .subpage_mainvisual__subtitle {
    display: block;
    text-align: center;
    font-size: calc(16 / 393 * 100vw);
  }
  .subpage_mainvisual .breadcrumb {
    margin: 56px 0 30px;
    font-size: calc(13 / 393 * 100vw);
  }
  .subpage_mainvisual .breadcrumb li + li::before {
    margin: 0 6px 0 6px;
  }
  .subpage_pager__prev, .subpage_pager__next {
    font-size: calc(14 / 393 * 100vw);
  }
  .subpage_pager__number {
    margin: 0 22px;
  }
  .subpage_pager__number li {
    margin: 0 4px;
  }
  .seminar_tag__list li a {
    padding: 2px 13px;
    font-size: calc(12 / 393 * 100vw);
  }
  .faq_page .faq_block__inner {
    padding-inline: calc(20 / 393 * 100vw);
    max-width: 100%;
  }
  .faq_page .faq_block__contents {
    padding-top: calc(30 / 393 * 100vw);
    padding-bottom: calc(120 / 393 * 100vw);
  }
  .faq_page .faq_block__wrap:not(:first-child) {
    margin-top: calc(30 / 393 * 100vw);
  }
  .faq_page .faq_block__title {
    padding: calc(20 / 393 * 100vw);
    border-radius: calc(8 / 393 * 100vw);
  }
  .faq_page .faq_block__title.is-open {
    border-radius: calc(8 / 393 * 100vw) calc(8 / 393 * 100vw) 0px 0px;
  }
  .faq_page .faq_block__title::before, .faq_page .faq_block__title::after {
    content: none;
  }
  .faq_page .faq_block__column {
    gap: calc(12 / 393 * 100vw);
  }
  .faq_page .faq_block__q {
    font-size: calc(18 / 393 * 100vw);
  }
  .faq_page .faq_block__question {
    font-size: calc(15 / 393 * 100vw);
    font-weight: 400;
    line-height: 1.7;
  }
  .faq_page .faq_block__content {
    padding: calc(30 / 393 * 100vw) calc(20 / 393 * 100vw);
    border-radius: 0 0 calc(8 / 393 * 100vw) calc(8 / 393 * 100vw);
  }
  .faq_page .faq_block__content p {
    font-size: calc(15 / 393 * 100vw);
    line-height: 1.7;
  }
  .faq_page .faq_block__content p:not(:first-child) {
    margin-top: calc(20 / 393 * 100vw);
  }
  .index_page .mainvisual {
    padding: calc(40 / 393 * 100vw) 20px calc(0 / 393 * 100vw);
  }
  .index_page .mainvisual::before {
    height: calc(785 /393 * 100vw);
    background: url("/assets/img/top/bg_mainvisual_sp.jpg") no-repeat center bottom;
    background-size: cover;
    width: 100%;
    border-radius: 0;
  }
  .index_page .mainvisual__inner {
    width: 100%;
    align-items: center;
  }
  .index_page .mainvisual__title {
    letter-spacing: 0em;
    font-size: calc(42 / 393 * 100vw);
    line-height: 1.3;
  }
  .index_page .mainvisual__title span {
    font-size: calc(54 / 393 * 100vw);
    letter-spacing: -1.629px;
  }
  .index_page .mainvisual__lead {
    font-size: calc(14 / 393 * 100vw);
    margin-top: calc(12 / 393 * 100vw);
  }
  .index_page .mainvisual__note {
    font-size: calc(12 / 393 * 100vw);
    margin-top: calc(15 / 393 * 100vw);
  }
  .index_page .mainvisual__note + .mainvisual__note {
    margin-top: calc(5 / 393 * 100vw);
  }
  .index_page .mainvisual__img {
    display: none;
  }
  .index_page .mainvisual .mainvisual_banner {
    margin-top: calc(405 / 393 * 100vw);
    width: 100%;
    padding: calc(17 / 393 * 100vw);
    gap: calc(13 / 393 * 100vw);
  }
  .index_page .mainvisual .mainvisual_banner__img {
    width: calc(50 / 393 * 100vw);
  }
  .index_page .mainvisual .mainvisual_banner__text {
    font-size: calc(13 / 393 * 100vw);
  }
  .index_page .mainvisual .mainvisual_award {
    align-items: flex-end;
    margin-top: calc(25 / 393 * 100vw);
  }
  .index_page .mainvisual .mainvisual_award__item {
    padding-inline: calc(20 / 393 * 100vw);
  }
  .index_page .mainvisual .mainvisual_award__item::before, .index_page .mainvisual .mainvisual_award__item::after {
    width: calc(23 / 393 * 100vw);
    height: calc(40 / 393 * 100vw);
  }
  .index_page .mainvisual .mainvisual_award__label {
    font-size: calc(13 / 393 * 100vw);
    line-height: 1.1;
    margin-bottom: calc(6 / 393 * 100vw);
  }
  .index_page .mainvisual .mainvisual_award__label--small {
    font-size: calc(11 / 393 * 100vw);
    margin-bottom: 0;
  }
  .index_page .mainvisual .mainvisual_award__text {
    font-size: calc(26 / 393 * 100vw);
    line-height: 1.1;
  }
  .index_page .mainvisual .mainvisual_award__text span {
    font-size: calc(10 / 393 * 100vw);
    letter-spacing: 0.2px;
    line-height: 1.1;
  }
  .index_page .recommend {
    background: url("/assets/img/top/bg_recommend_sp.svg") no-repeat;
    background-size: cover;
}
  .index_page .recommend__inner{
    margin: calc(60 /393 * 100vw) auto 0;
    padding: calc(30 / 393 * 100vw) 20px calc(66 / 393 * 100vw);
    width: 100%;
    justify-content: center;
  }
  .index_page .recommend__inner::before, .index_page .recommend__inner::after {
    position: absolute;
    bottom: -40px;
    width: calc(75 / 393 * 100vw);
    height: calc(120 / 393 * 100vw);
  }
  .index_page .recommend__inner::before {
    left: 0;
}
  .index_page .recommend__inner::after {
    right: 0;
  }
  .index_page .recommend__title {
    font-size: calc(20 / 393 * 100vw);
  }
  .index_page .recommend__list {
    margin: calc(20 / 393 * 100vw) auto 0;
  }
  .index_page .recommend__item {
    font-size: calc(14 / 393 * 100vw);
    line-height: 1.7;
    gap: calc(10 / 393 * 100vw);
    align-items: flex-start;
  }
  .index_page .recommend__item + .recommend__item {
    margin-top: calc(12 / 393 * 100vw);
  }
  .index_page .recommend__item::before {
    margin-top: calc(10 / 393 * 100vw);
    width: calc(8 / 393 * 100vw);
    height: calc(8 / 393 * 100vw);
  }
  .index_page .seminar__inner {
    margin: calc(146 / 393 * 100vw) auto calc(100 / 393 * 100vw);
  }
  .index_page .seminar__head {
    flex-direction: column;
    gap: calc(30 /393 * 100vw);
  }
  .index_page .seminar__en_title {
    font-size: calc(36 /393 * 100vw);
  }
  .index_page .seminar__jp_title {
    font-size: calc(16 / 393 * 100vw);
    margin-top: calc(8 / 393 * 100vw);
    text-align: center;
  }
  .index_page .seminar__lead {
    font-size: calc(15 / 393 * 100vw);
  }
  .index_page .seminar__contents {
    grid-template-columns: repeat(1, 1fr);
    margin-top: calc(50 / 393 * 100vw);
    gap: calc(78 / 393 * 100vw);
  }
  .index_page .seminar__btn {
    font-size: calc(16 / 393 * 100vw);
  }
  .index_page .seminar__btn a {
    gap: calc(12 / 393 * 100vw);
  }
  .index_page .seminar__btn a::before {
    width: calc(50 /393 * 100vw);
    height: calc(40 /393 * 100vw);
  }
  .index_page .seminar .seminar_item__img {
    height: calc(182 / 393 * 100vw);
  }
  .index_page .seminar .seminar_item__title {
    font-size: calc(17 / 393 * 100vw);
    margin-top: calc(20 / 393 * 100vw);
  }
  .index_page .seminar .seminar_item__lead {
    margin-top: calc(16 / 393 * 100vw);
    font-size: calc(14 /393 * 100vw);
    line-height: 1.7;
  }
  .index_page .seminar .seminar_category {
    margin-top: calc(16 / 393 * 100vw);
    gap: calc(12 / 393 * 100vw);
  }
  .index_page .seminar .seminar_category__item {
    font-size: calc(12 / 393 * 100vw);
  }
  .index_page .seminar .seminar_category__item a {
    padding: calc(4 /393 * 100vw) calc(10 / 393 * 100vw) calc(5 / 393 * 100vw);
  }
  .index_page .seminar .seminar_schedule {
    flex-direction: column;
    margin: calc(40 /393 * 100vw) auto 0;
    width: calc(353 / 393 * 100vw);
    grid-template-columns: repeat(1, 1fr);
  }
  .index_page .seminar .seminar_schedule::before {
    display: none;
  }
  .index_page .seminar .seminar_schedule__label {
    font-size: calc(16 / 393 * 100vw);
    padding: calc(13 / 393 * 100vw);
  }
  .index_page .seminar .seminar_schedule__list {
    margin-top: calc(20 / 393 * 100vw);
  }
  .index_page .seminar .seminar_schedule__item + .seminar_schedule__item {
    margin-top: calc(15 / 393 * 100vw);
  }
  .index_page .seminar .seminar_schedule__item--disabled .seminar_schedule__link::after {
    border-left: calc(7 / 393 * 100vw) solid #b9b9b9;
  }
  .index_page .seminar .seminar_schedule__date {
    font-size: calc(16 / 393 * 100vw);
  }
  .index_page .seminar .seminar_schedule__time {
    font-size: calc(16 / 393 * 100vw);
  }
  .index_page .seminar .seminar_schedule__time span {
    font-size: calc(12 / 393 * 100vw);
  }
  .index_page .seminar .seminar_schedule__link {
    font-size: calc(15 / 393 * 100vw);
    gap: calc(10 / 393 * 100vw);
    line-height: 1;
  }
  .index_page .seminar .seminar_schedule__link::after {
    border: calc(7 / 393 * 100vw) solid transparent;
    border-left: calc(7 / 393 * 100vw) solid #ef858c;
  }
  .index_page .about {
    padding: calc(60 / 393 * 100vw) 20px calc(300 / 393 * 100vw);
  }
  .index_page .about::before {
    display: none;
  }
  .index_page .about__head {
    flex-direction: column;
    align-items: center;
    gap: calc(30 / 393 * 100vw);
  }
  .index_page .about__en_title {
    font-size: calc(36 / 393 * 100vw);
    text-align: center;
  }
  .index_page .about__jp_title {
    margin-top: calc(8 / 393 * 100vw);
    font-size: calc(16 / 393 * 100vw);
  }
  .index_page .about__lead {
    font-size: calc(15 / 393 * 100vw);
  }
  .index_page .about__contents {
    flex-direction: column;
    gap: calc(108 /393 * 100vw);
  }
  .index_page .about .about_item {
    width: 100%;
  }
  .index_page .about .about_item__label {
    font-size: calc(16 / 393 * 100vw);
  }
  .index_page .about .about_item__label span {
    font-size: calc(64 / 393 * 100vw);
    line-height: 0.8;
  }
  .index_page .about .about_item__title {
    margin-top: calc(20 / 393 * 100vw);
    font-size: calc(17 / 393 * 100vw);
  }
  .index_page .about .about_item__text {
    font-size: calc(15 / 393 * 100vw);
    margin-top: calc(20 / 393 * 100vw);
  }
  .index_page .teacher {
    margin-top: calc(-100 / 393 * 100vw);
  }
  .index_page .teacher__inner {
    flex-direction: column;
  }
  .index_page .teacher__img {
    width: calc(333 / 393 * 100vw);
  }
  .index_page .teacher__img::before {
    background: url("/assets/img/top/bg_teacher_decoration01_sp.svg") no-repeat;
    background-size: contain;
    bottom: auto;
    top: calc(-115 / 393 * 100vw);
    right: calc(-35 / 393 * 100vw);
    left: auto;
    width: calc(102 / 393 * 100vw);
    height: calc(144 / 393 * 100vw);
  }
  .index_page .teacher .teacher_main {
    padding: calc(40 / 393 * 100vw) 20px calc(80 / 393 * 100vw);
  }
  .index_page .teacher .teacher_main::before {
    background: url("/assets/img/top/bg_teacher_decoration02_sp.svg") no-repeat;
    background-size: contain;
    top: auto;
    bottom: calc(-125 / 393 * 100vw);
    right: auto;
    left: calc(-30 / 393 * 100vw);
  }
  .index_page .teacher .teacher_main__inner {
    padding-left: 0;
    width: 100%;
  }
  .index_page .teacher .teacher_main__en_title {
    text-align: center;
    font-size: calc(36 /393 * 100vw);
  }
  .index_page .teacher .teacher_main__jp_title {
    text-align: center;
    font-size: calc(16 /393 * 100vw);
    margin-top: calc(2 / 393 * 100vw);
  }
  .index_page .teacher .teacher_main__lead {
    margin-top: calc(30 /393 * 100vw);
    font-size: calc(15 / 393 * 100vw);
  }
  .index_page .teacher .teacher_foot {
    flex-direction: column-reverse;
    gap: calc(30 / 393 * 100vw);
  }
  .index_page .teacher .teacher_foot__btn {
    font-size: calc(16 / 393 * 100vw);
  }
  .index_page .teacher .teacher_foot__btn a {
    gap: calc(12 / 393 * 100vw);
  }
  .index_page .teacher .teacher_foot__btn a::before {
    width: calc(50 / 393 * 100vw);
    height: calc(40 / 393 * 100vw);
  }
  .index_page .teacher .teacher_foot__name {
    align-self: flex-end;
    font-size: calc(13 / 393 * 100vw);
  }
  .index_page .teacher .teacher_foot__name span {
    font-size: calc(20 / 393 * 100vw);
    margin-left: calc(8 / 393 * 100vw);
  }
  .index_page .voice__head {
    flex-direction: column;
    gap: calc(30 / 393 * 100vw);
  }
  .index_page .voice__en_title {
    text-align: center;
    font-size: calc(36 / 393 * 100vw);
  }
  .index_page .voice__jp_title {
    margin-top: calc(2 / 393 * 100vw);
    font-size: calc(16 / 393 * 100vw);
  }
  .index_page .voice__lead {
    font-size: calc(15 / 393 * 100vw);
  }
  .index_page .voice__btn {
    margin-top: calc(60 / 393 * 100vw);
    text-align: center;
    font-size: calc(16 / 393 * 100vw);
  }
  .index_page .voice__btn a {
    gap: calc(12 / 393 * 100vw);
  }
  .index_page .voice__btn a::before {
    width: calc(50 / 393 * 100vw);
    height: calc(40 / 393 * 100vw);
  }
  .index_page .voice__contents {
    grid-template-columns: repeat(1, 1fr);
    gap: calc(12 / 393 * 100vw);
  }
  .index_page .voice .voice_item {
    align-items: flex-start;
    padding: calc(20 / 393 * 100vw);
  }
  .index_page .voice .voice_item__img {
    margin-top: calc(20 / 393 * 100vw);
    width: calc(60 / 393 * 100vw);
    max-width: none;
    min-width: none;
  }
  .index_page .voice .voice_item__text {
    font-size: calc(13 / 393 * 100vw);
  }
  .index_page .voice .voice_item__name {
    margin-top: calc(10 / 393 * 100vw);
    font-size: calc(13 / 393 * 100vw);
  }
  .index_page .thanks {
    margin: calc(130 / 393 * 100vw) 0 calc(100 /393 * 100vw);
  }
  .index_page .thanks__en_title {
    font-size: calc(36 / 393 * 100vw);
  }
  .index_page .thanks__jp_title {
    margin-top: calc(3 / 393 * 100vw);
    font-size: calc(16 / 393 * 100vw);
  }
  .index_page .thanks__lead {
    margin-top: calc(30 / 393 * 100vw);
    font-size: calc(15 /393 * 100vw);
    text-align: left;
    padding-inline: calc(20 / 393 * 100vw);
  }
  .index_page .thanks__contents {
    margin-top: calc(50 / 393 * 100vw);
  }
  .index_page .thanks__item img {
    min-width: 250vw;
  }
  .index_page .thanks__item + .thanks__item img {
    margin-top: calc(20 / 393 * 100vw);
  }
  .index_page .donations {
    padding: calc(60 / 393 * 100vw) 20px;
  }
  .index_page .donations__title {
    font-size: calc(36 / 393 * 100vw);
  }
  .index_page .donations__lead {
    margin-top: calc(3 / 393 * 100vw);
    font-size: calc(16 /393 * 100vw);
  }
  .index_page .donations__contents {
    margin-top: calc(50 / 393 * 100vw);
    gap: calc(60 / 393 * 100vw);
    flex-direction: column;
    align-items: center;
  }
  .index_page .donations .donations_item {
    width: calc(353 / 393 * 100vw);
  }
  .index_page .donations .donations_item + .donations_item {
    width: calc(273 / 393 * 100vw);
  }
  .index_page .donations .donations_item__text {
    font-size: calc(14 /393 * 100vw);
    margin-top: calc(12 / 393 * 100vw);
    white-space: nowrap;
  }
  .index_page .news {
    margin: calc(130 /393 * 100vw) auto;
  }
  .index_page .news__inner {
    flex-direction: column;
    align-items: center;
    gap: calc(50 / 393 * 100vw);
  }
  .index_page .news .news_head__en_title {
    font-size: calc(36 / 393 * 100vw);
  }
  .index_page .news .news_head__jp_title {
    text-align: center;
    font-size: calc(16 / 393 * 100vw);
    margin-top: calc(5 / 393 * 100vw);
  }
  .index_page .news .news_head__btn {
    margin-top: calc(10 / 393 * 100vw);
  }
  .index_page .news .news_head__btn a {
    gap: calc(12 / 393 * 100vw);
  }
  .index_page .news .news_head__btn a::before {
    width: calc(50 / 393 * 100vw);
    height: calc(40 / 393 * 100vw);
  }
  .index_page .news .news_list__item {
    flex-direction: column;
    gap: 0;
  }
  .index_page .news .news_list__item + .news_list__item {
    margin-top: calc(30 / 393 * 100vw);
  }
  .index_page .news .news_list__date {
    font-size: calc(14 / 393 * 100vw);
  }
  .index_page .news .news_list__title {
    font-size: calc(15 /393 * 100vw);
  }
  .news_detail_page .news_detail_block {
    padding: calc(30 / 393 * 100vw) calc(20 / 393 * 100vw) calc(130 / 393 * 100vw);
  }
  .news_detail_page .news_content_block__detail {
    margin-bottom: calc(30 / 393 * 100vw);
    border-radius: 0.8em;
  }
  .news_detail_page .news_content_block__detail .news_content_block_detail_inner {
    padding: calc(35 / 393 * 100vw) calc(20 / 393 * 100vw) calc(60 / 393 * 100vw);
  }
  .news_detail_page .news_content_block__detail .news_content_block_detail_head {
    padding-bottom: calc(30 / 393 * 100vw);
    margin-bottom: calc(30 / 393 * 100vw);
  }
  .news_detail_page .news_content_block__detail .news_content_block_detail_head__time {
    font-size: calc(13 / 393 * 100vw);
    margin-bottom: calc(10 / 393 * 100vw);
  }
  .news_detail_page .news_content_block__detail .news_content_block_detail_head__title h2 {
    font-size: calc(19 / 393 * 100vw);
  }
  .news_detail_page .news_content_block__detail .news_content_block_detail_text {
    font-size: calc(15 / 393 * 100vw);
  }
  .news_detail_page .news_content_block__link .news_content_block_link_next a,
  .news_detail_page .news_content_block__link .news_content_block_link_previous a {
    font-size: calc(13 / 393 * 100vw);
    letter-spacing: 0.1em;
  }
  .news_detail_page .news_content_block__link .news_content_block_link_next a::before,
  .news_detail_page .news_content_block__link .news_content_block_link_previous a::before {
    width: calc(41 / 393 * 100vw);
    height: calc(32 / 393 * 100vw);
  }
  .news_detail_page .news_content_block__link .news_content_block_link_next a {
    padding-right: calc(47 / 393 * 100vw);
  }
  .news_detail_page .news_content_block__link .news_content_block_link_previous a {
    padding-left: calc(47 / 393 * 100vw);
  }
  .news_page {
    padding-bottom: calc(130 / 393 * 100vw);
  }
  .news_page .news_block {
    padding: calc(30 / 393 * 100vw) calc(20 / 393 * 100vw) calc(60 / 393 * 100vw);
  }
  .news_page .archive_block {
    margin-right: 0;
    margin: 0 0 calc(30 / 393 * 100vw) 0;
    border-radius: 0.8em;
  }
  .news_page .archive_block__inner {
    padding: calc(30 / 393 * 100vw) calc(20 / 393 * 100vw);
  }
  .news_page .archive_block__head {
    margin-bottom: calc(14 / 393 * 100vw);
  }
  .news_page .archive_block__head .archive_head_main {
    font-size: calc(14 / 393 * 100vw);
    margin-right: calc(12 / 393 * 100vw);
  }
  .news_page .archive_block__head .archive_head_sub {
    font-size: calc(13 / 393 * 100vw);
  }
  .news_page .archive_block__selectbox::after {
    width: calc(10 / 393 * 100vw);
    height: calc(10 / 393 * 100vw);
    border-bottom: calc(2 / 393 * 100vw) solid #c7c7c7;
    border-right: calc(2 / 393 * 100vw) solid #c7c7c7;
    right: calc(30 / 393 * 100vw);
  }
  .news_page .archive_block__selectbox select {
    font-size: calc(17 / 393 * 100vw);
    padding: calc(13 / 393 * 100vw) calc(20 / 393 * 100vw) calc(13 / 393 * 100vw) calc(12 / 393 * 100vw);
    border: calc(1 / 393 * 100vw) solid #e2e2e2;
    border-radius: 0.6em;
  }
  .news_page .news_list_block {
    border-radius: 0.8em;
  }
  .news_page .news_list_block__inner {
    padding: calc(40 / 393 * 100vw) calc(20 / 393 * 100vw) calc(60 / 393 * 100vw);
  }
  .news_page .news_list_block ul li {
    padding-bottom: calc(24 / 393 * 100vw);
    margin-bottom: calc(28 / 393 * 100vw);
  }
  .news_page .news_list_block ul li::before {
    height: calc(1 / 393 * 100vw);
  }
  .news_page .news_list_block ul li article a {
    flex-direction: column;
  }
  .news_page .news_list_block__time {
    padding-right: 0;
  }
  .news_page .news_list_block__time time {
    font-size: calc(14 / 393 * 100vw);
    margin-bottom: calc(2 / 393 * 100vw);
  }
  .news_page .news_list_block__title h3 {
    font-size: calc(15 / 393 * 100vw);
  }
  .news_page .news_pagelink_block .wp-pagenavi .nextpostslink,
  .news_page .news_pagelink_block .wp-pagenavi .previouspostslink {
    font-size: calc(13 / 393 * 100vw);
  }
  .news_page .news_pagelink_block .wp-pagenavi .nextpostslink::before,
  .news_page .news_pagelink_block .wp-pagenavi .previouspostslink::before {
    width: calc(9 / 393 * 100vw);
    height: calc(10 / 393 * 100vw);
  }
  .news_page .news_pagelink_block .wp-pagenavi .nextpostslink {
    margin-left: calc(25 / 393 * 100vw);
  }
  .news_page .news_pagelink_block .wp-pagenavi .nextpostslink::before {
    right: calc(-15 / 393 * 100vw);
  }
  .news_page .news_pagelink_block .previouspostslink {
    margin-right: calc(25 / 393 * 100vw);
  }
  .news_page .news_pagelink_block .previouspostslink::before {
    left: calc(-15 / 393 * 100vw);
  }
  .news_page .news_pagelink_block .page {
    font-size: calc(16 / 393 * 100vw);
    min-width: calc(32 / 393 * 100vw);
    margin: 0 calc(3 / 393 * 100vw);
    padding: calc(4 / 393 * 100vw) calc(9 / 393 * 100vw);
  }
  .news_page .news_pagelink_block .current {
    font-size: calc(16 / 393 * 100vw);
    min-width: calc(32 / 393 * 100vw);
    margin: 0 calc(3 / 393 * 100vw);
    padding: calc(4 / 393 * 100vw) calc(9 / 393 * 100vw);
  }
  .news_page .news_pagelink_block .extend {
    font-size: calc(16 / 393 * 100vw);
  }
  .news_page .press_release_block {
    padding: 0 calc(20 / 393 * 100vw);
  }
  .news_page .press_release_block__inner {
    padding: calc(60 / 393 * 100vw) calc(20 / 393 * 100vw) calc(60 / 393 * 100vw) !important;
    border-radius: 0.8em;
  }
  .news_page .press_release_block__head {
    margin-bottom: calc(30 / 393 * 100vw);
  }
  .news_page .press_release_block__head h3 {
    font-size: calc(36 / 393 * 100vw);
    margin-bottom: calc(8 / 393 * 100vw);
  }
  .news_page .press_release_block__head p {
    font-size: calc(16 / 393 * 100vw);
  }
  .news_page .press_release_block__lead {
    margin-bottom: calc(40 / 393 * 100vw);
  }
  .news_page .press_release_block__lead p {
    font-size: calc(14 / 393 * 100vw);
  }
  .news_page .press_release_block__list ul {
    flex-direction: column;
    margin: 0;
  }
  .news_page .press_release_block__list ul li {
    width: 100%;
    margin: 0 0 calc(30 / 393 * 100vw) 0;
  }
  .news_page .press_release_block__list ul li:last-child {
    margin: 0;
  }
  .news_page .press_release_block__item .press_release_item_image {
    margin-bottom: calc(10 / 393 * 100vw);
    border-radius: 1em;
  }
  .news_page .press_release_block__item .press_release_item_detail {
    flex-direction: column;
  }
  .news_page .press_release_block__item .press_release_item_detail__tag {
    font-size: calc(12 / 393 * 100vw);
    margin-right: 0;
    min-width: calc(85 / 393 * 100vw);
    padding: calc(4 / 393 * 100vw) calc(20 / 393 * 100vw);
    margin-bottom: calc(6 / 393 * 100vw);
    border-radius: 0.5em;
  }
  .news_page .press_release_block__item .press_release_item_detail__text {
    font-size: calc(14 / 393 * 100vw);
  }
  .search_page .search_block__inner {
    padding-inline: calc(20 / 393 * 100vw);
    padding-top: calc(32 / 393 * 100vw);
    padding-bottom: calc(130 / 393 * 100vw);
    max-width: 100%;
  }
  .search_page .search_block__wrap {
    gap: calc(13 / 393 * 100vw);
  }
  .search_page .search_block__tag {
    font-size: calc(17 / 393 * 100vw);
  }
  .search_page .search_block__result {
    font-size: calc(13 / 393 * 100vw);
  }
  .search_page .search_block__contents {
    border-radius: calc(8 / 393 * 100vw);
    margin-top: calc(32 / 393 * 100vw);
    padding: calc(10 / 393 * 100vw) calc(20 / 393 * 100vw);
  }
  .search_page .search_block__content {
    padding: calc(30 / 393 * 100vw) 0;
    gap: calc(8 / 393 * 100vw);
    flex-wrap: wrap;
  }
  .search_page .search_block__img {
    max-width: calc(98 / 393 * 100vw);
  }
  .search_page .search_block__right {
    display: contents;
  }
  .search_page .search_block__meta {
    width: 60%;
    flex: auto;
  }
  .search_page .search_block__head {
    font-size: calc(15 / 393 * 100vw);
    line-height: 1.6;
  }
  .search_page .search_block .breadcrumb {
    font-size: calc(11 / 393 * 100vw);
    margin-top: 0;
  }
  .search_page .search_block .breadcrumb span {
    font-size: calc(11 / 393 * 100vw);
  }
  .search_page .search_block .breadcrumb span:not(:first-child) {
    margin-left: calc(8 / 393 * 100vw);
  }
  .search_page .search_block__text {
    font-size: calc(14 / 393 * 100vw);
    margin-top: calc(6 / 393 * 100vw);
    order: 2;
  }
  .search_page .search_block__pagenavi {
    margin-top: calc(60 / 393 * 100vw);
  }
  .seminar_detail_page .article_column {
    display: block;
    margin: 0 auto 30px;
  }
  .seminar_detail_page .article_main {
    width: 100%;
    padding: 34px 5.6% 1px;
    border-radius: 8px;
  }
  .seminar_detail_page .article_main__heading {
    margin: 0 0 30px;
  }
  .seminar_detail_page .article_main__heading h1 {
    font-size: calc(17 / 393 * 100vw);
    line-height: 165%;
    letter-spacing: 1.02px;
  }
  .seminar_detail_page .article_main__heading .seminar_tag__list li a {
    padding: 3px 15px;
  }
  .seminar_detail_page .article_main__img {
    margin: 0 0 32px;
  }
  .seminar_detail_page .article_main__section {
    margin: 0 0 26px;
  }
  .seminar_detail_page .article_main__section hr {
    margin: 31px 0;
  }
  .seminar_detail_page .article_main__section h2 {
    margin: 0 0 12px;
    font-size: calc(16 / 393 * 100vw);
  }
  .seminar_detail_page .article_main__section_column {
    display: block;
  }
  .seminar_detail_page .article_main__section_column_01 {
    width: 100%;
  }
  .seminar_detail_page .article_main__section_column_01 + .article_main__section_column_02, .seminar_detail_page .article_main__section_column_02 + .article_main__section_column_01 {
    margin-top: 22px;
  }
  .seminar_detail_page .article_main__section_column_02 {
    width: 100%;
  }
  .seminar_detail_page .article_main__section ul li {
    line-height: 190%;
  }
  .seminar_detail_page .article_main__section ul li + li {
    margin-top: 0;
  }
  .seminar_detail_page .article_main p,
  .seminar_detail_page .article_main ul {
    font-size: calc(15 / 393 * 100vw);
  }
  .seminar_detail_page .article_main p + ul,
  .seminar_detail_page .article_main ul + p {
    margin-top: 26px;
  }
  .seminar_detail_page .article_main__dl {
    display: block;
    padding: 10px 8.5% 23px;
    border-radius: 7px;
    background: #f6f6f6;
  }
  .seminar_detail_page .article_main__dl dt {
    width: 100%;
    padding: 22px 0 12px;
    border-bottom: none;
    font-size: calc(15 / 393 * 100vw);
  }
  .seminar_detail_page .article_main__dl dd {
    width: 100%;
    padding: 0 0 31px;
    font-size: calc(15 / 393 * 100vw);
    line-height: 160%;
    letter-spacing: 0.3px;
  }
  .seminar_detail_page .article_main__dl dd .is-fontsize-13 {
    font-size: calc(13 / 393 * 100vw);
  }
  .seminar_detail_page .article_main__dl dd .is-fontsize-14-sp {
    font-size: calc(14 / 393 * 100vw);
  }
  .seminar_detail_page .article_main__button {
    width: 100%;
    margin: 0 auto calc(30 / 393 * 100vw);
  }
  .seminar_detail_page .article_sub {
    width: 100%;
    margin: 64px 0 0;
  }
  .seminar_detail_page .article_sub__aside {
    padding: 9px 5.5% 50px;
    border-radius: 8px;
  }
  .seminar_detail_page .article_sub__aside dl dt {
    font-size: calc(16 / 393 * 100vw);
  }
  .seminar_detail_page .article_sub__aside dl dd {
    font-size: calc(15 / 393 * 100vw);
  }
  .seminar_detail_page .article_sub__aside_note {
    font-size: calc(14 / 393 * 100vw);
  }
  .seminar_detail_page .article_sub__aside_reason {
    font-size: calc(12 / 393 * 100vw);
  }
  .seminar_detail_page .article_sub__aside_button {
    height: 46px;
    margin: 30px 0 0;
    font-size: calc(16 / 393 * 100vw);
  }
  .seminar_detail_page .article_sub__note {
    font-size: calc(12 / 393 * 100vw);
    margin-top: calc(10 / 393 * 100vw);
  }
  .seminar_page .mainvisual_award {
    flex-direction: column;
    gap: calc(20 / 393 * 100vw);
    margin-top: calc(40 / 393 * 100vw);
  }
  .seminar_page .mainvisual_award__item {
    padding-inline: calc(46 / 393 * 100vw);
  }
  .seminar_page .mainvisual_award__item::before, .seminar_page .mainvisual_award__item::after {
    width: calc(40 / 393 * 100vw);
    height: calc(90 / 393 * 100vw);
  }
  .seminar_page .mainvisual_award__label {
    font-size: calc(18 / 393 * 100vw);
    line-height: 1.1;
    margin-bottom: calc(0 / 393 * 100vw);
  }
  .seminar_page .mainvisual_award__label--small {
    font-size: calc(13 / 393 * 100vw);
    width: 100%;
    margin-bottom: 0;
  }
  .seminar_page .mainvisual_award__text {
    letter-spacing: calc(-1 / 393 * 100vw);
    gap: calc(5 / 393 * 100vw);
    font-size: calc(50 / 393 * 100vw);
    line-height: 1.1;
  }
  .seminar_page .mainvisual_award__text span {
    margin-bottom: calc(8 / 393 * 100vw);
    font-size: calc(14 / 393 * 100vw);
    letter-spacing: 0.2px;
    line-height: 1.1;
  }
  .seminar_page .lead_block {
    overflow: visible;
    margin: 0 0 245px;
  }
  .seminar_page .lead_block__inner {
    width: 90%;
    padding: 34px 5% 117px;
    border-radius: 8px;
  }
  .seminar_page .lead_block__text {
    margin: 0 0 calc(15 / 393 * 100vw);
    font-size: calc(15 / 393 * 100vw);
    line-height: 180%;
    letter-spacing: 0.75px;
  }
  .seminar_page .lead_block__number ul {
    display: block;
  }
  .seminar_page .lead_block__number ul li {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0;
  }
  .seminar_page .lead_block__number ul li + li {
    margin-top: 20px;
  }
  .seminar_page .lead_block__number p {
    padding: 20px 0 60px;
    font-size: calc(10 / 393 * 100vw);
    line-height: 180%;
  }
  .seminar_page .lead_block__bg01 {
    top: -70px;
    left: auto;
    right: 4px;
    width: 138px;
    height: 106px;
  }
  .seminar_page .lead_block__bg02 {
    left: 10px;
    top: auto;
    right: auto;
    bottom: -155px;
    width: 343px;
    max-width: 100%;
    height: 174px;
  }
  .seminar_page .lead_block__recommend {
    width: 100%;
    padding: 36px 4% 46px 6.5%;
    border-radius: 6px;
  }
  .seminar_page .lead_block__recommend h2 {
    margin: 0 0 22px;
    font-size: calc(18 / 393 * 100vw);
    letter-spacing: 1.5px;
  }
  .seminar_page .lead_block__recommend ul li {
    font-size: calc(14 / 393 * 100vw);
    line-height: 170%;
  }
  .seminar_page .lead_block__recommend ul li + li {
    margin-top: 17px;
  }
  .seminar_page .lead_block__recommend ul li::before {
    margin: 8px 10px 0 0;
  }
  .seminar_page .lead_block__recommend_bg01 {
    left: -13px;
    bottom: -78px;
    width: 75px;
  }
  .seminar_page .lead_block__recommend_bg02 {
    right: -16px;
    bottom: -73px;
    width: 76px;
  }
  .seminar_page .lead_block__recommend_bg03 {
    width: 124px;
    top: -50px;
    left: -36px;
  }
  .seminar_page .seminar_block h2 {
    margin: 0 0 40px;
    font-size: calc(22 / 393 * 100vw);
    line-height: 100%;
    letter-spacing: 1.1px;
  }
  .seminar_page .seminar_block__wrapper {
    display: block;
  }
  .seminar_page .seminar_block__sub {
    width: 100%;
    margin: 0 0 84px;
  }
  .seminar_page .seminar_block__sub_frame {
    padding: 30px 20px 36px;
  }
  .seminar_page .seminar_block__sub_heading span:nth-child(1) {
    font-size: calc(14 / 393 * 100vw);
    line-height: 160%;
  }
  .seminar_page .seminar_block__sub_heading span:nth-child(2) {
    margin-left: 8px;
    font-size: calc(13 / 393 * 100vw);
  }
  .seminar_page .seminar_block__sub_body select {
    width: 83%;
    font-size: calc(14 / 393 * 100vw);
  }
  .seminar_page .seminar_block__main {
    width: 100%;
  }
  .seminar_page .seminar_block__main_list {
    display: block;
    margin: 0 0 60px;
  }
  .seminar_page .seminar_block__main_item + .seminar_block__main_item {
    margin-top: 32px;
  }
  .seminar_page .seminar_block__main_img {
    margin: 0 0 22px;
    border-radius: 4px;
  }
  .seminar_page .seminar_block__main_text {
    margin: 0 0 13px;
    font-size: calc(15 / 393 * 100vw);
    line-height: 150%;
  }
  .seminar_page .seminar_block__main_date {
    margin: 0 0 14px;
    font-size: calc(13 / 393 * 100vw);
    letter-spacing: 0.52px;
  }
  .seminar_page .seminar_block__main .seminar_tag__list li a {
    padding: 2px 17px;
    font-size: calc(12 / 393 * 100vw);
  }
  .seminar_page .seminar_block .tablecalendar {
    padding: calc(25 / 393 * 100vw);
    margin-top: calc(10 / 393 * 100vw);
  }
  .seminar_page .seminar_block .tablecalendar__year {
    font-size: calc(14 / 393 * 100vw);
  }
  .seminar_page .seminar_block .tablecalendar__year a span {
    font-size: calc(18 / 393 * 100vw);
  }
  .seminar_page .seminar_block .tablecalendar__btn {
    font-size: calc(15 / 393 * 100vw);
    gap: calc(5 / 393 * 100vw);
  }
  .seminar_page .seminar_block .tablecalendar__btn.next::after {
    border: calc(5 / 393 * 100vw) solid transparent;
    border-left: calc(5 / 393 * 100vw) solid #ef858c;
    margin-top: calc(2 / 393 * 100vw);
  }
  .seminar_page .seminar_block .tablecalendar__btn.prev::before {
    border: calc(5 / 393 * 100vw) solid transparent;
    border-right: calc(5 / 393 * 100vw) solid #ef858c;
    margin-top: calc(2 / 393 * 100vw);
  }
  .seminar_page .seminar_block .tablecalendar thead th {
    font-size: calc(15 / 393 * 100vw);
  }
  .seminar_page .seminar_block .tablecalendar tbody td {
    font-size: calc(16 / 393 * 100vw);
    padding: calc(8 / 393 * 100vw);
  }
  .seminar_page .seminar_block .tablecalendar tbody td.today::before {
    width: calc(25 / 393 * 100vw);
    height: calc(25 / 393 * 100vw);
  }
  .teacher_detail_page .teacher_block {
    padding: calc(30 / 393 * 100vw) calc(20 / 393 * 100vw) calc(30 / 393 * 100vw);
  }
  .teacher_detail_page .teacher_block__inner {
    padding: calc(80 / 393 * 100vw) calc(20 / 393 * 100vw) calc(60 / 393 * 100vw) !important;
  }
  .teacher_detail_page .teacher_block__shape {
    width: calc(120 / 393 * 100vw);
    top: calc(-60 / 393 * 100vw);
    right: calc(-10 / 393 * 100vw);
  }
  .teacher_detail_page .teacher_block__head {
    flex-direction: column;
    padding-bottom: calc(40 / 393 * 100vw);
    margin-bottom: calc(30 / 393 * 100vw);
  }
  .teacher_detail_page .teacher_block__head .teacher_head_left {
    margin: 0 auto calc(40 / 393 * 100vw) !important;
    min-width: calc(225 / 393 * 100vw);
  }
  .teacher_detail_page .teacher_block__head .teacher_head_left__image {
    margin-bottom: calc(16 / 393 * 100vw);
    border-radius: 0.8em;
  }
  .teacher_detail_page .teacher_block__head .teacher_head_left__enName {
    font-size: calc(13 / 393 * 100vw);
    margin-bottom: calc(16 / 393 * 100vw);
    text-align: center;
  }
  .teacher_detail_page .teacher_block__head .teacher_head_left__jpName {
    font-size: calc(24 / 393 * 100vw);
    text-align: center;
  }
  .teacher_detail_page .teacher_block__head .teacher_head_right {
    width: 100%;
  }
  .teacher_detail_page .teacher_block__head .teacher_head_right__title {
    padding: calc(20 / 393 * 100vw) calc(25 / 393 * 100vw);
    margin-bottom: calc(40 / 393 * 100vw);
    margin-top: 0;
  }
  .teacher_detail_page .teacher_block__head .teacher_head_right__title::before, .teacher_detail_page .teacher_block__head .teacher_head_right__title::after {
    width: calc(20 / 393 * 100vw);
    height: calc(20 / 393 * 100vw);
  }
  .teacher_detail_page .teacher_block__head .teacher_head_right__title h2 {
    font-size: calc(24 / 393 * 100vw);
    text-align: justify;
  }
  .teacher_detail_page .teacher_block__head .teacher_head_right__profile {
    border-radius: calc(12 / 393 * 100vw);
    padding: calc(35 / 393 * 100vw) calc(20 / 393 * 100vw) calc(30 / 393 * 100vw);
  }
  .teacher_detail_page .teacher_block__head .teacher_head_right__profile .teacher_profile_title {
    min-width: calc(85 / 393 * 100vw);
    padding-right: calc(10 / 393 * 100vw);
    font-size: calc(14 / 393 * 100vw);
  }
  .teacher_detail_page .teacher_block__head .teacher_head_right__profile .teacher_profile_text {
    font-size: calc(14 / 393 * 100vw);
    line-height: 165%;
  }
  .teacher_detail_page .teacher_block__head .teacher_head_right__profile ul li + li {
    margin-top: calc(10 / 393 * 100vw);
  }
  .teacher_detail_page .teacher_block__label {
    font-size: calc(16 / 393 * 100vw);
    margin-bottom: calc(10 / 393 * 100vw);
  }
  .teacher_detail_page .teacher_block__qualification {
    padding-bottom: calc(40 / 393 * 100vw);
    margin-bottom: calc(30 / 393 * 100vw);
  }
  .teacher_detail_page .teacher_block__qualification ul li {
    font-size: calc(15 / 393 * 100vw);
    padding-left: calc(20 / 393 * 100vw);
    line-height: 150%;
  }
  .teacher_detail_page .teacher_block__qualification ul li + li {
    margin-top: calc(15 / 393 * 100vw);
  }
  .teacher_detail_page .teacher_block__short_cv .teacher_short_cv_text {
    font-size: calc(15 / 393 * 100vw);
    letter-spacing: calc(0.3 / 393 * 100vw);
    line-height: 190%;
  }
  .teacher_detail_page .teacher_link {
    padding: 0 calc(20 / 393 * 100vw) calc(130 / 393 * 100vw);
  }
  .teacher_detail_page .teacher_link__next a::before, .teacher_detail_page .teacher_link__previous a::before {
    width: calc(41 / 393 * 100vw);
    height: calc(31 / 393 * 100vw);
  }
  .teacher_detail_page .teacher_link__next a {
    padding-right: calc(47 / 393 * 100vw);
  }
  .teacher_detail_page .teacher_link__previous a {
    padding-left: calc(47 / 393 * 100vw);
  }
  .teacher_detail_page .teacher_link__label {
    font-size: calc(13 / 393 * 100vw);
    margin-bottom: calc(4 / 393 * 100vw);
  }
  .teacher_detail_page .teacher_link__name {
    font-size: calc(16 / 393 * 100vw);
  }
  .teacher_page .mainvisual_block {
    padding: calc(30 / 393 * 100vw) 0 calc(60 / 393 * 100vw) calc(20 / 393 * 100vw);
  }
  .teacher_page .mainvisual_block__image {
    width: calc(353 / 393 * 100vw);
    padding-left: calc(20 / 393 * 100vw);
  }
  .teacher_page .mainvisual_block__content {
    position: relative;
    width: calc(100% - 20px);
    top: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    margin-top: calc(-60 / 393 * 100vw);
    padding: calc(30 / 393 * 100vw) calc(20 / 393 * 100vw) calc(40 / 393 * 100vw);
  }
  .teacher_page .mainvisual_block__content .mainvisual_content_title {
    font-size: calc(19 / 393 * 100vw);
    margin-bottom: calc(35 / 393 * 100vw);
    letter-spacing: 0.01em;
  }
  .teacher_page .mainvisual_block__content .mainvisual_content_text p {
    font-size: calc(14 / 393 * 100vw);
    letter-spacing: 0.01em;
  }
  .teacher_page .mainvisual_block__content .mainvisual_content_text p + p {
    margin-top: calc(30 / 393 * 100vw);
  }
  .teacher_page .about_block {
    padding: calc(45 / 393 * 100vw) calc(20 / 393 * 100vw) calc(80 / 393 * 100vw);
  }
  .teacher_page .about_block__head {
    margin-bottom: calc(30 / 393 * 100vw);
    flex-direction: column-reverse;
  }
  .teacher_page .about_block__title {
    margin-right: 0;
  }
  .teacher_page .about_block__title h2 {
    font-size: calc(20 / 393 * 100vw);
    padding-bottom: calc(5 / 393 * 100vw);
    background: linear-gradient(transparent 80%, rgba(105, 139, 189, 0.2) 0%);
  }
  .teacher_page .about_block__image {
    width: calc(119 / 393 * 100vw);
    margin: 0 auto calc(35 / 393 * 100vw);
  }
  .teacher_page .about_block__text {
    font-size: calc(15 / 393 * 100vw);
    line-height: 180%;
    margin-bottom: calc(54 / 393 * 100vw);
  }
  .teacher_page .about_block__item > ul {
    flex-direction: column;
    justify-content: center;
  }
  .teacher_page .about_block__item > ul li {
    width: 100%;
  }
  .teacher_page .about_block__item > ul li + li {
    margin: calc(55 / 393 * 100vw) 0 0 0;
  }
  .teacher_page .about_block__item > ul li .about_item_content {
    border-radius: 0.6em;
  }
  .teacher_page .about_block__item > ul li .about_item_content__inner {
    padding: calc(25 / 393 * 100vw) calc(20 / 393 * 100vw);
  }
  .teacher_page .about_block__item > ul li .about_item_content__image {
    top: calc(-20 / 393 * 100vw);
    right: calc(20 / 393 * 100vw);
  }
  .teacher_page .about_block__item > ul li .about_item_content__image.is-court_of_the_table {
    width: calc(38 / 393 * 100vw);
  }
  .teacher_page .about_block__item > ul li .about_item_content__image.is-top_of_the_table {
    width: calc(65 / 393 * 100vw);
  }
  .teacher_page .about_block__item > ul li .about_item_content__title {
    font-size: calc(18 / 393 * 100vw);
    margin-bottom: calc(12 / 393 * 100vw);
    letter-spacing: 0.01em;
  }
  .teacher_page .about_block__item > ul li .about_item_content__text {
    font-size: calc(14 / 393 * 100vw);
    margin-bottom: calc(20 / 393 * 100vw);
    line-height: 170%;
    letter-spacing: 0.08em;
  }
  .teacher_page .about_block__item > ul li .about_item_content__card ul li {
    max-width: 100%;
    padding: calc(15 / 393 * 100vw);
  }
  .teacher_page .about_block__item > ul li .about_item_content__card ul li + li {
    margin: 0 0 0 calc(13 / 393 * 100vw);
  }
  .teacher_page .about_block__item > ul li .about_item_content__card ul li p {
    font-size: calc(14 / 393 * 100vw);
    line-height: 160%;
    text-align: left;
  }
  .teacher_page .profiles_block {
    padding: calc(60 / 393 * 100vw) 0 calc(130 / 393 * 100vw) calc(30 / 393 * 100vw) !important;
  }
  .teacher_page .profiles_block__head {
    margin-bottom: calc(60 / 393 * 100vw);
    padding-right: calc(30 / 393 * 100vw);
    text-align: center;
  }
  .teacher_page .profiles_block__head .profiles_head_mainTitle {
    font-size: calc(36 / 393 * 100vw);
    margin-bottom: calc(5 / 393 * 100vw);
  }
  .teacher_page .profiles_block__head .profiles_head_subTitle {
    font-size: calc(16 / 393 * 100vw);
  }
  .teacher_page .profiles_block__swiper {
    overflow: hidden;
  }
  .teacher_page .profiles_block__swiper ul {
    margin: 0 !important;
    flex-wrap: nowrap;
    width: 100%;
  }
  .teacher_page .profiles_block__swiper ul li {
    width: calc(330 / 393 * 100vw) !important;
    min-width: calc(330 / 393 * 100vw);
    padding-right: calc(20 / 393 * 100vw);
    box-sizing: border-box;
    margin: 0px !important;
  }
  .teacher_page .profiles_block__swiper .profiles_swiper_content__name {
    padding-left: calc(25 / 393 * 100vw);
    margin-bottom: calc(20 / 393 * 100vw);
  }
  .teacher_page .profiles_block__swiper .profiles_swiper_content__name .profiles_swiper_name_kanji {
    font-size: calc(18 / 393 * 100vw);
    margin-right: calc(12 / 393 * 100vw);
  }
  .teacher_page .profiles_block__swiper .profiles_swiper_content__name .profiles_swiper_name_hira {
    font-size: calc(12 / 393 * 100vw);
  }
  .teacher_page .profiles_block__swiper .profiles_swiper_content__text {
    padding: 0 calc(10 / 393 * 100vw) calc(25 / 393 * 100vw) calc(25 / 393 * 100vw);
    font-size: calc(12 / 393 * 100vw);
  }

  .test-layout .teacher {
  margin-top: 0 !important;
  padding-top: 100px;
}

.test-layout .teacher__img {
  margin-top: 0 !important;
}

  .voice_page .lead_block {
    margin: 0 auto calc(90 / 393 * 100vw);
  }
  .voice_page .lead_block h2 {
    font-size: calc(17 / 393 * 100vw);
    line-height: 180%;
    letter-spacing: 0.85px;
  }
  .voice_page .lead_slider__item {
    border-radius: calc(5 / 393 * 100vw);
  }
  .voice_page .lead_slider__item_body {
    padding: calc(20 / 393 * 100vw) 6% calc(36 / 393 * 100vw);
  }
  .voice_page .lead_slider__item_ico {
    left: calc(24 / 393 * 100vw);
    top: calc(-22 / 393 * 100vw);
    width: calc(36 / 393 * 100vw);
    height: calc(36 / 393 * 100vw);
  }
  .voice_page .lead_slider__item_title {
    margin: 0 0 calc(24 / 393 * 100vw);
    font-size: calc(18 / 393 * 100vw);
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 0.9px;
  }
  .voice_page .lead_slider__item_text {
    font-size: calc(14 / 393 * 100vw);
  }
  .voice_page .lead_slider__util {
    width: calc(104 / 393 * 100vw);
    margin: calc(20 / 393 * 100vw) calc(10 / 393 * 100vw) 0 auto;
  }
  .voice_page .lead_slider__prev, .voice_page .lead_slider__next {
    width: calc(42 / 393 * 100vw);
    height: calc(31 / 393 * 100vw);
  }
  .voice_page .index_block {
    scroll-margin-top: calc(100 / 393 * 100vw);
  }
  .voice_page .index_block__heading {
    height: calc(54 / 393 * 100vw);
  }
  .voice_page .index_block__heading_inner {
    font-size: calc(10 / 393 * 100vw);
  }
  .voice_page .index_block__heading_inner ::before {
    top: calc(-27 / 393 * 100vw);
    left: calc(-52 / 393 * 100vw);
    width: calc(36 / 393 * 100vw);
    height: calc(36 / 393 * 100vw);
  }
  .voice_page .index_block__body {
    padding: calc(21 / 393 * 100vw) 0 calc(60 / 393 * 100vw);
    border-radius: 0px 0px calc(8 / 393 * 100vw) calc(8 / 393 * 100vw);
  }
  .voice_page .index_block__body_util {
    padding: 0 5% calc(20 / 393 * 100vw);
  }
  .voice_page .index_block__body_util button::before, .voice_page .index_block__body_util a::before {
    width: calc(19 / 393 * 100vw);
    height: calc(19 / 393 * 100vw);
  }
  .voice_page .index_block__column {
    display: block;
  }
  .voice_page .index_block__sub {
    width: 100%;
    margin: 0 0 calc(30 / 393 * 100vw);
  }
  .voice_page .index_block__sub_box {
    padding: calc(30 / 393 * 100vw) 4% calc(20 / 393 * 100vw) 8%;
    border-radius: 8px;
  }
  .voice_page .index_block__sub_box p {
    margin: 0 0 calc(10 / 393 * 100vw);
    font-size: calc(14 / 393 * 100vw);
    line-height: 160%;
    letter-spacing: 0.84px;
  }
  .voice_page .index_block__sub .seminar_tag__list li a {
    padding: calc(8 / 393 * 100vw) calc(15 / 393 * 100vw);
  }
  .voice_page .index_block__main {
    width: 100%;
  }
  .voice_page .index_block__list li + li {
    margin-top: calc(30 / 393 * 100vw);
  }
  .voice_page .index_block__list li {
    padding: calc(30 / 393 * 100vw) 8% calc(30 / 393 * 100vw);
  }
  .voice_page .index_block__list_heading {
    margin: 0 0 calc(24 / 393 * 100vw);
  }
  .voice_page .index_block__list_img {
    width: calc(48 / 393 * 100vw);
    height: calc(48 / 393 * 100vw);
    margin: 0 calc(15 / 393 * 100vw) 0 0;
  }
  .voice_page .index_block__list_img img {
    width: 100%;
    height: auto;
  }
  .voice_page .index_block__list_title {
    padding: 0;
    font-size: calc(14 / 393 * 100vw);
    letter-spacing: 0.56px;
  }
  .voice_page .index_block__list_text {
    font-size: calc(14 / 393 * 100vw);
  }
}

@media screen and (max-width: 1023px) {
  .archive_block {
    width: 100%;
    margin-bottom: 30px;
  }
  .header_block__contents {
    gap: calc(32 / 1024 * 100vw);
  }
  .header_block__list {
    gap: calc(20 / 1024 * 100vw);
  }
  .header_block__item {
    font-size: calc(17 / 1024 * 100vw);
  }
  .news_detail_page .news_detail_block__inner {
    flex-direction: column;
  }
  .news_page .news_block__inner {
    flex-direction: column;
  }
  .news_page .archive_block {
    width: 100%;
    margin-bottom: 30px;
  }
  .news_page .press_release_block__inner {
    padding: 40px 75px 40px;
  }
  .teacher_page .profiles_block {
    padding: 120px 30px 130px;
  }
  .teacher_page .profiles_block__swiper ul {
    margin: -30px -30px 0 0;
  }
  .teacher_page .profiles_block__swiper ul li {
    margin: 30px 30px 0 0;
    width: calc(33.3% - 30px);
  }
}

@media screen and (max-width: 1023px) and (max-width: 768px) {
  .header_block__contents {
    gap: 20px;
    margin-top: 0;
  }
  .header_block__list {
    display: none;
  }
}

@media screen and (max-width: 1199px) {
  .teacher_detail_page .teacher_block__inner {
    padding: 170px 40px 100px 40px;
  }
  .teacher_detail_page .teacher_block__head .teacher_head_left {
    margin-right: 35px;
  }
}

@media screen and (min-width: 1728px) {
  .teacher_page .mainvisual_block__content {
    padding: 50px;
  }
  .teacher_page .mainvisual_block__content .mainvisual_content_title {
    font-size: 28px;
  }
  .teacher_page .mainvisual_block__content .mainvisual_content_text p {
    font-size: 16px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .breadcrumbs_block ul li:not(:last-child):hover {
    opacity: 0.5;
  }
  .c-pagenavi_block .wp-pagenavi .nextpostslink:hover,
  .c-pagenavi_block .wp-pagenavi .previouspostslink:hover {
    opacity: 0.5;
  }
  .c-pagenavi_block .page:hover {
    opacity: 0.5;
  }
  .c-pagenavi_block .extend:hover {
    opacity: 0.5;
  }
  .article_pager a:hover:hover {
    opacity: 0.5;
  }
  .subpage_pager__prev:hover:hover, .subpage_pager__next:hover:hover {
    opacity: 0.5;
  }
  .subpage_pager__number li a:hover:hover {
    opacity: 0.5;
  }
  .seminar_tag__list li a:hover:hover {
    opacity: 0.5;
  }
  .index_page .seminar .seminar_item__link:hover .seminar_item__img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .news_detail_page .news_content_block__link .news_content_block_link_next a:hover,
  .news_detail_page .news_content_block__link .news_content_block_link_previous a:hover {
    opacity: 0.5;
  }
  .news_page .news_list_block ul li article a:hover {
    opacity: 0.5;
  }
  .news_page .news_pagelink_block .wp-pagenavi .nextpostslink:hover,
  .news_page .news_pagelink_block .wp-pagenavi .previouspostslink:hover {
    opacity: 0.5;
  }
  .news_page .news_pagelink_block .page:hover {
    opacity: 0.5;
  }
  .news_page .news_pagelink_block .extend:hover {
    opacity: 0.5;
  }
  .seminar_detail_page .article_sub__aside_button:hover:hover {
    opacity: 0.5;
  }
  .seminar_page .seminar_block__main_item > a:hover:hover {
    opacity: 0.5;
  }
  .teacher_detail_page .teacher_link__next a:hover, .teacher_detail_page .teacher_link__previous a:hover {
    opacity: 0.5;
  }
  .teacher_page .profiles_block__swiper .profiles_swiper_content a:hover {
    opacity: 0.5;
  }
  .voice_page .lead_slider__prev:hover:hover, .voice_page .lead_slider__next:hover:hover {
    opacity: 0.5;
  }
  .voice_page .index_block__body_util button:hover:hover, .voice_page .index_block__body_util a:hover:hover {
    opacity: 0.5;
  }
}

@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
  :focus-visible {
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :where(:not(:active)):focus-visible {
    transition-duration: 0.25s;
  }
}