@charset "UTF-8";
/* ===============================================
00_foundation
=============================================== */
/*
  Reset
----------------------------------------------- */
/*
  # Global
---------------------------------------------- */
*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*
  # Document & Sections
---------------------------------------------- */
:where(html) {
  block-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: none;
}

:where(body) {
  min-block-size: 100%;
  text-rendering: optimizeLegibility;
  line-height: 1.8;
  font-family: system-ui, sans-serif;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

/*
  # Grouping content
---------------------------------------------- */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
  font-size: 100%;
  font: inherit;
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(ul, ol) {
  list-style: none;
}

/*
  # Text-level semantics
---------------------------------------------- */
:where(a:not([class])) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/*
  # Embedded content
---------------------------------------------- */
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%; /* max-with:100%;と同じ */
  block-size: auto;
}

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

/*
  # Tabular data
---------------------------------------------- */
:where(table) {
  border-collapse: collapse;
}

/*
  # Forms
---------------------------------------------- */
:where(input, button, textarea, select, optgroup) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role="button"], [role="option"]) {
  cursor: pointer;
}

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

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

/*
  # Interactive & Misc
---------------------------------------------- */
:where(template, [hidden]:not([hidden="until-found"])) {
  display: none;
}

/*
  # Accessibility
---------------------------------------------- */
:where([disabled], [aria-disabled="true"]) {
  cursor: not-allowed;
}

:where([aria-busy="true"]) {
  cursor: progress;
}

:where([aria-controls]) {
  cursor: pointer;
}

:where([aria-hidden="false"][hidden]) {
  display: initial;
}

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

:where(
  :focus:not(:focus-visible),
  ::before:focus:not(:focus-visible),
  ::after:focus:not(:focus-visible)
) {
  outline: none;
}

/**
 * Prettier ignore
 */
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after,
  ::backdrop {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    view-transition-name: none !important;
  }
}
/*
  # Other
---------------------------------------------- */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
table th,
table td {
  font-weight: 500;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: bottom;
}

address {
  font-style: normal;
}

/* ===============================================
font-size
=============================================== */
/* ===============================================
hover
=============================================== */
/*
  Base
----------------------------------------------- */
/* Custom Property */
:root {
  --black: #000;
  --white: #fff;
  --blue-700: #00213e;
  --blue-500: #076baf;
  --red-500: #ff6dae;
  --gray-500: #666;
  --gray-400: #999;
  --gray-300: #b3b3b3;
  --gray-200: #d3d3d4;
  --gray-100: #ccc;
  --gray-50: #e6e6e6;
  --sansFont:
    "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial",
    "Yu Gothic", "Meiryo", sans-serif;
  --enFont: "Montserrat", sans-serif;
  --serifFont: "Shippori Mincho", serif;
  --contentsWidth: 1000px;
}

/* Default Style */
body {
  position: relative;
  font-family: var(--serifFont);
  font-weight: 500;
  color: var(--black);
  background-color: var(--white);
}

.br,
.spbr,
.tabbr {
  display: block;
}

.spNone {
  display: none;
}

.grecaptcha-badge {
  visibility: hidden;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .spbr {
    display: inline;
  }
  .pcbr {
    display: block;
  }
  .spNone {
    display: block;
  }
  .pcNone {
    display: none;
  }
}
@media screen and (min-width: 1440px) {
  .tabbr {
    display: inline;
  }
}
/*
  Accesibility
----------------------------------------------- */
.visuallyHidden:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  margin: -1px;
}

@media (min-width: 751px) {
  a[href*="tel:"],
  a[href*="Tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
/* ===============================================
L-Container
=============================================== */
.l-S01,
.l-S02,
.l-S03 {
  position: relative;
}

.l-S01 {
  width: 100%;
  overflow-x: clip;
}

.l-S02 {
  width: 90%;
  max-width: var(--contentsWidth);
  margin-inline: auto;
}

.l-L01,
.l-L02,
.l-L03,
.l-L04,
.l-L05,
.l-L06,
.l-L07,
.l-L08,
.l-L09,
.l-L10 {
  position: relative;
  width: 100%;
}

.l-L01 {
  grid-area: l-L01;
}

.l-L02 {
  grid-area: l-L02;
}

.l-L03 {
  grid-area: l-L03;
}

.l-L04 {
  grid-area: l-L04;
}

.l-L05 {
  grid-area: l-L05;
}

.l-L06 {
  grid-area: l-L06;
}

.l-L07 {
  grid-area: l-L07;
}

.l-L08 {
  grid-area: l-L08;
}

.l-L09 {
  grid-area: l-L09;
}

.l-L10 {
  grid-area: l-L10;
}

/* ===============================================
L-Header
=============================================== */
.l-header .b-header__logo {
  display: none;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .l-header .l-L01 {
    display: flex;
    align-items: center;
    padding: 32px 0 20px 0;
    background-color: var(--white);
  }
  .l-header .b-header__logo {
    display: inline-block;
    max-width: 350px;
    width: 100%;
  }
}
/* ===============================================
L-Main
=============================================== */
.l-container {
  overflow: hidden;
}

.s-topMain .b-sectionTitle-lv1 {
  text-align: center;
}
.s-topMain .b-sectionTitle-lv1.line {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gray-100);
}

.s-lower .l-S02 {
  overflow: hidden;
  height: 128px;
  display: grid;
  grid-template: 128px/1fr;
  place-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--gray-100);
}
.s-lower .l-S02::before {
  content: "";
  grid-area: 1/1;
  justify-self: center;
  align-self: center;
  width: 417px;
  height: 372px;
  background-image: url(../../assets/images/common/sei-yu_lower_deco@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(3.5%);
}
.s-lower .b-lower__title,
.s-lower .b-archive__title {
  grid-area: 1/1;
  position: relative;
  text-align: center;
}

/********** media query **********/
@media screen and (max-width: 767px) {
  .s-lower .l-S02 {
    width: 100%;
  }
}
/*
  hero
----------------------------------------------- */
.s-topHero {
  overflow: hidden;
  height: 1285px;
  background-image: url(../../assets/images/top/sei-yu_top_hero_image_sp@2x.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.s-topHero .l-S02 {
  height: 100%;
  display: grid;
  align-items: center;
  justify-items: center;
}
.s-topHero .b-hero__text {
  position: absolute;
  bottom: 45px;
}

.b-hero__logo img {
  width: 135px;
  position: absolute;
  top: 365px;
  left: 8px;
  right: 0px;
  margin-inline: auto;
}
.b-hero__logo::before,
.b-hero__logo::after {
  content: "";
  position: absolute;
  display: inline-block;
}
.b-hero__logo::before {
  top: 222px;
  left: 50%;
  transform: translateX(-50%);
  width: 435px;
  aspect-ratio: 1;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  mix-blend-mode: darken;
}
.b-hero__logo::after {
  top: -44px;
  left: 51%;
  transform: translateX(-50%);
  width: 890px;
  aspect-ratio: 652/702;
  background-image: url(../../assets/images/top/sei-yu_top_hero_deco@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 100;
}

/********** media query **********/
@media screen and (max-width: 767px) {
  .s-topHero .l-S02 {
    width: 100%;
  }
  .s-topHero .b-hero__text {
    transform: translateX(10px);
  }
}
@media screen and (min-width: 768px) {
  .s-topHero {
    height: 613px;
    background-image: url(../../assets/images/top/sei-yu_top_hero_image@2x.jpg);
    background-position: 42% center;
  }
  .s-topHero::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -5%;
    width: 110%;
    height: 210px;
    background: var(--white);
    border-radius: 50%;
  }
  .s-topHero .b-hero__text {
    position: absolute;
    top: 29%;
    bottom: auto;
    left: auto;
    right: 4.5%;
    right: clamp(-2.5rem, -8.5714285714rem + 12.6488095238vw, 2.8125rem);
  }
  .b-hero__logo img {
    position: absolute;
    top: -20px;
    left: 118px;
    left: clamp(1.125rem, -6.0178571429rem + 14.880952381vw, 7.375rem);
    bottom: 0;
    margin: auto 0;
  }
  .b-hero__logo::before {
    top: 140px;
    left: 30px;
    left: clamp(-4.375rem, -11.5178571429rem + 14.880952381vw, 1.875rem);
    transform: translateX(0);
    width: 315px;
  }
  .b-hero__logo::after {
    top: -56px;
    left: -134px;
    left: clamp(-14.625rem, -21.7678571429rem + 14.880952381vw, -8.375rem);
    transform: translateX(0);
    width: 652px;
  }
}
/*
  noticeBanner
----------------------------------------------- */
.s-noticeBanner {
  margin-top: 48px;
}

.b-noticeBanner__text {
  text-align: center;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-noticeBanner {
    margin-top: 64px;
  }
}
/*
  NEWS
----------------------------------------------- */
.s-topNews {
  margin-top: 56px;
}
.s-topNews .l-S02 {
  display: grid;
}
.s-topNews .b-news__list {
  margin-top: 40px;
}
.s-topNews .b-moreButton {
  justify-self: center;
  margin-top: 32px;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-topNews {
    margin-top: 130px;
  }
  .s-topNews .b-news__list {
    margin-top: 36px;
  }
  .s-topNews .b-moreButton {
    justify-self: end;
    margin-top: 40px;
  }
}
/*
  EVENT & TOPICS
----------------------------------------------- */
.s-topEvent {
  margin-top: 96px;
}
.s-topEvent .l-S02 {
  display: grid;
}
.s-topEvent .b-moreButton {
  justify-self: center;
  margin-top: 20px;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-topEvent {
    margin-top: 80px;
  }
  .s-topEvent .b-moreButton {
    justify-self: end;
    margin-top: 40px;
  }
}
/*
  CONTACT
----------------------------------------------- */
.s-topContact {
  margin-top: 88px;
}
.s-topContact .l-L01 {
  margin-top: 6px;
  padding: 20px 5% 32px;
  background-color: var(--gray-50);
}
.s-topContact .l-L02 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px 0;
}
.s-topContact .b-linkButton {
  margin-top: 28px;
  text-align: center;
  flex-direction: column;
  gap: 12px 0;
}

.b-topContact__box {
  width: 380px;
  max-width: 100%;
  display: grid;
  grid-template: "title" auto "image" 1fr "text" auto "button" auto;
  justify-items: center;
  align-content: space-between;
  align-items: center;
  row-gap: 24px;
  text-align: center;
  padding: 45px 8px 50px 8px;
  background-color: var(--white);
  border: 1px solid var(--gray-100);
}
.b-topContact__box .title {
  grid-area: title;
}
.b-topContact__box .text {
  grid-area: text;
  line-height: 1.8;
  text-transform: uppercase;
}
.b-topContact__box .button {
  grid-area: button;
}
.b-topContact__box .image {
  grid-area: image;
}
.b-topContact__box .image.image01 {
  max-width: 262px;
  position: relative;
  right: -16px;
}
.b-topContact__box .image.image02 {
  max-width: 148px;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-topContact .l-L01 {
    padding: 64px 5% 56px;
  }
  .s-topContact .l-L02 {
    flex-direction: row;
    align-items: stretch;
    gap: 0 20px;
  }
  .s-topContact .b-linkButton {
    margin-top: 40px;
    flex-direction: row;
    gap: 0 8px;
  }
}
@media screen and (min-width: 1024px) {
  .s-topContact .l-L02 {
    width: 800px;
    margin-inline: auto;
    justify-content: space-between;
  }
}
/*
  ARCHIVES
----------------------------------------------- */
.s-topArchives {
  margin-top: 32px;
}
.s-topArchives .l-S02 {
  display: grid;
  justify-content: center;
  row-gap: 24px;
}

.b-topArchives__box {
  display: grid;
  grid-template: "image" "text" "button";
  align-content: center;
  justify-items: center;
  gap: 16px 10px;
}
.b-topArchives__box .text {
  grid-area: text;
  align-self: end;
  text-align: center;
}
.b-topArchives__box .button {
  grid-area: button;
  align-self: start;
}
.b-topArchives__box .image {
  grid-area: image;
  align-self: center;
  justify-self: center;
  max-width: 375px;
}

/********** media query **********/
@media screen and (max-width: 767px) {
  .s-topArchives .l-S02 {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .s-topArchives {
    margin-top: 72px;
  }
  .b-topArchives__box {
    height: 260px;
    overflow: hidden;
    grid-template: "image text" auto "image button" auto/auto 1fr;
    padding: 0 12px;
    background-color: var(--white);
    border: 1px solid var(--gray-100);
  }
  .b-topArchives__box .image {
    top: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .b-topArchives__box {
    width: 800px;
  }
}
/*
  seien
----------------------------------------------- */
.s-seien {
  margin-top: 72px;
  margin-bottom: 64px;
}
.s-seien .l-S02 {
  display: grid;
  justify-content: center;
  row-gap: 32px;
}
.s-seien .b-seien__banner {
  max-width: 550px;
}
.s-seien .b-seien__text {
  text-align: center;
}

/********** media query **********/
@media screen and (max-width: 767px) {
  .s-seien .l-S02 {
    width: 98%;
  }
}
@media screen and (min-width: 768px) {
  .s-seien {
    margin-top: 120px;
    margin-bottom: 110px;
  }
  .s-seien .l-S02 {
    display: grid;
    justify-content: center;
    row-gap: 32px;
  }
  .s-seien .b-seien__banner {
    max-width: 550px;
  }
  .s-seien .b-seien__text {
    text-align: center;
  }
}
/* ===============================================
L-MainAbout
=============================================== */
/********** media query **********/
/*
  Greeting
----------------------------------------------- */
.s-aboutGreeting {
  margin-top: 40px;
}
.s-aboutGreeting .l-S02 {
  display: grid;
  row-gap: 24px;
}
.s-aboutGreeting .b-text-lv1 {
  letter-spacing: 0;
  line-height: 1.8;
  text-align: justify;
}
.s-aboutGreeting .b-aboutGreeting__box {
  display: grid;
  row-gap: 24px;
}
.s-aboutGreeting .b-aboutGreeting__box:not(:first-of-type) {
  margin-top: 40px;
}

/********** media query **********/
@media screen and (max-width: 767px) {
  .s-aboutGreeting .l-S02 {
    width: 82%;
  }
}
@media screen and (min-width: 768px) {
  .s-aboutGreeting {
    margin-top: 64px;
  }
  .s-aboutGreeting .l-S02 {
    max-width: 720px;
    row-gap: 32px;
  }
  .s-aboutGreeting .b-sectionTitle-lv2 {
    padding-left: 13%;
  }
  .s-aboutGreeting .b-text-lv1 {
    padding-left: 14%;
    line-height: 2.07;
  }
}
/*
  Purpose
----------------------------------------------- */
.s-aboutPurpose {
  margin-top: 40px;
}
.s-aboutPurpose .l-S02 {
  display: grid;
  row-gap: 10px;
}
.s-aboutPurpose .b-text-lv1 {
  letter-spacing: 0;
  line-height: 2.05;
}

.b-aboutPurpose__list .listItem {
  display: grid;
  grid-template: "number title" ". text";
  justify-content: start;
  gap: 4px 12px;
  padding: 16px 5% 16px 5%;
  border-bottom: 1px solid var(--blue-700);
}
.b-aboutPurpose__list .listItem:last-child {
  border-bottom: none;
}
.b-aboutPurpose__list .listItem .number {
  grid-area: number;
  position: relative;
  top: 0px;
}
.b-aboutPurpose__list .listItem .title {
  grid-area: title;
  line-height: 1.8;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.b-aboutPurpose__list .listItem .text {
  grid-area: text;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

/********** media query **********/
@media screen and (max-width: 767px) {
  .s-aboutPurpose .l-S02 {
    width: 82%;
  }
  .s-aboutPurpose .b-aboutPurpose__list {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
  }
}
@media screen and (min-width: 768px) {
  .s-aboutPurpose {
    margin-top: 96px;
  }
  .s-aboutPurpose .l-S02 {
    max-width: 720px;
    row-gap: 16px;
  }
  .s-aboutPurpose .b-sectionTitle-lv2 {
    padding-left: 13%;
  }
  .b-aboutPurpose__list .listItem {
    align-items: center;
    gap: 0 12px;
    padding: 20px 0 20px 14%;
  }
  .b-aboutPurpose__list .listItem:last-child {
    border-bottom: none;
  }
}
/*
  Initiatives
----------------------------------------------- */
.s-aboutInitiatives {
  margin-top: 48px;
  padding: 0 0 80px;
  background-color: var(--gray-50);
}
.s-aboutInitiatives .b-aboutInitiatives__box {
  margin-top: 60px;
}
.s-aboutInitiatives .b-aboutInitiatives__box:nth-of-type(1) {
  margin-top: 48px;
}
.s-aboutInitiatives .b-aboutInitiatives__box .title {
  text-align: center;
}
.s-aboutInitiatives .b-aboutInitiatives__box .marginTop {
  margin-top: 28px;
}
.s-aboutInitiatives .b-aboutInitiatives__box .marginTop__large {
  margin-top: 28px;
}
.s-aboutInitiatives .b-aboutInitiatives__box .text {
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.9;
  text-align: justify;
}
.s-aboutInitiatives .b-aboutInitiatives__box .list01 {
  max-width: 580px;
  margin-inline: auto;
}
.s-aboutInitiatives .b-aboutInitiatives__box .list01 .listItem {
  border-bottom: 1px solid var(--blue-700);
}
.s-aboutInitiatives .b-aboutInitiatives__box .list02 {
  max-width: 560px;
  margin-inline: auto;
  margin-top: 26px;
}
.s-aboutInitiatives .b-aboutInitiatives__box .list02 .listTitle {
  position: relative;
  display: flex;
  align-items: center;
  -moz-column-gap: 4px;
  column-gap: 4px;
}
.s-aboutInitiatives .b-aboutInitiatives__box .list02 .listTitle::before {
  content: "";
  width: 14px;
  height: 14px;
  background-color: var(--blue-700);
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-aboutInitiatives {
    margin-top: 80px;
    padding: 88px 0 100px;
  }
  .s-aboutInitiatives .b-aboutInitiatives__title {
    max-width: 720px;
    margin-inline: auto;
  }
  .s-aboutInitiatives .b-aboutInitiatives__box:nth-of-type(1) {
    margin-top: 40px;
  }
  .s-aboutInitiatives .b-aboutInitiatives__box .marginTop {
    margin-top: 26px;
  }
  .s-aboutInitiatives .b-aboutInitiatives__box .marginTop__large {
    margin-top: 64px;
  }
  .s-aboutInitiatives .b-aboutInitiatives__box .list01 .listItem {
    padding: 0 8px 0 10px;
  }
}
/* ===============================================
L-MainNews
=============================================== */
/*
  common
----------------------------------------------- */
.b-news__list {
  display: grid;
  justify-content: center;
  row-gap: 16px;
}
.b-news__list .listItem a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px 0;
}
.b-news__list .listItem a .new {
  position: absolute;
  top: -5px;
  left: 43px;
  color: var(--red-500);
  text-transform: uppercase;
}
.b-news__list .listItem a .time {
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.b-news__list .listItem a .title {
  text-align: center;
  line-height: 1.8;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .b-news__list {
    row-gap: 8px;
  }
  .b-news__list .listItem a {
    flex-direction: row;
    gap: 0 40px;
  }
  .b-news__list .listItem a .new {
    top: 0;
    left: -80px;
  }
}
@media screen and (min-width: 1024px) {
  .b-news__list .listItem a {
    gap: 0 72px;
  }
  .b-news__list .listItem a .new {
    left: -96px;
  }
}
/*
  lower
----------------------------------------------- */
.s-lowerNews {
  margin-top: 32px;
}
.s-lowerNews .l-S02 {
  max-width: 540px;
}
.s-lowerNews .b-news__list {
  justify-content: start;
  row-gap: 14px;
}
.s-lowerNews .b-pagination {
  margin-top: 50px;
  margin-bottom: 60px;
}

/********** media query **********/
@media screen and (max-width: 767px) {
  .s-lowerNews .b-news__list .listItem a {
    align-items: flex-start;
    gap: 0;
  }
  .s-lowerNews .b-news__list .listItem a .new {
    left: 88px;
  }
  .s-lowerNews .b-news__list .listItem a .title {
    text-align: left;
  }
  .s-lowerNews .b-news__list .b-text-lv1 {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 768px) {
  .s-lowerNews {
    margin-top: 40px;
  }
  .s-lowerNews .l-S02 {
    max-width: 620px;
  }
  .s-lowerNews .b-pagination {
    margin-top: 80px;
    margin-bottom: 100px;
  }
}
/* ===============================================
L-MainNews-Post
=============================================== */
.s-post {
  margin-top: 40px;
  margin-bottom: 96px;
}
.s-post .l-S02 {
  max-width: 700px;
}
.s-post .b-post__box .time {
  display: block;
  text-align: center;
  letter-spacing: 0.05em;
}
.s-post .b-post__box .title {
  text-align: center;
  margin-top: 8px;
}
.s-post .b-post__box .contents {
  margin-top: 40px;
}
.s-post .b-post__box .contents.b-text-lv1 {
  letter-spacing: 0;
  line-height: 1.5;
}
.s-post .b-post__box .contents a {
  color: var(--blue-500);
}
.s-post p,
.s-post img {
  margin-bottom: 20px;
}
.s-post .wp-block-liquid-slider {
  max-width: 600px;
  height: 280px;
  margin-bottom: 40px;
}
.s-post .b-navigation {
  margin-top: 64px;
}

.smb-spider-slider .spider__figure {
  display: block;
  max-width: none;
  width: 55%;
  height: 316px;
  -o-object-fit: contain;
  object-fit: contain;
  margin-inline: auto;
}

.spider__arrow {
  width: 26px;
  height: 26px;
}
.spider__arrow::before {
  width: 8px;
  height: 8px;
}

.spider__arrow[data-direction="prev"] {
  left: 112px;
}

.spider__arrow[data-direction="next"] {
  right: 112px;
}

.spider__arrow[data-direction="prev"],
.spider__arrow[data-direction="next"] {
  border: 1px solid var(--gray-100);
  border-radius: 50%;
  background-color: var(--white);
}

.spider__arrow[data-direction="prev"]:before,
.spider__arrow[data-direction="next"]:before {
  border-color: var(--gray-100);
  top: calc(50% - 4px);
}

.spider__arrow[data-direction="prev"]:before {
  left: calc(50% - 3px);
}

.spider__arrow[data-direction="next"]:before {
  right: calc(50% - 3px);
}

.spider__dots {
  justify-content: center;
  gap: 40px;
}

.spider__dots:not([data-thumbnails="true"]) .spider__dot {
  width: 6px;
  height: 6px;
}

.spider__dots:not([data-thumbnails="true"]) .spider__dot[aria-current="true"] {
  background-color: var(--gray-400);
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-post {
    margin-bottom: 160px;
  }
  .s-post .b-post__box .time {
    text-align: left;
  }
  .s-post .b-post__box .title {
    margin-top: 16px;
  }
  .s-post .b-post__box .contents {
    margin-top: 48px;
  }
  .s-post .wp-block-liquid-slider {
    height: 380px;
  }
  .s-post .b-navigation {
    margin-top: 48px;
  }
  .wp-block-liquid-slider {
    padding: 0 80px 64px 80px;
  }
  .wp-block-liquid-slider .swiper-button-next,
  .wp-block-liquid-slider .swiper-button-prev {
    bottom: 96px;
  }
}
/* ===============================================
L-MainEvent
=============================================== */
/*
  common
----------------------------------------------- */
.b-event__list {
  display: grid;
  justify-content: center;
}
.b-event__list .listItem {
  padding: 36px 0 40px;
  background-image: radial-gradient(circle, #666666 0.5px, transparent 0.5px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 6px 1px;
}
.b-event__list .listItem:last-child {
  background-image: none;
}
.b-event__list .listItem a {
  position: relative;
  display: grid;
  grid-template: "new" "image" "time" auto "title" auto;
  align-items: center;
  justify-items: center;
  gap: 8px 48px;
}
.b-event__list .listItem a .new {
  grid-area: new;
  color: var(--red-500);
  text-transform: uppercase;
}
.b-event__list .listItem a .time {
  grid-area: time;
  align-self: end;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-top: 12px;
}
.b-event__list .listItem a .title {
  grid-area: title;
  align-self: start;
  line-height: 1.9;
  text-align: center;
}
.b-event__list .listItem a .image {
  grid-area: image;
  justify-self: center;
  margin-top: 6px;
}
.b-event__list .listItem a .image img {
  max-width: 234px;
  max-height: 180px;
  -o-object-fit: contain;
  object-fit: contain;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .b-event__list .listItem {
    padding: 20px 24px 20px 80px;
  }
  .b-event__list .listItem a {
    grid-template: "image time" auto "image title" auto/234px 1fr;
    justify-items: start;
    gap: 8px 24px;
  }
  .b-event__list .listItem a .new {
    position: absolute;
    left: -80px;
  }
  .b-event__list .listItem a .time {
    margin-top: 0;
  }
  .b-event__list .listItem a .title {
    text-align: left;
  }
  .b-event__list .listItem a .image {
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .b-event__list .listItem {
    width: 800px;
  }
  .b-event__list .listItem a {
    gap: 8px 48px;
  }
}
/*
  lower
----------------------------------------------- */
.s-lowerEvent .b-pagination {
  margin-top: 60px;
  margin-bottom: 60px;
}

/********** media query **********/
@media screen and (max-width: 767px) {
  .s-lowerEvent .b-text-lv1 {
    font-size: 0.875rem;
  }
  .s-lowerEvent .b-event__list .listItem {
    padding: 24px 0;
  }
  .s-lowerEvent .b-event__list .listItem a {
    justify-items: start;
    gap: 4px 48px;
  }
  .s-lowerEvent .b-event__list .listItem a .time {
    margin-top: 8px;
  }
  .s-lowerEvent .b-event__list .listItem a .title {
    text-align: left;
  }
  .s-lowerEvent .b-event__list .listItem a .image {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .s-lowerEvent .b-pagination {
    margin-top: 88px;
    margin-bottom: 100px;
  }
}
/* ===============================================
L-MainEvent-post
=============================================== */
.s-eventPost .l-S02 {
  max-width: 480px;
}

.b-event_table {
  margin-top: 40px;
}
.b-event_table .spanSpace {
  width: 9em;
  margin-inline: auto;
}

.smb-spider-slider .spider__slide > .smb-spider-slider__item {
  bottom: -8px;
}

.smb-spider-slider__item__caption {
  text-align: center;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-eventPost .l-S02 {
    max-width: 800px;
  }
  .s-eventPost .b-post__box .title {
    font-size: 1.125rem;
  }
  .b-event_table {
    margin-top: 72px;
  }
  .b-event_table .spanSpace {
    width: 6em;
  }
}
/* ===============================================
L-MainArchives
=============================================== */
.b-archive__title {
  position: relative;
  display: grid;
  justify-items: center;
}
.b-archive__title::before {
  content: "";
  background-image: url(../../assets/images/common/sei-yu_icon_archive.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 33px;
  height: 21px;
  margin-bottom: 8px;
}

.s-archives {
  padding: 8px 0 180px;
  background-color: var(--gray-500);
}

.b-archives__list {
  display: grid;
  justify-content: center;
  gap: 8px 0;
}
.b-archives__list .listItem {
  padding: 16px 24px 16px 16px;
  background-color: var(--white);
}
.b-archives__list .listItem a {
  position: relative;
  display: grid;
  grid-template:
    "image title" auto "image time" auto "image read" 10px / min(45%, 160px)
    1fr;
  gap: 2px 20px;
}
.b-archives__list .listItem a .title {
  grid-area: title;
  align-self: end;
  font-size: 0.875rem;
  line-height: 1.5;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-100);
}
.b-archives__list .listItem a .time {
  grid-area: time;
  align-self: start;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.b-archives__list .listItem a .read {
  grid-area: read;
  align-self: end;
  justify-self: end;
  justify-content: end;
  -moz-column-gap: 4px;
  column-gap: 4px;
  padding-bottom: 4px;
  right: -8px;
}
.b-archives__list .listItem a .read::after {
  content: "";
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  height: 10.3923048454px;
  width: 9px;
  background-color: var(--black);
}
.b-archives__list .listItem a .image {
  grid-area: image;
  justify-self: center;
}
.b-archives__list .listItem a .image img {
  max-width: 216px;
}

/********** media query **********/
@media screen and (max-width: 767px) {
  .s-archives .l-S02 {
    width: 95%;
  }
}
@media screen and (min-width: 768px) {
  .s-archives {
    padding: 56px 0 180px;
  }
  .b-archives__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
  .b-archives__list .listItem {
    padding: 20px 32px 20px 20px;
  }
  .b-archives__list .listItem a {
    grid-template-columns: 216px 1fr;
    gap: 8px 24px;
  }
  .b-archives__list .listItem a .title {
    font-size: 1rem;
    padding-bottom: 16px;
  }
  .b-archives__list .listItem a .read {
    -moz-column-gap: 8px;
    column-gap: 8px;
    padding-bottom: 8px;
    right: -8px;
  }
}
/* ===============================================
L-MainArchives-Post
=============================================== */
/*
  アーカイブページ追加css20260626
----------------------------------------------- */
.singleBody {
  line-height: 2em;
}

.singleBody .alignright {
  display: inline;
  float: right;
  margin-left: 1.625em;
}

.singleBody .alignleft {
  display: inline;
  float: left;
  margin-right: 1.625em;
}

.singleBody img {
  width: 100%;
  height: 100%;
}

.singleBody hr {
  border: none;
  height: 1px;
  background-color: #e0e0e0;
  margin: 2em 0;
}

@media (min-width: 751px) {
  .singleBody img {
    width: auto;
    height: auto;
    min-width: 150px;
  }
}
.singleCatList li {
  display: inline;
  font-size: 0.8em;
  border-radius: 10px;
}

.singleCatList li span {
  padding: 0.6em 0.6em;
  border-radius: 4px;
  color: #999 !important;
  font-family: Arial, "Noto Sans JP", sans-serif;
}

/* ===============================================
L-MainAbout
=============================================== */
.s-member {
  margin-top: 20px;
  margin-bottom: 100px;
}
.s-member .b-member__list {
  display: grid;
  grid-template-columns: min(375px, 100%);
  justify-content: center;
  gap: 16px 0;
}

.b-member__list .listItem a {
  min-height: 100px;
  position: relative;
  display: flex;
  align-items: center;
  -moz-column-gap: 16px;
  column-gap: 16px;
  padding: 24px 20px 24px 10px;
  border: 1px solid var(--gray-100);
}
.b-member__list .listItem a::after {
  content: "";
  background-image: url(../../assets/images/common/sei-yu_icon_link.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 27px;
  height: 14px;
  margin-left: auto;
}
.b-member__list .image {
  order: -1;
  align-self: stretch;
  display: flex;
  align-items: center;
  padding-right: 8px;
  border-right: 1px solid var(--gray-100);
}
.b-member__list .image img {
  max-width: 60px;
  -o-object-fit: contain;
  object-fit: contain;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-member {
    margin-top: 80px;
    margin-bottom: 216px;
  }
  .s-member .b-member__list {
    grid-template-columns: repeat(2, min(375px, 100%));
    gap: 20px 50px;
  }
}
/* ===============================================
L-MainSupport
=============================================== */
.s-support {
  margin-top: 20px;
  margin-bottom: 100px;
}
.s-support .b-support__list {
  display: grid;
  grid-template-columns: min(375px, 100%);
  justify-content: center;
  gap: 16px 0;
}

.b-support__list .listItem a {
  min-height: 100px;
  position: relative;
  display: flex;
  align-items: center;
  -moz-column-gap: 16px;
  column-gap: 16px;
  padding: 24px 20px;
  border: 1px solid var(--gray-100);
}
.b-support__list .listItem a::after {
  content: "";
  background-image: url(../../assets/images/common/sei-yu_icon_link.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 27px;
  height: 14px;
  margin-left: auto;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .s-support {
    margin-top: 80px;
    margin-bottom: 112px;
  }
  .s-support .b-support__list {
    grid-template-columns: repeat(2, min(375px, 100%));
    gap: 20px 50px;
  }
}
/* ===============================================
L-MainAudition
=============================================== */
.s-audition {
  padding: 16px 0 48px;
  background-color: var(--gray-50);
}
.s-audition .l-S02 {
  max-width: 400px;
  display: grid;
  row-gap: 72px;
}
.s-audition .b-audition__title {
  text-align: center;
  padding: 8px 24px;
  background-color: var(--white);
  border-radius: 4px;
}

.b-audition__box {
  display: grid;
}

.b-audition__contents {
  display: grid;
  justify-items: center;
  row-gap: 24px;
  margin-top: 32px;
}
.b-audition__contents:nth-of-type(1) {
  margin-top: 24px;
}
.b-audition__contents .wrapper {
  width: 100%;
  padding: 0 16px;
  background-color: var(--white);
}
.b-audition__contents .wrapper .b-audition__table {
  width: 100%;
}
.b-audition__contents .wrapper .text {
  flex: 1;
  text-align: justify;
  padding: 26px 0 32px;
}
.b-audition__contents .wrapper .text a {
  color: var(--blue-500);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.b-audition__table tr {
  border-bottom: 1px solid var(--black);
}
.b-audition__table th,
.b-audition__table td {
  text-align: left;
}
.b-audition__table th {
  letter-spacing: 0.3em;
}
.b-audition__table tr.long th {
  letter-spacing: 0.025em;
}
.b-audition__table th {
  width: 45%;
}
.b-audition__table td {
  width: 55%;
}

/********** media query **********/
@media screen and (max-width: 767px) {
  .b-audition__table.table,
  .b-audition__table tr,
  .b-audition__table th,
  .b-audition__table td {
    display: block;
  }
  .b-audition__table tr {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 0;
    padding: 14px 0;
  }
  .b-audition__table .long th,
  .b-audition__table .long td {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .s-audition {
    padding: 64px 0 180px;
  }
  .s-audition .l-S02 {
    max-width: 600px;
  }
  .b-audition__contents .wrapper {
    padding: 0 32px 0 24px;
  }
  .b-audition__table th,
  .b-audition__table td {
    padding: 14px 0 14px 32px;
  }
  .b-audition__table th {
    width: 48%;
  }
  .b-audition__table td {
    width: 52%;
  }
}
@media screen and (min-width: 1024px) {
  .s-audition .l-S02 {
    max-width: 800px;
    row-gap: 100px;
  }
  .b-audition__contents .wrapper {
    display: flex;
    align-items: center;
    gap: 0 40px;
  }
  .b-audition__contents .wrapper .b-audition__table {
    max-width: 440px;
  }
  .b-audition__contents .wrapper .text {
    padding: 20px 0;
  }
  .b-audition__table tr:last-child {
    border-bottom: none;
  }
}
/* ===============================================
L-MainContact
=============================================== */
.s-contact {
  margin-top: 32px;
}
.s-contact .l-S02 {
  height: 132px;
  display: grid;
  grid-template: 132px/1fr;
  align-items: start;
  justify-items: center;
  border-bottom: 1px solid var(--gray-100);
}
.s-contact img {
  margin-top: -16px;
  max-height: 132px;
  position: relative;
}

.s-contactContents {
  margin-top: 40px;
  margin-bottom: 100px;
}
.s-contactContents .l-S02 {
  max-width: 720px;
  margin-inline: auto;
  letter-spacing: 0.05em;
}

.smf-form--simple-table.b-contact__form .smf-item {
  display: flex;
  flex-direction: column;
  gap: 10px 16px;
  padding: 14px 0;
}
.smf-form--simple-table.b-contact__form .smf-item__col--label {
  flex: 1;
  max-width: 10.5em;
  display: grid;
  align-content: start;
  justify-content: center;
  text-align: center;
  line-height: 1.5;
  padding: 12px 0;
  background-color: var(--gray-200);
  border: 1px solid var(--gray-300);
}
.smf-form--simple-table.b-contact__form.smf-form--simple-table
  .smf-item__col--controls {
  flex: 1;
  max-width: 100%;
  min-height: 50px;
  display: grid;
  align-content: center;
}
.smf-form--simple-table.b-contact__form.smf-form .smf-text-control__control {
  width: 100%;
  min-height: 50px;
}

.smf-form--simple-table + .smf-action {
  margin-top: 40px;
}

.smf-action .smf-button-control__control {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  padding: 4px 32px;
  background-image: none;
  background-color: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 0;
}

/********** media query **********/
@media screen and (max-width: 767px) {
  .s-lower .l-S02 {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .s-contact {
    margin-top: 0;
  }
  .smf-form--simple-table.b-contact__form .smf-item {
    flex-direction: row;
    align-items: start;
    padding: 10px 0;
  }
  .smf-form--simple-table.b-contact__form .smf-item.stretch {
    align-items: stretch;
  }
  .smf-form--simple-table + .smf-action {
    margin-top: 56px;
  }
}
/* ===============================================
L-Main-404
=============================================== */
.s-404 {
  margin-top: 80px;
  margin-bottom: 100px;
}
.s-404 .l-S02 {
  display: grid;
  justify-content: center;
}
.s-404 .b-404__box {
  display: grid;
  align-content: start;
  justify-items: center;
  z-index: 1;
}
.s-404 .b-404__title {
  margin-bottom: 40px;
}
.s-404 .b-404__text {
  margin-bottom: 56px;
}
.s-404 .b-contentsImage {
  z-index: 0;
}

/********** media query **********/
@media screen and (min-width: 1024px) {
  .s-404 .l-S02 {
    align-content: center;
  }
  .s-404 .b-404__title,
  .s-404 .b-404__text {
    text-align: center;
  }
}
/* ===============================================
L-Footer
=============================================== */
.l-footer .l-L01 {
  padding: 40px 5%;
  background-color: var(--blue-700);
}
.l-footer .b-footer__bannerBox {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px 0;
}
.l-footer .b-footer__logo {
  max-width: 224px;
  margin-inline: auto;
  margin-top: 36px;
}
.l-footer .b-copyright {
  margin-top: 24px;
  padding-bottom: 32px;
  text-align: center;
}

.b-footer__banner a {
  width: 255px;
  overflow: hidden;
  display: grid;
  grid-template: "image text" 84px / auto 1fr;
  align-content: center;
  justify-items: center;
  padding-right: 16px;
  background-color: var(--white);
  border: 1px solid var(--gray-100);
}
.b-footer__banner a .text {
  grid-area: text;
  display: grid;
  align-content: center;
  justify-content: center;
  text-align: center;
}
.b-footer__banner a .image {
  grid-area: image;
  align-self: center;
  justify-self: center;
  max-width: 128px;
  position: relative;
  top: -2px;
  left: -6px;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .l-footer .l-L01 {
    padding: 48px 2%;
  }
  .l-footer .b-footer__bannerBox {
    max-width: 800px;
    flex-direction: row;
    justify-content: space-between;
    gap: 0 8px;
  }
  .l-footer .b-footer__logo {
    max-width: 327px;
    margin-top: 56px;
  }
  .l-footer .b-copyright {
    margin-top: 48px;
  }
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .b-footer__banner a {
    width: 238px;
    padding-right: 0;
  }
}
/* ===============================================
M-Header
=============================================== */
/* ===============================================
M-Main
=============================================== */
/*
  Common
----------------------------------------------- */
/********** media query **********/
/*
  Top
----------------------------------------------- */
/********** media query **********/
/* ===============================================
M-Footer
=============================================== */
/* ===============================================
hamburger
=============================================== */
.globalNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 112px 5%;
  width: 100vw;
  height: 100%;
  display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOut 0.5s ease-in-out;
  translate: 100% 0;
  opacity: 0;
  z-index: 10000;
}

.hamburgerButton {
  position: fixed;
  top: 24px;
  right: 8px;
  width: 50px;
  height: 50px;
  border: 0;
  z-index: 10000;
  cursor: pointer;
  -webkit-appearance: none; /* Chrome, Safari, Opera, Android */
  -moz-appearance: none; /* Firefox */
  appearance: none; /* IE非対応 */
  transition: all 0.3s ease-in-out;
  background-color: transparent;
}
.hamburgerButton:hover {
  opacity: 0.7;
}

.hamburgerButton__line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
  width: 24px;
  height: 1px;
  background-color: var(--black);
}
.hamburgerButton__line:before,
.hamburgerButton__line:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: inherit;
  transition: all 0.2s ease-in-out;
}
.hamburgerButton__line:before {
  top: -9px;
}
.hamburgerButton__line:after {
  top: 9px;
}

.is-drawerActive {
  overflow: hidden;
}
.is-drawerActive .globalNav {
  animation: fadeIn 0.5s ease-in-out;
  translate: 0 0;
  opacity: 1;
  overflow: hidden;
  overflow-y: auto;
  background-color: var(--blue-700);
}
.is-drawerActive .hamburgerButton {
  z-index: 11000;
}
.is-drawerActive .hamburgerButton__line {
  width: 30px;
  background-color: transparent;
}
.is-drawerActive .hamburgerButton__line::before,
.is-drawerActive .hamburgerButton__line::after {
  top: 0;
  bottom: 0;
  background-color: var(--white);
}
.is-drawerActive .hamburgerButton__line::before {
  transform: rotate(38deg);
}
.is-drawerActive .hamburgerButton__line::after {
  transform: rotate(-38deg);
}

.b-header__nav {
  display: flex;
  flex-direction: column;
  align-content: center;
  gap: 24px;
  padding: 0 0 0 12px;
}

.b-header__nav li {
  list-style: none;
}

.b-header__nav li a {
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.08em;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .globalNav {
    gap: 0 70px;
    padding: 44px 5% 0 5%;
  }
  .hamburgerButton {
    top: 24px;
    right: 8.4%;
  }
  .b-header__nav {
    flex-wrap: wrap;
    width: 100%;
    height: 280px;
    gap: 20px 185px;
    padding: 0px 0px 0px 80px;
    margin-bottom: 64px;
  }
  .b-header__nav li:nth-of-type(5) {
    margin-bottom: 24px;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateX(-150%);
  }
  50% {
    opacity: 0;
    transform: translateX(0%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }
  50% {
    opacity: 0;
    transform: translateX(0%);
  }
  100% {
    opacity: 0;
    transform: translateX(-100%);
  }
}
/* ===============================================
  b-text
=============================================== */
/*
  Common
----------- */
.b-text-lv1 {
  font-size: 1rem;
  letter-spacing: 0.015em;
  line-height: 2;
}
.b-text-lv1.--sans {
  letter-spacing: 0.05em;
  font-family: var(--sansFont);
}
.b-text-lv1.--blue {
  color: var(--blue-700);
}
.b-text-lv1 .uppercase {
  text-transform: uppercase;
}

.b-text-lv2 {
  font-size: 0.875rem;
  letter-spacing: 0.015em;
}
.b-text-lv2.--sans {
  letter-spacing: 0.05em;
  font-family: var(--sansFont);
}
.b-text-lv2.--blue {
  color: var(--blue-700);
}

.b-sectionTitle-lv1 {
  font-size: 1.875rem;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.b-sectionTitle-lv2 {
  font-size: 1.5rem;
  text-transform: uppercase;
}
.b-sectionTitle-lv2.--blue {
  color: var(--blue-700);
}

.b-lower__title {
  font-size: 1.125rem;
  letter-spacing: 0.025em;
  line-height: 1.15;
  text-transform: uppercase;
}
.b-lower__title.--ja {
  letter-spacing: -0.15em;
}
.b-lower__title .small {
  margin-top: 4px;
  font-size: 0.65em;
}

.b-archive__title {
  font-size: 1.125rem;
  letter-spacing: 0.025em;
  line-height: 1.15;
  font-family: --enFont;
}

.b-button {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--sansFont);
}
.b-button .noUpper {
  text-transform: none;
}

.b-linkButton {
  letter-spacing: 0.04em;
}

/*
  Header
----------- */
.b-header__text {
  font-size: 1rem;
  font-family: var(--sansFont);
  text-transform: uppercase;
}

/*
  Footer
----------- */
.b-footer__bannerText {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  font-family: var(--sansFont);
  color: var(--blue-700);
}
.b-footer__bannerText .en {
  font-size: 0.8em;
  text-transform: uppercase;
  letter-spacing: 0;
}

.b-copyright {
  font-size: 0.75rem;
  font-family: var(--sansFont);
  color: var(--blue-700);
}
.b-copyright small {
  font-size: inherit;
}

/*
  Top
----------- */
.b-hero__text {
  font-size: clamp(1.5rem, 1.0192307692rem + 2.5641025641vw, 2.25rem);
  letter-spacing: 0.025em;
  line-height: 1.95;
  color: var(--white);
}

.b-noticeBanner__text {
  font-size: 1.125rem;
  line-height: 2.06;
}

.b-topContact__box .title {
  font-size: 1.375rem;
  letter-spacing: 0.025em;
  line-height: 1.45;
}

.b-topArchives__box .text {
  font-size: 1.125rem;
}

/*
  About
----------- */
.b-aboutInitiatives__title {
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-family: var(--sansFont);
  color: var(--white);
  background-color: var(--blue-700);
  text-align: center;
  padding: 8px 24px;
}

.b-aboutInitiatives__box .title {
  font-size: 1.375rem;
  letter-spacing: 0.05em;
  font-family: var(--sansFont);
  color: var(--blue-700);
}

/*
  Audition
----------- */
.b-audition__title {
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  font-family: var(--sansFont);
}

/*
  404
----------- */
.b-404__title {
  font-size: 1.625rem;
  line-height: 1.6;
  letter-spacing: 0.025em;
  font-family: var(--sansFont);
  color: var(--blue-700);
}

/********** media query **********/
@media screen and (min-width: 768px) {
  /*
    Top
  ----------- */
  .b-hero__text {
    font-size: clamp(1.75rem, 1.6071428571rem + 0.2976190476vw, 1.875rem);
  }
}
@media screen and (min-width: 1024px) {
  /*
    Common
  ----------- */
  .b-text-lv1 {
    font-size: 1rem;
    letter-spacing: 0.025em;
    line-height: 2;
  }
  .b-sectionTitle-lv1 {
    font-size: 1.875rem;
    letter-spacing: 0.025em;
    text-transform: uppercase;
  }
  .b-sectionTitle-lv2 {
    font-size: 2rem;
    text-transform: uppercase;
  }
  .b-sectionTitle-lv2.--blue {
    color: var(--blue-700);
  }
  .b-lower__title {
    font-size: 1.875rem;
    letter-spacing: 0.025em;
    text-transform: uppercase;
  }
  .b-lower__title.--small {
    font-size: 1.375rem;
  }
  .b-archive__title {
    font-size: 1.25rem;
  }
  .b-button {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: var(--sansFont);
  }
  .b-button .noUpper {
    text-transform: none;
  }
  .b-linkButton {
    letter-spacing: 0.04em;
  }
  /*
    Header
  ----------- */
  /*
    Footer
  ----------- */
  .b-footer__bannerText {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    line-height: 1.6;
    font-family: var(--sansFont);
    color: var(--blue-700);
  }
  .b-footer__bannerText .en {
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 0;
  }
  .b-copyright {
    font-size: 0.75rem;
    font-family: var(--sansFont);
    color: var(--blue-700);
  }
  .b-copyright small {
    font-size: inherit;
  }
  /*
    Top
  ----------- */
  .b-hero__text {
    font-size: 1.875rem;
    letter-spacing: 0.05em;
    line-height: 2;
    color: var(--white);
  }
  .b-noticeBanner__text {
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    line-height: 2;
  }
  .b-topContact__box .title {
    font-size: 1.375rem;
    letter-spacing: 0.025em;
    line-height: 1.45;
  }
  .b-topArchives__box .text {
    font-size: 1.125rem;
  }
  /*
    404
  ----------- */
  .b-404__title {
    font-size: 1.875rem;
  }
}
/* ===============================================
b-button
=============================================== */
.b-button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  border-radius: 0;
}

.b-mainButton {
  width: 300px;
  padding: 6px 8px;
  background-color: var(--gray-50);
  border-radius: 100px;
}

.b-moreButton {
  width: 127px;
  padding: 4px 8px;
  border: 1px solid var(--gray-100);
}

.b-linkButton {
  color: var(--blue-700);
}
.b-linkButton::after {
  content: "";
  position: relative;
  left: 4px;
  background-image: url(../../assets/images/common/sei-yu_icon_link.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 28px;
  height: 15px;
}

.b-auditionButton {
  max-width: 208px;
  padding: 6px;
  background-color: var(--white);
  border-radius: 100px;
}
.b-auditionButton::after {
  content: "";
  position: absolute;
  right: 12px;
  background-image: url(../../assets/images/common/sei-yu_icon_link.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 28px;
  height: 15px;
}

/********** media query **********/
/* ===============================================
b-pagination
=============================================== */
.b-pagination {
  display: flex;
  justify-content: center;
  gap: 0 24px;
  margin: 40px 0 0;
}
.b-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: 2em;
  padding: 8px;
  color: var(--gray-300);
  border: 1px solid var(--gray-300);
  background: var(--white);
}
.b-pagination .current {
  background: var(--gray-300);
  color: var(--white);
}
.b-pagination .prev,
.b-pagination .next {
  color: var(--gray-300);
}
.b-pagination .dots {
  background: transparent;
  box-shadow: none;
}

.b-navigation .nav-links {
  position: relative;
}
.b-navigation .nav-previous {
  position: absolute;
  top: 0;
  left: 0;
}
.b-navigation .nav-next {
  position: absolute;
  top: 0;
  right: 0;
}
.b-navigation .nav-previous a,
.b-navigation .nav-next a {
  padding: 2px 24px;
  color: var(--gray-300);
  border: 1px solid var(--gray-300);
}

/* ===============================================
b-parts
=============================================== */
/*
  Common
----------------------------------------------- */
.b-width100 {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}

.spanSpace {
  display: flex;
  justify-content: space-between;
}

/********** media query **********/
@media screen and (min-width: 768px) {
  .spanSpace--pc {
    display: flex;
    justify-content: space-between;
  }
}
/* ===============================================
Hover
=============================================== */
a {
  transition: opacity 0.2s ease-in-out;
}
a:hover {
  opacity: 0.5;
}

/* ===============================================
animation
=============================================== */
/*
  common
----------------------------------------------- */
/*
  @keyframes
----------------------------------------------- */
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade0ut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes b-scroll-arrow-slide {
  0% {
    transform: translateX(40px) scale(0, 1);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateX(0px) scale(1, 1);
    opacity: 0;
  }
}
/*==============
aboutページのhrの編集
============*/
.page-id-27
  .wp-container-core-group-is-layout-54d22900
  > hr.wp-block-separator {
  display: block;
  width: 100% !important;
  max-width: var(--wp--style--global--content-size);
  margin-left: auto !important;
  margin-right: auto !important;
  border: 0 !important;
  border-top: 0.5px solid #999 !important;
  opacity: 1;
}

.blog .b-news__list .listItem a .title {
  text-align: left;
}
