@charset "UTF-8";
/*partials（設定・基盤）
───────────────────────*/
/*─────PTA Kumamoto color palette─────*/
/*─────valiables─────*/
/*------------------bg-----*/
/*---------------alert-----*/
/*---------------gray-----*/
/*-------general-color-----*/
/*─────typography─────*/
/* Fluid Typography
-------------------------------------------------- */
html {
  font-size: clamp(14px, 0.875vw + 8px, 16px);
}

body {
  font-size: 1rem;
  line-height: 1.8;
  font-family: "Noto Sans JP", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

/*───────────────────────────────────
// Breakpoint & Media Query Mixins
───────────────────────────────────*/
/*────────────────────────────
使用例

a.logo {
  // ==========================================
  // 1. PCレイアウト (デフォルト)
  // ==========================================
  width: 16vw;
  min-width: 200px;
  max-width: 260px;
  h1, span {
    margin: 0;
    padding: 0;
    line-height: 1 !important;
    font-size: 1rem !important;

    img, svg {
      width: 100%;
      height: auto;
      display: block;
    }

    svg {
      path, polygon, rect, circle, polyline, line {
        fill: $black;
      }
    }
  }

  // ==========================================
  // 2. タブレット版 (1024px以下)
  // ==========================================
  @include tablet {
    width: 20vw;
    min-width: 180px;
  }

  // ==========================================
  // 3. スマホ版 (768px以下)
  // ==========================================
  @include sp {
    width: 40vw;   // 画面が狭いのでロゴを相対的に大きく
    min-width: 150px;

    h1, span {
      font-size: 0.8rem !important; // 文字を小さく調整
    }
  }
}
────────────────────────────*/
/*base（リセット・ベーススタイル）
───────────────────────*/
/*──────────────────────────────────────────────────
モダン CSS リセット
参考: modern-normalize, Josh Comeau's CSS Reset
──────────────────────────────────────────────────*/
/* Box Sizing
すべての要素でborder-boxを使用（直感的なサイズ計算のため）
-------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ドキュメント
-------------------------------------------------- */
html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Body
-------------------------------------------------- */
body {
  margin: 0;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* タイポグラフィ
テキストの折り返しを安全に処理
-------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  text-wrap: balance;
}

p {
  overflow-wrap: break-word;
  text-wrap: pretty;
}

/* メディア要素
画像・動画をレスポンシブにデフォルト対応
-------------------------------------------------- */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

/* フォーム要素
親要素のフォントを継承（ブラウザのデフォルトを上書き）
-------------------------------------------------- */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

/* テキストエリア
縦方向のみリサイズ可能に
-------------------------------------------------- */
textarea {
  resize: vertical;
}

/* テーブル
-------------------------------------------------- */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 非表示要素
-------------------------------------------------- */
[hidden] {
  display: none !important;
}

/*─────BASE─────*/
/* Fluid Typography Base
-------------------------------------------------- */
html {
  scroll-behavior: smooth;
}

/* Base Elements
-------------------------------------------------- */
i {
  vertical-align: middle;
  line-height: 1;
  margin: 0;
  padding: 0;
}

a {
  display: block;
}

a,
a img {
  text-decoration: none;
  cursor: pointer !important;
  transition: 0.3s ease-in-out;
  outline: none !important;
}

a:focus,
*:focus {
  outline: none !important;
}

a:hover {
  cursor: pointer;
}

span {
  letter-spacing: 0.07rem;
}

p {
  line-break: strict;
  overflow-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
  hyphens: auto;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  line-height: 1.7;
  letter-spacing: 0.07rem;
  font-weight: 500;
  color: #282425;
}
p a {
  display: inline-block;
  border-bottom: 1px solid #d11b42;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

figure,
img {
  margin: 0;
  padding: 0;
  line-height: 0;
  vertical-align: bottom;
}

/* Utility Classes
-------------------------------------------------- */
.align_left {
  text-align: left;
}

.align_right {
  text-align: right;
}

.align_center {
  text-align: center;
}

.margin_top {
  margin-top: 150px;
}

.margin_bottom {
  margin-bottom: 150px;
}

.padding {
  padding: 120px 0 30px;
}

::selection {
  color: #fbf9f9;
  background: #d11b42;
}

/* Screen Reader Text & Skip Link
-------------------------------------------------- */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #fbf9f9;
  border-radius: 7px;
  box-shadow: 0 0.4px 1.2px rgba(4, 0, 0, 0.01), 0 1px 3.4px rgba(4, 0, 0, 0.015), 0 2.4px 8.1px rgba(4, 0, 0, 0.02), 0 8px 27px rgba(4, 0, 0, 0.03);
  clip: auto !important;
  clip-path: none;
  color: #d11b42;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 10px;
  line-height: normal;
  padding: 15px 23px;
  text-decoration: none;
  top: 10px;
  width: auto;
  z-index: 100000;
  border: 2px solid #d11b42;
}

/* Embedded Content
-------------------------------------------------- */
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.the_map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 42.55%;
  /* Cinemascope aspect ratio (approx. 2.35:1) */
}
.the_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 7px;
}

.googlemap {
  margin: 0 0 70px;
}
.googlemap:last-of-type {
  margin: 0;
}
.googlemap h3 {
  margin: 0 0 15px;
}
.googlemap .map_annotation {
  display: flex;
  justify-content: space-between;
  margin: 10px 0 0;
}
.googlemap .map_annotation .map_annotation_content {
  color: #d11b42;
  font-size: 0.9rem;
}
.googlemap .map_annotation .map_annotation_link a div {
  color: #d11b42;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 0.9rem;
}
.googlemap .map_annotation .map_annotation_link a div span.material-symbols-outlined {
  font-size: 1.2rem;
  color: #d11b42;
  line-height: 1;
}

/* Layout
-------------------------------------------------- */
body {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
body.is-loaded {
  opacity: 1;
  visibility: visible;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  background: #fff;
  color: #282425;
  overflow-wrap: anywhere;
  /* 収まらない場合に折り返す */
  word-break: normal;
  /* 単語の分割はデフォルトに依存 */
  line-break: strict;
  /* 禁則処理を厳格に適用 */
  text-autospace: normal;
  /* 和文中の英数字に余白 */
  overflow-x: hidden;
  overflow-x: clip;
}
body .site {
  position: relative !important;
  overflow-x: hidden;
  overflow-x: clip;
}
body main {
  margin: 0 !important;
  background: #fff;
}
body main .main_wrap {
  display: block;
}

/* Container Widths
-------------------------------------------------- */
.wrap {
  max-width: 1480px;
  width: 92%;
  margin: 0 auto;
}

.wide_wrap {
  max-width: 1245px;
  width: 100%;
  margin: 0 auto;
}

.medium_wrap {
  max-width: 1110px;
  width: 92%;
  margin: 0 auto;
}

.tiny_wrap {
  max-width: 850px;
  width: 92%;
  margin: 0 auto;
}

/* Typography Hierarchy
-------------------------------------------------- */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  text-rendering: optimizelegibility;
  margin: 0;
  letter-spacing: 0.07rem;
  font-weight: 600;
}
h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a {
  text-decoration: none;
}

h1,
.h1 {
  font-size: clamp(1.5em, 3vw, 1.8em);
  line-height: 1.333em;
}

h2,
.h2 {
  font-size: clamp(1.2em, 2.5vw, 1.4em);
  line-height: 1.4em;
  margin-bottom: 0.375em;
}

h3,
.h3 {
  font-size: clamp(1em, 2vw, 1.1em);
}

h4,
.h4 {
  font-size: 1em;
  font-weight: 600;
}

h5,
.h5 {
  font-size: 1em;
  line-height: 2.09em;
  letter-spacing: 2px;
}

/* Container Queries for Responsive Components
-------------------------------------------------- */
@container (max-width: 768px) {
  .googlemap .map_annotation {
    flex-direction: column;
  }
  .googlemap .map_annotation .map_annotation_link {
    margin: 5px 0 0;
  }
  .googlemap .map_annotation .map_annotation_link a {
    display: inline-block;
  }
  .light_back,
  .white_back {
    padding: 40px 0;
  }
}
/* レスポンシブ（タブレット以下 1024px）
-------------------------------------------------- */
@media (max-width: 1023.98px) {
  body main {
    width: 100%;
    margin: 0 auto;
    padding: 0 !important;
    min-height: auto;
  }
  body main .main_wrap {
    margin: 0 !important;
  }
}
/* レスポンシブ（スマホ 768px以下）
-------------------------------------------------- */
@media (max-width: 767.98px) {
  body main {
    padding: 0;
  }
  body main .main_wrap {
    margin: 40px auto 0 !important;
  }
  .light_back,
  .white_back {
    padding: 40px 0;
  }
  .googlemap .map_annotation {
    flex-direction: column;
  }
  .googlemap .map_annotation .map_annotation_content {
    font-size: 0.9rem;
  }
  .googlemap .map_annotation .map_annotation_link {
    margin: 5px 0 0;
  }
  .googlemap .map_annotation .map_annotation_link a {
    display: inline-block;
  }
  .googlemap .map_annotation .map_annotation_link a div {
    font-size: 0.9rem;
  }
}
/*modules（共通モジュール）
───────────────────────*/
/*──────────────────────────────────────────────────
ヘッダー
──────────────────────────────────────────────────*/
header.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 989898;
  width: 100%;
  margin: 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}
header.header .header_wrapper {
  display: grid;
  grid-template-columns: minmax(340px, 430px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 16px 22px;
  transition: padding 0.35s ease, grid-template-columns 0.35s ease;
}
@media (max-width: 1023.98px) {
  header.header .header_wrapper {
    grid-template-columns: minmax(220px, 300px) 1fr auto;
    padding: 10px 78px 10px 16px;
  }
}
@media (max-width: 767.98px) {
  header.header .header_wrapper {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 66px;
    padding: 8px 74px 8px 14px;
  }
}
header.header .header_inner_above {
  display: contents;
}
@media (max-width: 1023.98px) {
  header.header .header_inner_above {
    display: block;
    grid-column: 1;
    min-width: 0;
  }
}
header.header a.logo {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  width: auto;
  max-width: min(430px, 42vw);
  color: #282425;
  transition: max-width 0.35s ease, gap 0.35s ease;
}
@media (max-width: 1023.98px) {
  header.header a.logo {
    max-width: min(300px, 48vw);
  }
}
@media (max-width: 767.98px) {
  header.header a.logo {
    width: calc(100vw - 96px);
    max-width: 280px;
  }
}
header.header .header_logo_text {
  display: grid;
  flex: 0 1 auto;
  gap: 2px;
  min-width: 0;
  max-width: 220px;
  overflow: hidden;
  color: #282425;
  font-size: clamp(0.56rem, 0.78vw, 0.72rem);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: 0;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.28s ease, max-width 0.35s ease, transform 0.35s ease;
}
header.header .header_logo_text span {
  display: block;
  letter-spacing: 0;
  white-space: nowrap;
}
@media (max-width: 1023.98px) {
  header.header .header_logo_text {
    max-width: 170px;
    font-size: 0.58rem;
  }
}
@media (max-width: 767.98px) {
  header.header .header_logo_text {
    max-width: 280px;
    font-size: 0.54rem;
  }
}
header.header .header_logo_event {
  display: block;
  flex: 0 0 156px;
  width: 156px;
  height: auto;
}
@media (max-width: 1023.98px) {
  header.header .header_logo_event {
    flex-basis: 104px;
    width: 104px;
  }
}
@media (max-width: 767.98px) {
  header.header .header_logo_event {
    flex-basis: 92px;
    width: 92px;
  }
}
header.header .header_inner_above_right {
  grid-column: 3;
  justify-self: end;
  margin-left: 8px;
}
@media (max-width: 1023.98px) {
  header.header .header_inner_above_right {
    display: none;
  }
}
header.header .header_cta a {
  display: inline-grid;
  place-items: center;
  min-height: 35px;
  padding: 12px 22px;
  border-radius: 999px;
  background: #d11b42;
  box-shadow: 4px 4px 0 rgba(152, 28, 49, 0.18);
  transition: min-height 0.35s ease, padding 0.35s ease, background 0.25s ease, box-shadow 0.35s ease, transform 0.25s ease;
}
header.header .header_cta a:hover {
  background: #981c31;
  transform: translateY(-2px);
}
header.header .header_cta span {
  color: #fbf9f9;
  font-weight: 900;
  letter-spacing: 0;
}
header.header .header_inner_bottom {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  min-width: 0;
  margin: 0;
}
@media (max-width: 1023.98px) {
  header.header .header_inner_bottom {
    display: none;
  }
}
header.header nav.header_mainmenu {
  width: 100%;
  min-width: 0;
}
header.header nav.header_mainmenu > ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
header.header nav.header_mainmenu > ul > li.menu-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 2px 0 0;
  line-height: 1;
  transition: margin 0.25s ease;
}
header.header nav.header_mainmenu > ul > li.menu-item > a,
header.header nav.header_mainmenu > ul > li.menu-item > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #282425;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0;
  white-space: nowrap;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
header.header nav.header_mainmenu > ul > li.menu-item > a:hover,
header.header nav.header_mainmenu > ul > li.menu-item > span:hover {
  background: transparent;
  color: #d11b42;
}
header.header nav.header_mainmenu > ul > li.menu-item.current-menu-item > a,
header.header nav.header_mainmenu > ul > li.menu-item.current-menu-item > span {
  color: #d11b42;
  border-bottom: 2px solid #d11b42;
}
header.header nav.header_mainmenu > ul > li.menu-item.current-menu-item > a:hover,
header.header nav.header_mainmenu > ul > li.menu-item.current-menu-item > span:hover {
  background: #d11b42;
  color: #fbf9f9;
}
header.header.stretch {
  background: rgba(251, 249, 249, 0.76);
  backdrop-filter: blur(14px) saturate(1.18);
  -webkit-backdrop-filter: blur(14px) saturate(1.18);
  box-shadow: 0 10px 28px rgba(152, 28, 49, 0.12);
}
header.header.stretch .header_wrapper {
  grid-template-columns: minmax(166px, 180px) minmax(0, 1fr) auto;
  padding: 7px 22px;
}
@media (max-width: 1023.98px) {
  header.header.stretch .header_wrapper {
    grid-template-columns: minmax(220px, 300px) 1fr auto;
    padding: 8px 78px 8px 16px;
  }
}
@media (max-width: 767.98px) {
  header.header.stretch .header_wrapper {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 8px 74px 8px 14px;
  }
}
header.header.stretch .header_cta a {
  min-height: 32px;
  padding: 9px 20px;
  box-shadow: 3px 3px 0 rgba(152, 28, 49, 0.16);
}
header.header.stretch a.logo {
  gap: 0;
  width: auto;
  max-width: 182px;
}
@media (max-width: 1023.98px) {
  header.header.stretch a.logo {
    gap: 2px;
    max-width: min(300px, 48vw);
  }
}
@media (max-width: 767.98px) {
  header.header.stretch a.logo {
    width: calc(100vw - 96px);
    max-width: 280px;
  }
}
header.header.stretch .header_logo_event {
  flex-basis: 164px;
  width: 164px;
}
@media (max-width: 1023.98px) {
  header.header.stretch .header_logo_event {
    flex-basis: 104px;
    width: 104px;
  }
}
@media (max-width: 767.98px) {
  header.header.stretch .header_logo_event {
    flex-basis: 92px;
    width: 92px;
  }
}
header.header.stretch .header_logo_text {
  max-width: 0;
  opacity: 0;
  transform: translateX(-8px);
}
@media (max-width: 1023.98px) {
  header.header.stretch .header_logo_text {
    max-width: 280px;
    opacity: 1;
    transform: translateX(0);
  }
}
header.header.stretch .header_cta {
  margin-left: -5px;
}
header.header.stretch .header_cta a {
  padding: 5px 20px;
}
header.header .menu-trigger {
  position: fixed;
  top: 12px;
  right: 14px;
  z-index: 4;
  display: none;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d11b42;
  box-shadow: 4px 4px 0 rgba(152, 28, 49, 0.18);
  cursor: pointer;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
@media (max-width: 1023.98px) {
  header.header .menu-trigger {
    display: grid;
  }
}
@media (max-width: 767.98px) {
  header.header .menu-trigger {
    top: 9px;
    right: 12px;
    width: 48px;
    height: 48px;
  }
}
header.header .menu-trigger:hover, header.header .menu-trigger.active {
  background: #981c31;
}
header.header .menu-trigger .menu-trigger-lines {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 5px;
  width: 28px;
}
header.header .menu-trigger .menuline {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: #fbf9f9;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
header.header .menu-trigger .txt {
  color: #fbf9f9;
  font-size: 0.58rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}
header.header .menu-trigger.active .menuline:first-child {
  transform: translateY(7px) rotate(38deg);
}
header.header .menu-trigger.active .menuline:nth-child(2) {
  transform: translateY(-7px) rotate(-38deg);
}
header.header .menu-trigger.active .txt {
  opacity: 0;
}
header.header .mb_drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 3;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
  width: min(390px, 88vw);
  height: 100dvh;
  padding: 82px 22px 28px;
  overflow-y: auto;
  background: #fbf9f9;
  box-shadow: -18px 0 36px rgba(152, 28, 49, 0.18);
  transform: translateX(105%);
  visibility: hidden;
  transition: transform 0.35s ease, visibility 0.35s ease;
}
@media (max-width: 767.98px) {
  header.header .mb_drawer {
    width: min(360px, 92vw);
    padding: 78px 18px 24px;
  }
}
header.header .mb_drawer.open {
  transform: translateX(0);
  visibility: visible;
}
header.header .mb_drawer_header a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px;
  align-items: center;
  gap: 10px;
  color: #282425;
}
header.header .mb_drawer_header .header_logo_text {
  max-width: none;
  font-size: 0.66rem;
  line-height: 1.35;
  opacity: 1;
  transform: none;
}
header.header .mb_drawer_menu {
  display: grid;
  gap: 10px;
  align-content: start;
  margin: 0;
  padding: 0;
}
header.header .mb_drawer_menu li {
  margin: 0;
}
header.header .mb_drawer_menu a,
header.header .mb_drawer_menu span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 14px 16px;
  border: 2px solid rgba(209, 27, 66, 0.16);
  border-radius: 12px;
  background: #fffcf6;
  color: #282425;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
}
header.header .mb_drawer_menu a:hover {
  border-color: rgba(209, 27, 66, 0.45);
  color: #d11b42;
}
header.header .mb_drawer_menu .current-menu-item > a,
header.header .mb_drawer_menu .current-menu-item > span {
  border-color: #d11b42;
  background: #d11b42;
  color: #fbf9f9;
}
header.header .mb_drawer_contact {
  padding-top: 6px;
}
header.header .mb_drawer_buttons {
  display: grid;
  gap: 10px;
}
header.header .mb_drawer_button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 999px;
  color: #fbf9f9;
  font-weight: 900;
  letter-spacing: 0;
}
header.header .mb_drawer_button.access {
  background: #d11b42;
}
header.header .mb_drawer_button.line {
  background: #439727;
}

body.is-drawer-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 989897;
  background: rgba(4, 0, 0, 0.34);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

a.pta_fixed_registration {
  position: fixed;
  right: 28px;
  bottom: 56px;
  z-index: 110;
  display: grid;
  place-items: center;
  width: 142px;
  height: 142px;
  border: 4px solid #fbf9f9;
  border-radius: 50%;
  background: #d11b42;
  box-shadow: 7px 7px 0 rgba(152, 28, 49, 0.22), 0 16px 34px rgba(152, 28, 49, 0.28);
  color: #fbf9f9;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.18;
  text-align: center;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
a.pta_fixed_registration span {
  color: #fbf9f9;
  letter-spacing: 0.1rem;
}
a.pta_fixed_registration:hover {
  background: #981c31;
  color: #fbf9f9;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 7px 11px 0 rgba(152, 28, 49, 0.18), 0 20px 38px rgba(152, 28, 49, 0.3);
}
@media (max-width: 767.98px) {
  a.pta_fixed_registration {
    right: 14px;
    bottom: 78px;
    width: 86px;
    height: 86px;
    border-width: 3px;
    font-size: 0.86rem;
  }
}

/*──────────────────────────────────────────────────
フッター
──────────────────────────────────────────────────*/
.pta_footer {
  position: relative;
  z-index: 1;
  padding: 72px 0 44px;
  background: repeating-linear-gradient(45deg, rgba(209, 27, 66, 0.14) 0 5px, transparent 5px 14px) 5% 18%/110px 110px no-repeat, repeating-linear-gradient(45deg, rgba(209, 27, 66, 0.14) 0 5px, transparent 5px 14px) 94% 78%/120px 120px no-repeat, #fbf9f9;
  border-top: 8px solid #d11b42;
}
.pta_footer .footer_wrapper {
  display: grid;
  gap: 32px;
  padding-top: 0;
}
.pta_footer .pta_footer_brand a {
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(760px, 100%);
  margin-inline: auto;
  text-align: center;
}
.pta_footer .pta_footer_logo {
  width: clamp(170px, 20vw, 260px);
  height: auto;
}
.pta_footer .pta_footer_titles {
  display: grid;
  gap: 4px;
  color: #282425;
  font-size: clamp(0.95rem, 1.8vw, 1.35rem);
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: 0;
}
.pta_footer .pta_footer_titles span {
  letter-spacing: 0;
}
.pta_footer .pta_footer_event {
  width: min(520px, 82vw);
  height: auto;
}
.pta_footer .pta_footer_nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}
.pta_footer .pta_footer_nav ul li {
  margin: 0;
}
.pta_footer .pta_footer_nav ul a {
  padding: 7px 0;
  color: #282425;
  font-size: 0.95rem;
  font-weight: 900;
}
.pta_footer .pta_footer_nav ul a:hover {
  color: #d11b42;
}
.pta_footer .copyright {
  display: block !important;
  justify-content: center;
  margin: 0;
  color: #625a59;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 767.98px) {
  .pta_footer {
    padding: 54px 0 72px;
  }
  .pta_footer .pagetop {
    bottom: 18px;
    right: 18px;
    left: auto;
  }
  .pta_footer .pagetop a {
    width: 46px !important;
    height: 46px !important;
    border-radius: 50%;
  }
  .pta_footer .pta_footer_nav ul {
    gap: 4px 14px;
  }
  .pta_footer .pta_footer_nav ul a {
    font-size: 0.86rem;
  }
}

/*──────────────────────────────────────────────────
ローダー
──────────────────────────────────────────────────*/
#loading-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  z-index: 1000000000000000000000000;
}

.completed {
  opacity: 0;
  visibility: hidden;
}

.sk-folding-cube {
  margin: 20px auto;
  width: 40px;
  height: 40px;
  position: relative;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.sk-folding-cube .sk-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.sk-folding-cube .sk-cube:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f0aba9;
  -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
  animation: sk-foldCubeAngle 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

.sk-folding-cube .sk-cube2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
  transform: scale(1.1) rotateZ(90deg);
}

.sk-folding-cube .sk-cube3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
  transform: scale(1.1) rotateZ(180deg);
}

.sk-folding-cube .sk-cube4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
  transform: scale(1.1) rotateZ(270deg);
}

.sk-folding-cube .sk-cube2:before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.sk-folding-cube .sk-cube3:before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.sk-folding-cube .sk-cube4:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

@-webkit-keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}
@keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}
/*──────────────────────────────────────────────────
アコーディオンFAQ
──────────────────────────────────────────────────*/
ul.accordion {
  margin: 0 auto;
  max-width: 100%;
  border-top: solid 1px #f0aba9;
  padding: 1rem 0 0;
}
@media (max-width: 767.98px) {
  ul.accordion {
    padding: 0.5rem 0 0;
  }
}
ul.accordion .toggle {
  display: none;
}
ul.accordion li.option {
  position: relative;
  margin-bottom: 1rem;
}
ul.accordion li.option .title,
ul.accordion li.option .content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
ul.accordion li.option .title {
  padding: 1rem 2rem 2rem 1rem;
  display: block;
  color: #282425;
  font-weight: 500;
  letter-spacing: 0.06rem;
  cursor: pointer;
}
ul.accordion li.option .title::after, ul.accordion li.option .title::before {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  width: 2px;
  height: 0.75rem;
  background-color: #f0aba9;
  transition: all 0.3s;
}
ul.accordion li.option .title::after {
  transform: rotate(90deg);
}
@media (max-width: 767.98px) {
  ul.accordion li.option .title {
    padding: 0.5rem 3rem 1rem 0rem;
    font-size: 0.9rem;
  }
  ul.accordion li.option .title::after, ul.accordion li.option .title::before {
    top: 1.5rem;
  }
}
ul.accordion li.option .content {
  max-height: 0;
  overflow: hidden;
  border-bottom: solid 1px #f0aba9;
}
ul.accordion li.option .content p {
  margin: 0;
  padding: 0 1.5rem 2rem;
  font-size: 0.9rem;
  line-height: 1.5;
}
@media (max-width: 767.98px) {
  ul.accordion li.option .content p {
    padding: 1rem 1rem 1rem 0;
    font-size: 0.9rem;
    line-height: 1.5;
  }
}
ul.accordion li.option .toggle:checked + .title + .content {
  max-height: 800px;
  transition: all 1.5s;
}
ul.accordion li.option .toggle:checked + .title::before {
  transform: rotate(90deg) !important;
}

/*────────────────────────────
table
────────────────────────────*/
table {
  box-sizing: border-box;
  border-collapse: collapse;
  border-spacing: 0;
}

.tbl_wrap {
  border-radius: 7px !important;
  padding: 60px;
  margin: 60px auto;
  width: 70%;
  background-color: #fbf9f9;
}
.tbl_wrap > span.title {
  display: block;
  font-size: 1.5rem;
  padding: 0 0 20px;
}
.tbl_wrap img.table_header {
  aspect-ratio: 2.35/1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px;
}
.tbl_wrap table.tbl {
  text-align: left;
  width: 100%;
  letter-spacing: 0.07rem;
}
@media (max-width: 767.98px) {
  .tbl_wrap table.tbl {
    margin: 0;
  }
}
.tbl_wrap table.tbl tbody tr {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #f0aba9;
  padding: 2rem 0;
}
.tbl_wrap table.tbl tbody tr:last-child {
  border-bottom: none;
}
.tbl_wrap table.tbl tbody th {
  flex-basis: 30%;
  font-size: 1rem;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .tbl_wrap table.tbl tbody th {
    font-size: 0.8rem;
    padding: 1rem 0.5rem;
    flex-basis: 30%;
  }
}
.tbl_wrap table.tbl tbody td {
  flex-basis: 70%;
  font-weight: 400;
  font-size: 1rem;
}
.tbl_wrap table.tbl tbody td span.title {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 500;
}
.tbl_wrap table.tbl tbody td span.title::before {
  width: 10px;
  height: 10px;
  content: "";
  border: 1px solid #d11b42;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}
.tbl_wrap table.tbl tbody td a {
  display: inline-block;
  color: #d11b42;
  font-weight: 500;
}
.tbl_wrap table.tbl tbody td a:not(:first-child) {
  margin-left: 10px;
}
.tbl_wrap table.tbl tbody td ul li {
  margin-bottom: 10px;
}
.tbl_wrap table.tbl tbody td ul li:last-child {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .tbl_wrap table.tbl tbody td ul li {
    margin-bottom: 5px;
  }
}
.tbl_wrap table.tbl tbody td span.annotation {
  display: inline-block;
  margin-top: 15px;
  padding: 15px;
  background: #F8F9FA;
  font-size: 0.8rem;
}
@media (max-width: 767.98px) {
  .tbl_wrap table.tbl tbody td span.annotation {
    font-size: 0.7rem;
  }
}
@media (max-width: 767.98px) {
  .tbl_wrap table.tbl tbody td {
    font-size: 0.8rem;
    padding: 1rem;
    flex-basis: 70%;
  }
}

/*────────────────────────────
pagination
────────────────────────────*/
.pagination {
  margin: 50px auto;
}
@media (max-width: 767.98px) {
  .pagination {
    margin: 20px auto 0;
  }
}
.pagination div.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination div.nav-links a,
.pagination div.nav-links span {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1 !important;
  padding: 10px;
  font-size: 1.3rem !important;
  margin: 0 8px;
}
@media (max-width: 767.98px) {
  .pagination div.nav-links a,
  .pagination div.nav-links span {
    padding: 10px;
    font-size: 1rem !important;
    margin: 0 5px;
  }
}
.pagination div.nav-links span.current {
  font-family: "Comfortaa", sans-serif;
  color: #f0aba9;
}
.pagination div.nav-links a {
  color: #282425;
}
.pagination div.nav-links a.page-numbers {
  font-family: "Comfortaa", sans-serif;
}
.pagination div.nav-links a.prev span, .pagination div.nav-links a.next span {
  display: flex;
  width: 23px;
  height: 23px;
  background: #f0aba9;
  border-radius: 50px;
  color: #fbf9f9;
  font-weight: bold;
  font-size: 0.9rem !important;
}
.pagination div.nav-links a:hover {
  color: #625a59;
}

/*────────────────────────────
prev next
────────────────────────────*/
.footer_navigator {
  margin: 20px auto 0 !important;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}
@media (max-width: 767.98px) {
  .footer_navigator {
    margin: 30px auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.footer_navigator .footer_navigator_left {
  display: flex;
  justify-content: flex-start;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .footer_navigator .footer_navigator_left {
    justify-content: center;
  }
}
.footer_navigator .footer_navigator_left a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  transition: all 0.3s ease;
}
.footer_navigator .footer_navigator_left a span.material-symbols-outlined {
  font-size: 20px;
  transition: transform 0.3s ease;
}
.footer_navigator .footer_navigator_left a span.txt {
  font-size: 0.85rem;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .footer_navigator .footer_navigator_left a span.txt {
    font-size: 0.9rem;
  }
}
@media (max-width: 767.98px) {
  .footer_navigator .footer_navigator_left a {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
}
.footer_navigator .footer_navigator_left a:hover span.material-symbols-outlined {
  transform: translateX(-3px);
  color: #d11b42;
}
.footer_navigator .footer_navigator_left a:hover span.txt {
  color: #d11b42;
}
.footer_navigator .footer_navigator_center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
@media (max-width: 767.98px) {
  .footer_navigator .footer_navigator_center {
    position: static;
    transform: none;
    order: -1;
  }
}
.footer_navigator .footer_navigator_center a {
  padding: 12px 24px;
  background: #fbf9f9;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(40, 36, 37, 0.1);
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .footer_navigator .footer_navigator_center a {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 14px 24px;
  }
}
.footer_navigator .footer_navigator_center a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 36, 37, 0.15);
  background: #d11b42;
}
.footer_navigator .footer_navigator_center a:hover span.txt {
  color: #fbf9f9 !important;
}
.footer_navigator .footer_navigator_right {
  display: flex;
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .footer_navigator .footer_navigator_right {
    justify-content: center;
  }
}
.footer_navigator .footer_navigator_right a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  transition: all 0.3s ease;
}
.footer_navigator .footer_navigator_right a span.material-symbols-outlined {
  font-size: 20px;
  transition: transform 0.3s ease;
}
.footer_navigator .footer_navigator_right a span.txt {
  font-size: 0.85rem;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .footer_navigator .footer_navigator_right a span.txt {
    font-size: 0.9rem;
  }
}
@media (max-width: 767.98px) {
  .footer_navigator .footer_navigator_right a {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
}
.footer_navigator .footer_navigator_right a:hover span.material-symbols-outlined {
  transform: translateX(3px);
  color: #d11b42;
}
.footer_navigator .footer_navigator_right a:hover span.txt {
  color: #d11b42;
}

/*──────────────────────────────────────────────────
アンカーナビゲーション
──────────────────────────────────────────────────*/
.anchor-nav {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  padding: 20px 0;
  margin: 40px auto 0;
  position: sticky;
  top: 70px;
  z-index: 900;
  width: 100%;
}
.anchor-nav .wrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  gap: 25px;
  border-radius: 7px;
}
.anchor-nav .wrap ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #282425;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 500;
  position: relative;
}
.anchor-nav .wrap ul li a::after {
  font-family: "Material Symbols Outlined";
  content: "\e313";
  font-size: 1.2em;
  line-height: 1;
  color: #d11b42;
}
.anchor-nav .wrap ul li a:hover {
  color: #d11b42;
}

/*──────────────────────────────────────────────────
サブページ共通パーツ (Subpage Components)
──────────────────────────────────────────────────*/
.subpages_wrapper {
  display: block;
  padding: 100px 0;
}
@media (max-width: 767.98px) {
  .subpages_wrapper {
    width: 100%;
  }
}

.subpage_section {
  margin: 80px auto;
  min-width: 0;
}
.subpage_section:first-of-type {
  margin-top: 0;
}
.subpage_section:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .subpage_section {
    margin: 50px auto;
  }
  .subpage_section:last-of-type {
    margin-bottom: 0;
  }
}

.site-main .subpage_section:last-of-type {
  margin-bottom: 0;
}

.section_title {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0 0 24px;
}
.section_title span {
  display: inline-flex;
  align-items: center;
  gap: 0 8px;
  color: rgba(98, 90, 89, 0.72);
  font-family: "Comfortaa", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: capitalize;
}
.section_title span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #d11b42;
  border-radius: 50%;
}
.section_title h2 {
  margin: 0;
  color: #282425;
  font-size: 1.52rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  display: block;
}
@media (max-width: 767.98px) {
  .section_title {
    gap: 6px;
    margin-bottom: 18px;
  }
  .section_title h2 {
    font-size: 1.1rem;
  }
}

.section_title_small {
  margin: 0 auto 30px;
  padding-left: 15px;
  position: relative;
}
.section_title_small::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 100%;
  background: #d11b42;
  border-radius: 3px;
}
.section_title_small h2, .section_title_small h3 {
  margin: 0;
  padding: 0;
  font-size: 1.3rem !important;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1rem;
}
@media (max-width: 767.98px) {
  .section_title_small {
    margin: 0 auto 30px;
  }
  .section_title_small h2 {
    font-size: 0.9rem !important;
  }
  .section_title_small span.en {
    font-size: 1.5rem !important;
  }
}

.section_title_icon {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.section_title_icon span.material-symbols-outlined {
  margin: 0 8px 0 0;
  color: #d11b42;
  font-size: 2rem;
}
@media (max-width: 767.98px) {
  .section_title_icon span.material-symbols-outlined {
    font-size: 1.5rem;
  }
}
.section_title_icon h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .section_title_icon h2 {
    font-size: 1.2rem;
  }
}

p.subpage_lead {
  color: #d11b42;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.8;
  margin: 0 auto 40px;
  text-align: center;
}
@media (max-width: 767.98px) {
  p.subpage_lead {
    font-size: 1rem;
    text-align: left;
    margin-bottom: 30px;
  }
}

p.subpage_text {
  color: #282425;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}
p.subpage_text:last-child {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  p.subpage_text {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }
}

.first_intro_content,
.overview_content {
  display: grid;
  grid-template-columns: minmax(230px, 34%) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}
.first_intro_content > *,
.overview_content > * {
  min-width: 0;
}
.first_intro_content h2,
.overview_content h2 {
  margin: 0;
  color: #282425;
  font-size: clamp(1.35rem, 1.75vw, 1.8rem);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0.04em;
}
.first_intro_content p,
.overview_content p {
  margin: 0;
  color: #282425;
  font-size: 1rem;
  font-weight: 600;
  line-height: 2.1;
  letter-spacing: 0.03em;
}
@media (max-width: 1023.98px) {
  .first_intro_content,
  .overview_content {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}
@media (max-width: 767.98px) {
  .first_intro_content,
  .overview_content {
    gap: 18px;
  }
  .first_intro_content h2,
  .overview_content h2 {
    font-size: 1.8rem;
    line-height: 1.45;
  }
  .first_intro_content p,
  .overview_content p {
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.95;
    overflow-wrap: anywhere;
    word-break: normal;
  }
}

.subpage_split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}
.subpage_split_reverse {
  flex-direction: row-reverse;
}
.subpage_split_image {
  flex-basis: 48%;
}
.subpage_split_image img {
  width: 100%;
  height: auto;
  border-radius: 7px;
}
.subpage_split_content {
  flex-basis: 48%;
}
@media (max-width: 767.98px) {
  .subpage_split {
    flex-direction: column;
    gap: 30px;
  }
  .subpage_split_reverse {
    flex-direction: column;
  }
  .subpage_split_image, .subpage_split_content {
    flex-basis: 100%;
    width: 100%;
  }
}

.subpage_note {
  background: #fff9f9;
  border: 1px solid #ffcccc;
  padding: 25px;
  border-radius: 7px;
  margin-bottom: 30px;
}
.subpage_note p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #b30000;
}

.subpage_info_box {
  background: #F4F6FA;
  border-left: 4px solid #d11b42;
  padding: 25px;
  margin-bottom: 30px;
}
.subpage_info_box p {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.7;
}
.subpage_info_box.is_center {
  text-align: center;
}
.subpage_info_box p.subpage_info_main {
  font-size: 1.2rem;
  font-weight: 500;
}
.subpage_info_box p.subpage_info_sub {
  margin-top: 10px;
  font-size: 0.9rem;
}

.subpage_note_title {
  margin: 0 0 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ffcccc;
  color: #b30000;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
}

ul.subpage_list {
  margin-bottom: 30px;
  padding: 0;
}
ul.subpage_list.is_compact {
  margin-bottom: 0;
}
ul.subpage_list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.6;
}
ul.subpage_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: #d11b42;
  border-radius: 50%;
}
@media (max-width: 767.98px) {
  ul.subpage_list li {
    font-size: 0.95rem;
  }
}

.subpage_button_area {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  .subpage_button_area {
    justify-content: stretch;
  }
}

.subpage_contact_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 40px;
  background: #d11b42;
  border-radius: 50px;
  color: #fbf9f9;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}
.subpage_contact_button span.material-symbols-outlined {
  font-size: 1.2rem;
  line-height: 1;
}
.subpage_contact_button:hover {
  opacity: 0.82;
  transform: translateY(-2px);
}
@media (max-width: 767.98px) {
  .subpage_contact_button {
    width: 100%;
    padding-inline: 24px;
  }
}

.subpage_mt_30 {
  margin-top: 30px;
}

.subpage_mt_50 {
  margin-top: 50px;
}

.subpage_table_wrap {
  width: 100%;
  margin-top: 40px;
  padding: 0;
  background: transparent;
}

table.tbl tr.subpage_table_head {
  border-bottom: 2px solid #d11b42;
  padding-bottom: 15px;
  margin-bottom: 10px;
}
table.tbl th.subpage_table_label,
table.tbl td.subpage_table_label {
  font-weight: 500;
}

ul.step_list {
  width: 80%;
  margin: 0 auto;
}
ul.step_list li {
  background: #d11b42;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  border-radius: 7px;
  margin: 0 auto 10px;
}
ul.step_list li span {
  width: 80px;
  height: 80px;
  background: #fbf9f9;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Comfortaa", sans-serif;
  color: #d11b42;
  margin: 0 40px 0 0;
}
ul.step_list li > div {
  flex-basis: 85%;
}
ul.step_list li > div h3 {
  color: #fbf9f9;
  font-weight: 600;
  margin: 0 0 10px;
}
ul.step_list li > div p {
  color: #fbf9f9;
  margin: 0;
}
@media (max-width: 767.98px) {
  ul.step_list {
    width: 100%;
  }
  ul.step_list li {
    padding: 20px;
  }
  ul.step_list li span {
    width: 40px;
    height: 40px;
    margin: 0;
    font-size: 0.9rem;
  }
  ul.step_list li > div {
    flex-basis: 78%;
  }
  ul.step_list li > div h3 {
    font-size: 0.9rem !important;
    margin: 0 0 5px;
  }
  ul.step_list li > div p {
    font-size: 0.8rem !important;
  }
}

ul.support_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #fbf9f9;
  padding: 60px 60px 40px;
}
ul.support_list li {
  flex-basis: 32%;
  background: #fbf9f9;
  border-radius: 7px;
  margin: 0 0 20px 0;
  padding: 20px;
  display: flex;
  align-items: center;
}
ul.support_list li span {
  display: flex;
  align-items: center;
}
ul.support_list li span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #d11b42;
  border-radius: 50px;
  margin: 0 8px 0 0;
}
@media (max-width: 767.98px) {
  ul.support_list {
    padding: 20px 20px 10px;
  }
  ul.support_list li {
    flex-basis: 47%;
    margin: 0 0 10px 0;
    padding: 10px;
  }
  ul.support_list li span {
    font-size: 0.8rem !important;
    line-height: 1.3;
  }
  ul.support_list li span::before {
    display: none;
  }
}

ul.single_list li {
  background: #F4F6FA;
  border-radius: 7px;
  padding: 40px 40px 50px;
  margin: 0 0 30px;
  display: flex;
  justify-content: space-between;
}
ul.single_list li:last-child {
  margin: 0;
}
ul.single_list li > div:first-of-type {
  flex-basis: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
ul.single_list li > div:first-of-type span {
  display: block;
  margin: 0 0 10px;
  color: #d11b42;
  font-family: "Comfortaa", sans-serif;
  font-weight: 500;
}
ul.single_list li > div:first-of-type h3 {
  text-align: center;
  font-weight: 500;
}
ul.single_list li > div:last-of-type {
  flex-basis: 70%;
}
ul.single_list li > div:last-of-type p {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  ul.single_list li {
    padding: 20px 30px 30px;
    margin: 0 0 15px;
    flex-direction: column;
  }
  ul.single_list li > div:first-of-type span {
    font-size: 0.8rem !important;
    margin: 0 0 3px;
    opacity: 0.3;
  }
  ul.single_list li > div:first-of-type h3 {
    font-size: 1rem !important;
    margin: 0 0 10px;
    color: #d11b42;
  }
}

ul.double_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
ul.double_list li {
  flex-basis: 49%;
  background: #F4F6FA;
  padding: 20px 30px 30px;
  border-radius: 7px;
  margin: 0 0 30px;
}
ul.double_list li span {
  color: #d11b42;
  font-family: "Comfortaa", sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
}
ul.double_list li h3 {
  font-weight: 500;
  margin: 3px 0 20px;
}
ul.double_list li p {
  margin: 0;
  font-size: 0.95rem;
}
@media (max-width: 767.98px) {
  ul.double_list {
    flex-direction: column;
  }
  ul.double_list li {
    padding: 20px 30px 30px;
    margin: 0 0 15px;
  }
  ul.double_list li h3 {
    font-size: 1rem !important;
  }
  ul.double_list li p {
    font-size: 0.9rem !important;
  }
}

.subpage_card_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}
.subpage_card_grid .card_item {
  flex-basis: calc(33.333% - 20px);
  background: #F4F6FA;
  border-radius: 7px;
  overflow: hidden;
  border: 1px solid #f0aba9;
}
@media (max-width: 767.98px) {
  .subpage_card_grid .card_item {
    flex-basis: 100%;
  }
}
.subpage_card_grid .card_item .card_image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.subpage_card_grid .card_item .card_content {
  padding: 20px;
}
.subpage_card_grid .card_item .card_content h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #d11b42;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(209, 27, 66, 0.2);
  padding-bottom: 10px;
}
.subpage_card_grid .card_item .card_content p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.subpage_service_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 30px;
  margin-bottom: 60px;
}
.subpage_service_grid .service_item {
  flex-basis: calc(50% - 15px);
  background: #fbf9f9;
  border-radius: 7px;
  overflow: hidden;
  border: 1px solid #f0aba9;
  transition: all 0.3s ease;
}
@media (max-width: 767.98px) {
  .subpage_service_grid .service_item {
    flex-basis: 100%;
    margin-bottom: 20px;
  }
}
.subpage_service_grid .service_item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #282425;
  text-decoration: none;
}
.subpage_service_grid .service_item a:hover {
  box-shadow: 0 4px 15px rgba(40, 36, 37, 0.05);
}
.subpage_service_grid .service_item a:hover .service_image img {
  transform: scale(1.03);
}
.subpage_service_grid .service_item a:hover h3 {
  color: #d11b42;
}
.subpage_service_grid .service_item a:hover h3::after {
  transform: translateX(5px);
}
.subpage_service_grid .service_item .service_image {
  width: 100%;
  overflow: hidden;
}
.subpage_service_grid .service_item .service_image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.subpage_service_grid .service_item .service_content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.subpage_service_grid .service_item .service_content h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(209, 27, 66, 0.2);
  color: #d11b42;
  font-size: 1.2rem;
  font-weight: 500;
}
.subpage_service_grid .service_item .service_content h3::after {
  content: "\e5c8"; /* arrow_forward */
  font-family: "Material Symbols Outlined";
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.subpage_service_grid .service_item .service_content p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.section_item {
  margin: 100px auto;
}
.section_item:first-of-type {
  margin-top: 0;
}
@media (max-width: 767.98px) {
  .section_item {
    margin: 50px auto;
  }
  .section_item_with_bg {
    background: #fbf9f9;
    padding: 40px 0;
  }
}

.section_item_border {
  margin: 80px auto;
  border-top: 1px solid #f0aba9;
  padding-top: 80px;
}
@media (max-width: 767.98px) {
  .section_item_border {
    margin: 50px auto;
    padding-top: 50px;
  }
}

.section_intro {
  background: #fbf9f9;
  text-align: center;
  position: relative;
  z-index: 0;
  padding: 80px 0 0;
  margin-bottom: 150px;
}
.section_intro::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  width: 100%;
  height: 280px;
  background: #fbf9f9;
}
.section_intro span.en {
  opacity: 0.05;
  font-family: "Comfortaa", sans-serif;
  font-size: 5rem;
  font-weight: 200;
  line-height: 1.5;
  letter-spacing: 0.07rem;
  text-transform: capitalize;
}
.section_intro h2 {
  position: relative;
  margin: 50px auto 60px;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.7;
}
.section_intro h2::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  background: #d11b42;
  border-radius: 50px;
}
.section_intro p {
  width: 65%;
  margin: 0 auto 100px;
  text-align: left;
}
.section_intro img {
  width: 100%;
  height: 100%;
  aspect-ratio: 2.35/1;
  object-fit: cover;
  border-radius: 7px;
  box-shadow: 0 0.4px 1.2px rgba(4, 0, 0, 0.01), 0 1px 3.4px rgba(4, 0, 0, 0.015), 0 2.4px 8.1px rgba(4, 0, 0, 0.02), 0 8px 27px rgba(4, 0, 0, 0.03);
}
@media (max-width: 767.98px) {
  .section_intro {
    padding: 40px 0 0;
    margin-bottom: 70px;
  }
  .section_intro::after {
    height: 90px;
  }
  .section_intro span.en {
    font-size: 1.4rem;
    opacity: 0.2;
  }
  .section_intro h2 {
    margin: 50px auto 30px;
    font-size: 1.2rem;
  }
  .section_intro h2::before {
    top: -28px;
    width: 5px;
    height: 5px;
  }
  .section_intro p {
    width: 90%;
    margin: 0 auto 50px;
    text-align: justify;
  }
}

.subpage_intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 32%);
  gap: clamp(24px, 4vw, 42px);
  align-items: center;
  margin-bottom: 64px;
}
@media (max-width: 1023.98px) {
  .subpage_intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}
@media (max-width: 767.98px) {
  .subpage_intro {
    margin-bottom: 46px;
  }
}

.subpage_intro_content h2 {
  margin: 0 0 16px;
  color: #282425;
  font-size: clamp(1.15rem, 1.65vw, 1.6rem);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.05em;
}
.subpage_intro_content p {
  max-width: 680px;
  margin: 0;
  color: #282425;
  font-size: 0.95rem;
  line-height: 1.85;
}
@media (max-width: 767.98px) {
  .subpage_intro_content p {
    font-size: 0.88rem;
  }
}

.subpage_intro_note {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 24px;
  background: rgba(209, 27, 66, 0.055);
  border: 1px solid rgba(209, 27, 66, 0.12);
  border-radius: 7px;
}
.subpage_intro_note > span.material-symbols-outlined {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(209, 27, 66, 0.1);
  border-radius: 50%;
  color: #d11b42;
  font-size: 1.5rem;
  line-height: 1;
}
.subpage_intro_note p {
  margin: 0;
  color: #282425;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.75;
}
@media (max-width: 767.98px) {
  .subpage_intro_note {
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 20px 18px;
  }
  .subpage_intro_note > span.material-symbols-outlined {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }
}

.section_item .section_sepalate, .section_item_border .section_sepalate {
  display: flex;
  justify-content: space-between;
}
.section_item .section_sepalate > div, .section_item_border .section_sepalate > div {
  flex-basis: 47%;
}
.section_item .section_sepalate > div:first-of-type h3, .section_item_border .section_sepalate > div:first-of-type h3 {
  display: block;
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 30px;
  color: #d11b42;
  font-size: 1.3rem;
  font-weight: 500;
}
.section_item .section_sepalate > div:first-of-type h3:after, .section_item_border .section_sepalate > div:first-of-type h3:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 40px;
  height: 1px;
  background: #d11b42;
}
.section_item .section_sepalate > div:last-of-type img, .section_item_border .section_sepalate > div:last-of-type img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 7px;
}
@media (max-width: 767.98px) {
  .section_item .section_sepalate, .section_item_border .section_sepalate {
    flex-direction: column;
  }
  .section_item .section_sepalate > div:first-of-type h3, .section_item_border .section_sepalate > div:first-of-type h3 {
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-size: 1rem;
  }
  .section_item .section_sepalate > div:first-of-type h3:after, .section_item_border .section_sepalate > div:first-of-type h3:after {
    width: 20px;
  }
  .section_item .section_sepalate > div:last-of-type img, .section_item_border .section_sepalate > div:last-of-type img {
    aspect-ratio: 16/9;
  }
}
.section_item > h3, .section_item_border > h3 {
  margin-bottom: 40px;
  padding-left: 20px;
  border-left: 2px solid #d11b42;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .section_item > h3, .section_item_border > h3 {
    margin-bottom: 20px;
    padding-left: 10px;
  }
}

.section_special {
  background: #fbf9f9;
  padding: 80px;
  text-align: center;
}
.section_special h3 {
  display: block;
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 1.4rem;
  font-weight: 500;
}
.section_special h3:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: #d11b42;
}
.section_special p {
  text-align: left;
}
.section_special .special_image {
  width: 600px;
  height: 300px;
  margin: 60px auto 0;
  background: #fbf9f9;
}
.section_special .special_image a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.section_special .special_image a img {
  width: 300px;
}
.section_special .special_image a:hover {
  opacity: 0.7;
}
@media (max-width: 767.98px) {
  .section_special {
    padding: 30px 30px 40px;
  }
  .section_special h3 {
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-size: 1rem;
  }
  .section_special p {
    text-align: justify;
  }
  .section_special .special_image {
    width: 100%;
    height: 150px;
    margin: 30px auto 0;
  }
  .section_special .special_image a img {
    width: 60%;
  }
}

@keyframes wipeIn {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  99% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
  100% {
    opacity: 1;
    clip-path: none;
  }
}
@keyframes gradientWipe {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blurFadeIn {
  0% {
    opacity: 0;
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 0.7;
    transform: translateY(0);
  }
}
@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 0.7;
    transform: translateX(0);
  }
}
@keyframes slideInFromBottom {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 0.7;
    transform: translateY(0);
  }
}
/* サムネイル付き記事一覧（seminarカテゴリー用） */
ul.post_list_thumbnail {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0 0 100px;
  margin: 0;
}
@media (max-width: 767.98px) {
  ul.post_list_thumbnail {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
ul.post_list_thumbnail li.post_item_thumbnail {
  background: #fbf9f9;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(40, 36, 37, 0.08);
  transition: all 0.3s ease;
}
ul.post_list_thumbnail li.post_item_thumbnail:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(40, 36, 37, 0.15);
}
ul.post_list_thumbnail li.post_item_thumbnail a {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #282425;
  text-decoration: none;
  position: relative;
}
ul.post_list_thumbnail li.post_item_thumbnail a .post_thumbnail {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #fbf9f9;
}
@media (max-width: 767.98px) {
  ul.post_list_thumbnail li.post_item_thumbnail a .post_thumbnail {
    height: 180px;
  }
}
ul.post_list_thumbnail li.post_item_thumbnail a .post_thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
ul.post_list_thumbnail li.post_item_thumbnail a .post_thumbnail:hover img {
  transform: scale(1.05);
}
ul.post_list_thumbnail li.post_item_thumbnail a .post_content_wrapper {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767.98px) {
  ul.post_list_thumbnail li.post_item_thumbnail a .post_content_wrapper {
    padding: 15px;
  }
}
ul.post_list_thumbnail li.post_item_thumbnail a .post_content_wrapper .post_meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
ul.post_list_thumbnail li.post_item_thumbnail a .post_content_wrapper .post_meta span.date {
  font-size: 0.85rem;
  color: #625a59;
  font-family: "Comfortaa", sans-serif;
}
@media (max-width: 767.98px) {
  ul.post_list_thumbnail li.post_item_thumbnail a .post_content_wrapper .post_meta span.date {
    font-size: 0.8rem;
  }
}
ul.post_list_thumbnail li.post_item_thumbnail a .post_content_wrapper .post_meta span.cat {
  font-size: 0.75rem;
  color: #d11b42;
  font-weight: 500;
  padding: 2px 8px;
  background: rgba(209, 27, 66, 0.1);
  border-radius: 3px;
}
@media (max-width: 767.98px) {
  ul.post_list_thumbnail li.post_item_thumbnail a .post_content_wrapper .post_meta span.cat {
    font-size: 0.8rem;
  }
}
ul.post_list_thumbnail li.post_item_thumbnail a .post_content_wrapper h2.post_title {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 12px;
  color: #282425;
}
@media (max-width: 767.98px) {
  ul.post_list_thumbnail li.post_item_thumbnail a .post_content_wrapper h2.post_title {
    font-size: 1rem;
  }
}
ul.post_list_thumbnail li.post_item_thumbnail a .post_content_wrapper .post_excerpt {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #625a59;
  margin-bottom: 0;
  flex: 1;
}
@media (max-width: 767.98px) {
  ul.post_list_thumbnail li.post_item_thumbnail a .post_content_wrapper .post_excerpt {
    font-size: 0.85rem;
  }
}
ul.post_list_thumbnail li.post_item_thumbnail a .post_content_wrapper .post_excerpt p {
  margin: 0;
}
ul.post_list_thumbnail li.post_item_thumbnail a span.post_arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #d11b42;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}
@media (max-width: 767.98px) {
  ul.post_list_thumbnail li.post_item_thumbnail a span.post_arrow {
    bottom: 15px;
    right: 15px;
    font-size: 1.3rem;
  }
}
ul.post_list_thumbnail li.post_item_thumbnail a:hover span.post_arrow {
  transform: translateX(5px);
}

ul.post_list_text {
  margin: 0 auto;
}
ul.post_list_text li.post_item {
  border-bottom: 1px solid #f0aba9;
}
ul.post_list_text li.post_item:first-child {
  border-top: 1px solid #f0aba9;
}
ul.post_list_text li.post_item a {
  padding: 30px 0 30px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 0;
}
ul.post_list_text li.post_item a::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #f7f7f7;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.3s ease;
  transition-property: transform;
  z-index: -1;
}
ul.post_list_text li.post_item a::after {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Material Symbols Outlined";
  content: "\e5c8";
  font-size: 1.1rem;
  color: #625a59;
  margin-left: 20px;
  font-weight: 100;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
ul.post_list_text li.post_item a .post_item_wrapper {
  display: flex;
  align-items: center;
}
ul.post_list_text li.post_item a .post_item_wrapper .post_item_wrapper_above {
  margin: 0 15px 0 0;
  display: flex;
  align-items: center;
}
ul.post_list_text li.post_item a .post_item_wrapper .post_item_wrapper_above span.date {
  font-size: 0.7rem;
  margin-right: 10px;
  color: #625a59;
}
ul.post_list_text li.post_item a .post_item_wrapper .post_item_wrapper_above span.cat {
  padding: 0;
  margin: 0;
}
ul.post_list_text li.post_item a .post_item_wrapper .post_item_wrapper_above span.cat > span {
  font-size: 0.7rem;
  border: none;
  background: rgba(209, 27, 66, 0.1);
  padding: 2px 6px;
  color: #d11b42;
  font-weight: 500;
  margin-right: 10px;
  line-height: 1;
}
ul.post_list_text li.post_item a .post_item_wrapper span.title {
  font-size: 0.9rem;
  font-weight: 500;
  transition: 0.3s;
  color: #282425;
}
ul.post_list_text li.post_item a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
ul.post_list_text li.post_item a:hover::after {
  color: #d11b42;
  right: 32px;
}
ul.post_list_text li.post_item a:hover .post_item_thumb img {
  transform: scale(1.05);
}
ul.post_list_text li.post_item a:hover .post_item_wrapper span.title {
  color: #f0aba9;
}
@media (max-width: 767.98px) {
  ul.post_list_text li.post_item a {
    padding: 15px 0;
  }
  ul.post_list_text li.post_item a::after {
    right: 15px;
    font-size: 1rem;
  }
  ul.post_list_text li.post_item a .post_item_wrapper .post_item_wrapper_above {
    margin: 0;
  }
  ul.post_list_text li.post_item a .post_item_wrapper .post_item_wrapper_above span.date {
    margin-right: 10px;
  }
  ul.post_list_text li.post_item a .post_item_wrapper span.title {
    font-size: 0.9rem;
  }
}
ul.post_list_text li.nopost {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 200px;
  font-size: 1.3rem;
  font-weight: 500;
  background: #fbf9f9;
  color: #625a59;
}
@media (max-width: 767.98px) {
  ul.post_list_text li.nopost {
    height: 140px;
    font-size: 0.9rem;
  }
}

ul.post_list_thumb {
  margin: 40px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  ul.post_list_thumb {
    margin: 30px auto;
    flex-direction: column;
  }
  ul.post_list_thumb:after {
    content: "";
    display: block;
    flex-basis: 31%;
    height: 0;
  }
}
ul.post_list_thumb li.post_item {
  flex-basis: 23.5%;
  box-sizing: border-box;
  margin: 0 0 60px;
  background: #fbf9f9;
  border-radius: 7px;
  padding: 20px;
}
ul.post_list_thumb li.post_item:nth-last-child(-n+4) {
  margin: 0;
}
ul.post_list_thumb li.post_item:hover a .post_item_thumb img {
  transform: scale(1.05);
}
ul.post_list_thumb li.post_item:hover div.post_item_wrapper > a span.title {
  color: #f0aba9;
}
ul.post_list_thumb li.post_item a .post_item_thumb {
  margin: 0 0 15px;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 7px;
}
ul.post_list_thumb li.post_item a .post_item_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
ul.post_list_thumb li.post_item a:hover .post_item_thumb img {
  transform: scale(1.08);
}
ul.post_list_thumb li.post_item a:hover div.post_item_wrapper span.voice_voice_leaad {
  color: #d11b42;
}
ul.post_list_thumb li.post_item a div.post_item_wrapper {
  padding: 0 0 0 10px;
}
ul.post_list_thumb li.post_item a div.post_item_wrapper .post_item_wrapper_above {
  margin: 0;
  display: flex;
  align-items: center;
  margin: 0 0 5px;
}
ul.post_list_thumb li.post_item a div.post_item_wrapper .post_item_wrapper_above span.date {
  font-size: 0.8rem;
  margin-right: 10px;
}
ul.post_list_thumb li.post_item a div.post_item_wrapper .post_item_wrapper_above span.cat {
  padding: 0;
  margin: 0;
}
ul.post_list_thumb li.post_item a div.post_item_wrapper .post_item_wrapper_above span.cat ul.post-categories {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
ul.post_list_thumb li.post_item a div.post_item_wrapper .post_item_wrapper_above span.cat ul.post-categories li {
  margin-right: 10px;
  padding: 0;
  margin: 0;
}
ul.post_list_thumb li.post_item a div.post_item_wrapper .post_item_wrapper_above span.cat ul.post-categories li a {
  font-size: 0.8rem;
  border: none;
  color: #d11b42;
}
ul.post_list_thumb li.post_item a div.post_item_wrapper .post_item_wrapper_above span.cat > span {
  font-size: 0.8rem;
  border: none;
  color: #d11b42;
  margin-right: 10px;
  line-height: 1;
}
ul.post_list_thumb li.post_item a div.post_item_wrapper span.title {
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
}
@media (max-width: 767.98px) {
  ul.post_list_thumb li.post_item {
    margin: 0 0 20px;
  }
  ul.post_list_thumb li.post_item a {
    display: flex;
    justify-content: space-between;
  }
  ul.post_list_thumb li.post_item a .post_item_thumb {
    flex-basis: 40%;
    margin: 0 0 15px;
    aspect-ratio: 3/2;
    overflow: hidden;
    border-radius: 7px;
  }
  ul.post_list_thumb li.post_item a .post_item_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  ul.post_list_thumb li.post_item a div.post_item_wrapper {
    flex-basis: 57%;
  }
  ul.post_list_thumb li.post_item a div.post_item_wrapper .post_item_wrapper_above {
    flex-direction: column;
    align-items: flex-start;
    margin: 0 0 3px;
  }
  ul.post_list_thumb li.post_item a div.post_item_wrapper .post_item_wrapper_above span.voice_industry {
    font-size: 0.7rem;
    margin: 0 8px 3px 0;
  }
  ul.post_list_thumb li.post_item a div.post_item_wrapper .post_item_wrapper_above span.title {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0 0 3px;
  }
  ul.post_list_thumb li.post_item a div.post_item_wrapper span.voice_voice_leaad {
    font-size: 0.8rem;
    line-height: 1.3;
  }
}
ul.post_list_thumb li.nopost {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 200px;
  font-size: 1.3rem;
  font-weight: 500;
  background: #fbf9f9;
  color: #625a59;
}
@media (max-width: 767.98px) {
  ul.post_list_thumb li.nopost {
    font-size: 0.9rem;
  }
}

/*──────────────────────────────────────────────────
フォーム (Based on MILLENNIA architecture)
──────────────────────────────────────────────────*/
/**
 * 1. Contact Form 7 Global Reset
 * プラグイン側のスタイルを停止したため、ここでベースを整えます。
 */
.wpcf7-response-output,
.wpcf7 form .wpcf7-response-output,
.wpcf7-validation-errors,
.screen-reader-response,
.ajax-loader,
fieldset.hidden-fields-container {
  display: none !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  visibility: hidden !important;
}

.wpcf7 br {
  display: none;
}

.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.wpcf7-not-valid,
input:invalid {
  color: #d11b42;
  border-color: #d11b42;
  background-color: #fbf9f9;
  background-position: 99% center;
  background-repeat: no-repeat;
  outline-color: #d11b42;
}

span.wpcf7-not-valid-tip {
  font-size: 0.75rem;
  color: #d11b42;
  margin-top: 5px;
  display: block;
  font-weight: 500;
}

.wpcf7 {
  margin: 0;
  padding: 0;
}
.wpcf7 form {
  border: none;
  margin: 0;
  padding: 0;
}
.wpcf7 .wpcf7-response-output {
  margin: 20px 0 0 !important;
  padding: 15px !important;
  border: 1px solid rgba(40, 36, 37, 0.1) !important;
  background: rgba(40, 36, 37, 0.02);
  font-size: 0.9rem;
  display: none;
}
.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
  display: block;
  border-color: #4CAF50 !important;
  color: #2E7D32;
}
.wpcf7 .wpcf7-response-output.wpcf7-validation-errors, .wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ng {
  display: block;
  border-color: #d11b42 !important;
  color: #d11b42;
}
.wpcf7 .wpcf7-not-valid-tip {
  color: #d11b42;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 5px;
  display: block;
}
.wpcf7 p {
  margin: 0;
  padding: 0;
}
.wpcf7 p:empty {
  display: none !important;
}
.wpcf7 span.wpcf7-form-control-wrap {
  display: block;
  position: relative;
  margin-bottom: 20px;
}
.wpcf7 span.wpcf7-form-control-wrap:empty {
  display: none !important;
}
.wpcf7 span.wpcf7-form-control-wrap:not(:has(*)):not(:has(input)):not(:has(textarea)):not(:has(select)) {
  display: none !important;
  margin: 0 !important;
}

/**
 * 2. Form Layout (Contactform Wrapper)
 */
.contactform {
  margin: 0 auto;
  width: 100%;
}
.contactform .haveto {
  font-size: 0.75rem !important;
  border: 1px solid #d11b42;
  padding: 0 10px;
  border-radius: 50px;
  color: #d11b42;
  margin-left: 7px;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .contactform .haveto {
    padding: 1px 4px;
    margin-left: 5px;
    font-size: 0.65rem;
  }
}
@media (max-width: 767.98px) {
  .contactform .any {
    padding: 1px 3px;
    margin-right: 5px;
  }
}
.contactform {
  /*────── inquiry Table ──────*/
}
.contactform table.inquiry {
  width: 100%;
}
.contactform table.inquiry tr {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.contactform table.inquiry tr th {
  width: 100%;
  text-align: left;
  padding: 12px 0px;
  display: flex;
  align-items: center;
}
.contactform table.inquiry tr th > div span.thtitle {
  color: #282425;
  font-weight: 600;
  font-size: 0.9rem;
}
@media (max-width: 767.98px) {
  .contactform table.inquiry tr th {
    padding: 0px;
    margin: 0 0 8px 0;
  }
  .contactform table.inquiry tr th > div span.thtitle {
    font-size: 0.9rem;
  }
}
.contactform table.inquiry tr td {
  width: 100%;
  font-size: 0.9em;
}
.contactform table.inquiry tr td > span {
  font-size: 0.8rem;
  text-align: left;
  display: block;
  color: #282425;
}
.contactform table.inquiry tr td > span a {
  display: inline-block;
  border-bottom: 1px solid #f0aba9;
}
.contactform table.inquiry tr td span.annotation {
  display: block;
  font-size: 0.8rem;
  background: #F7F7F7;
  color: #625a59;
  padding: 10px 15px;
}
.contactform table.inquiry tr td div.d_column {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contactform table.inquiry tr td div.d_column .d_column_item {
  flex-basis: 48%;
}
@media (max-width: 767.98px) {
  .contactform table.inquiry tr td {
    font-size: 1rem !important;
  }
}
.contactform table.inquiry tr.c_pp td {
  border-top: 1px solid #f0aba9;
  border-bottom: 1px solid #f0aba9;
  padding: 40px 0 30px;
}
.contactform table.inquiry tr.c_pp td span.info {
  display: block;
  margin-bottom: 40px;
  color: #625a59;
  font-size: 0.9rem !important;
  letter-spacing: 0rem;
  line-height: 1.8;
}
.contactform table.inquiry tr.c_pp td span.info a {
  display: inline;
  border-bottom: 1px solid #625a59;
  color: #625a59;
}
.contactform table.inquiry tr.c_pp td .acceptance_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .contactform table.inquiry tr.c_pp td {
    margin: 10px 0 0;
    padding: 20px 0 20px;
  }
  .contactform table.inquiry tr.c_pp td span.info {
    margin-bottom: 40px;
    font-size: 0.8rem !important;
  }
}
.contactform {
  /*────── confirm Table ──────*/
}
.contactform .confirm-title h2 {
  color: #d11b42;
}
.contactform table.confirm {
  width: 100%;
  margin: 0 0 50px;
}
@media (max-width: 767.98px) {
  .contactform table.confirm {
    margin: 0 auto 40px;
  }
}
.contactform table.confirm tr {
  display: flex;
  justify-content: space-between;
  padding: 25px 0;
  border-bottom: 1px solid #f0aba9;
}
.contactform table.confirm tr th {
  flex-basis: 30%;
  text-align: left;
}
.contactform table.confirm tr th span.thtitle {
  font-weight: bold;
}
.contactform table.confirm tr td {
  flex-basis: 70%;
}
.contactform table.confirm tr td span[data-confirm] {
  display: inline-block;
}
.contactform table.confirm tr td div.d_column {
  display: flex;
  align-items: center;
}
.contactform table.confirm tr td div.d_column .d_column_item {
  margin-right: 15px;
}
@media (max-width: 767.98px) {
  .contactform table.confirm tr {
    flex-direction: column;
    padding: 15px 0;
  }
  .contactform table.confirm tr th {
    text-align: left;
  }
  .contactform table.confirm tr td {
    padding: 15px 0;
  }
}
.contactform .before_sending {
  background: #FFEEEA;
  text-align: center;
  padding: 5px 0;
  border: 1px solid #d11b42;
}
.contactform .before_sending span {
  color: #d11b42;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .contactform .before_sending {
    padding: 0 5px;
    margin-bottom: 40px;
  }
  .contactform .before_sending span {
    font-size: 0.9rem;
    padding: 0;
    margin: 0;
  }
}

/**
 * 3. Input Controls
 */
::placeholder {
  color: #B6B7B8;
  opacity: 1;
}

.darkmode ::placeholder {
  color: #fff;
}

input[type=text],
input[type=password],
input[type=datetime],
input[type=datetime-local],
input[type=date],
input[type=month],
input[type=time],
input[type=week],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
input[type=tel],
input[type=color],
select,
textarea,
.field {
  display: block;
  height: auto;
  padding: 20px !important;
  color: #625a59;
  vertical-align: middle;
  box-shadow: none;
  border: 0;
  width: 100%;
  max-width: 600px;
  background-color: #fbf9f9;
  border-radius: 7px;
  border: 1px solid #f0aba9;
  outline: none;
  transition: all 0.2s ease 0s !important;
  font-size: 1rem;
}
input[type=text]:focus, input[type=text]:active,
input[type=password]:focus,
input[type=password]:active,
input[type=datetime]:focus,
input[type=datetime]:active,
input[type=datetime-local]:focus,
input[type=datetime-local]:active,
input[type=date]:focus,
input[type=date]:active,
input[type=month]:focus,
input[type=month]:active,
input[type=time]:focus,
input[type=time]:active,
input[type=week]:focus,
input[type=week]:active,
input[type=number]:focus,
input[type=number]:active,
input[type=email]:focus,
input[type=email]:active,
input[type=url]:focus,
input[type=url]:active,
input[type=search]:focus,
input[type=search]:active,
input[type=tel]:focus,
input[type=tel]:active,
input[type=color]:focus,
input[type=color]:active,
select:focus,
select:active,
textarea:focus,
textarea:active,
.field:focus,
.field:active {
  background-color: #fbf9f9;
  outline: none;
}
input[type=text].success, input[type=text].is-valid,
input[type=password].success,
input[type=password].is-valid,
input[type=datetime].success,
input[type=datetime].is-valid,
input[type=datetime-local].success,
input[type=datetime-local].is-valid,
input[type=date].success,
input[type=date].is-valid,
input[type=month].success,
input[type=month].is-valid,
input[type=time].success,
input[type=time].is-valid,
input[type=week].success,
input[type=week].is-valid,
input[type=number].success,
input[type=number].is-valid,
input[type=email].success,
input[type=email].is-valid,
input[type=url].success,
input[type=url].is-valid,
input[type=search].success,
input[type=search].is-valid,
input[type=tel].success,
input[type=tel].is-valid,
input[type=color].success,
input[type=color].is-valid,
select.success,
select.is-valid,
textarea.success,
textarea.is-valid,
.field.success,
.field.is-valid {
  color: #2b7cca;
  border-color: #2b7cca;
  background-color: #fbf9f9;
  background-position: 99% center;
  background-repeat: no-repeat;
}
input[type=text][disabled], input[type=text].is-disabled,
input[type=password][disabled],
input[type=password].is-disabled,
input[type=datetime][disabled],
input[type=datetime].is-disabled,
input[type=datetime-local][disabled],
input[type=datetime-local].is-disabled,
input[type=date][disabled],
input[type=date].is-disabled,
input[type=month][disabled],
input[type=month].is-disabled,
input[type=time][disabled],
input[type=time].is-disabled,
input[type=week][disabled],
input[type=week].is-disabled,
input[type=number][disabled],
input[type=number].is-disabled,
input[type=email][disabled],
input[type=email].is-disabled,
input[type=url][disabled],
input[type=url].is-disabled,
input[type=search][disabled],
input[type=search].is-disabled,
input[type=tel][disabled],
input[type=tel].is-disabled,
input[type=color][disabled],
input[type=color].is-disabled,
select[disabled],
select.is-disabled,
textarea[disabled],
textarea.is-disabled,
.field[disabled],
.field.is-disabled {
  cursor: not-allowed;
  border-color: #a29998;
  opacity: 0.6;
}
input[type=text][disabled]:focus, input[type=text][disabled]:active, input[type=text].is-disabled:focus, input[type=text].is-disabled:active,
input[type=password][disabled]:focus,
input[type=password][disabled]:active,
input[type=password].is-disabled:focus,
input[type=password].is-disabled:active,
input[type=datetime][disabled]:focus,
input[type=datetime][disabled]:active,
input[type=datetime].is-disabled:focus,
input[type=datetime].is-disabled:active,
input[type=datetime-local][disabled]:focus,
input[type=datetime-local][disabled]:active,
input[type=datetime-local].is-disabled:focus,
input[type=datetime-local].is-disabled:active,
input[type=date][disabled]:focus,
input[type=date][disabled]:active,
input[type=date].is-disabled:focus,
input[type=date].is-disabled:active,
input[type=month][disabled]:focus,
input[type=month][disabled]:active,
input[type=month].is-disabled:focus,
input[type=month].is-disabled:active,
input[type=time][disabled]:focus,
input[type=time][disabled]:active,
input[type=time].is-disabled:focus,
input[type=time].is-disabled:active,
input[type=week][disabled]:focus,
input[type=week][disabled]:active,
input[type=week].is-disabled:focus,
input[type=week].is-disabled:active,
input[type=number][disabled]:focus,
input[type=number][disabled]:active,
input[type=number].is-disabled:focus,
input[type=number].is-disabled:active,
input[type=email][disabled]:focus,
input[type=email][disabled]:active,
input[type=email].is-disabled:focus,
input[type=email].is-disabled:active,
input[type=url][disabled]:focus,
input[type=url][disabled]:active,
input[type=url].is-disabled:focus,
input[type=url].is-disabled:active,
input[type=search][disabled]:focus,
input[type=search][disabled]:active,
input[type=search].is-disabled:focus,
input[type=search].is-disabled:active,
input[type=tel][disabled]:focus,
input[type=tel][disabled]:active,
input[type=tel].is-disabled:focus,
input[type=tel].is-disabled:active,
input[type=color][disabled]:focus,
input[type=color][disabled]:active,
input[type=color].is-disabled:focus,
input[type=color].is-disabled:active,
select[disabled]:focus,
select[disabled]:active,
select.is-disabled:focus,
select.is-disabled:active,
textarea[disabled]:focus,
textarea[disabled]:active,
textarea.is-disabled:focus,
textarea.is-disabled:active,
.field[disabled]:focus,
.field[disabled]:active,
.field.is-disabled:focus,
.field.is-disabled:active {
  background-color: #2b7cca;
}
@media (max-width: 767.98px) {
  input[type=text],
  input[type=password],
  input[type=datetime],
  input[type=datetime-local],
  input[type=date],
  input[type=month],
  input[type=time],
  input[type=week],
  input[type=number],
  input[type=email],
  input[type=url],
  input[type=search],
  input[type=tel],
  input[type=color],
  select,
  textarea,
  .field {
    padding: 15px !important;
  }
}

input[type=password] {
  letter-spacing: 0.3em;
  margin: 20px 0 !important;
}

input[type=number] {
  max-width: 100px !important;
}
@media (max-width: 767.98px) {
  input[type=number] {
    max-width: 100% !important;
  }
}

.zipsection input[type=text] {
  width: 280px !important;
  max-width: 280px !important;
  min-width: 280px !important;
}

textarea {
  max-width: 100%;
  min-height: 250px;
  line-height: 1.5rem;
  padding: 1rem !important;
}
@media (max-width: 767.98px) {
  textarea {
    min-height: 50px;
    max-height: 150px;
  }
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-repeat: no-repeat;
  background-position: 97.5% center;
  max-width: 100px;
}

/**
 * 4. Buttons
 */
.btn-confirm,
.btn-back,
#formbtn,
#prevbtn {
  cursor: pointer;
  display: block;
  padding: 20px;
  width: 320px !important;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.07rem;
  margin: 0 auto;
  transition: all 0.2s ease 0s !important;
  border-radius: 50px;
}
@media (max-width: 767.98px) {
  .btn-confirm,
  .btn-back,
  #formbtn,
  #prevbtn {
    width: 80% !important;
    font-size: 0.9rem;
  }
}

.btn-confirm,
#formbtn {
  background: #d11b42;
  border: 1px solid #d11b42;
  color: #fff;
  margin-top: 20px;
}
.btn-confirm:hover,
#formbtn:hover {
  background: #fff;
  color: #d11b42;
}
@media (max-width: 767.98px) {
  .btn-confirm,
  #formbtn {
    margin-top: 10px;
  }
}

.btn-back,
#prevbtn {
  color: #282425;
  border: none;
  background: transparent;
}
.btn-back:hover,
#prevbtn:hover {
  background: #282425;
  color: #fff;
}

/**
 * 5. Checkbox & Radio
 */
.wpcf7-list-item {
  display: inline-block;
  margin: 0 10px 10px 18px;
}
@media (max-width: 767.98px) {
  .wpcf7-list-item {
    display: block;
    margin-left: 1.2rem;
  }
}

.wpcf7-checkbox {
  display: block;
  margin: 10px 0 0;
}

input[type=checkbox] {
  display: none;
}
input[type=checkbox] + span {
  cursor: pointer;
  position: relative;
  padding: 0 0 0 13px;
  font-size: inherit;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
  color: #282425;
  font-weight: 500;
  font-size: 0.9rem;
  margin: 0 30px 20px 0 !important;
  line-height: 1.3;
  display: inline-block;
}
input[type=checkbox] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-45%);
  left: -1rem;
  width: 23px;
  height: 23px;
  border: 1px solid #c4bbb8;
  background-color: #fefefe;
  box-sizing: border-box;
}
input[type=checkbox] + span::after {
  content: "";
  opacity: 0;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(40deg);
  left: -0.5rem;
  width: 0.4em;
  height: 0.8em;
  border-bottom: 3px solid #d11b42;
  border-right: 3px solid #d11b42;
  box-sizing: border-box;
  transition: opacity 0.2s ease;
}
input[type=checkbox]:checked + span {
  color: #282425;
  transition: all 0.25s ease;
}
input[type=checkbox]:checked + span::before {
  opacity: 1;
  border: 1px solid #d11b42;
  background-color: #d11b42;
  transition: opacity 0.2s ease;
}
input[type=checkbox]:checked + span::after {
  opacity: 1;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: opacity 0.2s ease;
}

.wpcf7-radio {
  display: block;
  margin: 10px 0 0;
}

input[type=radio] {
  display: none;
}
input[type=radio] + span {
  cursor: pointer;
  position: relative;
  padding: 0 2rem 0 0.8rem;
  font-size: inherit;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
  color: #282425;
  font-size: 0.9rem;
  font-weight: 500;
}
input[type=radio] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -1.2rem;
  width: 20px;
  height: 20px;
  border: 1px solid #c4bbb8;
  border-radius: 50%;
  background-color: #fefefe;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
}
input[type=radio] + span::after {
  content: "";
  display: block;
  opacity: 0;
  position: absolute;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
}
input[type=radio]:checked + span {
  color: #282425;
}
input[type=radio]:checked + span::after {
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
  left: calc(-1.2rem + 5px);
  width: 10px;
  height: 10px;
  background-color: #d11b42;
  border-radius: 50%;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
}

/**
 * 6. Extra Elements
 */
.recapcopy {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 30px auto !important;
  text-align: center;
}
.recapcopy span {
  font-size: 0.6rem !important;
  line-height: 2;
  letter-spacing: 0.04rem;
}
.recapcopy span:first-of-type {
  flex-basis: 100%;
}
.recapcopy a {
  color: #2b7cca;
  font-size: 0.6rem;
  display: inline-block;
  margin: 0 0.2rem;
}

.grecaptcha-badge {
  visibility: hidden;
}

/*──────────────────────────────────────────────────
ボタン
──────────────────────────────────────────────────*/
.blue-btn {
  display: inline-block;
  position: relative;
  font-family: "Noto Sans JP", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  text-decoration: none;
  color: #fbf9f9;
  font-size: 0.9em;
  font-size: 34px;
  line-height: 34px;
  font-weight: normal;
  padding: 0 24px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
}
.blue-btn:hover, .blue-btn:focus {
  color: #fbf9f9;
  text-decoration: none;
  outline: none;
}
.blue-btn:active {
  top: 1px;
}

/*
An example button.
You can use this example if you want. Just replace all the variables
and it will create a button dependant on those variables.
*/
.blue-btn {
  background-color: #2b7cca;
}
.blue-btn:hover, .blue-btn:focus {
  background-color: rgb(39.4195918367, 113.6751020408, 185.1804081633);
}
.blue-btn:active {
  background-color: rgb(38.5244897959, 111.093877551, 180.9755102041);
}

/*──────────────────────────────────────────────────
標準ボタン
──────────────────────────────────────────────────*/
.btn_standard {
  display: inline-block;
  letter-spacing: 0.1rem;
  padding: 1.2rem 2rem;
  text-align: center;
  text-decoration: none;
  border: 1px solid #d11b42;
  border-radius: 7px;
  transition: 0.4s;
}
.btn_standard span {
  color: #d11b42;
  font-size: 0.9rem;
  font-family: "Comfortaa", sans-serif;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn_standard:hover {
  background: #d11b42;
}
.btn_standard:hover span {
  color: #fff;
}
@media (max-width: 767.98px) {
  .btn_standard {
    padding: 1rem 1.5rem;
  }
}

/*──────────────────────────────────────────────────
アイコン付きボタン
──────────────────────────────────────────────────*/
a.btn_icon_small {
  border-radius: 50px;
  display: inline-block;
  background: rgba(209, 27, 66, 0.9);
  padding: 7px 21px;
}
a.btn_icon_small div {
  display: flex;
  align-items: center;
}
a.btn_icon_small div span {
  color: #fbf9f9;
}
a.btn_icon_small div span.title {
  margin: 0 0 0 5px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05rem;
}
a.btn_icon_small:hover {
  background: rgba(209, 27, 66, 0.2);
}
a.btn_icon_small:hover span {
  color: #d11b42;
}

/*──────────────────────────────────────────────────
黒ボタン
──────────────────────────────────────────────────*/
.btn_blk {
  display: inline-block;
  letter-spacing: 0.1rem;
  padding: 0 4.5rem 0 1.4rem;
  text-align: center;
  text-decoration: none;
  background: #d11b42;
  transition: 0.3s;
  border-radius: 50px;
  margin: 0 auto;
  height: 50px;
}
.btn_blk span {
  position: relative;
  width: 100%;
  color: #fbf9f9;
  font-size: 0.9rem;
  font-weight: 700;
  height: 100%;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
.btn_blk span::after {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  font-size: 0.9rem;
  padding: 0;
  line-height: 1;
  vertical-align: baseline;
  width: 10px;
  height: 10px;
  color: #d11b42;
  background: #fbf9f9;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0;
  transition: 0.3s;
}
.btn_blk span.en {
  font-family: "Comfortaa", sans-serif;
}
.btn_blk_white {
  background: #fbf9f9;
}
.btn_blk_white span {
  color: #d11b42;
}
.btn_blk_white span::after {
  background: #d11b42;
  color: #fbf9f9;
}
.btn_blk:hover {
  background: #282425;
}
.btn_blk:hover span {
  color: #fbf9f9;
  transform: translateX(5px);
}
.btn_blk:hover span::after {
  background: #fbf9f9;
  color: #d11b42;
  right: -55px;
  width: 30px;
  height: 30px;
  font-family: "Material Symbols Outlined";
  content: "\e409";
}
@media (max-width: 767.98px) {
  .btn_blk {
    padding: 0.8rem 1.2rem;
    text-align: center;
    border-radius: 1px;
  }
  .btn_blk span {
    font-size: 0.85rem !important;
    letter-spacing: 0.07rem;
    font-weight: 500;
  }
  .btn_blk span::after {
    margin: 0 0 0 10px;
    width: 17px;
    height: 17px;
    font-size: 0.8rem;
    font-weight: bold;
  }
}

/*──────────────────────────────────────────────────
テキストボタン
──────────────────────────────────────────────────*/
.btn_text {
  display: inline-block;
  color: #d11b42;
  text-decoration: none;
  transition: 0.8s;
}
.btn_text div {
  display: flex;
  align-items: center;
}
.btn_text div:after {
  display: inline-block;
  font-family: "Material Symbols Outlined";
  content: "\e409";
  margin: -3px 0 0 5px;
  color: #d11b42;
  font-size: 1.2rem;
  padding: 0;
  line-height: 1;
}
.btn_text div span {
  font-size: 0.8rem;
  line-height: 1.2em;
  font-family: "Comfortaa", sans-serif;
  transition: 0.3s;
}
.btn_text div span:first-of-type {
  margin-right: 0.5rem;
}
@media (max-width: 767.98px) {
  .btn_text div:after {
    margin: -4px 0 0 0;
    font-size: 1.1rem;
  }
  .btn_text div span {
    font-size: 0.75rem;
  }
}
.btn_text:hover {
  cursor: pointer;
  text-decoration: none;
}
.btn_text:hover span {
  color: #f0aba9;
}

/*──────────────────────────────────────────────────
シューティングボタン
──────────────────────────────────────────────────*/
.btn_shooting {
  position: relative;
  display: inline-block;
  text-decoration: none;
  transition: 0.8s;
}
.btn_shooting span {
  transition: 0.3s;
}
.btn_shooting::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #fbf9f9;
  transform: scale(1, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.btn_shooting::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #282425;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
.btn_shooting_white::after {
  background: #282425;
}
.btn_shooting_white::before {
  background: #fbf9f9;
}
.btn_shooting:hover::after {
  transform-origin: right top;
  transform: scale(0, 1);
}
.btn_shooting:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

/*──────────────────────────────────────────────────
矢印ボタン
──────────────────────────────────────────────────*/
.btn_arrow {
  display: flex;
  align-items: center;
}
.btn_arrow::before {
  font-family: "Material Symbols Outlined";
  content: "\e5c8";
  font-size: 0.8rem;
  color: #625a59;
  width: 18px;
  height: 18px;
  border: 1px solid #625a59;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  margin-bottom: -1px;
  font-weight: 600;
}

.btn_arrow_large {
  display: inline-block;
}
.btn_arrow_large > div {
  display: flex;
  align-items: center;
}
.btn_arrow_large > div::before {
  font-family: "Material Symbols Outlined";
  content: "\e409";
  font-size: 1rem;
  color: #d11b42;
  width: 40px;
  height: 40px;
  border: 1px solid #d11b42;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-weight: 600;
  transition: 0.8s;
  -webkit-transition: 0.3s;
}
.btn_arrow_large > div span {
  position: relative;
  display: inline-block;
  text-decoration: none;
  transition: 0.3s;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.1rem;
  padding: 0;
}
.btn_arrow_large > div span::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: transparent;
  transform: scale(1, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.btn_arrow_large > div span::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #d11b42;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
.btn_arrow_large > div span_white::after {
  background: #d11b42;
}
.btn_arrow_large > div span_white::before {
  background: #fbf9f9;
}
@media (max-width: 767.98px) {
  .btn_arrow_large > div::before {
    font-size: 0.9rem;
    width: 30px;
    height: 30px;
    margin-right: 8px;
  }
  .btn_arrow_large > div span {
    font-size: 0.9rem;
    letter-spacing: 0.07rem;
  }
}
.btn_arrow_large:hover > div::before {
  background: #d11b42;
  color: #fff;
}
.btn_arrow_large:hover > div span {
  color: #d11b42;
}
.btn_arrow_large:hover > div span::after {
  transform-origin: right top;
  transform: scale(0, 1);
}
.btn_arrow_large:hover > div span::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

/*──────────────────────────────────────────────────
SNSシェアボタン
──────────────────────────────────────────────────*/
.share {
  margin: 40px auto 0;
  padding: 30px;
  background: #fbf9f9;
  border-radius: 7px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767.98px) {
  .share {
    margin: 30px auto;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
.share .share_title {
  font-family: "Comfortaa", sans-serif;
  font-weight: 600;
  color: #282425;
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .share .share_title {
    font-size: 0.9rem;
  }
}
.share .share_title span {
  font-size: 0.9rem;
  line-height: 1;
}
.share ul {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .share ul {
    width: 100%;
    justify-content: flex-start;
    gap: 12px;
  }
}
.share ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #fbf9f9;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(40, 36, 37, 0.1);
}
@media (max-width: 767.98px) {
  .share ul li a {
    width: 40px;
    height: 40px;
  }
}
.share ul li a img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
@media (max-width: 767.98px) {
  .share ul li a img {
    width: 18px;
    height: 18px;
  }
}
.share ul li a:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(40, 36, 37, 0.15);
}
.share ul li a:hover img {
  transform: scale(1.1);
}
.share ul li.tweet a:hover {
  background: rgba(85, 172, 238, 0.1);
}
.share ul li.facebook a:hover {
  background: rgba(49, 80, 150, 0.1);
}
.share ul li.line a:hover {
  background: rgba(0, 195, 0, 0.1);
}

/*──────────────────────────────────────────────────
下層ページヘッダー
──────────────────────────────────────────────────*/
.pta_subpage_header {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: 300px;
  margin-top: 0 !important;
  padding: 62px clamp(24px, 5vw, 72px) 56px;
  overflow: visible;
  border: 4px solid #d11b42;
  border-radius: 28px;
  background: repeating-linear-gradient(45deg, rgba(209, 27, 66, 0.14) 0 5px, transparent 5px 14px) right 26px top 24px/118px 118px no-repeat, linear-gradient(135deg, rgba(251, 249, 249, 0.96), rgba(255, 252, 246, 0.98));
  box-shadow: 8px 8px 0 rgba(152, 28, 49, 0.12), 0 16px 36px rgba(152, 28, 49, 0.12);
}
.pta_subpage_header::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 2px solid rgba(209, 27, 66, 0.18);
  border-radius: 20px;
  pointer-events: none;
}
.pta_subpage_header::after {
  content: "";
  position: absolute;
  right: clamp(24px, 5vw, 64px);
  bottom: -18px;
  z-index: -1;
  width: clamp(118px, 16vw, 190px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(249, 193, 188, 0.48);
  pointer-events: none;
}
.pta_subpage_header .pta_section_header {
  display: grid;
  gap: 10px;
  margin: 0;
}
.pta_subpage_header .pta_section_header .pta_section_en {
  display: inline-block;
  width: fit-content;
  margin: 0;
  padding: 7px 12px 6px;
  border: 2px solid #282425;
  border-radius: 8px;
  background: #f4e829;
  color: #282425 !important;
  box-shadow: 3px 3px 0 rgba(40, 36, 37, 0.16);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.12em;
}
.pta_subpage_header h1 {
  margin: 0;
  color: #282425;
  font-size: clamp(1.85rem, 3.6vw, 3.1rem);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: 0;
  text-wrap: balance;
}
.pta_subpage_header.pta_event_hero .pta_event_lead {
  max-width: 780px;
  margin: 22px 0 0;
  padding-left: 18px;
  border-left: 6px solid #d11b42;
  color: #282425;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  font-weight: 800;
  line-height: 1.85;
}
.pta_subpage_header .pta_news_single_date {
  width: fit-content;
  margin: 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: #d11b42;
  color: #fbf9f9 !important;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
}
.pta_subpage_header .pta_news_single_thumbnail {
  margin-top: 28px;
}
.pta_subpage_header .pta_subpage_header_person {
  right: clamp(24px, 5vw, 70px);
  bottom: -42px;
  z-index: 6;
  width: auto;
  height: clamp(116px, 12vw, 172px);
}
.pta_subpage_header .pta_subpage_header_person_news_archive {
  height: clamp(104px, 10vw, 146px);
}
.pta_subpage_header .pta_subpage_header_person_news_single {
  height: clamp(116px, 11vw, 158px);
}
.pta_subpage_header .pta_subpage_header_person_plenary {
  height: clamp(122px, 12vw, 176px);
}
.pta_subpage_header .pta_subpage_header_person_subcommittee {
  height: clamp(118px, 11.6vw, 170px);
}
.pta_subpage_header .pta_subpage_header_person_registration {
  height: clamp(120px, 11.4vw, 166px);
}
.pta_subpage_header .pta_subpage_header_person_venues {
  height: clamp(122px, 12vw, 178px);
}
@media (max-width: 767.98px) {
  .pta_subpage_header {
    min-height: 220px;
    padding: 42px 18px 38px;
    border-width: 3px;
    border-radius: 18px;
    background: repeating-linear-gradient(45deg, rgba(209, 27, 66, 0.14) 0 4px, transparent 4px 12px) right 14px top 14px/76px 76px no-repeat, linear-gradient(135deg, rgba(251, 249, 249, 0.96), rgba(255, 252, 246, 0.98));
    box-shadow: 5px 5px 0 rgba(152, 28, 49, 0.12), 0 12px 28px rgba(152, 28, 49, 0.1);
  }
  .pta_subpage_header::before {
    inset: 10px;
    border-radius: 12px;
  }
  .pta_subpage_header .pta_section_header {
    gap: 8px;
  }
  .pta_subpage_header .pta_section_header .pta_section_en {
    padding: 6px 9px 5px;
    font-size: 0.7rem;
  }
  .pta_subpage_header h1 {
    font-size: clamp(1.45rem, 7vw, 2rem);
    line-height: 1.25;
  }
  .pta_subpage_header.pta_event_hero .pta_event_lead {
    margin-top: 16px;
    padding-left: 12px;
    border-left-width: 4px;
    font-size: 0.92rem;
    line-height: 1.75;
  }
  .pta_subpage_header .pta_subpage_header_person {
    right: 12px;
    bottom: -34px;
    height: 96px;
  }
  .pta_subpage_header .pta_subpage_header_person_news_archive {
    height: 82px;
  }
  .pta_subpage_header .pta_subpage_header_person_venues {
    height: 104px;
  }
}

#subpages-header {
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin: 130px auto 0;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  #subpages-header {
    height: 160px;
    margin: 60px auto 0;
  }
}
#subpages-header .page_title {
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 50px 100px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
}
@media (max-width: 767.98px) {
  #subpages-header .page_title {
    margin: 0;
    padding: 1.5rem 2rem;
    width: 85%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
}
#subpages-header .page_title h1 {
  letter-spacing: 0.2rem;
  font-size: 1.8rem;
  font-weight: 500 !important;
  color: #d11b42;
  font-family: "Noto Sans JP", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
}
@media (max-width: 767.98px) {
  #subpages-header .page_title h1 {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1rem;
  }
}
#subpages-header .page_title span.en {
  display: block;
  font-size: 0.6rem !important;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: #d11b42;
  margin-top: 0.5rem;
  opacity: 0.7;
  font-family: "Noto Sans JP", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  #subpages-header .page_title span.en {
    font-size: 0.6rem;
    letter-spacing: 0.15rem;
    margin-top: 0.5rem;
    opacity: 0.8;
  }
}
#subpages-header .subpages_image {
  position: absolute;
  width: 97%;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  overflow: hidden;
  border-radius: 7px;
}
@media (max-width: 767.98px) {
  #subpages-header .subpages_image {
    width: 95%;
  }
}
#subpages-header .subpages_image img {
  width: 100% !important;
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 7px;
  filter: blur(0);
  opacity: 1;
  transform: scale(1);
  transition: filter 1s ease, opacity 1s ease, transform 1.2s ease;
  will-change: filter, opacity, transform;
}
#subpages-header .subpages_image img.is-animating {
  filter: blur(20px);
  opacity: 0;
  transform: scale(1.05);
}
#subpages-header .subpages_image img.visible {
  filter: blur(0);
  opacity: 1;
  transform: scale(1);
}
#subpages-header::before {
  width: 97%;
  height: 100%;
  background: rgba(209, 27, 66, 0.08);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  content: "";
  display: block;
  z-index: 2;
  border-radius: 7px;
}
@media (max-width: 767.98px) {
  #subpages-header::after {
    width: 95%;
    height: 100%;
    background: rgba(209, 27, 66, 0.45);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    border-radius: 7px;
    content: "";
    display: block;
  }
}

#subpages-header-small {
  width: 100%;
  margin: 180px auto 0;
}
#subpages-header-small .page_title {
  margin: 0 auto;
  text-align: center;
}
#subpages-header-small .page_title span.en {
  text-transform: capitalize;
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 400;
  font-family: "Comfortaa", sans-serif;
  display: block;
  margin: 0;
  letter-spacing: 0.05rem;
  color: #282425;
}
#subpages-header-small .page_title h1 {
  letter-spacing: 0.07rem;
  font-size: 1rem;
  font-weight: 600;
  color: #282425;
}

/*──────────────────────────────────────────────────
下層ページ共通構造
──────────────────────────────────────────────────*/
.subpages_wrapper {
  padding-bottom: 100px;
  background: #fbf9f9;
}
@media (max-width: 767.98px) {
  .subpages_wrapper {
    padding-bottom: 60px;
  }
}

.section_item {
  margin-bottom: 150px;
}
.section_item:last-child {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .section_item {
    margin-bottom: 80px;
  }
}

/*──────────────────────────────────────────────────
パンくずリスト
──────────────────────────────────────────────────*/
.bc_wrapper {
  display: flex;
  align-items: center;
  padding: 0;
  background: none;
  width: 97%;
  margin: 0 auto;
}
.bc_wrapper ol, .bc_wrapper ul {
  margin-left: 0 !important;
}
@media (max-width: 767.98px) {
  .bc_wrapper {
    padding: 15px 0;
    width: 95%;
  }
}

.contents_box::-webkit-scrollbar {
  display: none;
}

.breadcrumb_nav {
  max-width: 100%;
  width: 100%;
}
.breadcrumb_nav .breadcrumb_list {
  max-width: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  -webkit-overflow-scrolling: touch !important;
  white-space: nowrap !important;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
}
.breadcrumb_nav .breadcrumb_list::-webkit-scrollbar {
  display: none;
}
.breadcrumb_nav .breadcrumb_list .breadcrumb_item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.breadcrumb_nav .breadcrumb_list .breadcrumb_item a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.breadcrumb_nav .breadcrumb_list .breadcrumb_item a > span {
  color: #d11b42;
  font-size: 0.8rem !important;
  transition: opacity 0.3s ease;
}
@media (max-width: 767.98px) {
  .breadcrumb_nav .breadcrumb_list .breadcrumb_item a > span {
    font-size: 0.7rem !important;
  }
}
.breadcrumb_nav .breadcrumb_list .breadcrumb_item a:hover > span {
  opacity: 0.7;
}
.breadcrumb_nav .breadcrumb_list .breadcrumb_item > span {
  color: #625a59;
  font-size: 0.8rem !important;
  font-weight: 500;
  padding: 0;
}
@media (max-width: 767.98px) {
  .breadcrumb_nav .breadcrumb_list .breadcrumb_item > span {
    font-size: 0.7rem !important;
  }
}
.breadcrumb_nav .breadcrumb_list .breadcrumb_item:not(:last-child)::after {
  content: "/";
  font-weight: 300;
  font-size: 0.8rem;
  margin: 0 0.8rem;
  color: #625a59;
}
@media (max-width: 767.98px) {
  .breadcrumb_nav .breadcrumb_list .breadcrumb_item:not(:last-child)::after {
    font-size: 0.7rem !important;
    margin: 0 0.5rem;
  }
}
@media (max-width: 767.98px) {
  .breadcrumb_nav {
    padding: 0;
  }
}

/*──────────────────────────────────────────────────
アニメーション
──────────────────────────────────────────────────*/
.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s, transform 1s;
}

.fade.active {
  opacity: 1;
  transform: translateY(0px);
}

@media (prefers-reduced-motion: reduce) {
  .fade,
  .fade-up,
  .blur {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s, transform 1s;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0px);
}

.blur {
  filter: blur(10px);
  opacity: 0.6;
  transition: filter 0.5s ease-out, opacity 1.5s ease-out;
}

.blur.active {
  filter: blur(0);
  opacity: 1;
}

.slider_text_wrapper {
  position: relative;
  width: 100vw;
  height: 7rem;
  overflow: hidden;
}
.slider_text_wrapper .slider_text {
  position: absolute;
  bottom: 0;
  z-index: 10;
}
.slider_text_wrapper .slider_text .slider_text_inner {
  position: relative;
  margin-inline: auto;
  white-space: nowrap;
}
.slider_text_wrapper .slider_text .slider_text_inner > div {
  font-size: 7.5rem;
  color: #e5e5e5;
  font-family: "Comfortaa", sans-serif;
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  line-height: 1;
}
.slider_text_wrapper .slider_text .slider_text_inner > div.loop {
  animation: looprev 100s linear infinite;
}
.slider_text_wrapper .slider_text .slider_text_inner > div.loop2 {
  position: absolute;
  top: 0;
  left: 0;
  animation: looprev 100s -50s linear infinite;
}
@media (max-width: 767.98px) {
  .slider_text_wrapper .slider_text .slider_text_inner > div {
    font-size: 5rem;
    letter-spacing: 0.2rem;
  }
  .slider_text_wrapper .slider_text .slider_text_inner > div.loop {
    animation: looprev 80s linear infinite;
  }
  .slider_text_wrapper .slider_text .slider_text_inner > div.loop2 {
    animation: looprev 80s -40s linear infinite;
  }
}

@keyframes looprev {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
/*pages（ページ固有スタイル）
───────────────────────*/
/*──────────────────────────────────────────────────
熊本市大会 トップページ
──────────────────────────────────────────────────*/
.pta_home {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(251, 249, 249, 0.14) 0 12%, transparent 12% 100%), radial-gradient(circle at 8% 20%, rgba(209, 27, 66, 0.08) 0 0, transparent 18%), #f9c1bc;
  color: #282425;
}
.pta_home::before, .pta_home::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.pta_home::before {
  background-image: linear-gradient(45deg, rgba(209, 27, 66, 0.22) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, rgba(209, 27, 66, 0.22) 75%);
  background-position: 0 0, 13px 13px;
  background-size: 26px 26px;
  opacity: 0.38;
  mask-image: linear-gradient(90deg, #040000 0 18%, transparent 18% 82%, #040000 82% 100%);
}
.pta_home::after {
  background: repeating-linear-gradient(45deg, rgba(209, 27, 66, 0.2) 0 5px, transparent 5px 14px) 7% 4%/110px 110px no-repeat, repeating-linear-gradient(45deg, rgba(209, 27, 66, 0.16) 0 5px, transparent 5px 14px) 92% 72%/120px 120px no-repeat;
}
.pta_home .wrap {
  width: min(1120px, 100% - 48px);
  margin-inline: auto;
}
@media (max-width: 767.98px) {
  .pta_home .wrap {
    width: min(100% - 28px, 720px);
  }
}
.pta_home p {
  color: #282425;
  line-height: 1.85;
}
.pta_home a {
  color: inherit;
}

.pta_mv {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  padding: 96px 16px 44px;
}
@media (max-width: 1023.98px) {
  .pta_mv {
    min-height: auto;
    padding-top: 92px;
  }
}
@media (max-width: 767.98px) {
  .pta_mv {
    padding: 78px 10px 32px;
  }
}

.pta_mv_inner {
  position: relative;
  width: min(1180px, 100%);
  min-height: 920px;
  margin-inline: auto;
  padding: 46px 7% 54px;
  border-radius: 44% 56% 50% 50%/8% 9% 7% 8%;
  background: #fbf9f9;
}
@media (max-width: 1023.98px) {
  .pta_mv_inner {
    min-height: auto;
    padding: 64px 5% 300px;
    border-radius: 36px;
  }
}
@media (max-width: 767.98px) {
  .pta_mv_inner {
    padding: 38px 18px 220px;
    border-radius: 24px;
  }
}

.pta_mv_logo {
  display: block;
  width: clamp(180px, 19vw, 280px);
  height: auto;
  margin-inline: auto;
  transform: translateY(-54%);
}
@media (max-width: 1023.98px) {
  .pta_mv_logo {
    transform: translateY(-50%);
  }
}
@media (max-width: 767.98px) {
  .pta_mv_logo {
    transform: translateY(-42%);
    margin-bottom: -22px;
  }
}

.pta_mv_emblem {
  position: absolute;
  top: 14pt;
  right: 3%;
  width: clamp(182px, 13vw, 265px);
  height: auto;
}
@media (max-width: 767.98px) {
  .pta_mv_emblem {
    top: 22px;
    right: 12px;
    width: 86px;
  }
}

.pta_mv_body {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 24px auto 0;
  text-align: center;
}

.pta_mv_kicker {
  margin: 0 0 28px;
  font-size: clamp(1.28rem, 2.35vw, 2.1rem);
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: 0;
  display: block;
}
@media (max-width: 767.98px) {
  .pta_mv_kicker {
    margin-top: 26px;
    font-size: 1rem;
    text-align: left;
  }
}

.pta_mv_title {
  display: block;
  width: min(720px, 100%);
  max-width: calc(100vw - 56px);
  margin: 0 auto 28px;
}
.pta_mv_title img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
}
@media (max-width: 767.98px) {
  .pta_mv_title {
    max-width: calc(100vw - 44px);
    margin-bottom: 24px;
  }
}

.pta_label_en {
  display: flex;
  flex-direction: column;
  margin: 0 !important;
  color: #489827 !important;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  line-height: 1;
  -webkit-text-stroke: 1px #282425;
  text-stroke: 1px #282425;
  text-shadow: none;
}
.pta_label_en span {
  color: #282425;
  display: block;
  margin-top: -5px;
  line-height: 1;
  font-size: 0.9rem;
  font-weight: 800;
  -webkit-text-stroke: 0;
  text-stroke: 0;
  text-shadow: none;
}

.pta_slogan_text {
  margin: -10px 0 52px;
  font-size: clamp(1rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.6;
}
.pta_slogan_text strong {
  font-size: clamp(1.9rem, 5vw, 4.15rem);
  font-weight: 900;
  letter-spacing: 0;
}
.pta_slogan_text span {
  line-height: 1;
  display: block;
  margin-top: -15px;
  font-size: clamp(0.9rem, 2vw, 1.15rem);
}

.pta_mv_theme ul {
  display: grid;
  gap: 4px;
  margin-top: 20px;
}
.pta_mv_theme li {
  font-size: clamp(1rem, 2.1vw, 1.6rem);
  font-weight: 800;
  line-height: 1.6;
}

.pta_mv_schedule {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 38px;
  width: fit-content;
  max-width: 100%;
  margin: 88px auto 40px;
}
@media (max-width: 1023.98px) {
  .pta_mv_schedule {
    width: min(780px, 100%);
    margin-top: 56px;
  }
}
@media (max-width: 767.98px) {
  .pta_mv_schedule {
    gap: 14px;
    margin-top: 40px;
  }
}

.pta_schedule_item {
  display: grid;
  grid-template-columns: 150px max-content;
  gap: 22px;
  align-items: stretch;
}
@media (max-width: 1023.98px) {
  .pta_schedule_item {
    grid-template-columns: 150px 1fr;
  }
}
@media (max-width: 767.98px) {
  .pta_schedule_item {
    grid-template-columns: 96px 1fr;
    gap: 12px;
  }
}

.pta_schedule_label {
  display: grid;
  place-items: center;
  min-height: 112px;
  margin: 0;
  border: 3px solid #282425;
  border-radius: 14px;
  background: #d11b42;
  box-shadow: 6px 6px 0 rgba(40, 36, 37, 0.16);
  color: #fbf9f9 !important;
  font-size: 1.65rem;
  font-weight: 900;
  height: 100%;
}
@media (max-width: 767.98px) {
  .pta_schedule_label {
    min-height: 82px;
    font-size: 1.2rem;
  }
}

.pta_schedule_body {
  display: grid;
  align-content: center;
  gap: 6px;
  min-width: 0;
  min-height: 112px;
}
@media (max-width: 767.98px) {
  .pta_schedule_body {
    gap: 4px;
    min-height: 82px;
  }
}
.pta_schedule_body p {
  margin: 0;
}

.pta_schedule_note {
  font-size: clamp(0.95rem, 1.45vw, 1.18rem);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0;
}
@media (max-width: 767.98px) {
  .pta_schedule_note {
    font-size: 0.78rem;
    line-height: 1.35;
  }
}

.pta_schedule_date {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 9px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .pta_schedule_date {
    gap: 4px;
  }
}
.pta_schedule_date strong {
  font-size: clamp(2.25rem, 5.1vw, 3.9rem);
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
  margin-right: 5px;
}
.pta_schedule_date strong span {
  display: inline-block;
  margin-inline: -0.08em;
  font-size: 0.55em;
  font-weight: 800;
  letter-spacing: 0;
}
@media (max-width: 767.98px) {
  .pta_schedule_date strong {
    font-size: clamp(1.45rem, 7.2vw, 2rem);
  }
}
.pta_schedule_date em {
  display: grid;
  place-items: center;
  line-height: 1;
  width: clamp(34px, 3.8vw, 48px);
  height: clamp(34px, 3.8vw, 48px);
  border-radius: 50%;
  background: #282425;
  color: #fbf9f9;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  font-style: normal;
  font-weight: 900;
}
.pta_schedule_date em.is_sat {
  background: #2b7cca;
}

.pta_schedule_tag {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  min-width: 56px;
  padding: 5px 8px 6px;
  border: 2px solid rgba(40, 36, 37, 0.12);
  border-radius: 7px;
  background: #fbf9f9;
  box-shadow: 2px 2px 0 rgba(40, 36, 37, 0.08);
  color: #282425;
  font-size: clamp(1.05rem, 1.65vw, 1.28rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}
@media (max-width: 767.98px) {
  .pta_schedule_tag {
    min-width: 42px;
    padding: 4px 6px 5px;
    border-width: 1px;
    border-radius: 5px;
    font-size: 0.88rem;
  }
}

.pta_schedule_year,
.pta_schedule_time {
  color: #282425;
  font-size: clamp(1.08rem, 2.1vw, 1.55rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .pta_schedule_year,
  .pta_schedule_time {
    font-size: 0.86rem;
  }
}

.pta_schedule_time {
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
}
@media (max-width: 767.98px) {
  .pta_schedule_time {
    font-size: 0.98rem;
  }
}

.pta_schedule_place {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 11px;
  font-size: clamp(1.1rem, 2.15vw, 1.55rem);
  font-weight: 900;
  line-height: 1.2;
}
@media (max-width: 767.98px) {
  .pta_schedule_place {
    gap: 7px;
    font-size: 0.9rem;
  }
}

.pta_schedule_venue {
  letter-spacing: 0;
}

.pta_mv_runner,
.pta_mv_family,
.pta_mv_student,
.pta_mv_parent {
  position: absolute;
  z-index: 5;
  height: auto;
  pointer-events: none;
}

.pta_mv_castle {
  position: absolute;
  z-index: 1;
  height: auto;
  pointer-events: none;
}

.pta_mv_runner_left {
  top: 150px;
  left: 4%;
  width: auto;
  height: clamp(136px, 10.5vw, 168px);
}

.pta_mv_runner_right {
  top: 345px;
  right: 2%;
  width: auto;
  height: clamp(132px, 10.2vw, 164px);
}

.pta_mv_family {
  left: -20px;
  bottom: 340px;
  width: auto;
  height: clamp(156px, 12vw, 190px);
}

.pta_mv_student {
  left: 12%;
  bottom: 186px;
  width: auto;
  height: clamp(136px, 10.4vw, 164px);
}

.pta_mv_parent {
  right: -10px;
  bottom: 485px;
  width: auto;
  height: clamp(156px, 14vw, 220px);
}

.pta_mv_castle {
  left: -40px;
  bottom: -40px;
  width: min(460px, 44vw);
}

@media (max-width: 1023.98px) {
  .pta_mv_runner_left,
  .pta_mv_runner_right,
  .pta_mv_parent {
    display: none;
  }
  .pta_mv_family {
    left: 4%;
    bottom: 150px;
    width: auto;
    height: 132px;
  }
  .pta_mv_student {
    left: 30%;
    bottom: 95px;
    width: auto;
    height: 112px;
  }
  .pta_mv_castle {
    width: min(420px, 70vw);
  }
}
@media (max-width: 767.98px) {
  .pta_mv_family,
  .pta_mv_student {
    display: none;
  }
  .pta_mv_castle {
    width: 290px;
  }
}
.pta_anchor_nav {
  position: relative;
  z-index: 1;
  margin-top: 36px;
}
.pta_anchor_nav ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
@media (max-width: 1023.98px) {
  .pta_anchor_nav ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767.98px) {
  .pta_anchor_nav ul {
    grid-template-columns: 1fr;
  }
}
.pta_anchor_nav a {
  height: 100%;
  padding: 18px;
  border: 2px solid #d11b42;
  border-radius: 8px;
  background: rgba(251, 249, 249, 0.94);
  box-shadow: 5px 5px 0 rgba(152, 28, 49, 0.14);
}
.pta_anchor_nav a span {
  display: block;
  margin-bottom: 6px;
  color: #d11b42;
  font-size: 1.08rem;
  font-weight: 900;
}
.pta_anchor_nav a small {
  display: block;
  color: #282425;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.55;
}
.pta_anchor_nav a:hover {
  transform: translateY(-4px);
  background: #fbf9f9;
}

.pta_section {
  position: relative;
  z-index: 1;
  margin-top: 74px;
  padding: 58px;
  border-radius: 28px;
  background: rgba(251, 249, 249, 0.96);
  box-shadow: 0 14px 40px rgba(152, 28, 49, 0.12);
}
@media (max-width: 1023.98px) {
  .pta_section {
    padding: 42px 32px;
  }
}
@media (max-width: 767.98px) {
  .pta_section {
    margin-top: 42px;
    padding: 30px 18px;
    border-radius: 18px;
  }
}

.pta_section_deco {
  position: absolute;
  z-index: 5;
  width: auto;
  pointer-events: none;
}

.pta_section_header,
.pta_news_list,
.pta_two_column,
.pta_theme_grid,
.pta_program_panel,
.pta_table_wrap,
.pta_step_grid,
.pta_venue_grid {
  position: relative;
  z-index: 1;
}

.pta_news_clip {
  top: -36px;
  right: -38px;
  width: clamp(82px, 9vw, 128px);
  transform: rotate(12deg);
}

.pta_news_deco_person {
  right: 28px;
  bottom: -48px;
  height: clamp(96px, 8.8vw, 122px);
}

.pta_outline_deco_person {
  right: -52px;
  bottom: -66px;
  height: clamp(150px, 12.5vw, 188px);
}

.pta_theme_deco_person {
  top: -106px;
  right: 7%;
  height: clamp(112px, 10vw, 140px);
}

.pta_plenary_deco_person {
  right: -58px;
  top: 24px;
  height: clamp(156px, 12.6vw, 196px);
}

.pta_subcommittee_deco_person {
  top: -126px;
  right: 12%;
  height: clamp(150px, 12.5vw, 188px);
}

.pta_registration_deco_person {
  left: -52px;
  bottom: -64px;
  height: clamp(142px, 11.5vw, 176px);
}

.pta_venues_deco_person {
  right: -60px;
  bottom: -68px;
  height: clamp(160px, 13vw, 204px);
}

@media (max-width: 767.98px) {
  .pta_news_clip {
    top: -34px;
    right: -18px;
    width: 84px;
  }
  .pta_news_deco_person,
  .pta_theme_deco_person,
  .pta_plenary_deco_person,
  .pta_subcommittee_deco_person,
  .pta_registration_deco_person {
    width: auto;
    height: 104px;
  }
  .pta_outline_deco_person,
  .pta_venues_deco_person {
    width: auto;
    height: 118px;
  }
  .pta_news_deco_person {
    height: 82px;
  }
  .pta_theme_deco_person {
    height: 92px;
  }
}
.pta_section_header {
  margin-bottom: 30px;
}
.pta_section_header .pta_section_en {
  margin: 0 0 4px;
  color: #d11b42;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.pta_section_header h2 {
  margin: 0;
  color: #282425;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.32;
}

.pta_news_list {
  display: grid;
  gap: 14px;
}

.pta_news_item {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(209, 27, 66, 0.25);
}
@media (max-width: 767.98px) {
  .pta_news_item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
.pta_news_item time {
  color: #d11b42;
  font-weight: 900;
}
.pta_news_item h3 {
  margin: 0 0 4px;
  font-size: 1.12rem;
  font-weight: 900;
}
.pta_news_item h3 a {
  display: inline;
}
.pta_news_item h3 a:hover {
  color: #d11b42;
}
.pta_news_item p {
  margin: 0;
  font-size: 0.95rem;
}

.pta_news_empty {
  margin: 0;
  font-weight: 700;
}

.pta_news_more {
  position: relative;
  z-index: 1;
  margin-top: 26px;
  text-align: right;
}
.pta_news_more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 12px 22px;
  border-radius: 999px;
  background: #d11b42;
  color: #fbf9f9;
  font-weight: 900;
  box-shadow: 4px 4px 0 rgba(152, 28, 49, 0.18);
}
.pta_news_more a:hover {
  transform: translateY(-3px);
}
@media (max-width: 767.98px) {
  .pta_news_more {
    text-align: left;
  }
  .pta_news_more a {
    width: 100%;
  }
}

.pta_section_link {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  text-align: right;
}
.pta_section_link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 12px 22px;
  border: 2px solid #d11b42;
  border-radius: 999px;
  background: #fbf9f9;
  color: #d11b42;
  font-weight: 900;
  box-shadow: 4px 4px 0 rgba(152, 28, 49, 0.12);
}
.pta_section_link a::after {
  content: ">";
  margin-left: 10px;
  font-weight: 900;
}
.pta_section_link a:hover {
  background: #d11b42;
  color: #fbf9f9;
  transform: translateY(-3px);
}
@media (max-width: 767.98px) {
  .pta_section_link {
    text-align: left;
  }
  .pta_section_link a {
    width: 100%;
  }
}

.pta_two_column {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.75fr);
  gap: 34px;
}
@media (max-width: 1023.98px) {
  .pta_two_column {
    grid-template-columns: 1fr;
  }
}

.pta_text_panel h3 {
  margin: 0 0 16px;
  padding-left: 16px;
  border-left: 8px solid #d11b42;
  font-size: 1.45rem;
  font-weight: 900;
}
.pta_text_panel p {
  margin: 0 0 1.1em;
  font-size: 1rem;
}

.pta_info_panel {
  padding: 24px;
  border-radius: 14px;
  background: rgba(249, 193, 188, 0.55);
}
.pta_info_panel dl,
.pta_info_panel div,
.pta_info_panel dt,
.pta_info_panel dd {
  margin: 0;
}
.pta_info_panel div {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(209, 27, 66, 0.25);
}
.pta_info_panel div:first-child {
  padding-top: 0;
}
.pta_info_panel div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.pta_info_panel dt {
  color: #d11b42;
  font-size: 0.82rem;
  font-weight: 900;
}
.pta_info_panel dd {
  color: #282425;
  font-weight: 800;
  line-height: 1.65;
}

.pta_theme_grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
}
@media (max-width: 1023.98px) {
  .pta_theme_grid {
    grid-template-columns: 1fr;
  }
}

.pta_slogan_card,
.pta_theme_card,
.pta_step_item,
.pta_venue_grid article {
  padding: 26px;
  border: 2px solid rgba(209, 27, 66, 0.22);
  border-radius: 14px;
  background: #fbf9f9;
}

.pta_card_label {
  display: inline-block;
  margin: 0 0 14px;
  padding: 4px 12px;
  border-radius: 5px;
  background: #d11b42;
  color: #fbf9f9 !important;
  font-size: 0.86rem;
  font-weight: 900;
}

.pta_slogan_card p:last-child {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.75;
}
.pta_slogan_card p:last-child strong {
  font-size: 2rem;
}

.pta_theme_card ul {
  display: grid;
  gap: 12px;
}
.pta_theme_card li {
  position: relative;
  padding-left: 1.4em;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.6;
}
.pta_theme_card li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 0.65em;
  height: 0.65em;
  background: #d11b42;
  transform: rotate(45deg);
}

.pta_program_panel {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 28px;
}
@media (max-width: 767.98px) {
  .pta_program_panel {
    grid-template-columns: 1fr;
  }
}

.pta_program_label {
  display: grid;
  place-items: center;
  min-height: 130px;
  padding: 18px;
  border-radius: 14px;
  background: #d11b42;
  color: #fbf9f9;
  font-size: 1.2rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.6;
}

.pta_program_body {
  padding: 24px;
  border-radius: 14px;
  background: rgba(249, 193, 188, 0.55);
}
.pta_program_body h3 {
  margin: 0 0 8px;
  font-size: 1.55rem;
  font-weight: 900;
}
.pta_program_body p {
  margin: 0;
}

.pta_table_wrap {
  overflow-x: auto;
  border-radius: 12px;
}

.pta_subcommittee_table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #fbf9f9;
  color: #282425;
  font-size: 0.98rem;
}
.pta_subcommittee_table th,
.pta_subcommittee_table td {
  padding: 14px 16px;
  border: 2px solid #fbf9f9;
  line-height: 1.55;
}
.pta_subcommittee_table thead th {
  background: #d11b42;
  color: #fbf9f9;
  font-weight: 900;
  text-align: center;
}
.pta_subcommittee_table tbody tr:nth-child(odd) {
  background: rgba(249, 193, 188, 0.45);
}
.pta_subcommittee_table tbody tr:nth-child(even) {
  background: rgba(251, 249, 249, 0.8);
}
.pta_subcommittee_table tbody th {
  color: #282425;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
}

.pta_step_grid,
.pta_venue_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 1023.98px) {
  .pta_step_grid,
  .pta_venue_grid {
    grid-template-columns: 1fr;
  }
}

.pta_step_item span {
  display: inline-block;
  margin-bottom: 14px;
  color: #d11b42;
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1;
}
.pta_step_item h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 900;
}
.pta_step_item p {
  margin: 0;
}

.pta_detail_card_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 1023.98px) {
  .pta_detail_card_grid {
    grid-template-columns: 1fr;
  }
}
.pta_detail_card_grid article {
  padding: 24px;
  border: 2px solid rgba(209, 27, 66, 0.22);
  border-radius: 14px;
  background: #fbf9f9;
  box-shadow: 5px 5px 0 rgba(152, 28, 49, 0.1);
}
.pta_detail_card_grid h3 {
  margin: 0 0 10px;
  color: #d11b42;
  font-size: 1.18rem;
  font-weight: 900;
}
.pta_detail_card_grid p {
  margin: 0;
  font-size: 0.96rem;
}

.pta_venue_grid {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767.98px) {
  .pta_venue_grid {
    grid-template-columns: 1fr;
  }
}
.pta_venue_grid h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  font-weight: 900;
}
.pta_venue_grid p {
  margin: 0;
}

.pta_contact_band {
  position: relative;
  z-index: 1;
  margin-top: 74px;
  padding: 44px 0 64px;
  background: #d11b42;
  color: #fbf9f9;
}
@media (max-width: 767.98px) {
  .pta_contact_band {
    margin-top: 48px;
    padding: 34px 0 48px;
  }
}

.pta_contact_band_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}
@media (max-width: 767.98px) {
  .pta_contact_band_inner {
    align-items: flex-start;
    gap: 16px;
  }
}
.pta_contact_band_inner > div {
  text-align: center;
}
.pta_contact_band_inner > div .pta_contact_label {
  display: inline-block;
  margin: 0 0 18px;
  padding: 6px 12px;
  border-radius: 6px;
  background: #fbf9f9;
  color: #282425 !important;
  font-weight: 900;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}
.pta_contact_band_inner > div h2 {
  margin: 0 0 4px;
  color: #fbf9f9;
  font-size: clamp(1.35rem, 3vw, 2.3rem);
  font-weight: 900;
}
.pta_contact_band_inner > div p {
  margin: 0;
  color: #fbf9f9;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.2;
}
.pta_contact_band_inner > div p a {
  display: inline-block;
  color: #fbf9f9;
}

/* イベント個別ページ
───────────────────────*/
.pta_event_page {
  padding: 122px 0 70px;
}
@media (max-width: 767.98px) {
  .pta_event_page {
    padding-top: 86px;
  }
}
.pta_event_page .pta_event_hero {
  margin-top: 0;
}
.pta_event_page .pta_event_lead {
  max-width: 760px;
  margin: 0;
  font-size: 1.08rem;
  font-weight: 800;
}

.pta_event_related_grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
@media (max-width: 1023.98px) {
  .pta_event_related_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .pta_event_related_grid {
    grid-template-columns: 1fr;
  }
}
.pta_event_related_grid a {
  display: grid;
  place-items: center;
  min-height: 78px;
  padding: 14px;
  border: 2px solid rgba(209, 27, 66, 0.28);
  border-radius: 14px;
  background: #fbf9f9;
  color: #282425;
  font-weight: 900;
  text-align: center;
}
.pta_event_related_grid a.is_current, .pta_event_related_grid a:hover {
  border-color: #d11b42;
  background: #d11b42;
  color: #fbf9f9;
}

.pta_news_archive,
.pta_news_single {
  padding: 122px 0 70px;
}
@media (max-width: 767.98px) {
  .pta_news_archive,
  .pta_news_single {
    padding-top: 86px;
  }
}
.pta_news_archive .bc_wrapper,
.pta_news_single .bc_wrapper {
  position: relative;
  z-index: 2;
}

.pta_news_page_hero,
.pta_news_single_hero {
  margin-top: 0;
}

.pta_news_archive_body,
.pta_news_single_content,
.pta_news_single_footer {
  margin-top: 34px;
}

.pta_news_archive_body .medium_wrap {
  width: 100%;
  max-width: 980px;
}
.pta_news_archive_body .post_list_text {
  display: grid;
  gap: 16px;
}
.pta_news_archive_body .post_item {
  margin: 0;
}
.pta_news_archive_body .post_item a {
  padding: 22px 24px;
  border: 2px solid rgba(209, 27, 66, 0.22);
  border-radius: 14px;
  background: #fbf9f9;
  box-shadow: 5px 5px 0 rgba(152, 28, 49, 0.1);
}
.pta_news_archive_body .post_item a:hover {
  border-color: #d11b42;
  transform: translateY(-3px);
}
.pta_news_archive_body .post_item_wrapper {
  display: grid;
  gap: 8px;
}
.pta_news_archive_body .post_item_wrapper_above {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pta_news_archive_body .date {
  color: #d11b42;
  font-weight: 900;
}
.pta_news_archive_body .title {
  color: #282425;
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.55;
}
.pta_news_archive_body .excerpt {
  color: #282425;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.75;
}
.pta_news_archive_body .nopost {
  padding: 22px;
  border-radius: 14px;
  background: #fbf9f9;
  font-weight: 900;
}

.pta_news_single_date {
  margin: 0 0 10px;
  color: #d11b42 !important;
  font-size: 0.95rem;
  font-weight: 900;
}

.pta_news_single_thumbnail {
  position: relative;
  z-index: 1;
  margin-top: 28px;
}
.pta_news_single_thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(152, 28, 49, 0.12);
}

.pta_news_single_content {
  max-width: 900px;
}
.pta_news_single_content p {
  margin: 0 0 1.5em;
  font-size: 1.05rem;
}
.pta_news_single_content p:last-child {
  margin-bottom: 0;
}
.pta_news_single_content a {
  display: inline;
  color: #d11b42;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pta_news_single_footer {
  max-width: 900px;
  padding: 26px;
}
.pta_news_single_footer .footer_navigator {
  margin: 0;
}

/*──────────────────────────────────────────────────
よくある質問（FAQ）
──────────────────────────────────────────────────*/
.faq .faq_header {
  margin-bottom: 0;
  padding: 40px;
  background: #F3F6FA;
}
.faq .faq_header ul {
  display: flex;
  align-items: center;
}
.faq .faq_header ul li {
  margin: 0 20px 0 0;
}
.faq .faq_header ul li a {
  background: #fbf9f9;
  padding: 15px 30px;
  color: #282425;
  border-radius: 7px;
}
.faq .faq_header ul li a span {
  display: flex;
  align-items: center;
}
.faq .faq_header ul li a span::after {
  font-family: "Material Symbols Outlined";
  content: "\e5cf";
  color: #d11b42;
  font-weight: bold;
  margin: 0 0 0 7px;
}
.faq .faq_header ul li a:hover {
  background: #d11b42;
}
.faq .faq_header ul li a:hover span {
  color: #fbf9f9;
}
.faq .faq_header ul li a:hover span::after {
  color: #fbf9f9;
}
@media (max-width: 767.98px) {
  .faq .faq_header {
    padding: 20px;
  }
  .faq .faq_header ul {
    flex-direction: column;
    align-items: flex-start;
  }
  .faq .faq_header ul li {
    margin: 0 0 15px 0;
  }
  .faq .faq_header ul li:last-of-type {
    margin: 0;
  }
  .faq .faq_header ul li a {
    padding: 10px 20px;
  }
  .faq .faq_header ul li a span {
    font-size: 0.9rem;
  }
}
.faq .faq_item {
  padding-top: 100px;
  margin: 0 auto !important;
}
.faq .faq_item ul {
  margin: 30px auto 0;
}
@media (max-width: 767.98px) {
  .faq .faq_item {
    padding-top: 50px;
  }
  .faq .faq_item ul {
    margin: 20px auto 0;
  }
}

/*──────────────────────────────────────────────────
プライバシーポリシー
──────────────────────────────────────────────────*/
.ppr {
  color: #282425;
  margin: 0 auto;
}
.ppr .subpages_wrapper {
  margin: 150px 0 0;
}
.ppr .ppr_item {
  margin-bottom: 80px;
}
.ppr h2 {
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.07rem;
  font-weight: 500;
}
.ppr h3 {
  font-size: 1rem;
  font-weight: 500;
}
.ppr p {
  display: block;
  line-height: 1.7;
}
.ppr p span {
  display: block;
}
.ppr ul {
  margin: 0 0 0 1rem;
  list-style: square;
}
.ppr ul li {
  font-size: 0.9rem;
}
.ppr table {
  font-size: 0.8rem !important;
  margin-top: 40px;
}
@media (max-width: 767.98px) {
  .ppr {
    border-bottom: 1px solid transparent;
  }
  .ppr .subpages_wrapper {
    margin: 40px 0 0;
  }
  .ppr .ppr_item {
    margin-bottom: 40px;
  }
  .ppr h2 {
    font-size: 0.9rem !important;
  }
  .ppr h3 {
    font-size: 0.9rem;
  }
  .ppr p {
    font-size: 0.8rem !important;
  }
  .ppr p span {
    font-size: 0.8rem !important;
  }
  .ppr ul {
    list-style: circle;
  }
  .ppr ul li {
    font-size: 0.8rem;
  }
  .ppr table {
    margin-top: 40px;
  }
}

/*──────────────────────────────────────────────────
404エラーページ
──────────────────────────────────────────────────*/
.error-page section > div {
  display: block;
  margin: 250px auto 150px;
  text-align: center;
}
@media (max-width: 767.98px) {
  .error-page section > div {
    margin: 150px auto 90px;
  }
}
.error-page .error_title {
  font-family: "Comfortaa", sans-serif;
  text-align: center;
  margin-bottom: 50px;
}
.error-page .error_title h1 {
  font-size: 5.5rem !important;
  margin: 0;
  line-height: 1;
  font-weight: 500;
}
.error-page .error_title span.en {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 767.98px) {
  .error-page .error_title {
    margin-bottom: 20px;
  }
  .error-page .error_title h1 {
    font-size: 4rem !important;
  }
}
.error-page p {
  margin-bottom: 50px;
}
@media (max-width: 767.98px) {
  .error-page p {
    width: 80%;
    margin: 0 auto 30px;
  }
}

/*──────────────────────────────────────────────────
お問い合わせ
──────────────────────────────────────────────────*/
@media (max-width: 767.98px) {
  .contact {
    padding-bottom: 50px !important;
  }
}
.contact h2.section_title {
  font-size: 1.2rem;
  color: #d11b42;
  margin-bottom: 20px;
  text-align: center;
}
.contact .contact_phone {
  margin-bottom: 80px;
  background: #F5F8FA;
  border: 6px solid #F5F8FA;
  border-radius: 7px;
  padding: 25px 20px 30px;
}
.contact .contact_phone .phone_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.contact .contact_phone .phone_content .phone_button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d11b42;
  padding: 15px 40px 12px;
  border-radius: 50px;
  gap: 5px;
  transition: all 0.3s ease;
}
.contact .contact_phone .phone_content .phone_button span.material-symbols-outlined {
  font-size: 1.8rem;
  color: #fbf9f9;
  line-height: 1;
}
.contact .contact_phone .phone_content .phone_button span.number {
  font-size: 1.6rem;
  font-weight: bold;
  font-family: "Comfortaa", sans-serif;
  line-height: 1;
  color: #fbf9f9;
}
.contact .contact_phone .phone_content .phone_button:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}
.contact .contact_phone .phone_content .hours_info {
  width: 100%;
  max-width: 500px;
  border-top: 1px dotted #f0aba9;
  padding-top: 30px;
}
.contact .contact_phone .phone_content .hours_info .hours_item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.contact .contact_phone .phone_content .hours_info .hours_item span.title {
  flex-basis: 110px;
  flex-shrink: 0;
  font-size: 0.85rem;
  color: #d11b42;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(209, 27, 66, 0.05);
  margin-right: 20px;
  border-radius: 7px;
  padding: 8px 0;
}
.contact .contact_phone .phone_content .hours_info .hours_item span.title.holiday {
  background-color: rgba(222, 143, 0, 0.1);
  color: #de8f00;
}
.contact .contact_phone .phone_content .hours_info .hours_item .content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #282425;
  font-weight: 600;
  margin: 0;
}
.contact .contact_phone .phone_content .hours_info .hours_item:last-child {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .contact .contact_flow {
    margin: 50px auto 40px;
  }
}
@media (max-width: 767.98px) {
  .contact .contact_flow .contact_flow_item span.circle {
    width: 14px;
    height: 14px;
  }
}
@media (max-width: 767.98px) {
  .contact .contact_flow .contact_flow_item span.status {
    font-size: 0.7rem;
    margin-top: 6px;
  }
}
.contact .the_form {
  padding: 20px 0;
}
.contact .the_form p.form_avobe {
  margin: 0 auto 60px;
  font-size: 0.9rem;
}
@media (max-width: 767.98px) {
  .contact .the_form p.form_avobe {
    margin: 0 auto 10px;
    padding: 20px 0;
    font-size: 0.8rem !important;
    text-align: left;
  }
}
.contact .the_form .form_wrapper {
  background: #fbf9f9;
  padding: 20px 60px;
  border-radius: 7px;
}

/*──────────────────────────────────────────────────
送信完了（サンクスページ）
──────────────────────────────────────────────────*/
@media (max-width: 767.98px) {
  .thanks .thankyou_content {
    margin: 50px 0;
  }
}
.thanks .thankyou_content p {
  margin: 0;
  font-size: 0.9rem;
}
.thanks ul.thankyou_info {
  margin: 50px auto 60px;
  background: #fbf9f9;
  padding: 25px 40px;
  border-radius: 5px;
}
@media (max-width: 767.98px) {
  .thanks ul.thankyou_info {
    margin: 30px auto 40px;
    padding: 25px 20px;
  }
}
.thanks ul.thankyou_info li {
  display: block;
  font-size: 0.9rem;
  list-style: disc;
  margin: 0 0 15px;
}
@media (max-width: 767.98px) {
  .thanks ul.thankyou_info li {
    font-size: 0.8rem;
  }
}
.thanks ul.thankyou_info li:last-child {
  margin: 0;
}
.thanks ul.thankyou_info li a {
  display: inline-block;
  border-bottom: 1px solid #2b7cca;
  color: #2b7cca;
}
.thanks .backtohome {
  text-align: center;
}

/*──────────────────────────────────────────────────
投稿（アーカイブ・シングル）
──────────────────────────────────────────────────*/
@media (max-width: 767.98px) {
  .post_archive {
    padding-bottom: 0;
  }
}
.post_archive .post_archive_inner {
  display: block;
}
@media (max-width: 767.98px) {
  .post_archive .post_archive_inner {
    margin: 50px auto 0;
  }
}
.post_archive .post_archive_inner .blog_content {
  width: 100%;
}

/*──────────────────────────────────────────────────
投稿シングル
──────────────────────────────────────────────────*/
.post_single {
  padding-top: 120px;
}
.post_single .subpages_wrapper {
  margin: 80px auto 0;
}
@media (max-width: 767.98px) {
  .post_single .subpages_wrapper {
    margin: 40px 0 0;
    padding: 0 20px;
  }
}
.post_single .subpages_wrapper article header.entry-header {
  margin: 0 auto 40px;
}
@media (max-width: 767.98px) {
  .post_single .subpages_wrapper article header.entry-header {
    margin: 0 auto 30px;
  }
}
.post_single .subpages_wrapper article header.entry-header .informations {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.post_single .subpages_wrapper article header.entry-header .informations span.date {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  color: #625a59;
}
.post_single .subpages_wrapper article header.entry-header .page_title {
  margin: 10px 0 30px;
}
.post_single .subpages_wrapper article header.entry-header .page_title h1.single_title {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .post_single .subpages_wrapper article header.entry-header .page_title h1.single_title {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
.post_single .subpages_wrapper article header.entry-header img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 7px;
  box-shadow: 0 4px 20px rgba(40, 36, 37, 0.1);
}
@media (max-width: 767.98px) {
  .post_single .subpages_wrapper article header.entry-header img {
    border-radius: 8px;
  }
}
.post_single .subpages_wrapper article section.entry-content {
  margin: 40px auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #282425;
}
@media (max-width: 767.98px) {
  .post_single .subpages_wrapper article section.entry-content {
    margin: 30px auto;
    font-size: 1rem;
  }
}
.post_single .subpages_wrapper article section.entry-content p {
  margin-bottom: 1.5em;
}
.post_single .subpages_wrapper article section.entry-content h2,
.post_single .subpages_wrapper article section.entry-content h3,
.post_single .subpages_wrapper article section.entry-content h4 {
  margin-top: 2em;
  margin-bottom: 1em;
  font-weight: 600;
  line-height: 1.4;
}
.post_single .subpages_wrapper article section.entry-content h2 {
  font-size: 1.6rem;
  padding-bottom: 0.5em;
  border-bottom: 2px solid #fbf9f9;
}
@media (max-width: 767.98px) {
  .post_single .subpages_wrapper article section.entry-content h2 {
    font-size: 1.3rem;
  }
}
.post_single .subpages_wrapper article section.entry-content h3 {
  font-size: 1.3rem;
}
@media (max-width: 767.98px) {
  .post_single .subpages_wrapper article section.entry-content h3 {
    font-size: 1.15rem;
  }
}
.post_single .subpages_wrapper article section.entry-content h4 {
  font-size: 1.1rem;
}
@media (max-width: 767.98px) {
  .post_single .subpages_wrapper article section.entry-content h4 {
    font-size: 1.05rem;
  }
}
.post_single .subpages_wrapper article section.entry-content ul,
.post_single .subpages_wrapper article section.entry-content ol {
  margin: 1.5em 0;
  padding-left: 2em;
}
.post_single .subpages_wrapper article section.entry-content ul li,
.post_single .subpages_wrapper article section.entry-content ol li {
  margin-bottom: 0.5em;
}
.post_single .subpages_wrapper article section.entry-content blockquote {
  margin: 2em 0;
  padding: 1.5em;
  background: #fbf9f9;
  border-left: 4px solid #d11b42;
  border-radius: 7px;
  font-style: italic;
}
.post_single .subpages_wrapper article section.entry-content.works_content .works_text {
  border-top: 1px solid #f0aba9;
  padding: 20px 0;
}
.post_single .subpages_wrapper article section.entry-content.works_content .works_gallery .gallery {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.post_single .subpages_wrapper article section.entry-content.works_content .works_gallery .gallery figure.gallery-item .gallery-icon img {
  width: 100%;
  height: auto;
}
.post_single .subpages_wrapper article footer.entry-footer {
  margin: 60px 0 0;
  border-top: 1px solid #f0aba9;
  padding-top: 30px;
}
@media (max-width: 767.98px) {
  .post_single .subpages_wrapper article footer.entry-footer {
    margin: 40px 0 60px;
    padding-top: 30px;
  }
}
.post_single .subpages_wrapper article footer.entry-footer > div {
  display: flex;
  align-items: center;
  margin: 15px 0;
}
.post_single .subpages_wrapper article footer.entry-footer > div > span.ttl {
  font-size: 0.85rem;
  font-family: "Comfortaa", sans-serif;
  font-weight: 600;
  margin-right: 10px;
}
@media (max-width: 767.98px) {
  .post_single .subpages_wrapper article footer.entry-footer > div > span.ttl {
    font-size: 0.8rem;
  }
}
.post_single .subpages_wrapper article footer.entry-footer > div.share {
  margin: 30px 0 0;
}
.post_single .subpages_wrapper article footer.entry-footer > div.footer_navigator {
  margin: 40px 0 0;
}

/*# sourceMappingURL=edit.css.map */
