@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Crimson+Pro:ital@0;1&family=Montserrat:ital,wght@0,500;1,500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap");
/* -----------------------------------------------------------------------------------
デフォルトCSS
----------------------------------------------------------------------------------- */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
  --common-color: #000;
  --common-sub-color: #FFFFFF;
  --common-accent-color: #FD5400;
  --common-accent-color-2: #015240;
  --common-text-color: #000;
  --common-border-color: #DDD;
  --common-border-color-2: #F7F7F7;
  --common-hover-color: var(--common-accent-color);
  --common-shadow-color: #00000033;
  --common-bg-color: #F0EEED;
  --common-bg-color-1-1: #351800F2;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(128px + 16px);
}
@media (width <= 1080px) {
  html {
    scroll-padding-top: calc(88px + 0px);
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0;
  color: var(--common-color);
  background: var(--common-bg-color);
  -webkit-text-size-adjust: 100%;
  /*スマホ横画面で文字の拡大・収縮防止用*/
  -webkit-font-smoothing: antialiased;
  /* 文字の太さを整える。Safari環境用 */
}
@media (width <= 764px) {
  body {
    font-size: 14px;
  }
}

img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 0.2em;
  word-break: break-all;
}
@media (1080px <= width) {
  a[href*=tel] {
    pointer-events: none;
    /* pcでリンクさせない */
  }
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.25;
}

h1 {
  font-size: clamp(28px, 4.19vw, 32px);
}

h2 {
  font-size: 24px;
}
@media (width <= 764px) {
  h2 {
    font-size: 16px;
  }
}

h3 {
  font-size: 18px;
}
@media (width <= 764px) {
  h3 {
    font-size: 14px;
  }
}

h4 {
  font-size: 17px;
}
@media (width <= 764px) {
  h4 {
    font-size: 14px;
  }
}

code,
mark {
  font-family: unset;
  font-weight: unset;
}

strong {
  font-weight: bold;
}

nav {
  line-height: 1;
}

header,
footer {
  line-height: 1;
}

main {
  min-height: 100vh;
  line-height: 1;
}

/*--------------------------------------
【共通】要素表示用CSS
----------------------------------------*/
.pc-only {
  display: block;
}
@media (width <= 764px) {
  .pc-only {
    display: none !important;
  }
}

@media (764px < width) {
  .mobile-only {
    display: none !important;
  }
}

@media (764px < width) {
  .sp-only {
    display: none !important;
  }
}
@media (480px < width <= 764px) {
  .sp-only {
    display: none !important;
  }
}

/*--------------------------------------
【共通】body用CSS
----------------------------------------*/
/* body直下に設定 */
.body-wrap {
  display: block;
  width: max(100%, 320px);
  min-height: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

/*--------------------------------------
WordPressデフォルトCSS 打ち消し
----------------------------------------*/
/* 余白解除 */
.is-layout-flow > * {
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

/* -----------------------------------------------------------------------------------
ヘッダー用 CSS
----------------------------------------------------------------------------------- */
.header {
  display: block;
  width: 100%;
  height: 128px;
  color: var(--common-text-color);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.header::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--common-bg-color);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: -1;
}
@media (width <= 1080px) {
  .header {
    height: 88px;
  }
}
.header.is_scroll {
  /* header.js */
  height: 128px;
}
.header.is_scroll::before {
  opacity: 1;
}
@media (width <= 1080px) {
  .header.is_scroll {
    height: 88px;
  }
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  width: 100%;
  height: auto;
  padding: 30px 30px 8px;
}
@media (width <= 1080px) {
  .header__inner {
    padding: 16px 16px 8px;
  }
}
.header__menu-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.header__pc-menu {
  display: block;
}
@media (width <= 1080px) {
  .header__pc-menu {
    display: none;
  }
}
.header__pc-menu .nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}

.header-title {
  display: block;
  width: min(100%, 500px);
  min-width: 180px;
}
@media (width <= 1080px) {
  .header-title {
    width: min(100%, 180px);
  }
}
.header-title a {
  display: block;
  font-size: 0;
}
.header-title img {
  line-height: 1;
}
.header-title:hover {
  opacity: 0.8;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.header-menu {
  width: 100%;
}
.header-menu .nav-menu {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.header-menu .menu-item {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
@media (1080px < width) {
  .header-menu .menu-item {
    white-space: nowrap;
  }
}
@media (1080px < width) {
  .header-menu .menu-item.type_hidden {
    display: none;
  }
}
.header-menu .menu-link > a {
  -webkit-transition: color 0.3s ease-in;
  transition: color 0.3s ease-in;
}
.header-menu .menu-link:hover {
  color: var(--common-hover-color);
}
@media (1080px < width) {
  .header-menu .sub-menu {
    display: none;
  }
}

.header-menu-2 {
  width: 100%;
}
.header-menu-2 .nav-menu {
  display: grid;
  grid-auto-flow: column;
  /* 縦→横の流れ */
  grid-template-rows: repeat(6, -webkit-min-content);
  grid-template-rows: repeat(6, min-content);
  grid-template-columns: repeat(2, 1fr);
  /* 縦に5個ずつ */
  gap: 0 48px;
  width: auto;
}
@media (width <= 1080px) {
  .header-menu-2 .nav-menu {
    grid-template-columns: repeat(2, minmax(144px, 1fr));
  }
}
.header-menu-2 .menu-item {
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  /* 18px */
}
@media (width <= 1080px) {
  .header-menu-2 .menu-item {
    font-size: 18px;
    line-height: 1.4;
  }
}
.header-menu-2 .menu-link {
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}
.header-menu-2 .menu-link:hover {
  opacity: 0.5;
}
.header-menu-2 .menu-link > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0 0 0.6em;
  padding: 32px 0;
  border-bottom: 2px solid #D9D9D9;
}
@media (width <= 1080px) {
  .header-menu-2 .menu-link > a {
    padding: 20px 0;
  }
}

.header-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  width: 100%;
}
@media (width <= 764px) {
  .header-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

/*--------------------------------------
ドロワーメニュー
----------------------------------------*/
.header-drawer-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-bottom: 1px solid transparent;
  background: url(../img/common/menu_btn-pc.svg) no-repeat;
  background-size: contain;
}
.header-drawer-icon::before {
  content: "";
  display: none;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
html:has(.header-drawer-menu.is_active) .header-drawer-icon::before {
  display: block;
  opacity: 1;
}

.header-drawer-icon--close {
  background: url(../img/common/menu_close_btn-sp.svg) no-repeat;
  background-size: contain;
}
.header-drawer-icon--close::before {
  display: none !important;
}

.header-drawer-menu {
  display: block;
  width: min(100%, 704px);
  height: 100vh;
  background-color: var(--common-bg-color);
  border-radius: 40px 0px 0px 40px;
  color: var(--common-text-color);
  overflow-y: auto;
  position: fixed;
  top: 0;
  right: -200%;
  z-index: 1000;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  -webkit-transition-property: right, opacity;
  transition-property: right, opacity;
}
@media (width <= 1080px) {
  .header-drawer-menu {
    border-radius: 0;
  }
}
.header-drawer-menu.is_active {
  left: auto;
  right: 0;
  opacity: 1;
}
.header-drawer-menu__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 128px;
  padding: 24px 30px 8px;
  background-color: var(--common-bg-color);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
}
@media (width <= 1080px) {
  .header-drawer-menu__head {
    height: 88px;
    padding: 16px 16px 8px;
  }
}
.header-drawer-menu__head:has(.header-title) {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1em;
}
.header-drawer-menu__foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px 0;
  width: min(100% - 40px, 488px);
  padding: 0 0 40px;
  margin: 0 auto;
}

.header-button {
  width: min(100%, 488px);
  height: 80px;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  border: 1px solid #FD5400;
  border-radius: 5px;
  background: white;
}
.header-button__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  padding: 30px;
}
.header-button__labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (width <= 1080px) {
  .header-button__labels {
    gap: 8px;
  }
}
.header-button__title {
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: black;
  line-height: 1;
  letter-spacing: 2px;
}
@media (width <= 1080px) {
  .header-button__title {
    font-size: 18px;
  }
}
.header-button__subtitle {
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #FD5400;
  line-height: 1;
}
@media (width <= 1080px) {
  .header-button__subtitle {
    font-size: 12px;
  }
}
.header-button__icon {
  width: 32px;
  height: 32px;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  background: url(../img/common/cta_icon_1.svg) center no-repeat;
  background-size: cover;
}
.header-button__icon--registration {
  background-image: url(../img/common/cta_icon_2.svg);
}

/* -----------------------------------------------------------------------------------
フッター用 CSS
----------------------------------------------------------------------------------- */
.footer {
  display: block;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  background: var(--common-text-color);
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}
.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 132px 0;
  padding: 54px 0 80px;
}
@media (width <= 764px) {
  .footer__inner {
    gap: 52px 0;
    padding: 48px 0;
  }
}
.footer__nav-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: min(calc(100% - clamp(20px, 3.7vw, 40px)), 1200px);
  margin: 0 auto;
}
@media (width <= 764px) {
  .footer__nav-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 80px;
  }
  .footer__nav-area .footer-info {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .footer__nav-area .footer-menu {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.footer__lead-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: min(100% - clamp(20px, 3.7vw, 40px), 1360px);
  margin: 0 auto;
}

.footer-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media (width <= 764px) {
  .footer-cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer-cards__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
  width: min(100%, 670px);
  padding: 48px;
  border-radius: 10px;
  background: #FFFFFF;
  color: var(--common-text-color);
}
@media (width <= 764px) {
  .footer-cards__item {
    padding: 32px 24px;
    gap: 24px;
    border-radius: 5px;
  }
}
.footer-cards__title-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.footer-cards__title-group img {
  width: 64px;
  height: 64px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (width <= 764px) {
  .footer-cards__title-group img {
    width: 48px;
    height: 48px;
  }
}
.footer-cards__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.4em;
  font-family: "Noto Sans JP";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  /* 相対値：100%と同等 */
  letter-spacing: 3.2px;
}
@media (width <= 764px) {
  .footer-cards__title {
    font-size: 24px;
  }
}
.footer-cards__title span {
  color: var(--common-accent-color);
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  /* 相対値：100%と同等 */
}
@media (width <= 764px) {
  .footer-cards__title span {
    font-size: 14px;
  }
}
.footer-cards__text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}
@media (width <= 764px) {
  .footer-cards__text {
    margin-bottom: 0;
    font-size: 14px;
  }
}
.footer-cards__link {
  -ms-flex-item-align: center;
      align-self: center;
  text-align: right;
}

.next-link-wrap .next-link {
  font-size: 18px;
  color: currentcolor;
}
@media (width <= 764px) {
  .next-link-wrap .next-link {
    font-size: 16px;
  }
}

.next-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  text-decoration: underline;
  text-underline-offset: 0.5em !important;
  color: currentcolor;
}
@media (width <= 764px) {
  .next-link {
    gap: 12px;
    font-size: 16px;
  }
}
.next-link::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(../img/common/icon_7.svg) center no-repeat;
  background-size: contain;
}
@media (width <= 764px) {
  .next-link::after {
    width: 32px;
    height: 32px;
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
}

.footer-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}
.footer-info__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  width: 100%;
}
.footer-info__title {
  width: min(100%, 571px);
  margin-bottom: 8px;
}
.footer-info__title img {
  height: auto;
}
.footer-info__text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
@media (width <= 764px) {
  .footer-info__text {
    text-align: center;
    line-height: 1.2;
  }
}

.footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 16px;
}
@media (width <= 764px) {
  .footer-menu {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    gap: 64px;
  }
}
.footer-menu .nav-menu {
  display: grid;
  grid-auto-flow: column;
  /* 縦→横の流れ */
  grid-template-rows: repeat(5, -webkit-min-content);
  grid-template-rows: repeat(5, min-content);
  /* 縦に5個ずつ */
  gap: 32px;
  width: auto;
}
@media (width <= 764px) {
  .footer-menu .nav-menu {
    grid-template-rows: repeat(8, -webkit-min-content);
    grid-template-rows: repeat(8, min-content);
    height: auto;
  }
}
.footer-menu .menu-item {
  width: min(100%, 210px);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
.footer-menu .menu-link {
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}
.footer-menu .menu-link:hover {
  opacity: 0.5;
}
.footer-menu .sns-menu {
  color: transparent;
}
.footer-menu .sns-menu > .menu-link > a {
  pointer-events: none;
  height: 0;
}
.footer-menu .sns-menu .nav-menu,
.footer-menu .sns-menu .sub-menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, 42px);
  grid-auto-rows: 32px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  width: 100%;
  margin: 0 0 0 auto;
}
.footer-menu .sns-menu .nav-menu .menu-item,
.footer-menu .sns-menu .sub-menu .menu-item {
  display: block;
  overflow: hidden;
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
  position: relative;
  z-index: 1;
}
.footer-menu .sns-menu .nav-menu .menu-item::before,
.footer-menu .sns-menu .sub-menu .menu-item::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
.footer-menu .sns-menu .nav-menu .menu-item.type_in::before,
.footer-menu .sns-menu .sub-menu .menu-item.type_in::before {
  background-image: url(../img/common/icon_Instagram.svg);
}
.footer-menu .sns-menu .nav-menu .menu-item.type_tube::before,
.footer-menu .sns-menu .sub-menu .menu-item.type_tube::before {
  background-image: url(../img/common/icon_youtube.svg);
}
.footer-menu .sns-menu .nav-menu .menu-item:hover,
.footer-menu .sns-menu .sub-menu .menu-item:hover {
  opacity: 0.5;
}
.footer-menu .sns-menu .nav-menu .menu-link,
.footer-menu .sns-menu .sub-menu .menu-link {
  color: transparent !important;
}
.footer-menu .sns-menu .nav-menu .menu-link > a,
.footer-menu .sns-menu .sub-menu .menu-link > a {
  display: block;
  padding: 0;
}

.copyright {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  color: #999;
}
@media (width <= 764px) {
  .copyright {
    width: min(100%, 262px);
    margin: 0 auto;
    text-align: center;
  }
}

/* -----------------------------------------------------------------------------------
固定ページ・アーカイブページ・フロントページ
メイン用 CSS
----------------------------------------------------------------------------------- */
.main {
  display: block;
  width: 100%;
  min-height: calc(100vh - 128px);
  padding: 128px 0 0;
  background: var(--common-bg-color);
  position: relative;
  z-index: 1;
  /* ヘッダーの高さ */
}
@media (width <= 764px) {
  .main {
    min-height: calc(100vh - 88px);
    padding: 88px 0 0;
  }
}

/*--------------------------------------
【共通】画面幅
----------------------------------------*/
.main-container {
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
}

/*--------------------------------------
【共通】ページレイアウト
----------------------------------------*/
/* 通常 */
.page-head {
  padding: 40px 0 64px;
  border-bottom: 1px solid;
}
@media (width <= 764px) {
  .page-head {
    padding: 20px 0 32px;
  }
}
.page-head__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: min(calc(100% - clamp(20px, 3.7vw, 40px)), 1200px);
  margin: 0 auto;
}
@media (width <= 764px) {
  .page-head__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 32px;
  }
  .page-head__inner > :first-child {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.page-head--noline {
  padding: 40px 0;
  border-bottom: none;
}
@media (width <= 764px) {
  .page-head--noline {
    padding: 20px 0 0;
  }
}
@media (width <= 764px) {
  .page-head--noline .page-head__inner {
    gap: 43px;
  }
}

.page-foot {
  padding: 80px 0 200px;
}
@media (width <= 764px) {
  .page-foot {
    padding: 64px 0 120px;
  }
}
.page-foot__inner {
  width: min(calc(100% - clamp(20px, 3.7vw, 40px)), 1200px);
  margin: 0 auto;
}
.page-foot__inner > :last-child {
  margin-bottom: 0;
}

/* シングルページ */
.single-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 530px;
  padding: 32px 0 40px;
  background: url(../img/page/page_head_img_2.jpg) center no-repeat;
  background-size: cover;
}
@media (width <= 764px) {
  .single-head {
    height: auto;
    gap: 200px;
    padding: 20px 0 20px;
    background: transparent;
    position: relative;
  }
  .single-head::before {
    content: "";
    display: block;
    width: 100%;
    min-height: 375px;
    background: url(../img/page/page_head_img_2-sp.jpg) center no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    z-index: -1;
  }
}
.single-head__breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: min(calc(100% - clamp(20px, 3.7vw, 40px)), 1200px);
  margin: 0 auto;
}
.single-head__breadcrumb .breadcrumb {
  color: #ffffff !important;
}
.single-head__breadcrumb .breadcrumb li > a::after {
  background: #ffffff;
}
.single-head__card {
  width: min(100% - clamp(20px, 3.7vw, 40px), 1360px);
  margin: 0 auto;
}
.single-foot {
  padding: 80px 0 200px;
}
@media (width <= 764px) {
  .single-foot {
    padding: 20px 0 120px;
  }
}
.single-foot__inner {
  width: min(calc(100% - clamp(20px, 3.7vw, 40px)), 1200px);
  margin: 0 auto;
}
.single-foot__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 80px;
}
@media (width <= 764px) {
  .single-foot__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.single-foot__main {
  width: min(100%, 800px);
}
.single-foot__side {
  width: min(100%, 320px);
}
@media (width <= 764px) {
  .single-foot__side {
    width: min(100%, 480px);
  }
}
.single-foot__related {
  margin: 160px 0 0;
}
.single-foot__related .archive-list-tournament-Information {
  grid-template-columns: repeat(2, 1fr);
}
@media (width <= 764px) {
  .single-foot__related .archive-list-tournament-Information {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}
.single-foot__related .archive-list-tournament-Information__item {
  min-height: auto;
}
@media (width <= 764px) {
  .single-foot__related .archive-list-tournament-Information__item {
    border-radius: 5px;
    min-height: 310px;
  }
}
.single-foot__related .archive-list-tournament-Information__link::before {
  height: 100%;
  background-position: center right;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
}
@media (width <= 764px) {
  .single-foot__related .archive-list-tournament-Information__link::before {
    width: 121px;
    height: 182px;
    border-radius: 0px 5px;
  }
}
.single-foot__related .archive-list-tournament-Information__title-group {
  width: calc(100% - 150px);
  min-height: auto;
  margin: 0 0 24px;
}
@media (width <= 764px) {
  .single-foot__related .archive-list-tournament-Information__title-group {
    width: calc(100% - 150px);
    min-height: 162px;
  }
}
.single-foot__related .archive-list-tournament-Information__details {
  width: calc(100% - 150px);
  min-height: auto;
}
@media (width <= 764px) {
  .single-foot__related .archive-list-tournament-Information__details {
    width: auto;
  }
}

/*--------------------------------------
【共通】ページタイトル
----------------------------------------*/
.page-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
@media (width <= 764px) {
  .page-title {
    gap: 12px;
  }
}
.page-title__main {
  color: black;
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 5.6px;
  word-wrap: break-word;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (width <= 764px) {
  .page-title__main {
    font-size: 32px;
  }
}
.page-title__sub {
  color: #FD5400;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 1;
  word-wrap: break-word;
}
@media (width <= 764px) {
  .page-title__sub {
    font-size: 14px;
  }
}

.page-title-2 {
  color: black;
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 5.6px;
  word-wrap: break-word;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (width <= 764px) {
  .page-title-2 {
    font-size: 32px;
  }
}

/*--------------------------------------
【共通】パンクズリスト
----------------------------------------*/
.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 24px;
  width: 100%;
}
@media (width <= 764px) {
  .breadcrumb {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.breadcrumb li {
  text-align: left;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.25;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
@media (width <= 764px) {
  .breadcrumb li {
    font-size: 12px;
  }
}
.breadcrumb li > a {
  position: relative;
}
.breadcrumb li > a::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: #FD5400;
  border-radius: 100%;
  position: absolute;
  top: 0.625em;
  right: -12px;
  -webkit-transform: translate(50%, 0);
          transform: translate(50%, 0);
}
.breadcrumb li:first-of-type {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.breadcrumb li:first-of-type > a {
  white-space: nowrap;
}
.breadcrumb li:last-of-type {
  padding: 0;
}
@media (width <= 764px) {
  .breadcrumb li {
    font-size: 10px;
  }
}

/*--------------------------------------
【共通】検索ボックス
プラグイン『Search & Filter』
----------------------------------------*/
.searchandfilter {
  display: block;
  margin: 0 0 1em;
  line-height: 1.25;
}
.searchandfilter ul {
  display: grid;
  grid-template-columns: 1fr 120px;
  grid-auto-rows: -webkit-min-content;
  grid-auto-rows: min-content;
  gap: 0 8px;
}
@media (width <= 764px) {
  .searchandfilter ul {
    grid-template-columns: 1fr 80px;
  }
}
.searchandfilter li {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
}
.searchandfilter li input[type*=text] {
  width: 100%;
  height: 40px;
}
.searchandfilter li input[type*=submit] {
  width: 100%;
  height: 40px;
  background-color: var(--common-color);
  border: none;
  color: var(--common-sub-color);
  font-weight: 600;
}

/*--------------------------------------
【共通】ページネーションwrapper
----------------------------------------*/
.wp-pagenavi-container {
  display: block;
  width: 100%;
  margin: 96px 0 0;
}
@media (width <= 764px) {
  .wp-pagenavi-container {
    margin: 64px 0 0;
  }
}

/*--------------------------------------
【共通】ページネーション（プラグイン使用）
----------------------------------------*/
.pagenavi-prev,
.pagenavi-next {
  display: block;
  width: 1.5em;
  height: 1.5em;
  background: url(../img/common/icon_nav_prev.svg) center no-repeat;
  background-size: contain;
}

.pagenavi-next {
  background-image: url(../img/common/icon_nav_next.svg);
}

.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px 24px;
  width: 100%;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi .page,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .current,
.wp-pagenavi .first,
.wp-pagenavi .last {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 2.5em;
  height: 2.5em;
  padding: 0 0 2px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  font-size: 1em;
  text-align: center;
  color: unset;
  position: relative;
  z-index: 1;
  color: var(--common-color);
  -webkit-transition: color 0.3s ease-in;
  transition: color 0.3s ease-in;
}
.wp-pagenavi .page::before,
.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before,
.wp-pagenavi .current::before,
.wp-pagenavi .first::before,
.wp-pagenavi .last::before {
  content: "";
  display: block;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid;
  -webkit-transition: background-color 0.3s ease-in;
  transition: background-color 0.3s ease-in;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
.wp-pagenavi .page:hover,
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover,
.wp-pagenavi .current:hover,
.wp-pagenavi .first:hover,
.wp-pagenavi .last:hover {
  color: var(--common-sub-color);
}
.wp-pagenavi .page:hover::before,
.wp-pagenavi .previouspostslink:hover::before,
.wp-pagenavi .nextpostslink:hover::before,
.wp-pagenavi .current:hover::before,
.wp-pagenavi .first:hover::before,
.wp-pagenavi .last:hover::before {
  background: var(--common-color);
}
.wp-pagenavi .current {
  color: var(--common-sub-color);
}
.wp-pagenavi .current::before {
  background: var(--common-color);
}
.wp-pagenavi > * {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover {
  opacity: 0.6;
  color: var(--common-color);
}
.wp-pagenavi .previouspostslink:hover::before,
.wp-pagenavi .nextpostslink:hover::before {
  background: #ffffff;
  border: 1px solid;
}
.wp-pagenavi .previouspostslink {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-right: 24px;
}
.wp-pagenavi .nextpostslink {
  -webkit-box-ordinal-group: 1001;
      -ms-flex-order: 1000;
          order: 1000;
  margin-left: 24px;
}
.wp-pagenavi:not(:has(.previouspostslink))::before {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  content: "";
  width: 2.5em;
  height: 2.5em;
}
.wp-pagenavi:not(:has(.nextpostslink))::after {
  -webkit-box-ordinal-group: 1001;
      -ms-flex-order: 1000;
          order: 1000;
  content: "";
  width: 2.5em;
  height: 2.5em;
}

/* -----------------------------------------------------------------------------------
サイドバー用CSS
----------------------------------------------------------------------------------- */
.side-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 64px;
}

.side-banner {
  width: 100%;
}
.side-banner a {
  display: block;
}

.update-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  width: 100%;
}
.update-list__item {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  padding: 0 0 24px;
  border-bottom: dashed 1px #C1B4AD;
}
.update-list__item.is-latest .update-list__date {
  color: #FD5400;
}
.update-list__content {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
}
.update-list__row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 8px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.update-list__title {
  color: black;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  word-wrap: break-word;
}
.update-list__date {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  word-wrap: break-word;
}
.update-list__icon {
  display: block;
  width: 20px;
  height: 20px;
  aspect-ratio: 1/1;
  background: url(../img/common/icon_2.svg) center no-repeat;
  background-size: cover;
}

/* -----------------------------------------------------------------------------------
ページフットコンテンツ用CSS
----------------------------------------------------------------------------------- */
/*--------------------------------------
ブロック設定
----------------------------------------*/
h1.wp-block-heading,
h2.wp-block-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  padding: 0 0 20px;
  border-bottom: 1px solid #C1B4AD;
  font-size: 32px;
  color: var(--common-text-color);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 2.4px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (width <= 764px) {
  h1.wp-block-heading,
  h2.wp-block-heading {
    font-size: 24px;
  }
}
h1.wp-block-heading::before,
h2.wp-block-heading::before {
  content: "";
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 4px;
  min-height: 1em;
  background: var(--common-accent-color);
}

h3.wp-block-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  font-size: 28px;
  color: var(--common-text-color);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 2.4px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (width <= 764px) {
  h3.wp-block-heading {
    font-size: 20px;
  }
}
h3.wp-block-heading::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: #FD5400;
}

h4.wp-block-heading {
  font-size: 24px;
  color: var(--common-text-color);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 2.4px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (width <= 764px) {
  h4.wp-block-heading {
    font-size: 18px;
  }
}

/* ブロックエディターのボタンブロックをターゲット */
.wp-block-button {
  /* サイズ */
  width: min(100%, 400px);
  height: 80px;
  cursor: pointer;
}
@media (width <= 764px) {
  .wp-block-button {
    width: min(100%, 260px);
    height: 64px;
  }
}
.wp-block-button__link[class] {
  /* レイアウト */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  padding: 8px;
  padding-right: 40px;
  margin: 0;
  justify-content: center;
  align-items: center;
  gap: 16px;
  /* 外観 */
  background-color: #FF5722;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  /* タイポグラフィ */
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  /* アイコン用の疑似要素 */
  position: relative;
  cursor: pointer;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  /* ホバー時 */
}
@media (width <= 764px) {
  .wp-block-button__link[class] {
    padding-right: 32px;
    font-size: 18px;
  }
}
.wp-block-button__link[class]::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(../img/common/icon_11.svg) center no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
@media (width <= 764px) {
  .wp-block-button__link[class]::before {
    width: 32px;
    height: 32px;
  }
}
.wp-block-button__link[class]:hover {
  opacity: 0.9;
}
.wp-block-button--m {
  width: min(100%, 260px);
  height: 64px;
}
@media (width <= 764px) {
  .wp-block-button--m {
    width: min(100%, 220px);
    height: 48px;
  }
}
.wp-block-button--m .wp-block-button__link {
  padding-right: 32px;
  font-size: 18px;
}
@media (width <= 764px) {
  .wp-block-button--m .wp-block-button__link {
    padding-right: 18px;
    font-size: 14px;
  }
}
.wp-block-button--m .wp-block-button__link::before {
  width: 32px;
  height: 32px;
}
@media (width <= 764px) {
  .wp-block-button--m .wp-block-button__link::before {
    width: 18px;
    height: 18px;
  }
}
.wp-block-button--s {
  width: min(100%, 220px);
  height: 48px;
}
.wp-block-button--s .wp-block-button__link {
  padding-right: 18px;
  font-size: 14px;
}
.wp-block-button--s .wp-block-button__link::before {
  width: 18px;
  height: 18px;
}
/*--------------------------------------
AFCエディター用・カスタムブロック設定
----------------------------------------*/
/* プロフィール */
.staff-profile[class] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  width: 100%;
}
@media (width <= 764px) {
  .staff-profile[class] {
    gap: 24px;
  }
}
.staff-profile__image[class] {
  width: 140px;
  height: 140px;
}
@media (width <= 764px) {
  .staff-profile__image[class] {
    width: 96px;
    height: 96px;
  }
}
.staff-profile__image[class] img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media (width <= 764px) {
  .staff-profile__image[class] img {
    border-radius: 5px;
  }
}
.staff-profile__info[class] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (width <= 764px) {
  .staff-profile__info[class] {
    gap: 12px;
  }
}
.staff-profile__info[class] * {
  margin: 0;
}
.staff-profile__title[class] {
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  color: black;
}
@media (width <= 764px) {
  .staff-profile__title[class] {
    font-size: 14px;
  }
}
.staff-profile__name[class] {
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  color: black;
}
@media (width <= 764px) {
  .staff-profile__name[class] {
    font-size: 24px;
  }
}

/*--------------------------------------
シングルページ・基本設定
----------------------------------------*/
.custom-single-editor-wrapper > * {
  margin-top: 48px;
}
.custom-single-editor-wrapper p {
  margin-top: 20px;
  color: var(--common-text-color);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 1.44px;
}
@media (width <= 764px) {
  .custom-single-editor-wrapper p {
    font-size: 16px;
  }
}
.custom-single-editor-wrapper p strong {
  color: var(--common-accent-color);
}
.custom-single-editor-wrapper h2 {
  margin-bottom: 40px;
}
@media (width <= 764px) {
  .custom-single-editor-wrapper h2 {
    margin-bottom: 32px;
  }
}
.custom-single-editor-wrapper h3 {
  margin-bottom: 32px;
}
@media (width <= 764px) {
  .custom-single-editor-wrapper h3 {
    margin-bottom: 24px;
  }
}
.custom-single-editor-wrapper h4 {
  margin-bottom: 20px;
}
.custom-single-editor-wrapper a {
  color: var(--common-accent-color);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  /* 14px */
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.custom-single-editor-wrapper p a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.custom-single-editor-wrapper p a::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/common/icon_10.svg) center no-repeat;
  background-size: cover;
}
.custom-single-editor-wrapper p a[data-type=page]::after {
  background: url(../img/common/icon_9.svg) center no-repeat;
  background-size: cover;
}
.custom-single-editor-wrapper p a[href$=".pdf"]::after {
  background: url(../img/common/icon_2.svg) center no-repeat;
  background-size: cover;
}
.custom-single-editor-wrapper > :first-child {
  margin-top: 0;
}

.wp-block-file {
  margin-top: 20px;
}
.wp-block-file a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.wp-block-file a::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/common/icon_2.svg) center no-repeat;
  background-size: cover;
}

/* ----------------
// ACF
---------------- */
.custom-acf-editor-wrapper table {
  width: 100%;
  table-layout: auto;
  background-color: #ffffff;
  border: solid 1px #000000;
  line-height: 1.4;
}
.custom-acf-editor-wrapper table caption {
  font-size: 1.13em;
  font-weight: 600;
  margin-bottom: 0.5em;
}
.custom-acf-editor-wrapper table th,
.custom-acf-editor-wrapper table td {
  width: auto;
  padding: 0.5em;
  border: solid 1px #000000;
}
.custom-acf-editor-wrapper img.alignnone.size-medium {
  width: 240px;
}
.custom-acf-editor-wrapper img.alignnone.size-large {
  width: 640px;
}

/*--------------------------------------
固定ページ・基本設定
----------------------------------------*/
/* ----------------
// セクション余白・タイトルの余白・文字設定
---------------- */
.custom-block-wrapper {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
.custom-block-wrapper section {
  margin-bottom: 120px;
}
@media (width <= 764px) {
  .custom-block-wrapper section {
    margin-bottom: 96px;
  }
}
.custom-block-wrapper section:last-child {
  margin-bottom: 0;
}
.custom-block-wrapper strong {
  color: var(--common-accent-color);
}
.custom-block-wrapper h2.wp-block-heading {
  margin-bottom: 40px;
}
@media (width <= 764px) {
  .custom-block-wrapper h2.wp-block-heading {
    margin-bottom: 32px;
  }
}
.custom-block-wrapper h3.wp-block-heading {
  margin-bottom: 32px;
}
@media (width <= 764px) {
  .custom-block-wrapper h3.wp-block-heading {
    margin-bottom: 24px;
  }
}
.custom-block-wrapper h4.wp-block-heading {
  margin-bottom: 20px;
}

/* ----------------
// 縦の余白
---------------- */
.custom-block-column-ss {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px 0;
}
@media (width <= 764px) {
  .custom-block-column-ss {
    gap: 12px 0;
  }
}
.custom-block-column-s {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px 0;
}
@media (width <= 764px) {
  .custom-block-column-s {
    gap: 16px 0;
  }
}
.custom-block-column-m {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px 0;
}
@media (width <= 764px) {
  .custom-block-column-m {
    gap: 20px 0;
  }
}
.custom-block-column-l {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px 0;
}
@media (width <= 764px) {
  .custom-block-column-l {
    gap: 32px 0;
  }
}
.custom-block-column-ss > h2.wp-block-heading,
.custom-block-column-ss > h3.wp-block-heading,
.custom-block-column-ss > h4.wp-block-heading, .custom-block-column-s > h2.wp-block-heading,
.custom-block-column-s > h3.wp-block-heading,
.custom-block-column-s > h4.wp-block-heading, .custom-block-column-m > h2.wp-block-heading,
.custom-block-column-m > h3.wp-block-heading,
.custom-block-column-m > h4.wp-block-heading, .custom-block-column-l > h2.wp-block-heading,
.custom-block-column-l > h3.wp-block-heading,
.custom-block-column-l > h4.wp-block-heading {
  margin-bottom: 0;
}

.custom-block-image-s {
  width: min(100%, 320px);
}
.custom-block-image-m {
  width: min(100%, 480px);
}
.custom-block-image-l {
  width: min(100%, 680px);
}

/* ----------------
// 文字
---------------- */
.custom-block-title-s {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  /* 21.6px */
  letter-spacing: 1.44px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (width <= 764px) {
  .custom-block-title-s {
    font-size: 16px;
  }
}
.custom-block-title-m {
  font-size: 24px;
  font-weight: 500;
  color: #000;
  line-height: 1.3;
  letter-spacing: 2.4px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (width <= 764px) {
  .custom-block-title-m {
    font-size: 20px;
  }
}
.custom-block-title-l {
  font-size: 32px;
  font-weight: 500;
  color: #000;
  line-height: 1.3;
  letter-spacing: 2.4px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (width <= 764px) {
  .custom-block-title-l {
    font-size: 24px;
  }
}

.custom-block-strong-s {
  font-size: 14px;
  font-weight: 500;
}
.custom-block-strong-m {
  font-size: 18px;
  font-weight: 500;
}
@media (width <= 764px) {
  .custom-block-strong-m {
    font-size: 16px;
  }
}
.custom-block-strong-l {
  font-size: 18px;
  font-weight: 500;
}
@media (width <= 764px) {
  .custom-block-strong-l {
    font-size: 16px;
  }
}

.custom-block-lead {
  margin-bottom: 80px;
}
@media (width <= 764px) {
  .custom-block-lead {
    margin-bottom: 48px;
  }
}

.custom-block-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25em;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  color: var(--common-accent-color);
}
.custom-block-link::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/common/icon_10.svg) center no-repeat;
  background-size: cover;
}
.custom-block-link[data-type=page]::after {
  background: url(../img/common/icon_9.svg) center no-repeat;
  background-size: cover;
}
.custom-block-link[href$=".pdf"]::after {
  background: url(../img/common/icon_2.svg) center no-repeat;
  background-size: cover;
}

/*--------------------------------------

----------------------------------------*/
.custom-button[class] {
  position: relative;
  width: 260px;
  height: 64px;
  border-radius: 90px;
  cursor: pointer;
  overflow: hidden;
}
@media (width <= 764px) {
  .custom-button[class] {
    width: 220px;
    height: 48px;
  }
}
.custom-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  border-radius: 90px;
  border: 0.5px solid #FD5400;
  z-index: 0;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.custom-button:hover::before {
  background: #FFF0E6;
}
.custom-button__link[class] {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  width: 100%;
  height: 100%;
  padding: 8px;
  padding-right: 20px;
  position: relative;
}
.custom-button__label[class] {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #FD5400;
  line-height: 1.3;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  position: relative;
  z-index: 1;
}
@media (width <= 764px) {
  .custom-button__label[class] {
    font-size: 14px;
  }
}
.custom-button__icon[class] {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 1;
  background-image: url("../img/common/icon_1.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (width <= 764px) {
  .custom-button__icon[class] {
    width: 18px;
    height: 18px;
  }
}
.custom-button a[href$=".pdf"] .custom-button__icon {
  background-image: url("../img/common/icon_2.svg");
}
.custom-button a[href$=".doc"] .custom-button__icon, .custom-button a[href$=".docx"] .custom-button__icon, .custom-button a[href$=".xls"] .custom-button__icon, .custom-button a[href$=".xlsx"] .custom-button__icon {
  background-image: url("../img/common/icon_3.svg");
}

.custom-table[class] {
  margin: 0 0 0;
}
.custom-table[class] table {
  border-collapse: separate;
  border-spacing: 5px;
  width: 100%;
  table-layout: fixed;
}
.custom-table[class] table th,
.custom-table[class] table td {
  text-align: center;
  padding: 10px 0;
  background: #ffffff;
  font-size: 14px;
}
.custom-table[class] table th {
  color: white;
  border: solid 1px #927141;
}
.custom-table[class] table td {
  border: solid 1px #af9d85;
}
.custom-table[class] table td:nth-child(2) {
  width: 90px;
}

/* -----------------------------------------------------------------------------------
アーカイブページ用CSS
----------------------------------------------------------------------------------- */
/* -----------------------------------------------------------------------------------
お知らせ
----------------------------------------------------------------------------------- */
/*--------------------------------------
アーカイブ
----------------------------------------*/
.archive-list-news {
  list-style: none;
  padding: 0;
  margin: 0;
}
.archive-list-news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #D9D9D9;
}
.archive-list-news__item:first-child {
  padding-top: 0;
}
@media (width <= 764px) {
  .archive-list-news__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 16px;
  }
}
.archive-list-news__time {
  width: 140px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: var(--common-text-color);
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.4px;
}
@media (width <= 764px) {
  .archive-list-news__time {
    width: auto;
    font-size: 12px;
  }
}
.archive-list-news__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 142px;
  padding: 6px;
  border-radius: 40px;
  border: 1px solid var(--common-text-color);
  font-size: 16px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (width <= 764px) {
  .archive-list-news__tag {
    width: 120px;
    font-size: 12px;
  }
}
.archive-list-news__title {
  color: var(--common-text-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.8;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (width <= 764px) {
  .archive-list-news__title {
    font-size: 14px;
    width: 100%;
  }
}
.archive-list-news__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.archive-list-news__link::after {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  aspect-ratio: 1/1;
  background: url(../img/common/icon_2.svg) center no-repeat;
  background-size: cover;
}
@media (width <= 764px) {
  .archive-list-news__link::after {
    width: 24px;
    height: 24px;
  }
}
.archive-list-news__link--none::after {
  background-image: url(../img/common/icon_1.svg);
}

.news-category-list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0 0 64px;
}
@media (width <= 764px) {
  .news-category-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 0 48px;
  }
}
.news-category-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 142px;
  padding: 8px 12px;
  border-radius: 40px;
  border: 1px solid;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1;
  text-decoration: none;
  color: black;
}
@media (width <= 764px) {
  .news-category-list li a {
    width: auto;
    min-width: 80px;
    font-size: 12px;
  }
}
.news-category-list li.current a {
  background: black;
  color: white;
}

.category-tab-filter ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0 0 64px;
}
.category-tab-filter ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 142px;
  padding: 8px 12px;
  border-radius: 40px;
  border: 1px solid;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1;
  text-decoration: none;
  color: black;
}
.category-tab-filter ul li.is_active {
  background: black;
  color: white;
}

/* -----------------------------------------------------------------------------------
大会情報 / 大会結果
----------------------------------------------------------------------------------- */
/* ページ名＆アイコン */
.tournament-page-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  color: #FD5400;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.1em;
  word-wrap: break-word;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  white-space: nowrap;
}
.tournament-page-name::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/common/title_icon_2.svg) center no-repeat;
  background-size: cover;
}
.tournament-page-name--info::before {
  background-image: url(../img/common/title_icon_1.svg);
}
.tournament-page-name--seminar::before {
  background-image: url(../img/common/title_icon_3.svg);
}
.tournament-page-name--interview::before {
  background-image: url(../img/common/title_icon_4.svg);
}
.tournament-page-name--magazine::before {
  background-image: url(../img/common/title_icon_5.svg);
}

/* 大会タイトル */
.tournament-title {
  font-size: 48px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: black;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (width <= 764px) {
  .tournament-title {
    font-size: 32px;
  }
}
.tournament-title--small {
  font-size: 44px;
}
@media (width <= 764px) {
  .tournament-title--small {
    font-size: 32px;
  }
}

/* 大会の場所 */
.tournament-location {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: black;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

/* 大会の場所 */
.tournament-meta {
  display: block;
  position: relative;
  padding: 0 0 0 2em;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.tournament-meta::before {
  display: block;
  position: absolute;
  top: min(50%, 1em);
  left: 0.5em;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: url(../img/common/icon_5.svg) center no-repeat;
  background-size: cover;
  content: "";
}
.tournament-meta--event-duration::before {
  background-image: url(../img/common/icon_4.svg);
}

/* -----------------------------------------------------------------------------------
大会情報
----------------------------------------------------------------------------------- */
/*--------------------------------------
ページタイトル
----------------------------------------*/
.tournament-info-card {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  padding: 32px;
  position: relative;
  background: white;
  border-radius: 5px;
}
@media (width <= 764px) {
  .tournament-info-card {
    width: 100%;
  }
}
.tournament-info-card__result {
  position: absolute;
  right: 20px;
  top: 20px;
}
.tournament-info-card__result .tournament-page-name::before {
  background: url(../img/common/title_icon_1.svg) center no-repeat;
  background-size: cover;
}

/*--------------------------------------
アーカイブ
----------------------------------------*/
.archive-list-tournament-Information {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (width <= 764px) {
  .archive-list-tournament-Information {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}
.archive-list-tournament-Information__item {
  width: 100%;
  min-height: 420px;
  border-radius: 10px;
  background: white;
  overflow: hidden;
  position: relative;
}
@media (width <= 764px) {
  .archive-list-tournament-Information__item {
    border-radius: 5px;
    min-height: 310px;
  }
}
.archive-list-tournament-Information__item:hover {
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.archive-list-tournament-Information__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 26px 20px 24px;
}
@media (width <= 764px) {
  .archive-list-tournament-Information__link {
    padding: 20px 20px 24px;
  }
}
.archive-list-tournament-Information__link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;
  height: 240px;
  background: url(../img/home/home_tournament_info_img_1.png) center no-repeat;
  background-size: cover;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
@media (width <= 764px) {
  .archive-list-tournament-Information__link::before {
    width: 121px;
    height: 182px;
    background-image: url(../img/home/home_tournament_info_img_1-sp.png);
    border-radius: 0px 5px;
  }
}
.archive-list-tournament-Information__link--2::before {
  background-image: url(../img/home/home_tournament_info_img_2.png);
}
@media (width <= 764px) {
  .archive-list-tournament-Information__link--2::before {
    background-image: url(../img/home/home_tournament_info_img_2-sp.png);
  }
}
.archive-list-tournament-Information__link--3::before {
  background-image: url(../img/home/home_tournament_info_img_3.png);
}
@media (width <= 764px) {
  .archive-list-tournament-Information__link--3::before {
    background-image: url(../img/home/home_tournament_info_img_3-sp.png);
  }
}
.archive-list-tournament-Information__title-group {
  width: calc(100% - 111px);
  min-height: 214px;
  margin: 0 0 64px;
}
@media (width <= 764px) {
  .archive-list-tournament-Information__title-group {
    width: calc(100% - 150px);
    min-height: 162px;
    margin: 0 0 30px;
  }
}
.archive-list-tournament-Information__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: #000;
  margin-bottom: 8px;
}
@media (width <= 764px) {
  .archive-list-tournament-Information__title {
    font-size: 20px;
  }
}
.archive-list-tournament-Information__location {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #000;
}
.archive-list-tournament-Information__details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
}
.archive-list-tournament-Information__detail {
  display: block;
  position: relative;
  padding: 0 0 0 2em;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}
.archive-list-tournament-Information__detail::before {
  display: block;
  position: absolute;
  top: min(50%, 1em);
  left: 0.5em;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: url(../img/common/icon_4.svg) center no-repeat;
  background-size: cover;
  content: "";
}
.archive-list-tournament-Information__detail:last-of-type {
  margin: 0;
}
.archive-list-tournament-Information__detail--map::before {
  background: url(../img/common/icon_8.svg) center no-repeat;
  background-size: cover;
}

/* -----------------------------------------------------------------------------------
大会結果
----------------------------------------------------------------------------------- */
/*--------------------------------------
シングル
----------------------------------------*/
.tournament-r-single-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px 0;
  width: 100%;
  padding: 32px 0 40px;
}
@media (width <= 764px) {
  .tournament-r-single-head {
    gap: 40px 0;
    padding: 20px 0;
  }
}
.tournament-r-single-head__breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: min(calc(100% - clamp(20px, 3.7vw, 40px)), 1200px);
  margin: 0 auto;
}
@media (width <= 764px) {
  .tournament-r-single-head__breadcrumb {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.tournament-r-single-head__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: min(calc(100% - clamp(20px, 3.7vw, 40px)), 1200px);
  margin: 0 auto;
}
@media (width <= 764px) {
  .tournament-r-single-head__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.tournament-r-single-head__text-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px 0;
  width: min(100%, 580px);
  margin: 0 20px 0 0;
}
@media (width <= 764px) {
  .tournament-r-single-head__text-group {
    gap: 20px 0;
    width: 100%;
    margin: 0;
  }
}
.tournament-r-single-head__title-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px 0;
}
@media (width <= 764px) {
  .tournament-r-single-head__title-unit {
    gap: 16px;
  }
}
.tournament-r-single-head__img {
  width: min(100%, 600px);
}
.tournament-r-single-head__img img {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (width <= 764px) {
  .tournament-r-single-head__img img {
    border-radius: 5px;
  }
}

/*--------------------------------------
アーカイブ
----------------------------------------*/
.tournament-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.tournament-card {
  width: 373px;
  padding-bottom: 24px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
}
@media (width <= 764px) {
  .tournament-card {
    border-radius: 5px;
  }
}
.tournament-card__image img {
  width: 100%;
  height: 210px;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: block;
}
.tournament-card__content {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.tournament-card__title {
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #000;
  line-height: 1.4;
  margin: 0;
}
.tournament-card__info {
  display: block;
  position: relative;
  padding: 0 0 0 2em;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}
.tournament-card__info::before {
  display: block;
  position: absolute;
  top: min(50%, 1em);
  left: 0.5em;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: url(../img/common/icon_4.svg) center no-repeat;
  background-size: cover;
  content: "";
}
.tournament-card__info:last-of-type {
  margin: 0;
}

.archive-list-tournament-r {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (width <= 764px) {
  .archive-list-tournament-r {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}
.archive-list-tournament-r--large {
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}
@media (width <= 764px) {
  .archive-list-tournament-r--large {
    gap: 16px;
  }
}
.archive-list-tournament-r__item {
  width: 100%;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  list-style-type: none;
}
@media (width <= 764px) {
  .archive-list-tournament-r__item {
    border-radius: 5px;
  }
}
.archive-list-tournament-r__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
}
.archive-list-tournament-r__link--large {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media (width <= 764px) {
  .archive-list-tournament-r__link--large {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.archive-list-tournament-r__image {
  width: 100%;
}
.archive-list-tournament-r__image img {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.archive-list-tournament-r__image--large {
  width: min(100%, 600px);
}
@media (width <= 764px) {
  .archive-list-tournament-r__image--large {
    width: 100%;
  }
}
.archive-list-tournament-r__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 20px 20px 24px;
}
.archive-list-tournament-r__content--large {
  -ms-flex-item-align: center;
      align-self: center;
  gap: 40px;
  width: min(100%, 600px);
  padding: 0;
  padding: 20px 20px 24px 64px;
}
@media (width <= 764px) {
  .archive-list-tournament-r__content--large {
    -ms-flex-item-align: start;
        align-self: flex-start;
    gap: 20px;
    padding: 20px 20px 24px;
  }
}
.archive-list-tournament-r__title {
  margin: 0;
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #000;
  line-height: 1.4;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (width <= 764px) {
  .archive-list-tournament-r__title {
    font-size: 20px;
  }
  .archive-list-tournament-r__title br {
    display: none;
  }
}
.archive-list-tournament-r__title--large {
  font-size: 32px;
}
@media (width <= 764px) {
  .archive-list-tournament-r__title--large {
    font-size: 20px;
  }
}
.archive-list-tournament-r__info {
  display: block;
  padding: 0 0 0 2em;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  position: relative;
}
.archive-list-tournament-r__info--large {
  font-size: 18px;
}
@media (width <= 764px) {
  .archive-list-tournament-r__info--large {
    font-size: 14px;
  }
}
.archive-list-tournament-r__info::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/common/icon_4.svg) center no-repeat;
  background-size: cover;
  position: absolute;
  top: 0.7em;
  left: 0.5em;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.archive-list-tournament-r__info:last-of-type {
  margin: 0;
}
/*--------------------------------------
タブ切り替え
（JavaScript併用）
----------------------------------------*/
.tab-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 80px;
}
@media (width <= 764px) {
  .tab-buttons {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 48px;
  }
}
.tab-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: min(100%, 294px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 5px;
  border: 1px solid #C1B4AD;
  background: #fff;
  color: #000;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media (width <= 764px) {
  .tab-button {
    font-size: 14px;
    border-radius: 2px;
  }
}
.tab-button.is_active {
  background: var(--common-accent-color);
  color: #fff;
}
.tab-content {
  display: none;
}
.tab-content.is_active {
  display: block;
}

/* -----------------------------------------------------------------------------------
アルバム画像
----------------------------------------------------------------------------------- */
/*--------------------------------------
シングル
（JavaScript併用）
----------------------------------------*/
.album-title {
  margin-bottom: 40px;
}

.album-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (width <= 764px) {
  .album-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 480px) {
  .album-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.album-list__item > img {
  aspect-ratio: 3/2;
  width: 100%;
  /* または任意の幅 */
  -o-object-fit: cover;
     object-fit: cover;
  /* 必要に応じて */
}
.album-list__item .image-title {
  margin-top: 0.5em;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.4;
}
.album-list__item .image-caption {
  margin-top: 0.5em;
  font-size: 14px;
  line-height: 1.4;
}

/*
Lity CSS
インラインstyleを強制上書き */
.lity-image img {
  max-height: 80vh !important;
  max-width: 80vw !important;
  width: auto !important;
  height: auto !important;
  display: block;
  margin: 0 auto;
}

/*
プラグイン「FooGallery」
styleを強制上書き */
.fg-image {
  width: 100% !important;
  -o-object-fit: cover !important;
  object-fit: cover !important;
}

.fg-default.fg-gutter-15 {
  padding-left: 0 !important;
}

.album-gallery.foogallery {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  /* 余白、必要に応じて調整 */
}
@media (width <= 764px) {
  .album-gallery.foogallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 480px) {
  .album-gallery.foogallery {
    grid-template-columns: repeat(1, 1fr);
  }
}
.album-gallery.foogallery .fg-item {
  margin: 0 !important;
}
.album-gallery.foogallery .fg-item-inner {
  border: 0 !important;
}
.album-gallery.foogallery .fg-image-wrap {
  background: #000;
}
.album-gallery.foogallery .fg-image {
  aspect-ratio: 3/2 !important;
  width: 100% !important;
  /* または任意の幅 */
  -o-object-fit: cover !important;
     object-fit: cover !important;
  -o-object-fit: contain !important;
     object-fit: contain !important;
  /* 必要に応じて */
}
.album-gallery.foogallery .fg-item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: auto;
}
.album-gallery.foogallery .fg-item-inner .fg-caption {
  display: block;
  width: 100%;
  position: static !important;
  background-color: transparent;
  color: unset;
}
.album-gallery.foogallery .fg-caption-title {
  font-weight: 600 !important;
  font-size: 16px;
  line-height: 1.4;
}
.album-gallery.foogallery .fg-caption-title + .fg-caption-desc {
  font-size: 14px;
  line-height: 1.4;
}

.fg-media.fg-loaded .fg-media-content {
  max-height: 80vh !important;
  max-width: 80vw !important;
  width: auto !important;
}
@media (width <= 764px) {
  .fg-media.fg-loaded .fg-media-content {
    max-width: 90vw !important;
  }
}

.foogallery-wrapper h2 {
  margin-bottom: 48px;
}
@media (width <= 764px) {
  .foogallery-wrapper h2 {
    margin-bottom: 32px;
  }
}
.foogallery-wrapper h3 {
  margin-bottom: 32px;
}
@media (width <= 764px) {
  .foogallery-wrapper h3 {
    margin-bottom: 24px;
  }
}

/* -----------------------------------------------------------------------------------
企画・寄稿インタビュー
----------------------------------------------------------------------------------- */
.article-list-interview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (width <= 764px) {
  .article-list-interview {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}
.article-list-interview__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 100%;
  border-radius: 10px;
}
@media (width <= 764px) {
  .article-list-interview__item {
    border-radius: 5px;
  }
}
.article-list-interview__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  width: 100%;
  height: 100%;
}
@media (width <= 764px) {
  .article-list-interview__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 12px;
  }
}
.article-list-interview__image-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border-radius: 10px;
  background: #000;
  overflow: hidden;
}
@media (width <= 764px) {
  .article-list-interview__image-wrap {
    border-radius: 5px;
  }
}
.article-list-interview__image-wrap .article-list-interview__image {
  border-radius: 0 !important;
  -o-object-fit: contain !important;
     object-fit: contain !important;
}
.article-list-interview__image {
  border-radius: 10px;
  aspect-ratio: 16/9;
  width: 100%;
  /* または任意の幅 */
  -o-object-fit: cover;
     object-fit: cover;
  /* 必要に応じて */
}
@media (width <= 764px) {
  .article-list-interview__image {
    width: 120px;
    height: 120px;
    aspect-ratio: 1/1;
    border-radius: 5px;
  }
}
.article-list-interview__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
@media (width <= 764px) {
  .article-list-interview__content {
    gap: 12px;
    margin: 12px 0 0;
  }
}
.article-list-interview__title {
  color: black;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  word-break: break-word;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (width <= 764px) {
  .article-list-interview__title {
    font-size: 16px;
  }
}
.article-list-interview__meta {
  display: block;
  position: relative;
  padding: 0 0 0 2em;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (width <= 764px) {
  .article-list-interview__meta {
    font-size: 12px;
  }
}
.article-list-interview__meta::before {
  display: block;
  position: absolute;
  top: min(50%, 1em);
  left: 0.5em;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: url(../img/common/icon_5.svg) center no-repeat;
  background-size: cover;
  content: "";
}
.article-list-interview__meta--calendar::before {
  background: url(../img/common/icon_4.svg) center no-repeat;
  background-size: cover;
}
.article-list-interview__meta:last-of-type {
  margin: 0;
}

/* -----------------------------------------------------------------------------------
機関誌情報
----------------------------------------------------------------------------------- */
.magazine-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, min(100%, 285px));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media (width <= 764px) {
  .magazine-cards {
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 16px;
  }
}
@media (width <= 480px) {
  .magazine-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.magazine-card {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media (width <= 764px) {
  .magazine-card {
    width: 100%;
  }
}
.magazine-card__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  width: 100%;
  padding: 40px;
  background: white;
  border-radius: 10px;
}
@media (width <= 764px) {
  .magazine-card__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 20px;
    border-radius: 5px;
  }
}
.magazine-card__image {
  aspect-ratio: 205/288;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (width <= 764px) {
  .magazine-card__image {
    width: 104px;
    width: 35.25%;
  }
}
.magazine-card__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (width <= 764px) {
  .magazine-card__text {
    gap: 20px;
  }
}
.magazine-card__title-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.magazine-card__title {
  text-align: center;
  color: black;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.magazine-card__subtitle {
  text-align: center;
  color: black;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.magazine-card__date {
  text-align: center;
  color: black;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.timeline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
  margin-top: 80px;
  overflow: hidden;
}
@media (width <= 764px) {
  .timeline {
    gap: 32px;
  }
}
.timeline__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: first baseline;
      -ms-flex-align: first baseline;
          align-items: first baseline;
  gap: 40px;
}
@media (width <= 764px) {
  .timeline__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
.timeline__item:first-of-type .dot-item {
  position: relative;
}
.timeline__item:first-of-type .dot-item::before {
  content: "";
  display: block;
  width: 1px;
  height: 1000vh;
  background: #C1B4AD;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: -10;
}
@media (width <= 764px) {
  .timeline__item:first-of-type .dot-item::before {
    display: none;
  }
}
.timeline__item:last-of-type .dot-item {
  position: relative;
}
.timeline__item:last-of-type .dot-item::after {
  content: "";
  display: block;
  width: 3px;
  height: 1000vh;
  background: #F0EEED;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: -10;
}
@media (width <= 764px) {
  .timeline__item:last-of-type .dot-item::after {
    display: none;
  }
}
.timeline__year {
  color: #FD5400;
  font-weight: 500;
  font-size: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.timeline__dot {
  width: 9px;
  height: 9px;
  background: #FD5400;
  border-radius: 50%;
  margin-top: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (width <= 764px) {
  .timeline__dot {
    display: none;
  }
}
.timeline__month-event {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (width <= 764px) {
  .timeline__month-event {
    gap: 12px;
  }
}
.timeline__month-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: first baseline;
      -ms-flex-align: first baseline;
          align-items: first baseline;
  gap: 24px;
  line-height: 1.3;
  margin-right: 16px;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media (width <= 764px) {
  .timeline__month-unit {
    gap: 12px;
  }
}
.timeline__month {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: inline-block;
  width: 48px;
  color: #FD5400;
  font-size: 20px;
  text-align: right;
}
@media (width <= 764px) {
  .timeline__month {
    font-size: 16px;
  }
}

.federation-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 28px 20px;
}
@media (width <= 764px) {
  .federation-cards {
    gap: 12px;
  }
}
.federation-cards .federation-card {
  width: calc(50% - 10px);
  min-height: 162px;
  background: #fff;
  border: 1px solid #c0b3ad;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (width <= 764px) {
  .federation-cards .federation-card {
    width: 100%;
    min-height: 108px;
    border-radius: 5px;
  }
}
.federation-cards .federation-card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 40px;
  width: 100%;
  height: 100%;
  position: relative;
}
@media (width <= 764px) {
  .federation-cards .federation-card__link {
    padding: 24px 32px;
  }
}
.federation-cards .federation-card__link::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/common/icon_2.svg) center no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media (width <= 764px) {
  .federation-cards .federation-card__link::before {
    width: 28px;
    height: 28px;
  }
}
.federation-cards .federation-card__link--arrow:before {
  background-image: url(../img/common/icon_1.svg);
}
.federation-cards .federation-card__icon img {
  width: 32px;
  height: 32px;
  margin-right: 40px;
}
@media (width <= 764px) {
  .federation-cards .federation-card__icon img {
    width: 40px;
    height: 40px;
  }
}
.federation-cards .federation-card__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.federation-cards .federation-card__title {
  font-size: 24px;
  font-weight: 500;
  color: #000;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
@media (width <= 764px) {
  .federation-cards .federation-card__title {
    font-size: 20px;
    margin-bottom: 0;
  }
}
.federation-cards .federation-card__date {
  font-size: 14px;
  color: #000;
  letter-spacing: 1px;
}
@media (width <= 764px) {
  .federation-cards .federation-card__date {
    font-size: 12px;
  }
}

.registration-top-heading {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  /* 28.8px */
  letter-spacing: 2.4px;
}
.registration-textbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border-radius: 5px;
  border: 1px solid var(--common-accent-color);
  background: #FFECE3;
}
@media (width <= 764px) {
  .registration-textbox {
    gap: 12px;
    padding: 20px;
  }
}
.registration-textbox--row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media (width <= 764px) {
  .registration-textbox--row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.registration-textbox__title {
  color: var(--common-accent-color);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  line-height: 1.3;
  letter-spacing: 1.6px;
}
@media (width <= 764px) {
  .registration-textbox__title {
    font-size: 18px;
  }
}
.registration-textbox__text {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  color: var(--common-text-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  /* 28.8px */
  letter-spacing: 1.28px;
}
@media (width <= 764px) {
  .registration-textbox__text {
    font-size: 16px;
  }
}
.registration-textbox__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  padding-left: 1em;
  list-style: disc;
}
@media (width <= 764px) {
  .registration-textbox__list {
    display: block;
    margin-left: 0.5em;
  }
}

.registration-flow-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
@media (width <= 764px) {
  .registration-flow-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 18px;
  }
}
.registration-flow-box__title {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 0 0;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
  /* 縦書きの基本設定 */
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  /* 縦書き・右→左方向 */
  text-orientation: upright;
  /* 文字を縦向きに */
}
@media (width <= 764px) {
  .registration-flow-box__title {
    font-size: 20px;
    /* 横書き・行は上→下 */
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    /* 英数字は通常向き、縦中横は自動（mixed がデフォルト） */
    text-orientation: mixed;
  }
}
.registration-flow-box__title::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #FD5400;
}
.registration-flow-box__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  width: 100%;
}
.registration-flow-box-line {
  width: 100%;
  height: 1px;
  background: #C1B4AD;
  margin: 48px 0;
}
.steps-image-1 {
  width: min(100%, 478px);
}
.steps-image-2 {
  width: 100%;
}

.steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.steps--half {
  width: min(100%, 478px);
}
.steps__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
  width: 100%;
  position: relative;
  z-index: 0;
}
@media (width <= 764px) {
  .steps__line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
}
.steps__line::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #FD5400;
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (width <= 764px) {
  .steps__line::before {
    width: 1px;
    height: 100%;
    left: 25px;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}
.steps__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  width: 100%;
  padding: 20px 0;
  background: #fff;
  border-radius: 5px;
  z-index: 1;
}
@media (width <= 764px) {
  .steps__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 16px;
    padding: 16px;
  }
}
.steps__item--large {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: auto minmax(66px, 1fr);
  gap: 24px;
  min-height: 160px;
}
@media (width <= 764px) {
  .steps__item--large {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto;
    gap: 16px;
    min-height: auto;
  }
}
.steps__number {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: #FD5400;
  line-height: 1;
}
@media (width <= 764px) {
  .steps__number {
    text-align: left;
  }
}
.steps__text {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
  text-align: center;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0;
}
@media (width <= 764px) {
  .steps__text {
    text-align: left;
  }
}
.steps__link {
  cursor: pointer;
  text-decoration: underline;
}

.membership-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (width <= 764px) {
  .membership-cards {
    gap: 12px;
  }
}
.membership-cards .membership-card {
  width: 590px;
  padding: 40px;
  background: #fff;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (width <= 764px) {
  .membership-cards .membership-card {
    border-radius: 5px;
    padding: 24px;
  }
}
.membership-cards .membership-card__title {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 2.4px;
  line-height: 1.3;
  margin-bottom: 32px;
  color: #000;
}
@media (width <= 764px) {
  .membership-cards .membership-card__title {
    font-size: 18px;
    margin-bottom: 16px;
  }
}
.membership-cards .membership-card__description {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 1.28px;
  color: #000;
}
@media (width <= 764px) {
  .membership-cards .membership-card__description {
    font-size: 16px;
  }
}
.membership-cards .membership-card__description p {
  margin-bottom: 16px;
}
@media (width <= 764px) {
  .membership-cards .membership-card__description p {
    margin-bottom: 12px;
  }
}
@media (width <= 764px) {
  .membership-cards .membership-card .custom-button {
    justify-self: center;
  }
}

.fees {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 80px;
}
@media (width <= 764px) {
  .fees {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}
.fees__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media (width <= 764px) {
  .fees__list {
    gap: 24px;
  }
}
.fees__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (width <= 764px) {
  .fees__item {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.fees__label {
  width: 260px;
  font-size: 18px;
  font-weight: 500;
  color: #FD5400;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media (width <= 764px) {
  .fees__label {
    width: auto;
    font-size: 16px;
  }
}
.fees__price {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media (width <= 764px) {
  .fees__price {
    text-align: right;
  }
}

.fee-detail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 20px;
}
@media (width <= 764px) {
  .fee-detail {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.fee-detail__block {
  display: grid;
  grid-template-columns: 106px 1fr;
  gap: 20px;
  padding: 0 0 20px;
  border-bottom: 1px solid #C0B3AD;
}
@media (width <= 764px) {
  .fee-detail__block {
    grid-template-columns: 80px 1fr;
  }
}
.fee-detail__block--full {
  grid-column: 1/-1;
}
.fee-detail__label {
  font-size: 16px;
  font-weight: 400;
  color: #FD5400;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media (width <= 764px) {
  .fee-detail__label {
    font-size: 14px;
  }
}
.fee-detail__text {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media (width <= 764px) {
  .fee-detail__text {
    font-size: 14px;
  }
}

.steps-container-group {
  padding: 40px 24px;
  border-radius: 5px;
  border: 1px solid #FD5400;
  background: #FFECE3;
}
.register-warning {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.register-warning__title {
  font-size: 20px;
  font-weight: 500;
  color: #FD5400;
  line-height: 1.3;
  letter-spacing: 0.08em;
}
.register-warning__note {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
.step-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media (width <= 764px) {
  .step-label {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.step-label__number {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #FD5400;
  line-height: 1.3;
  letter-spacing: 1px;
}
@media (width <= 764px) {
  .step-label__number {
    font-size: 18px;
  }
}
.step-label__text {
  font-size: 24px;
  font-weight: 500;
  color: #000;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
@media (width <= 764px) {
  .step-label__text {
    font-size: 20px;
  }
}

.document-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 64px;
}
@media (width <= 764px) {
  .document-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 48px;
  }
}
@media (width <= 764px) {
  .document-row__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 12px;
  }
}

.club-card-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}
@media (width <= 764px) {
  .club-card-list {
    gap: 16px;
  }
}
.club-card-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 48px;
  width: 100%;
  width: 100%;
  padding: 32px;
  background: #fff;
  border-radius: 5px;
}
@media (width <= 764px) {
  .club-card-list__item {
    padding: 20px;
    gap: 20px;
  }
}
.club-card-list__item--half {
  width: calc((100% - 12px) / 2);
}
.club-card-list__info {
  width: 431px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media (width <= 764px) {
  .club-card-list__info {
    gap: 12px;
  }
}
.club-card-list__title-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
}
.club-card-list__title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #000;
  margin: 0;
}
@media (width <= 764px) {
  .club-card-list__title {
    width: 100%;
    font-size: 16px;
  }
}
.club-card-list__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
}
.club-card-list__link::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/common/icon_10.svg) center no-repeat;
  background-size: contain;
}
@media (width <= 764px) {
  .club-card-list__link {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 16px;
  }
}
.club-card-list__representative {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.club-card-list__representative-name {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.6px;
  color: #000;
}
@media (width <= 764px) {
  .club-card-list__representative-name {
    font-size: 14px;
  }
}
.club-card-list__badge {
  padding: 4px 8px;
  border: 1px solid #C1B4AD;
  border-radius: 4px;
  color: #FD5400;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}
.club-card-list__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  letter-spacing: 1.6px;
  line-height: 1.3;
}
@media (width <= 764px) {
  .club-card-list__contact {
    gap: 12px;
    font-size: 14px;
  }
}
.club-card-list__contact > * {
  padding: 0 0 0 24px;
  position: relative;
}
.club-card-list__contact > *::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/common/contact_icon_1.svg) center no-repeat;
  background-size: cover;
  position: absolute;
  top: 0.65em;
  left: 0.5em;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (width <= 764px) {
  .club-card-list__contact > *::before {
    width: 16px;
    height: 16px;
  }
}
.club-card-list__contact-email::before {
  background-image: url(../img/common/contact_icon_1.svg);
}
.club-card-list__contact-phone::before {
  background-image: url(../img/common/contact_icon_2.svg);
}
.club-card-list__contact-address::before {
  background-image: url(../img/common/contact_icon_3.svg);
}
.prefecture-select-area {
  margin: 0 0 32px;
}
@media (width <= 764px) {
  .prefecture-select-area {
    margin: 0 0 48px;
  }
}

.prefecture-select {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  width: 100%;
  height: 100%;
}
@media (width <= 764px) {
  .prefecture-select {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.prefecture-select__label {
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 2px;
  color: #000;
}
@media (width <= 764px) {
  .prefecture-select__label {
    font-size: 16px;
  }
}
.prefecture-select__box {
  padding: 24px 20px;
  background: #fff;
  border-radius: 6px;
  outline: 1px solid #000;
  outline-offset: -1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (width <= 764px) {
  .prefecture-select__box {
    padding: 16px;
  }
}
.prefecture-select__dropdown {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: transparent;
  font-size: 20px;
  font-weight: 400;
  color: #000;
  padding-right: 24px;
  background-image: url("data:image/svg+xml;utf8,<svg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'><path d='M0 0l5 6 5-6H0z' fill='%23E75C23'/></svg>");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 10px 6px;
  cursor: pointer;
}
@media (width <= 764px) {
  .prefecture-select__dropdown {
    font-size: 16px;
  }
}

.pricing-table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (width <= 764px) {
  .pricing-table-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 32px;
  }
}
.pricing-table-row__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 1.12px;
}
.number-list {
  display: block;
  counter-reset: number 0;
}
.number-list > li {
  counter-increment: number 1;
  padding: 0 0 0 1.5em;
  position: relative;
}
.number-list > li::before {
  margin: 0 0.5em 0 0;
  content: counter(number) ".";
  position: absolute;
  top: min(50%, 1em);
  left: 0.5em;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (width <= 764px) {
  .additional-text {
    font-size: 14px;
  }
}

.sponsor-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.sponsor-list--2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (width <= 764px) {
  .sponsor-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.sponsor-list__item {
  border-bottom: 1px solid #C0B3AD;
  padding: 0 8px 20px;
}
@media (width <= 764px) {
  .sponsor-list__item {
    padding: 0 8px 16px;
  }
}
.sponsor-list__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 1.8px;
  color: black;
  margin: 0;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (width <= 764px) {
  .sponsor-list__title {
    font-size: 14px;
  }
}
.sponsor-list__title a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
}
.sponsor-list__title a::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/common/icon_10.svg) center no-repeat;
  background-size: cover;
}
@media (width <= 764px) {
  .sponsor-list__title a::after {
    width: 16px;
    height: 16px;
  }
}

/*--------------------------------------
Contact Form 7 用 SCSS
----------------------------------------*/
.contact-form {
  width: min(100%, 680px);
  margin: 0 auto;
}
.contact-form > p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.6;
  /* 28.8px */
}
@media (width <= 764px) {
  .contact-form > p {
    font-size: 14px;
  }
}
.contact-form .wpcf7-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /* 各フィールド間の垂直間隔（20px） */
  /* ────────────────────────────── */
  /* お問い合わせ種別（ラジオボタン） */
  /* ────────────────────────────── */
  /* ────────────────────────────── */
  /* テキスト系入力（お名前・メール・電話） */
  /* ────────────────────────────── */
  /* ────────────────────────────── */
  /* テキストエリア（お問い合わせ内容） */
  /* ────────────────────────────── */
  /* ────────────────────────────── */
  /* チェックボックス（個人情報保護方針） */
  /* ────────────────────────────── */
  /* ────────────────────────────── */
  /* 送信ボタン */
  /* ────────────────────────────── */
}
.contact-form .wpcf7-form > p {
  margin-top: 48px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}
@media (width <= 764px) {
  .contact-form .wpcf7-form > p {
    margin-top: 32px;
    font-size: 18px;
  }
  .contact-form .wpcf7-form > p:first-of-type {
    margin-top: 48px;
  }
}
.contact-form .wpcf7-form > p:has(.contact-submit) {
  margin-top: 80px;
}
@media (width <= 764px) {
  .contact-form .wpcf7-form > p:has(.contact-submit) {
    margin-top: 50px;
  }
}
.contact-form .wpcf7-form .required {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3px 4px;
  margin: 0 0 0 8px;
  border-radius: 2px;
  background-color: #FF3C1E;
  color: #F4F6FF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 100%;
  /* 12px */
}
.contact-form .wpcf7-form .additional {
  display: block;
  color: #666;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  margin-top: 1em;
  /* 12px */
}
.contact-form .wpcf7-form .additional + br {
  display: none;
}
.contact-form .wpcf7-form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 1em;
  color: var(--common-accent-color);
  font-size: 18px;
  font-weight: normal;
}
@media (width <= 764px) {
  .contact-form .wpcf7-form .wpcf7-not-valid-tip {
    font-size: 16px;
  }
}
.contact-form .wpcf7-form .wpcf7-form-control.wpcf7-radio.inquiry-type .wpcf7-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin: 12px 0 0;
}
.contact-form .wpcf7-form .wpcf7-form-control.wpcf7-radio.inquiry-type .wpcf7-list-item label {
  display: inline-block;
  width: 335px;
  padding: 24px 12px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 6px;
  /* テキスト部分を包む span に疑似要素を設定 */
  /* input を不可視にして、疑似要素で見た目を作る */
}
@media (width <= 764px) {
  .contact-form .wpcf7-form .wpcf7-form-control.wpcf7-radio.inquiry-type .wpcf7-list-item label {
    width: min(100%, 335px);
    padding: 20px 12px;
  }
}
.contact-form .wpcf7-form .wpcf7-form-control.wpcf7-radio.inquiry-type .wpcf7-list-item label .wpcf7-list-item-label {
  position: relative;
  padding-left: 28px;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  color: #000;
  cursor: pointer;
  /* 外側の円 */
}
@media (width <= 764px) {
  .contact-form .wpcf7-form .wpcf7-form-control.wpcf7-radio.inquiry-type .wpcf7-list-item label .wpcf7-list-item-label {
    font-size: 16px;
  }
}
.contact-form .wpcf7-form .wpcf7-form-control.wpcf7-radio.inquiry-type .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  border-radius: 50%;
  background: #fff;
}
.contact-form .wpcf7-form .wpcf7-form-control.wpcf7-radio.inquiry-type .wpcf7-list-item label input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  /* チェックされたら外側・内側を塗りつぶす */
}
.contact-form .wpcf7-form .wpcf7-form-control.wpcf7-radio.inquiry-type .wpcf7-list-item label input[type=radio]:checked + .wpcf7-list-item-label::before {
  border-color: #FD5400;
  border-width: 6px;
}
.contact-form .wpcf7-form .wpcf7-form-control.wpcf7-radio.inquiry-type .wpcf7-list-item label input[type=radio]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.contact-form .wpcf7-form .wpcf7-form-control-wrap .your-name,
.contact-form .wpcf7-form .wpcf7-form-control-wrap .your-email,
.contact-form .wpcf7-form .wpcf7-form-control-wrap .your-tel {
  margin-top: 12px;
  width: 100%;
  padding: 24px 20px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 5px;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  color: #000;
}
.contact-form .wpcf7-form .wpcf7-form-control-wrap .your-name::-webkit-input-placeholder, .contact-form .wpcf7-form .wpcf7-form-control-wrap .your-email::-webkit-input-placeholder, .contact-form .wpcf7-form .wpcf7-form-control-wrap .your-tel::-webkit-input-placeholder {
  color: #999999;
}
.contact-form .wpcf7-form .wpcf7-form-control-wrap .your-name::-moz-placeholder, .contact-form .wpcf7-form .wpcf7-form-control-wrap .your-email::-moz-placeholder, .contact-form .wpcf7-form .wpcf7-form-control-wrap .your-tel::-moz-placeholder {
  color: #999999;
}
.contact-form .wpcf7-form .wpcf7-form-control-wrap .your-name:-ms-input-placeholder, .contact-form .wpcf7-form .wpcf7-form-control-wrap .your-email:-ms-input-placeholder, .contact-form .wpcf7-form .wpcf7-form-control-wrap .your-tel:-ms-input-placeholder {
  color: #999999;
}
.contact-form .wpcf7-form .wpcf7-form-control-wrap .your-name::-ms-input-placeholder, .contact-form .wpcf7-form .wpcf7-form-control-wrap .your-email::-ms-input-placeholder, .contact-form .wpcf7-form .wpcf7-form-control-wrap .your-tel::-ms-input-placeholder {
  color: #999999;
}
.contact-form .wpcf7-form .wpcf7-form-control-wrap .your-name::placeholder,
.contact-form .wpcf7-form .wpcf7-form-control-wrap .your-email::placeholder,
.contact-form .wpcf7-form .wpcf7-form-control-wrap .your-tel::placeholder {
  color: #999999;
}
@media (width <= 764px) {
  .contact-form .wpcf7-form .wpcf7-form-control-wrap .your-name,
  .contact-form .wpcf7-form .wpcf7-form-control-wrap .your-email,
  .contact-form .wpcf7-form .wpcf7-form-control-wrap .your-tel {
    padding: 20px 16px;
    font-size: 16px;
  }
}
.contact-form .wpcf7-form .wpcf7-form-control-wrap .your-message {
  margin-top: 12px;
  width: 100%;
  padding: 24px 20px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 5px;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
}
.contact-form .wpcf7-form .wpcf7-form-control-wrap .your-message::-webkit-input-placeholder {
  color: #999999;
}
.contact-form .wpcf7-form .wpcf7-form-control-wrap .your-message::-moz-placeholder {
  color: #999999;
}
.contact-form .wpcf7-form .wpcf7-form-control-wrap .your-message:-ms-input-placeholder {
  color: #999999;
}
.contact-form .wpcf7-form .wpcf7-form-control-wrap .your-message::-ms-input-placeholder {
  color: #999999;
}
.contact-form .wpcf7-form .wpcf7-form-control-wrap .your-message::placeholder {
  color: #999999;
}
@media (width <= 764px) {
  .contact-form .wpcf7-form .wpcf7-form-control-wrap .your-message {
    padding: 20px 16px;
    font-size: 16px;
  }
}
.contact-form .wpcf7-form .wpcf7-form-control-wrap[data-name=privacy-policy] {
  margin-top: 12px;
  /* CF7 Acceptance タグ */
}
.contact-form .wpcf7-form .wpcf7-form-control-wrap[data-name=privacy-policy] .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  gap: 8px;
  font-size: 14px;
  color: #333;
  /* ネイティブチェックは隠す */
  /* ラベルテキスト部分にチェックボックスを描画 */
  /* チェック状態で色とマークを表示 */
}
.contact-form .wpcf7-form .wpcf7-form-control-wrap[data-name=privacy-policy] .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item label input.privacy-policy {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.contact-form .wpcf7-form .wpcf7-form-control-wrap[data-name=privacy-policy] .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
  position: relative;
  padding-left: 28px;
  font-size: 18px;
  font-weight: 400;
  color: #333;
  /* □ 外枠 */
  /* ✓ 内側のマーク */
}
.contact-form .wpcf7-form .wpcf7-form-control-wrap[data-name=privacy-policy] .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label a {
  text-decoration: underline;
}
@media (width <= 764px) {
  .contact-form .wpcf7-form .wpcf7-form-control-wrap[data-name=privacy-policy] .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
    font-size: 16px;
  }
}
.contact-form .wpcf7-form .wpcf7-form-control-wrap[data-name=privacy-policy] .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  border-radius: 4px;
  background: #fff;
}
.contact-form .wpcf7-form .wpcf7-form-control-wrap[data-name=privacy-policy] .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  opacity: 0;
  -webkit-transition: opacity 0.1s;
  transition: opacity 0.1s;
}
.contact-form .wpcf7-form .wpcf7-form-control-wrap[data-name=privacy-policy] .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item label input.privacy-policy:checked + .wpcf7-list-item-label::before {
  background: #FD5400;
  border-color: #FD5400;
}
.contact-form .wpcf7-form .wpcf7-form-control-wrap[data-name=privacy-policy] .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item label input.privacy-policy:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.contact-form .wpcf7-form .contact-submit {
  display: block;
  width: min(100%, 400px);
  height: 80px;
  margin: 0 auto;
  line-height: 1;
  cursor: pointer;
  position: relative;
}
@media (width <= 764px) {
  .contact-form .wpcf7-form .contact-submit {
    width: 260px;
    height: 64px;
  }
}
.contact-form .wpcf7-form .contact-submit::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(../img/common/icon_11.svg) center no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 1;
}
@media (width <= 764px) {
  .contact-form .wpcf7-form .contact-submit::before {
    width: 32px;
    height: 32px;
  }
}
.contact-form .wpcf7-form .contact-submit .wpcf7-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 20px 0px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  background-color: #FF5722;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
@media (width <= 764px) {
  .contact-form .wpcf7-form .contact-submit .wpcf7-submit {
    font-size: 16px;
  }
}
.contact-form .wpcf7-form .contact-submit .wpcf7-submit:hover {
  opacity: 0.9;
}

.hanbai-f-b-btn-wrap .wp-block-button--m {
  width: min(100%, 320px);
}
@media (width <= 764px) {
  .hanbai-f-b-btn-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.home-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 120px 0;
  padding: 120px 0 160px;
}
@media (width <= 764px) {
  .home-section {
    gap: 96px 0;
  }
}
.home-section--white {
  background-color: #ffffff;
}
.home-section:has(.home-top) {
  padding: 24px 0 104px;
}
@media (width <= 764px) {
  .home-section:has(.home-top) {
    padding: 24px 0 96px;
  }
}

.home-container-full {
  width: min(100% - clamp(20px, 3.7vw, 40px), 1360px);
  margin: 0 auto;
}

.home-container {
  width: min(calc(100% - clamp(20px, 3.7vw, 40px)), 1200px);
  margin: 0 auto;
}

.home-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 50px;
}
.home-top__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.home-top__img-pc {
  width: min(100%, 510px);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.home-top__img-pc img {
  border-radius: 20px;
}
@media (width <= 764px) {
  .home-top__img-pc {
    display: none;
  }
}
.home-top__img-sp {
  display: none;
}
@media (width <= 764px) {
  .home-top__img-sp {
    display: block;
    width: calc(100% + clamp(20px, 3.7vw, 40px));
    margin: 0 calc(clamp(10px, 1.85vw, 20px) * -1);
  }
}
.home-top__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 27px;
  padding: 0 0 63px;
  position: relative;
  color: var(--common-text-color);
}
@media (width <= 764px) {
  .home-top__title {
    gap: 16px;
    padding: 0 0 40px;
  }
}
.home-top__title::after {
  content: "";
  display: block;
  width: 300vw;
  height: 1px;
  background: var(--common-text-color);
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
@media (width <= 764px) {
  .home-top__title::after {
    display: none;
  }
}
.home-top__title-main {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  /* 72.8px */
  letter-spacing: 4.16px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (width <= 764px) {
  .home-top__title-main {
    font-size: 40px;
  }
}
.home-top__title-sub {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  line-height: 1.4;
  /* 24px */
  letter-spacing: 1.2px;
}
@media (width <= 764px) {
  .home-top__title-sub {
    font-size: 16px;
  }
}

.home-news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px 0;
  padding: 48px 0;
}
@media (width <= 764px) {
  .home-news {
    gap: 32px;
    padding: 64px 0 0;
  }
}
.home-news__more {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
@media (width <= 764px) {
  .home-news__more {
    -ms-flex-item-align: center;
        align-self: center;
  }
}
.home-news .archive-list-news__time {
  width: 90px;
  font-size: 14px;
}
.home-news .archive-list-news__tag {
  width: 114px;
  font-size: 14px;
  white-space: nowrap;
}
.home-news .archive-list-news__link::after {
  display: none;
}

.home-news-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.4em;
}
.home-news-title::before {
  -ms-flex-item-align: center;
      align-self: center;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: var(--common-accent-color);
  border-radius: 100%;
}
.home-news-title__main {
  font-family: "Noto Sans JP";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (width <= 764px) {
  .home-news-title__main {
    font-size: 28px;
  }
}
.home-news-title__sub {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  /* 相対値：100%と同等 */
}

.home-sect-title-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: last baseline;
      -ms-flex-align: last baseline;
          align-items: last baseline;
  width: 100%;
  margin: 0 0 48px;
}
@media (width <= 764px) {
  .home-sect-title-group {
    margin: 0 0 32px;
  }
}

.home-sect-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
@media (width <= 764px) {
  .home-sect-title {
    gap: 12px;
  }
}
.home-sect-title__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media (width <= 764px) {
  .home-sect-title__row {
    gap: 8px;
  }
}
.home-sect-title__icon {
  width: 40px;
  height: 40px;
}
.home-sect-title__icon img {
  -o-object-fit: cover;
     object-fit: cover;
}
.home-sect-title__title {
  font-size: 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 4px;
  line-height: 1;
  margin: 0;
  color: #000;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (width <= 764px) {
  .home-sect-title__title {
    font-size: 32px;
  }
}
.home-sect-title__subwrap {
  padding: 0 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (width <= 764px) {
  .home-sect-title__subwrap {
    padding: 0;
  }
}
.home-sect-title__subtitle {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 1;
  margin: 0;
  color: #000;
}

@media (width <= 764px) {
  .home-sect-pc-button {
    display: none;
  }
}

.home-sect-sp-button {
  display: none;
}
@media (width <= 764px) {
  .home-sect-sp-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 32px 0 0;
  }
}

.sponsoring-companies {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}

.sponsoring-companies-title {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 0 0;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
  /* 縦書きの基本設定 */
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  /* 縦書き・右→左方向 */
  text-orientation: upright;
  /* 文字を縦向きに */
}
.sponsoring-companies-title::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #FD5400;
}

.image-scroll-container {
  width: 100vw;
  height: 172px;
  padding: 32px;
  position: relative;
}
.image-scroll-container::before {
  content: "";
  position: absolute;
  width: 300%;
  height: 100%;
  left: 0;
  top: 0;
  background: white;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  z-index: 0;
}
.image-scroll-container .image-scroll-box {
  position: absolute;
  top: 32px;
  left: 32px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  z-index: 1;
}
.image-scroll-container .image-scroll-box img {
  width: 220px;
  height: 108px;
}

.sponsoring-companies-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 32px 0 0;
}

.goods-sections {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (width <= 764px) {
  .goods-sections {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}

.goods-section {
  padding: 48px;
  border-radius: 10px;
  background: black url("../img/home/home_sect_bg_img_1.png") no-repeat center/cover;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
@media (width <= 764px) {
  .goods-section {
    width: 100%;
    min-height: 265px;
    padding: 32px 24px;
    background-image: url("../img/home/home_sect_bg_img_1-sp.png");
    border-radius: 5px;
  }
}
.goods-section--2 {
  background-image: url("../img/home/home_sect_bg_img_2.png");
}
@media (width <= 764px) {
  .goods-section--2 {
    background-image: url("../img/home/home_sect_bg_img_2-sp.png");
  }
}
.goods-section .goods-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  width: 100%;
}
@media (width <= 764px) {
  .goods-section .goods-inner {
    gap: 24px;
  }
}
.goods-section .goods-inner .goods-text-wrap {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
  width: 100%;
}
@media (width <= 764px) {
  .goods-section .goods-inner .goods-text-wrap {
    gap: 20px;
  }
}
.goods-section .goods-inner .goods-text-wrap .goods-heading {
  height: 64px;
  position: relative;
}
.goods-section .goods-inner .goods-text-wrap .goods-heading__text {
  position: absolute;
  left: 0;
  top: 2px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
}
.goods-section .goods-inner .goods-text-wrap .goods-heading__title {
  color: white;
  font-size: 32px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 3.2px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (width <= 764px) {
  .goods-section .goods-inner .goods-text-wrap .goods-heading__title {
    font-size: 24px;
  }
}
.goods-section .goods-inner .goods-text-wrap .goods-heading__en {
  width: 260px;
  color: #FD5400;
  font-size: 16px;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  line-height: 1;
}
@media (width <= 764px) {
  .goods-section .goods-inner .goods-text-wrap .goods-heading__en {
    font-size: 14px;
  }
}
.goods-section .goods-inner .goods-text-wrap .goods-description {
  width: 100%;
  color: white;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.8;
}
@media (width <= 764px) {
  .goods-section .goods-inner .goods-text-wrap .goods-description {
    font-size: 14px;
  }
}
.goods-section .goods-inner .next-link {
  color: #ffffff;
}

.section-info-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (width <= 764px) {
  .section-info-block {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}
.section-info-block .section-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  padding: 40px 0;
  border-top: 1px solid;
  border-bottom: 1px solid;
}
@media (width <= 764px) {
  .section-info-block .section-info {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    border-top: none;
  }
  .section-info-block .section-info:first-child {
    border-top: 1px solid;
  }
}
.section-info-block .section-info__headings {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (width <= 764px) {
  .section-info-block .section-info__headings {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
}
.section-info-block .section-info__headings .section-info__title {
  width: 341px;
  font-size: 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #000;
  line-height: 1;
  letter-spacing: 2.4px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (width <= 764px) {
  .section-info-block .section-info__headings .section-info__title {
    width: 100%;
    font-size: 20px;
  }
}
.section-info-block .section-info__headings .section-info__subtitle {
  width: 341px;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #FD5400;
  line-height: 1;
}
@media (width <= 764px) {
  .section-info-block .section-info__headings .section-info__subtitle {
    width: 100%;
    text-align: right;
  }
}
.section-info-block .section-info__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 20px;
}
@media (width <= 764px) {
  .section-info-block .section-info__body {
    width: 100%;
  }
}
.section-info-block .section-info__body .section-info__description {
  width: 341px;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #000;
  line-height: 1.6;
}
@media (width <= 764px) {
  .section-info-block .section-info__body .section-info__description {
    width: 100%;
    min-height: 44px;
  }
}
.section-info-block .section-info__body .section-info__link {
  display: block;
  width: 40px;
  height: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: url(../img/common/icon_7.svg) center center/cover no-repeat;
}
.sponsor-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
}
@media (width <= 764px) {
  .sponsor-section {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}
.sponsor-section__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 96px;
  padding: 64px 0;
  border-top: 1px solid;
  border-bottom: 1px solid;
}
@media (width <= 764px) {
  .sponsor-section__content {
    gap: 16px;
    border-top: none;
    padding: 32px 0;
  }
  .sponsor-section__content:first-child {
    border-top: 1px solid;
  }
}
.sponsor-section__title-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.sponsor-section__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
@media (width <= 764px) {
  .sponsor-section__title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
}
.sponsor-section__title-main {
  color: black;
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 4px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (width <= 764px) {
  .sponsor-section__title-main {
    font-size: 20px;
  }
}
.sponsor-section__title-sub {
  color: #FD5400;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 1;
}
@media (width <= 764px) {
  .sponsor-section__title-sub {
    font-size: 14px;
    text-align: right;
  }
}
.sponsor-section__description {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  color: black;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}
@media (width <= 764px) {
  .sponsor-section__description {
    font-size: 14px;
  }
}
@media (width <= 764px) {
  .sponsor-section__button {
    display: none;
  }
}
.sponsor-section__button-sp {
  display: none;
}
@media (width <= 764px) {
  .sponsor-section__button-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 100%;
  }
}