@charset "UTF-8";
:root {
  --primary-color: #235494;
  --secondary-color: #7d7d7d;
  --success-color: #2e7d5f;
  --warning-color: #ff9100;
  --danger-color: #d64545;
  --info-color: #0073aa;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --background-color: #ffffff;
  --sub-background-color: #f2f2f2;
  --text-color: #333333;
  --sub-text-color: #808080;
  --link-color: #236794;
  --link-hover-color: #2b66b3;
  --border-color: #cccccc;
  --footer-background-color: #eeeeee;
  --footer-text-color: #333333;
  --accent-color: #cc1464;
  --loading-color: #222222;
  --font-size: 16px;
  --font-family: Noto Sans JP, sans-serif;
}

/*==================================================	
/ CSS Reset
/=================================================*/
/* html5doctor.com Reset v1.6.1 (http://html5doctor.com/html-5-reset-stylesheet/) - http://cssreset.com */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

html, body {
  width: 100%;
  height: 100%;
  font-size: var(--font-size);
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: var(--font-family);
  font-optical-sizing: auto;
  font-style: normal;
  text-box-trim: trim-both;
}

a {
  text-decoration: none;
  color: var(--link-color);
  transition: color 0.3s ease;
}

input[type=checkbox] {
  width: 16px;
  height: 16px;
}

small {
  font-size: 0.875rem;
}

.fs-xs {
  font-size: 0.75rem;
}

.fs-sm {
  font-size: 0.875rem;
}

.fs-base {
  font-size: 1rem;
}

.fs-lg {
  font-size: 1.25rem;
}

.fs-xl {
  font-size: 1.5rem;
}

.fs-xxl {
  font-size: 2rem;
}

.fw-bold {
  font-weight: 700;
}

.small {
  font-size: 0.75rem;
}

.d-block {
  display: block;
}

.lh-1 {
  line-height: 1;
}

.lh-sm {
  line-height: 1.25;
}

.lh-base {
  line-height: 1.7;
}

.lh-lg {
  line-height: 2;
}

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

.text-right,
.text-end {
  text-align: right;
}

.text-left,
.text-start {
  text-align: left;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-wrap {
  white-space: wrap !important;
}

.l-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  position: relative;
  padding-bottom: 3rem;
  gap: 2rem;
}
.l-container__main {
  flex: 1;
  order: 1;
}
.l-container__side {
  order: 2;
  width: 300px;
}

@media (max-width: 768px) {
  .l-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: block;
  }
  .l-container__main {
    padding: 1rem;
  }
  .l-container__side {
    width: 100%;
    border-top: 1px solid var(--border-color);
    box-sizing: border-box;
    padding: 1rem;
  }
}
.l-footer {
  background-color: var(--footer-background-color);
  color: var(--footer-text-color);
}
.l-footer__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0;
  padding: 2rem;
}
.l-footer__container {
  display: flex;
  margin-bottom: 2rem;
}
.l-footer__info, .l-footer__company, .l-footer__working, .l-footer__recruit {
  width: 25%;
}
.l-footer__caption {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.l-footer__logo {
  width: 100%;
  margin-bottom: 2rem;
}
.l-footer__logo img {
  max-width: 100%;
  max-height: 20px;
  width: auto;
  height: 20px;
}
.l-footer__copyright {
  border-top: 1px solid var(--footer-text-color);
  font-size: 0.875rem;
  text-align: center;
  padding-top: 1rem;
}

@media (max-width: 768px) {
  .l-footer__inner {
    width: 100%;
    box-sizing: border-box;
    padding: 1rem;
  }
  .l-footer__container {
    flex-direction: column;
  }
  .l-footer__info {
    width: 100%;
    order: 4;
    text-align: center;
  }
  .l-footer__info .footer-list {
    display: flex;
    justify-content: center;
  }
  .l-footer__info .footer-list__item {
    border-right: 1px solid var(--text-color);
    padding-right: 1rem;
    margin-right: 1rem;
    margin-bottom: 0;
  }
  .l-footer__info .footer-list__item:last-child {
    margin-right: 0;
    border-right: none;
  }
  .l-footer__company, .l-footer__working, .l-footer__recruit {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
  }
  .l-footer__company .footer-list, .l-footer__working .footer-list, .l-footer__recruit .footer-list {
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .l-footer__company .footer-list.is-open, .l-footer__working .footer-list.is-open, .l-footer__recruit .footer-list.is-open {
    margin-top: 2rem;
  }
  .l-footer__company .footer-list__item, .l-footer__working .footer-list__item, .l-footer__recruit .footer-list__item {
    margin-bottom: 2rem;
  }
  .l-footer__company .footer-list li, .l-footer__working .footer-list li, .l-footer__recruit .footer-list li {
    margin-bottom: 1.5rem;
  }
  .l-footer__company .footer-list li a::before, .l-footer__working .footer-list li a::before, .l-footer__recruit .footer-list li a::before {
    content: "・";
  }
  .l-footer__company {
    border-top: 1px solid var(--border-color);
    order: 1;
  }
  .l-footer__working {
    order: 2;
  }
  .l-footer__recruit {
    order: 3;
    margin-bottom: 2rem;
  }
  .l-footer__caption {
    position: relative;
    padding-right: 1.5rem;
    margin-bottom: 0;
    cursor: pointer;
  }
  .l-footer__caption::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
  }
  .l-footer__caption.is-open::after {
    content: "-";
  }
  .l-footer__copyright {
    line-height: 1.7;
  }
}
.l-header {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  margin-bottom: 2rem;
}
.l-header__main {
  width: 200px;
}
.l-header__side {
  display: flex;
  align-items: center;
}
.l-header__menu {
  display: flex;
  align-items: first baseline;
}

@media (max-width: 768px) {
  .l-header {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  .l-header__menu {
    display: none;
    align-items: center;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10;
    height: 100vh;
    padding-top: 4rem;
  }
  .l-header__menu.is-active {
    display: flex;
  }
}
.header-action {
  margin-left: 2rem;
}
.header-action .btn {
  padding: 0.25rem 0.75rem;
}
@media (max-width: 768px) {
  .header-action {
    margin-left: 0;
    margin-top: 1rem;
  }
}

.l-main__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 768px) {
  .l-main__inner {
    width: 100%;
    margin: 0;
    padding: 0 1rem;
    box-sizing: border-box;
  }
}

.alert {
  border: 1px solid transparent;
  border-radius: 0.375rem;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  position: relative;
  padding: 1rem 1.25rem;
}
.alert-success {
  background-color: color-mix(in srgb, #fff 75%, var(--success-color));
  border-color: var(--success-color);
  color: color-mix(in srgb, #000 50%, var(--success-color));
}
.alert-success .alert-message__item {
  color: var(--success-color);
}
.alert-danger {
  background-color: color-mix(in srgb, #fff 75%, var(--danger-color));
  border-color: var(--danger-color);
  color: color-mix(in srgb, #000 50%, var(--danger-color));
}
.alert-danger .alert-message__item {
  color: var(--danger-color);
}
.alert-warning {
  background-color: color-mix(in srgb, #fff 75%, var(--warning-color));
  border-color: var(--warning-color);
  color: color-mix(in srgb, #000 50%, var(--warning-color));
}
.alert-warning .alert-message__item {
  color: var(--warning-color);
}
.alert.alert-dismissible {
  padding-right: 3.5rem;
}
.alert.alert-dismissible .btn-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  padding: 0;
  background: none;
  border: none;
  font-size: 1.25rem;
  line-height: 1;
  color: inherit;
  opacity: 0.6;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.alert.alert-dismissible .btn-close:hover {
  opacity: 1;
}

.alert-message {
  margin: 0;
  padding-left: 1.25rem;
  list-style-type: disc;
}
.alert-message__item {
  color: var(--text-color);
  margin-bottom: 0.25rem;
  line-height: 1.7;
}

.page-content, .article__body {
  counter-reset: number 0;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .page-content, .article__body {
    margin-bottom: 2rem;
  }
}
.page-content p, .article__body p {
  margin-bottom: 2rem;
  line-height: 2;
}
.page-content p:last-child, .article__body p:last-child {
  margin-bottom: 0;
}
.page-content h1, .article__body h1,
.page-content h2,
.article__body h2,
.page-content h3,
.article__body h3,
.page-content h4,
.article__body h4,
.page-content h5,
.article__body h5,
.page-content h6,
.article__body h6 {
  font-weight: 700;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .page-content h1, .article__body h1,
  .page-content h2,
  .article__body h2,
  .page-content h3,
  .article__body h3,
  .page-content h4,
  .article__body h4,
  .page-content h5,
  .article__body h5,
  .page-content h6,
  .article__body h6 {
    line-height: 1.4;
  }
}
.page-content h1, .article__body h1 {
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  .page-content h1, .article__body h1 {
    font-size: 2rem;
  }
}
.page-content h2, .article__body h2 {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .page-content h2, .article__body h2 {
    font-size: 1.75rem;
  }
}
.page-content h3, .article__body h3 {
  font-size: 1.75rem;
}
@media (max-width: 768px) {
  .page-content h3, .article__body h3 {
    font-size: 1.5rem;
  }
}
.page-content h4, .article__body h4 {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .page-content h4, .article__body h4 {
    font-size: 1.25rem;
  }
}
.page-content h5, .article__body h5 {
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .page-content h5, .article__body h5 {
    font-size: 1rem;
  }
}
.page-content h6, .article__body h6 {
  font-size: 1rem;
}
.page-content ul, .article__body ul,
.page-content ol,
.article__body ol {
  margin-bottom: 2rem;
  padding-left: 2rem;
}
.page-content li, .article__body li {
  margin-bottom: 1rem;
}
.page-content blockquote, .article__body blockquote {
  padding-left: 1rem;
  margin-bottom: 2rem;
  border-left: 4px solid #cccccc;
  color: var(--sub-text-color);
  font-style: italic;
  line-height: 1.7;
}
.page-content blockquote:last-child, .article__body blockquote:last-child {
  margin-bottom: 0;
}
.page-content table, .article__body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}
.page-content table:last-child, .article__body table:last-child {
  margin-bottom: 0;
}
.page-content th, .article__body th,
.page-content td,
.article__body td {
  padding: 1rem;
  border: 1px solid #cccccc;
}
.page-content th, .article__body th {
  text-align: center;
}
.page-content thead, .article__body thead {
  background-color: #f7f7f7;
  font-weight: 600;
}
.page-content img, .article__body img {
  max-width: 100%;
}
.page-content figure, .article__body figure {
  margin-bottom: 2rem;
}
.page-content figure:last-child, .article__body figure:last-child {
  margin-bottom: 0;
}
.page-content pre, .article__body pre,
.page-content code,
.article__body code {
  font-family: SFMono-Regular, Consolas, monospace;
  font-size: 0.9rem;
  background: #f6f6f6;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}
.page-content pre, .article__body pre {
  overflow-x: auto;
  margin-bottom: 2rem;
}
.page-content pre:last-child, .article__body pre:last-child {
  margin-bottom: 0;
}
.page-content iframe, .article__body iframe {
  max-width: 100%;
  display: block;
}
.page-content figcaption, .article__body figcaption {
  font-size: 0.875rem;
  color: #666;
}
.page-content .wp-block-media-text, .article__body .wp-block-media-text,
.page-content .wp-block-cover,
.article__body .wp-block-cover {
  margin-bottom: 2rem;
}
.page-content .wp-block-media-text:last-child, .article__body .wp-block-media-text:last-child,
.page-content .wp-block-cover:last-child,
.article__body .wp-block-cover:last-child {
  margin-bottom: 0;
}
.page-content .wp-block-media-text p:last-child, .article__body .wp-block-media-text p:last-child,
.page-content .wp-block-cover p:last-child,
.article__body .wp-block-cover p:last-child {
  margin-bottom: 0;
}

.article__header {
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .article__header {
    margin-bottom: 2rem;
  }
}
.article__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}
.article__title {
  font-size: 2rem;
  line-height: 1.4;
}
.article__figure {
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .article__figure {
    margin-bottom: 2rem;
  }
}
.article__figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.article__body {
  margin-bottom: 0;
}
.article__footer {
  border: 1px solid var(--border-color);
  display: flex;
  padding: 1rem;
  gap: 1rem;
}
.article__avatar {
  overflow: hidden;
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 80px;
  flex-shrink: 0;
}
.article__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.article__avatar:hover img {
  transform: scale(1.1);
}
.article__profile-name {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.article__profile-desc {
  font-size: 0.875rem;
  line-height: 1.7;
}

.author-block {
  border: 1px solid var(--border-color);
  display: flex;
  align-items: middle;
  gap: 2rem;
  padding: 1rem;
}
.author-block__figure {
  width: 60px;
  height: 60px;
  margin-bottom: 0 !important;
}
.author-block__figure img {
  width: 60px !important;
  height: 60px !important;
  border-radius: 60px;
  object-fit: cover;
}
.author-block__body {
  flex: 1;
}
.author-block__title {
  margin: 0 !important;
}
.author-block__description {
  margin: 0 !important;
}

.page-content .author-block {
  margin-bottom: 2rem;
}
.page-content .author-block:last-child {
  margin-bottom: 0;
}

.back-to-top {
  width: 50px;
  height: 50px;
  display: none;
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--dark-color);
  border: none;
  border-radius: 50px;
  color: #fff;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1.5rem;
  z-index: 1000;
}
.back-to-top.visible {
  display: block;
}
.back-to-top:hover {
  text-decoration: none;
}

.badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.375rem;
  user-select: none;
}
.badge.badge-primary {
  background-color: #235494;
  color: #fff;
}
.badge.badge-secondary {
  background-color: #7d7d7d;
  color: #fff;
}
.badge.badge-success {
  background-color: #2e7d5f;
  color: #fff;
}
.badge.badge-danger {
  background-color: #d64545;
  color: #fff;
}
.badge.badge-warning {
  background-color: #ff9100;
  color: #fff;
}
.badge.badge-info {
  background-color: #0073aa;
  color: #fff;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb-wrap {
  margin-bottom: 3rem;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  color: var(--text-color);
  font-size: 0.875rem;
}
.breadcrumb__item:not(:last-child)::after {
  content: ">";
  margin: 0 0.5rem;
  color: var(--text-color);
}
.breadcrumb__item a {
  color: var(--link-color);
  text-decoration: none;
}
.breadcrumb__item a:hover {
  color: var(--link-hover-color);
  text-decoration: underline;
}
.breadcrumb__item span {
  display: inline-block;
}

@media (max-width: 768px) {
  .breadcrumb {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .breadcrumb-wrap {
    margin-bottom: 2rem;
  }
  .breadcrumb__item {
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .breadcrumb__item:not(:last-child)::after {
    margin: 0 0.3rem;
  }
  .breadcrumb__item a,
  .breadcrumb__item span {
    display: inline-block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.l-container__main .breadcrumb {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.btn, .recruit-entry__button, .form-action__submit, .form-action__back {
  display: inline-block;
  border-radius: 1000px;
  box-sizing: border-box;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  line-height: normal;
  text-align: center;
  text-decoration: none;
  border: none;
  background: none;
  color: inherit;
  white-space: nowrap;
  transition: 0.4s;
}
.btn:disabled, .recruit-entry__button:disabled, .form-action__submit:disabled, .form-action__back:disabled,
.btn [disabled],
.recruit-entry__button [disabled],
.form-action__submit [disabled],
.form-action__back [disabled] {
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}

.btn-sm {
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem;
}

.btn-lg {
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
}

.btn-primary, .recruit-entry__button {
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  color: #fff;
}
.btn-primary:hover, .recruit-entry__button:hover, .btn-primary.is-active, .is-active.recruit-entry__button {
  background: var(--light-color);
  color: var(--primary-color);
}

.btn-secondary {
  background: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  color: #fff;
}
.btn-secondary:hover, .btn-secondary.is-active {
  background: var(--light-color);
  color: var(--secondary-color);
}

.btn-more {
  background: #fff;
  border: 1px solid var(--link-color);
  border-radius: 4px;
  color: var(--primary-color);
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.btn-more:hover, .btn-more.is-active {
  color: #fff;
}
.btn-more::after {
  background: var(--primary-color);
  border-radius: 50%;
  content: "";
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 100%;
  height: 0;
  z-index: -1;
  transform: translateY(-50%) scale(0.1);
  transition: opacity 0.5s, transform 0s;
  transition-delay: 0s, 0.4s;
}
.btn-more:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  transition-delay: 0s;
  transition: opacity 0.4s, transform 0.3s ease-in-out;
}

.btn-gray {
  background: #808080;
  border: 2px solid #808080;
  color: #fff;
}
.btn-gray:hover, .btn-gray.is-active {
  background: #fff;
  color: #808080;
}

.btn-red {
  background: #d64545;
  border: 2px solid #d64545;
  color: #fff;
}
.btn-red:hover, .btn-red.is-active {
  background: #fff;
  color: #d64545;
}

.btn-blue {
  background: #235494;
  border: 2px solid #235494;
  color: #fff;
}
.btn-blue:hover, .btn-blue.is-active {
  background: #fff;
  color: #235494;
}

.btn-green {
  background: #2e7d5f;
  border: 2px solid #2e7d5f;
  color: #fff;
}
.btn-green:hover, .btn-green.is-active {
  background: #fff;
  color: #2e7d5f;
}

.btn-orange {
  background: #ff9100;
  border: 2px solid #ff9100;
  color: #fff;
}
.btn-orange:hover, .btn-orange.is-active {
  background: #fff;
  color: #ff9100;
}

.btn-group {
  display: flex;
  align-items: center;
}
.btn-group--end {
  justify-content: end;
}
.btn-group__row {
  margin-right: 1rem;
}
.btn-group__row:last-child {
  margin-right: 0;
}

.category-tabs {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .category-tabs-wrapper {
    position: relative;
  }
  .category-tabs-wrapper::before, .category-tabs-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 2rem;
    height: 100%;
    pointer-events: none;
    z-index: 1;
  }
  .category-tabs-wrapper::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
  }
  .category-tabs-wrapper::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
  }
  .category-tabs {
    display: flex;
    overflow-x: auto;
    justify-content: flex-start;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }
  .category-tabs__button {
    min-width: auto;
    flex: 0 0 auto;
  }
}
.color-box {
  padding: 20px;
  box-sizing: border-box;
  margin-bottom: 2rem;
}
.color-box.has-border-radius {
  border-radius: 4px;
}
.color-box.is-gray {
  background: color-mix(in srgb, #808080 20%, #fff);
}
.color-box.is-gray.has-border {
  border: 1px solid #808080;
}
.color-box.is-red {
  background: color-mix(in srgb, #d64545 20%, #fff);
}
.color-box.is-red.has-border {
  border: 1px solid #d64545;
}
.color-box.is-blue {
  background: color-mix(in srgb, #235494 20%, #fff);
}
.color-box.is-blue.has-border {
  border: 1px solid #235494;
}
.color-box.is-green {
  background: color-mix(in srgb, #2e7d5f 20%, #fff);
}
.color-box.is-green.has-border {
  border: 1px solid #2e7d5f;
}
.color-box.is-orange {
  background: color-mix(in srgb, #ff9100 20%, #fff);
}
.color-box.is-orange.has-border {
  border: 1px solid #ff9100;
}

.content-box {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 2rem;
  margin-bottom: 3rem;
}
.content-box--reverse {
  flex-direction: row-reverse;
}
.content-box__body {
  flex: 1;
}
.content-box__title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.content-box__image {
  width: 400px;
}
.content-box__image img {
  max-width: 100%;
}
.content-box__image figcaption {
  display: block;
  margin-top: 1rem;
  text-align: center;
}

.data-table {
  width: 100%;
  border-color: var(--border-color) !important;
  border-collapse: collapse;
  color: var(--text-color);
  overflow-x: visible;
}
.data-table td {
  box-sizing: border-box;
  line-height: 1.7;
  padding: 0.75rem;
  vertical-align: top;
}
.data-table tr td:first-child {
  background-color: #e9ecef;
  color: var(--text-color);
  font-weight: 500;
  vertical-align: middle;
  width: 25%;
}
.data-table tr td:first-child.has-text-align-left {
  text-align: left !important;
}
.data-table tr td:first-child.has-text-align-center {
  text-align: center !important;
}
.data-table tr td:first-child.has-text-align-right {
  text-align: right !important;
}
.data-table tr td:last-child {
  background-color: var(--background-color);
  color: var(--text-color);
  width: 75%;
}

@media screen and (max-width: 768px) {
  .data-table {
    border-top: 1px solid var(--border-color);
  }
  .data-table tr {
    display: block;
  }
  .data-table tr td:first-child,
  .data-table tr td:last-child {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    border-top: none !important;
    box-sizing: border-box;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }
}
.entry-block {
  width: 100vw;
  background-color: var(--primary-color);
  margin-left: calc(-50vw + 50%);
  margin-bottom: 3rem;
}
.entry-block__link {
  display: inline-flex;
  width: 100%;
  font-size: 3rem;
  color: #fff;
  padding: 3rem;
  text-align: center;
  transition: color 0.3s ease;
  position: relative;
  left: 40%;
}
.entry-block__link::after {
  content: "→";
  margin-left: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #fff;
  color: var(--primary-color);
  font-size: 24px;
  font-weight: bold;
  line-height: 48px;
  margin-top: 5px;
  transition: all 0.3s ease;
}
.entry-block__link:hover {
  color: #fff;
}

.entry-block__link:hover::after {
  background-color: var(--accent-color);
  color: #fff;
}

.faq__title {
  position: relative;
  border: none;
  box-sizing: border-box;
  display: block;
  list-style: none;
  width: 100%;
  cursor: pointer;
  padding: 0 1rem;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}
@media (max-width: 768px) {
  .faq__title {
    padding: 0 2rem 0 0;
  }
}
.faq__title::before {
  content: "Q";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  background: var(--primary-color);
  border-radius: 4px;
  color: #fff;
  padding: 0.25rem 0.5rem;
  margin-right: 1rem;
}
.faq__title::after {
  content: "+";
  position: absolute;
  top: calc(50% - 0.5em);
  right: 20px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  padding: 0;
  pointer-events: none;
}
@media (max-width: 768px) {
  .faq__title::after {
    right: 0;
  }
}
.faq__content {
  padding: 0 1rem;
}
.faq__content::before {
  content: "A";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  background: #fff;
  border: 1px solid var(--primary-color);
  border-radius: 4px;
  color: var(--primary-color);
  padding: 0.25rem 0.5rem;
  margin-right: 1rem;
}

summary.faq__title::-webkit-details-marker {
  display: none;
}

.faq::details-content {
  opacity: 0;
  block-size: 0;
  transition: 0.5s;
  transition-property: display, opacity, block-size, padding;
  transition-behavior: allow-discrete;
  line-height: 2;
}

.faq__content > *:first-of-type {
  margin-top: 0;
}

.faq__content > *:last-of-type {
  margin-bottom: 0;
}

.faq[open]::details-content {
  opacity: 1;
  block-size: auto;
  block-size: calc-size(auto, size);
}

.faq[open] .faq__content {
  padding: 1rem;
}
@media (max-width: 768px) {
  .faq[open] .faq__content {
    padding: 1rem 0;
  }
}

.faq[open] .faq__title:after {
  content: "-";
}

.faq-group .faq {
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
}
.faq-group .faq:first-child {
  border-top: 1px solid var(--border-color);
}

.feature-block {
  gap: 2rem !important;
}
.feature-block .wp-block-media-text__content {
  margin: 0 !important;
  padding: 0 !important;
}
.feature-block .wp-block-media-text__content .wp-block-heading {
  margin-top: 0 !important;
  margin-bottom: 2rem !important;
}

.fill-hover {
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease-in-out;
  z-index: 1;
}
.fill-hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #f5f5f5;
  transition: width 0.4s ease-in-out;
  z-index: -1;
}
.fill-hover:hover {
  color: #fff;
}
.fill-hover:hover::before {
  width: 100%;
}

.footer-list {
  list-style: none;
}
.footer-list li {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.footer-list li:last-child {
  margin-bottom: 0;
}
.footer-list li a {
  color: var(--footer-text-color);
}
.footer-list li a:hover {
  color: none;
  opacity: 0.7;
}

.form {
  background-color: var(--sub-background-color);
  padding: 2rem;
  margin-bottom: 3rem;
}
.form__row {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 2rem;
}
.form__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 25%;
}
.form__label-name {
  font-size: 1rem;
  font-weight: 700;
}
.form__label-rule {
  border-radius: 4px;
  display: block;
  font-size: 0.875rem;
  color: #fff;
  padding: 0.25rem;
  text-align: center;
}
.form__label-rule--required {
  background-color: var(--danger-color);
}
.form__label-rule--optional {
  background-color: var(--secondary-color);
}
.form__input {
  width: calc(75% - 2rem);
  margin-left: 2rem;
}
.form__description {
  line-height: 1.7;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .form {
    margin-bottom: 2rem;
    padding: 1rem;
  }
  .form__row {
    display: block;
  }
  .form__label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 1rem;
  }
  .form__label-rule {
    width: 60px;
  }
  .form__input {
    width: 100%;
    margin-left: 0;
  }
  .form__description {
    margin-bottom: 1rem;
  }
}
.form-control, .input-email, .input-tel, .input-number, .form-address__city, .form-address__town, .form-address__building, .form-zip__input, .form-name__sei, .form-name__mei, .form-salary__input {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  color: var(--text-color);
  background-color: #fff;
  border: 1px solid #cccccc;
  border-radius: 4px;
  appearance: none;
  box-sizing: border-box;
}
.form-control:focus, .input-email:focus, .input-tel:focus, .input-number:focus, .form-address__city:focus, .form-address__town:focus, .form-address__building:focus, .form-zip__input:focus, .form-name__sei:focus, .form-name__mei:focus, .form-salary__input:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}
.form-control:disabled, .input-email:disabled, .input-tel:disabled, .input-number:disabled, .form-address__city:disabled, .form-address__town:disabled, .form-address__building:disabled, .form-zip__input:disabled, .form-name__sei:disabled, .form-name__mei:disabled, .form-salary__input:disabled {
  background-color: #e9ecef;
  cursor: not-allowed;
}
.form-control--sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}
.form-control--lg {
  padding: 0.75rem 1rem;
  font-size: 1.125rem;
}

textarea.form-control, textarea.input-email, textarea.input-tel, textarea.input-number, textarea.form-address__city, textarea.form-address__town, textarea.form-address__building, textarea.form-zip__input, textarea.form-name__sei, textarea.form-name__mei, textarea.form-salary__input {
  line-height: 1.7;
}

.form-check {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  margin-right: 0.5rem;
}
.form-check--inline {
  display: inline-flex;
}
.form-check__input {
  font-size: 1rem;
  margin-right: 0.25rem;
}
.form-check__label {
  cursor: pointer;
}

.form-select, .form-address__pref, .form-date select, .form-salary__select {
  width: 100%;
  padding: 0.875rem;
  font-size: 1rem;
  border: 1px solid #cccccc;
  border-radius: 4px;
  box-sizing: border-box;
}
.form-select:focus, .form-address__pref:focus, .form-date select:focus, .form-salary__select:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}

.form-salary {
  display: flex;
  align-items: center;
}
.form-salary__select {
  width: auto;
}
.form-salary__input {
  width: 120px;
  margin: 0 0.5rem;
}
.form-salary__label {
  font-size: 1rem;
}

.form-name:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.form-name__row {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom-width: 1px;
  border-bottom-style: dashed;
  border-bottom-color: #cccccc;
}
.form-name__row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.form-name__label {
  width: 50px;
}
.form-name__field {
  padding-right: 1rem;
}
.form-name__field:last-child {
  padding-right: 0;
}
.form-name__sei, .form-name__mei {
  width: 150px;
}

@media (max-width: 768px) {
  .form-name:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  .form-name__row {
    display: block;
  }
  .form-name__label {
    width: atuo;
    margin-bottom: 0.5rem;
  }
  .form-name__field {
    padding-right: 0;
    margin-bottom: 0.5rem;
  }
  .form-name__field:last-child {
    margin-bottom: 0;
  }
  .form-name__sei, .form-name__mei {
    width: 100%;
  }
}
.form-date select {
  vertical-align: middle;
  width: auto;
}
.form-date label {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.form-date label:last-child {
  margin-right: 0;
}

.form-zip {
  display: flex;
  align-items: center;
}
.form-zip__mark {
  margin-right: 0.5rem;
}
.form-zip__input {
  width: 120px;
  margin-right: 0.5rem;
}

/* 住所入力フォーム */
.form-address {
  width: 100%;
}
.form-address__row {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed #cccccc;
  box-sizing: border-box;
  width: 100%;
}
.form-address__row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.form-address__label {
  width: 100px;
  margin-right: 1rem;
}
.form-address__field {
  flex: 1;
}
@media (max-width: 768px) {
  .form-address__row {
    display: block;
  }
  .form-address__label {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .form-address__city, .form-address__town, .form-address__building {
    width: 100%;
  }
}
.form-children {
  width: 100%;
}
.form-children__row {
  margin-bottom: 1rem;
}
.form-children__row:last-child {
  margin-bottom: 0;
}
.form-children__title {
  background-color: var(--sub-text-color);
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
}

.form-file__input {
  display: none;
}
.form-file__label {
  display: inline-block;
  background-color: #e9ecef;
  padding: 10px;
  margin-right: 10px;
  cursor: pointer;
}
.form-file__preview {
  display: inline-block;
  border: none;
  width: 300px;
}

@media (max-width: 768px) {
  .form-file__input {
    display: none;
  }
  .form-file__label {
    display: block;
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .form-file__preview {
    display: block;
    width: 100%;
  }
}
.form-action {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.form-action__submit, .form-action__back {
  padding: 1rem;
  transition: 0.4s;
}
.form-action__submit {
  background: var(--primary-color);
  color: var(--light-color);
  width: 300px;
}
.form-action__submit:hover, .form-action__submit.is-active {
  background: color-mix(in srgb, var(--primary-color) 75%, #fff);
}
.form-action__back {
  background: var(--secondary-color);
  color: var(--light-color);
  width: 150px;
}
.form-action__back:hover, .form-action__back.is-active {
  background: color-mix(in srgb, var(--secondary-color) 75%, #fff);
}

@media (max-width: 768px) {
  .form-action {
    display: block;
  }
  .form-action__submit {
    width: 100%;
    margin-bottom: 1rem;
  }
  .form-action__back {
    width: 100%;
  }
}
.gnav__menu {
  display: inline-flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.gnav li {
  margin-right: 2rem;
  position: relative;
}
.gnav li:last-child {
  margin-right: 0;
}
.gnav a {
  background-image: linear-gradient(var(--link-hover-color), var(--link-hover-color));
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 1px;
  transition: background-size 0.3s;
  font-weight: bold;
  color: var(--text-color);
  display: block;
  padding-bottom: 0.5rem;
}
.gnav a:hover {
  background-position: bottom left;
  background-size: 100% 2px;
}
@media (max-width: 768px) {
  .gnav__menu {
    display: block;
  }
  .gnav li {
    border: none;
    padding: 1rem;
    margin: 0;
    text-align: center;
  }
  .gnav a {
    background-image: linear-gradient(#fff, #fff);
    color: #fff;
  }
  .gnav a:hover {
    color: #fff;
  }
}

.google-map {
  width: 100%;
  margin-bottom: 3rem;
}
.google-map iframe {
  width: 100%;
  height: 450px;
}
@media (max-width: 768px) {
  .google-map iframe {
    height: 350px;
  }
}

.hamburger-icon {
  display: none;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  position: relative;
  z-index: 10;
}
.hamburger-icon__bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 4px auto;
  background-color: var(--text-color);
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .hamburger-icon {
    display: block;
    position: absolute;
    right: 1rem;
    z-index: 100;
  }
  .hamburger-icon.is-active .hamburger-icon__bar {
    background-color: #fff;
  }
  .hamburger-icon.is-active .hamburger-icon__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger-icon.is-active .hamburger-icon__bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger-icon.is-active .hamburger-icon__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}
.heading-box {
  box-sizing: border-box;
  margin-bottom: 2rem;
}
.heading-box__title {
  font-size: 1rem;
  padding: 0.5rem 1rem;
  color: #fff;
}
.heading-box__content {
  background-color: #fff;
  padding: 1rem !important;
}
.heading-box.is-gray .heading-box__title {
  border: 1px solid #808080;
  background-color: #808080;
}
.heading-box.is-gray .heading-box__content {
  border: 1px solid #808080;
}
.heading-box.is-red .heading-box__title {
  border: 1px solid #d64545;
  background-color: #d64545;
}
.heading-box.is-red .heading-box__content {
  border: 1px solid #d64545;
}
.heading-box.is-blue .heading-box__title {
  border: 1px solid #235494;
  background-color: #235494;
}
.heading-box.is-blue .heading-box__content {
  border: 1px solid #235494;
}
.heading-box.is-green .heading-box__title {
  border: 1px solid #2e7d5f;
  background-color: #2e7d5f;
}
.heading-box.is-green .heading-box__content {
  border: 1px solid #2e7d5f;
}
.heading-box.is-orange .heading-box__title {
  border: 1px solid #ff9100;
  background-color: #ff9100;
}
.heading-box.is-orange .heading-box__content {
  border: 1px solid #ff9100;
}
.heading-box.has-border-radius .heading-box__title {
  border-radius: 10px 10px 0 0;
}
.heading-box.has-border-radius .heading-box__content {
  border-radius: 0 0 10px 10px;
}

.heading-frame {
  border-radius: 4px;
  position: relative;
  padding: 1rem;
  margin-bottom: 2rem;
}
.heading-frame__title {
  position: absolute;
  display: inline-block;
  top: -12px;
  left: 10px;
  padding: 0 10px;
  line-height: 1;
  background-color: #fff;
  font-size: 1rem;
  font-weight: 700;
}
.heading-frame.is-gray {
  border: 3px solid #808080;
}
.heading-frame.is-gray .heading-frame__title {
  color: #808080;
}
.heading-frame.is-red {
  border: 3px solid #d64545;
}
.heading-frame.is-red .heading-frame__title {
  color: #d64545;
}
.heading-frame.is-blue {
  border: 3px solid #235494;
}
.heading-frame.is-blue .heading-frame__title {
  color: #235494;
}
.heading-frame.is-green {
  border: 3px solid #2e7d5f;
}
.heading-frame.is-green .heading-frame__title {
  color: #2e7d5f;
}
.heading-frame.is-orange {
  border: 3px solid #ff9100;
}
.heading-frame.is-orange .heading-frame__title {
  color: #ff9100;
}

.hero {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 540px;
  object-fit: cover;
  margin-bottom: 3rem;
}
.hero__image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fadeInZoom 1.2s ease-out 0s forwards;
}
.hero__content {
  position: absolute;
  bottom: 48px;
  left: 24px;
  z-index: 1;
  animation: fadeUp 1s ease-out 0.8s both;
}
.hero__message {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  position: relative;
  display: inline-block;
  opacity: 0;
  animation: fadeInText 0.6s ease-out 1.2s forwards;
}
.hero__message::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15em;
  height: 0.5em;
  width: 100%;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  z-index: -1;
  animation: markerReveal 0.6s ease-out 1.8s forwards;
}

.hero.is-before-load .hero__image,
.hero.is-before-load .hero__content,
.hero.is-before-load .hero__message {
  animation: none !important;
  opacity: 0;
}

@media (max-width: 768px) {
  .hero {
    width: 100%;
    height: 270px;
    margin-bottom: 2rem;
  }
  .hero__content {
    bottom: 24px;
    left: 24px;
  }
  .hero__message {
    font-size: 1.5rem;
  }
}
@keyframes fadeInZoom {
  from {
    opacity: 0;
    transform: scale(1);
  }
  to {
    opacity: 1;
    transform: scale(1.05);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInText {
  to {
    opacity: 1;
  }
}
@keyframes markerReveal {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.image-fill-block {
  gap: 2rem !important;
}
.image-fill-block .wp-block-media-text__content {
  margin: 0 !important;
  padding: 0 !important;
}
.image-fill-block .wp-block-media-text__content .wp-block-heading {
  margin-top: 0 !important;
  margin-bottom: 2rem !important;
}

.input-required {
  color: #fff;
  background-color: var(--danger-color);
}

.input-any {
  color: #fff;
  background-color: var(--success-color);
}

.input-required,
.input-any {
  font-size: 0.875rem;
  padding: 0.25rem;
  float: right;
}

.input-example {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.input-hint {
  border: 1px dotted #cccccc;
  background-color: #f5f5f5;
  padding: 0.5rem;
  margin-bottom: 1rem;
}

.input-rule {
  font-size: 0.875rem;
  margin-left: 0.5rem;
}

.input-front {
  margin-right: 0.5rem;
}

.input-back {
  margin-left: 0.5rem;
}

.input-separator {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.input-tel {
  width: 200px;
}
@media (max-width: 768px) {
  .input-tel {
    width: 100%;
  }
}

.input-number {
  width: 100px;
}

.input-txtcount {
  margin-top: 1rem;
}
.input-txtcount__number {
  color: var(--text-color);
}
.input-txtcount__number.is-over {
  color: var(--danger-color);
}
.input-txtcount__separator {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.input-txtcount__limit {
  font-weight: bold;
}

.interview-block__title {
  color: var(--primary-color);
  font-size: 1.5rem !important;
}
.interview-block__num {
  background-color: var(--primary-color);
  border-radius: 100px;
  color: #fff;
  cursor: text;
  display: inline-block;
  font-size: 1.25rem;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.25rem;
  padding: 0.25rem 1rem;
  margin-right: 1rem;
}

.page-content .interview-block {
  margin-bottom: 2rem;
}
.page-content .interview-block:last-child {
  margin-bottom: 0;
}

.lead {
  line-height: 1.7;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .lead {
    margin-bottom: 2rem;
  }
}

.list-group {
  border: 1px solid #cccccc;
}
.list-group__item {
  border-bottom: 1px solid #cccccc;
  list-style: none;
}
.list-group__item:last-child {
  border-bottom: none;
}
.list-group__link {
  color: var(--text-color);
  display: block;
  padding: 1rem;
}
.list-group__link:hover {
  background-color: #f5f5f5;
  color: var(--link-hover-color);
}

.loading {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: var(--loading-color);
  top: 0;
  left: 0;
  z-index: 5000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 1s ease;
}

.loading-message {
  font-size: 1.5rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  z-index: 9999;
  color: #fff;
  opacity: 0;
  transition: opacity 0.8s ease;
  visibility: hidden;
}
.loading-message.visible {
  opacity: 1;
  visibility: visible;
}

.loading-bar {
  width: 200px;
  height: 4px;
  background: #444;
  overflow: hidden;
  border-radius: 2px;
  margin-top: 20px;
}
.loading-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--accent-color);
  animation: loading-bar 1.5s linear forwards;
}

@keyframes loading-bar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.maker-yellow {
  background-color: #FFF3B0 !important;
}

.line-maker-yellow {
  background-image: linear-gradient(to bottom, transparent 60%, #FFF3B0 60%);
}

.maker-pink {
  background-color: #FFD6E0 !important;
}

.line-maker-pink {
  background-image: linear-gradient(to bottom, transparent 60%, #FFD6E0 60%);
}

.maker-green {
  background-color: #B7E4C7 !important;
}

.line-maker-green {
  background-image: linear-gradient(to bottom, transparent 60%, #B7E4C7 60%);
}

.maker-blue {
  background-color: #BFD8F2 !important;
}

.line-maker-blue {
  background-image: linear-gradient(to bottom, transparent 60%, #BFD8F2 60%);
}

.maker-gray {
  background-color: #eeeeee !important;
}

.line-maker-gray {
  background-image: linear-gradient(to bottom, transparent 60%, #eeeeee 60%);
}

.media-block {
  display: flex;
  flex-direction: row;
  align-items: start !important;
  gap: 2rem;
}
.media-block--reverse {
  flex-direction: row-reverse;
}
.media-block__figure {
  flex: 5;
  order: 1;
}
.media-block__figure img {
  width: 100%;
}
.media-block__body {
  flex: 5;
  order: 2;
}
.media-block__title {
  font-size: 2rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 2rem;
}
.media-block__content {
  line-height: 2;
}
.media-block__content p {
  margin-bottom: 1.5rem;
}
.media-block__content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .media-block {
    display: block;
    margin-bottom: 2rem;
  }
  .media-block__figure {
    order: 1;
    width: 100%;
    margin: 0 !important;
  }
  .media-block__body {
    order: 2;
    padding: 1rem;
  }
  .media-block__title {
    text-align: center;
  }
}
.media-block--dominant .media-block__figure {
  flex: 6;
}
.media-block--dominant .media-block__body {
  flex: 4;
}

.media-block--minor .media-block__figure {
  flex: 4;
}
.media-block--minor .media-block__body {
  flex: 6;
}

.media-block-list .media-block {
  margin-bottom: 3rem;
}
.media-block-list .media-block:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .media-block-list .media-block {
    margin-bottom: 2rem;
  }
}

.media {
  list-style: none;
}
.media__item {
  margin-bottom: 1rem;
}
.media__item:last-child {
  margin-bottom: 0;
}
.media__link {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 1rem;
  color: var(--text-color);
}
.media__link:hover .media__figure img {
  transform: scale(1.1);
}
.media__figure {
  overflow: hidden;
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}
.media__figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.media__figure:hover img {
  transform: scale(1.1);
}
.media__caption {
  font-size: 1rem;
  line-height: 1.7;
}

.page-header {
  margin-bottom: 3rem;
}
.page-header__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
}
.page-header__description {
  font-size: 1rem;
  margin-top: 2rem;
}
.page-header__label {
  display: block;
  color: var(--primary-color);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.page-header--compact .page-header__title {
  font-size: 2rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .page-header {
    margin-bottom: 2rem;
  }
  .page-header__title {
    font-size: 2rem;
    line-height: 1.4;
  }
}
.page-visual {
  margin-bottom: 3rem;
}
.page-visual__image {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .page-visual {
    margin-bottom: 2rem;
  }
  .page-visual__image {
    max-height: auto;
  }
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}
.pagination .page-numbers {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  color: var(--text-color);
  background-color: #f2f2f2;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
.pagination .page-numbers:hover {
  background-color: #ddd;
}
.pagination .page-numbers.current {
  background-color: var(--text-color);
  color: #fff;
  pointer-events: none;
}
.pagination .page-numbers.dots {
  background: none;
  color: #999;
  cursor: default;
}
.pagination .page-numbers.prev, .pagination .page-numbers.next {
  font-weight: bold;
}

.post-card {
  list-style: none;
  width: calc(33.3333333333% - 1rem);
}
.post-card__link {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 230px;
  color: var(--text-color);
}
.post-card__link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.post-card__link:hover img {
  transform: scale(1.1);
}
.post-card__figure {
  margin-bottom: 1rem;
  overflow: hidden;
}
.post-card__title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.post-card__info {
  display: flex;
}
.post-card__info small {
  border-right: 1px solid var(--text-color);
  display: block;
  font-size: 0.875rem;
  padding-right: 0.5rem;
  margin-right: 0.5rem;
}
.post-card__info small:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

.post-card-group {
  display: inline-flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  width: 100%;
  gap: 3rem 1rem;
}

@media (max-width: 768px) {
  .post-card {
    width: calc(50% - 1rem);
  }
}
@media (max-width: 576px) {
  .post-card {
    width: 100%;
  }
}
.recruit-block {
  width: 100%;
  margin-bottom: 3rem;
}
.recruit-block:last-child {
  margin-bottom: 0;
}
.recruit-block__link {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  box-sizing: border-box;
  gap: 2rem;
  color: var(--text-color);
}
.recruit-block__link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.recruit-block__link:hover img {
  transform: scale(1.1);
}
.recruit-block__body {
  flex: 1;
  order: 1;
}
.recruit-block__title {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.recruit-block__summary {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 1.5rem;
}
.recruit-block__table {
  border: 1px solid var(--border-color);
  box-sizing: border-box;
  width: 100%;
}
.recruit-block__table tr:nth-of-type(1) th {
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.recruit-block__table tr:nth-of-type(1) th:nth-of-type(2) {
  border-left: 1px solid var(--border-color);
}
.recruit-block__table tr:nth-of-type(1) td {
  border-bottom: 1px solid var(--border-color);
}
.recruit-block__table tr:nth-of-type(2) th {
  border-right: 1px solid var(--border-color);
}
.recruit-block__table tr:nth-of-type(2) th:nth-of-type(2) {
  border-left: 1px solid var(--border-color);
}
.recruit-block__table th {
  background-color: var(--sub-background-color);
  box-sizing: border-box;
  font-size: 0.875rem;
  padding: 0.5rem;
  width: 16%;
  vertical-align: middle;
}
.recruit-block__table td {
  box-sizing: border-box;
  font-size: 0.875rem;
  line-height: 1.4;
  padding: 0.5rem;
  width: 34%;
  vertical-align: middle;
}
.recruit-block__figure {
  width: 400px;
  overflow: hidden;
  order: 2;
}
.recruit-block__figure figcaption {
  display: block;
  margin-top: 1rem;
  text-align: center;
}
.recruit-block__figure img {
  display: block;
  width: 100%;
  height: 100%;
}

.recruit-block-list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: space-between;
  box-sizing: border-box;
  width: 100%;
  gap: 1rem;
}

@media (max-width: 768px) {
  .recruit-block {
    margin-bottom: 2rem;
  }
  .recruit-block__link {
    flex-wrap: wrap;
  }
  .recruit-block__body {
    order: 2;
    width: 100%;
  }
  .recruit-block__figure {
    order: 1;
    width: 100%;
  }
  .recruit-block__table tr, .recruit-block__table th, .recruit-block__table td {
    display: block;
    width: 100%;
  }
  .recruit-block__table tr:nth-of-type(1) th {
    border-right: 0;
    border-bottom: 1px solid var(--border-color);
  }
  .recruit-block__table tr:nth-of-type(1) th:nth-of-type(2) {
    border-left: 0;
  }
  .recruit-block__table tr:nth-of-type(1) td {
    border-bottom: 1px solid var(--border-color);
  }
  .recruit-block__table tr:nth-of-type(2) th {
    border-right: 0;
    border-bottom: 1px solid var(--border-color);
  }
  .recruit-block__table tr:nth-of-type(2) th:nth-of-type(2) {
    border-left: 0;
    border-top: 1px solid var(--border-color);
  }
}
.recruit-block-sheet {
  border: 1px solid var(--border-color);
}
.recruit-block-sheet__row {
  display: flex;
}
@media (max-width: 768px) {
  .recruit-block-sheet__row {
    display: block;
  }
  .recruit-block-sheet__row:last-child .recruit-block-sheet__col:first-child {
    border-bottom: 1px solid var(--border-color);
  }
}
.recruit-block-sheet__row:first-child .recruit-block-sheet__col {
  border-bottom: 1px solid var(--border-color);
}
.recruit-block-sheet__row .recruit-block-sheet__col:first-child .recruit-block-sheet__content {
  border-right: 1px solid var(--border-color);
}
@media (max-width: 768px) {
  .recruit-block-sheet__row .recruit-block-sheet__col:first-child .recruit-block-sheet__content {
    border-right: none;
  }
}
.recruit-block-sheet__col {
  display: flex;
  flex: 5;
}
.recruit-block-sheet__title, .recruit-block-sheet__content {
  display: block;
  font-size: 0.875rem;
  padding: 0.8rem;
}
.recruit-block-sheet__title {
  flex: 3;
  background-color: var(--sub-background-color);
}
.recruit-block-sheet__title:first-child {
  border-right: 1px solid var(--border-color);
}
.recruit-block-sheet__content {
  flex: 7;
}

.recruit-card {
  list-style: none;
  width: calc(33.3333333333% - 1rem);
}
.recruit-card__link {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 230px;
  color: var(--text-color);
}
.recruit-card__link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.recruit-card__link:hover img {
  transform: scale(1.1);
}
.recruit-card__figure {
  margin-bottom: 1rem;
  overflow: hidden;
}
.recruit-card__title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.recruit-card__info {
  display: flex;
  gap: 1rem;
}
.recruit-card__badge {
  display: block;
  background-color: var(--secondary-color);
  border-radius: 100px;
  font-size: 0.875rem;
  color: #fff;
  padding: 0.25rem 0.5rem;
}

.recruit-card-group {
  display: inline-flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  width: 100%;
  gap: 1rem;
}

@media (max-width: 768px) {
  .recruit-card {
    width: calc(50% - 1rem);
  }
}
@media (max-width: 576px) {
  .recruit-card {
    width: 100%;
  }
}
.recruit-container {
  margin-bottom: 3rem;
}
.recruit-container__title {
  border-left: 5px solid var(--primary-color);
  font-size: 2rem;
  padding: 0.25rem 0 0.5rem 1rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .recruit-container {
    margin-bottom: 2rem;
  }
  .recruit-container__title {
    margin: 0 1rem 3rem 1rem;
  }
}
/* 初期状態：非表示でちょっと下に */
.scroll-fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* 表示状態：透明度1で位置戻す */
.scroll-fadein.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.search-box {
  position: relative;
}
.search-box input.form-control {
  padding-right: 40px;
}
.search-box .btn-search {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--sub-text-color);
  cursor: pointer;
  font-size: 1rem;
  padding: 0;
  line-height: 1;
}
.search-box .btn-search i {
  pointer-events: none;
}

.section {
  margin-bottom: 3rem;
}
.section__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0;
}
.section__title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 4rem;
}
.section__footer {
  margin-top: 3rem;
  text-align: center;
}
.section--highlight {
  background-color: var(--sub-background-color);
  padding: 3rem 0;
}

@media (max-width: 768px) {
  .section {
    margin-bottom: 2rem;
  }
  .section__inner {
    width: 100%;
    box-sizing: border-box;
    padding: 0 1rem;
  }
  .section__title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
  .section--highlight {
    padding: 2rem 0;
  }
}
.site-logo {
  width: 100%;
}
.site-logo a {
  color: var(--text-color);
  font-size: 1.25rem;
}
.site-logo img {
  max-width: 300px;
  max-height: 40px;
  width: auto;
  height: auto;
}
@media (max-width: 768px) {
  .site-logo img {
    max-width: 200px;
  }
}

.showcase {
  padding: 0;
}

.showcase__wrapper,
.wp-block-columns.showcase__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.showcase__item,
.wp-block-column.showcase__item {
  background: #fff;
  border: 1px solid #cccccc;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  text-align: center;
  margin: 0;
}

.showcase__figure,
.wp-block-image.showcase__figure {
  margin: 0 auto 1rem;
}
.showcase__figure img,
.wp-block-image.showcase__figure img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.showcase__title,
.wp-block-paragraph.showcase__title {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0 0 0.5rem;
  color: var(--text-color);
}

.showcase__content,
.wp-block-paragraph.showcase__content {
  font-size: 0.875rem;
  color: var(--text-color);
  margin: 0;
  line-height: 1.7;
  text-align: left;
}

@media (max-width: 768px) {
  .showcase__wrapper,
  .wp-block-columns.showcase__wrapper {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.page-content .showcase {
  margin-bottom: 2rem;
}
.page-content .showcase:last-child {
  margin-bottom: 0;
}

.social-share {
  margin-bottom: 2rem;
}
.social-share__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 0.625rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.social-share__item {
  flex: 0 0 auto;
}
.social-share__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(0.3125rem);
  transition: transform 0.3s ease;
  position: relative;
}
.social-share__link:hover {
  color: #fff;
  transform: scale(1.1);
}
.social-share__link:hover::after {
  opacity: 1;
  visibility: visible;
}
.social-share__link--x {
  background: #000000;
}
.social-share__link--x:hover {
  background: #333333;
}
.social-share__link--facebook {
  background: #1877f2;
}
.social-share__link--facebook:hover {
  background: #145dbf;
}
.social-share__link--line {
  background: #00b900;
}
.social-share__link--line:hover {
  background: #009700;
}
.social-share__link--hatena {
  background: #00a4de;
}
.social-share__link--hatena:hover {
  background: #0086b3;
}
.social-share__link--linkedin {
  background: #0a66c2;
}
.social-share__link--linkedin:hover {
  background: #08529a;
}
.social-share__link i {
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .social-share {
    padding: 0 1rem;
  }
  .social-share__list {
    gap: 0.5rem;
  }
  .social-share__link {
    width: 2rem;
    height: 2rem;
  }
  .social-share__link i {
    font-size: 1rem;
  }
  .social-share__link::after {
    font-size: 0.625rem;
    padding: 0.25rem 0.5rem;
  }
}

.staff-card {
  list-style: none;
  width: 344px;
}
.staff-card__link {
  overflow: hidden;
  position: relative;
  color: var(--text-color);
}
.staff-card__link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.staff-card__link:hover img {
  transform: scale(1.1);
}
.staff-card__link:hover .staff-card__caption {
  opacity: 1;
  color: var(--text-color);
}
.staff-card__link:hover .staff-card__caption::before {
  transform: scaleX(1);
  transform-origin: left;
}
.staff-card__figure {
  width: 100%;
  height: 460px;
  overflow: hidden;
  position: relative;
}
.staff-card__figure figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 100;
  padding: 1rem;
  margin: 1rem;
  opacity: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  box-sizing: border-box;
}
.staff-card__figure figcaption::before {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.85);
  transition: transform 0.5s ease;
  transform: scaleX(0);
  transform-origin: right;
  z-index: -1;
}
.staff-card__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 100;
  padding: 1rem;
  margin: 1rem;
  opacity: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  box-sizing: border-box;
}
.staff-card__caption::before {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.85);
  transition: transform 0.5s ease;
  transform: scaleX(0);
  transform-origin: right;
  z-index: -1;
}
.staff-card__info {
  background-color: #fff;
  border-left: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  padding: 1rem;
  text-align: center;
}
.staff-card__name {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.staff-card__category {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.staff-card__date {
  font-size: 0.875rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .staff-card {
    width: calc(50% - 10px);
  }
  .staff-card__figure {
    height: 300px;
  }
  .staff-card .staff-card__caption {
    opacity: 1;
    color: var(--text-color);
  }
  .staff-card .staff-card__caption::before {
    transform: scaleX(1);
    transform-origin: left;
  }
}
@media (max-width: 576px) {
  .staff-card {
    width: 100%;
  }
  .staff-card__figure {
    height: auto;
  }
}
.staff-card-group {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  box-sizing: border-box;
  width: 100%;
  gap: 1rem;
}

.step-indicator {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.step-indicator.is-gray .step-indicator__item.is-active {
  background: #808080;
}
.step-indicator.is-gray .step-indicator__item.is-active:not(:last-child)::after {
  border-left-color: #808080;
}
.step-indicator.is-red .step-indicator__item.is-active {
  background: #d64545;
}
.step-indicator.is-red .step-indicator__item.is-active:not(:last-child)::after {
  border-left-color: #d64545;
}
.step-indicator.is-blue .step-indicator__item.is-active {
  background: #235494;
}
.step-indicator.is-blue .step-indicator__item.is-active:not(:last-child)::after {
  border-left-color: #235494;
}
.step-indicator.is-green .step-indicator__item.is-active {
  background: #2e7d5f;
}
.step-indicator.is-green .step-indicator__item.is-active:not(:last-child)::after {
  border-left-color: #2e7d5f;
}
.step-indicator.is-orange .step-indicator__item.is-active {
  background: #ff9100;
}
.step-indicator.is-orange .step-indicator__item.is-active:not(:last-child)::after {
  border-left-color: #ff9100;
}
.step-indicator__item {
  position: relative;
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 13px 0;
  line-height: 1.5;
  background: #f5f5f5;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.step-indicator__item:not(:last-child)::after, .step-indicator__item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  margin: auto;
  border-style: solid;
  border-width: 37px 0 37px 20px;
  border-color: transparent transparent transparent #f5f5f5;
  z-index: 2;
}
.step-indicator__item:not(:last-child)::before {
  border-left-color: #f5f5f5;
  left: calc(100% - 1px);
  z-index: 3;
}
.step-indicator__item.is-active {
  z-index: 1;
  background: var(--primary-color);
  color: #fff;
}
.step-indicator__item.is-active:not(:last-child)::after {
  border-left-color: var(--primary-color);
}
.step-indicator__item.is-active:not(:last-child)::before {
  border: none;
}
@media screen and (max-width: 768px) {
  .step-indicator__item {
    min-width: 100px;
    font-size: 11px;
    line-height: 1.4;
    padding: 10px 0;
  }
  .step-indicator__item:not(:last-child)::after, .step-indicator__item:not(:last-child)::before {
    border-width: 25px 0 25px 12px;
  }
  .step-indicator__item:not(:last-child)::before {
    left: calc(100% - 1px);
  }
}

.sticky-box {
  box-sizing: border-box;
  margin-bottom: 2rem;
  padding: 1rem !important;
}
.sticky-box.is-gray {
  border-left: 5px solid #808080;
  background: color-mix(in srgb, #808080 20%, #fff);
}
.sticky-box.is-red {
  border-left: 5px solid #d64545;
  background: color-mix(in srgb, #d64545 20%, #fff);
}
.sticky-box.is-blue {
  border-left: 5px solid #235494;
  background: color-mix(in srgb, #235494 20%, #fff);
}
.sticky-box.is-green {
  border-left: 5px solid #2e7d5f;
  background: color-mix(in srgb, #2e7d5f 20%, #fff);
}
.sticky-box.is-orange {
  border-left: 5px solid #ff9100;
  background: color-mix(in srgb, #ff9100 20%, #fff);
}

.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: max-content;
  z-index: 100;
  padding-top: 4px;
}
.sub-menu li {
  background: var(--dark-color);
  width: 100%;
  position: relative;
}
.sub-menu a {
  width: 100%;
  display: block;
  background-image: none;
  color: #fff;
  font-size: 0.875rem;
  padding: 1rem;
  text-decoration: none;
  box-sizing: border-box;
}
.sub-menu a:hover {
  background-color: #333 !important;
}

.gnav__menu li:hover > .sub-menu {
  display: block;
}

.gnav__menu li:has(.sub-menu) > a {
  background-image: none;
}

@media screen and (max-width: 768px) {
  .sub-menu {
    display: block;
    position: static;
  }
  .sub-menu li {
    text-align: left !important;
  }
  .sub-menu a {
    font-size: 0.875rem;
    padding: 0;
  }
  .sub-menu a:hover {
    background: none !important;
  }
  .sub-menu a::before {
    content: "-";
  }
}
.table {
  width: 100%;
  min-width: 600px;
  color: var(--text-color);
  border-collapse: collapse;
}
.table th,
.table td {
  padding: 0.75rem;
  border-top: 1px solid var(--border-color);
}
.table td {
  line-height: 1.7;
  vertical-align: middle;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 1px solid var(--border-color);
  background-color: #e9ecef;
  color: var(--text-color);
}
.table tbody + tbody {
  border-top: 1px solid var(--border-color);
}
.table.table-striped tbody tr:nth-of-type(odd) {
  background-color: var(--sub-background-color);
}
.table.table-hover tbody tr:hover {
  background-color: #f1f3f5;
}
.table.table-bordered {
  border: 1px solid var(--border-color);
}
.table.table-bordered th,
.table.table-bordered td {
  border: 1px solid var(--border-color);
}
.table.table-bordered thead th {
  border-bottom-width: 2px;
}
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table__col--auto {
  width: auto;
  white-space: nowrap;
}
.table__col--small {
  width: 10%;
}
.table__col--middle {
  width: 20%;
}
.table__col--large {
  width: 30%;
}
.table__col--select {
  width: 40px;
}
.table__col--action {
  width: 100px;
}
.table__col--date {
  width: 150px;
}

@media screen and (max-width: 768px) {
  .table-responsive .table td {
    white-space: nowrap;
  }
}
.table--vertical {
  width: 100%;
  overflow-x: visible;
  border: 1px solid var(--border-color);
}
.table--vertical th {
  width: 20%;
  text-align: left;
  vertical-align: top;
  background-color: #e9ecef;
  color: var(--text-color);
  padding: 0.75rem;
  border-right: 1px solid var(--border-color);
  white-space: normal;
  word-break: break-word;
}
.table--vertical td {
  width: 80%;
  vertical-align: top;
  padding: 0.75rem;
}

@media screen and (max-width: 768px) {
  .table--vertical {
    min-width: 100%;
  }
  .table--vertical tr {
    display: block;
  }
  .table--vertical tr:first-child th {
    border-top: none !important;
  }
  .table--vertical th,
  .table--vertical td {
    display: block;
    width: 100%;
    border: none;
    padding: 0.5rem 1rem;
    box-sizing: border-box;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }
  .table--vertical th {
    border-top: 1px solid var(--border-color) !important;
    border-bottom: 1px solid var(--border-color) !important;
    text-align: center;
  }
  .table--vertical td {
    background-color: #fff;
  }
}
.timeline {
  padding: 0;
  margin-bottom: 2rem;
}
.timeline.has-border {
  border: 1px solid #cccccc;
  padding: 1rem !important;
}
.timeline.is-gray .timeline__body::before {
  background: #808080;
}
.timeline.is-red .timeline__body::before {
  background: #d64545;
}
.timeline.is-blue .timeline__body::before {
  background: #235494;
}
.timeline.is-green .timeline__body::before {
  background: #2e7d5f;
}
.timeline.is-orange .timeline__body::before {
  background: #ff9100;
}
.timeline__item {
  display: flex;
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
  width: 100%;
}
.timeline__date {
  width: 150px;
  padding-top: 30px;
}
.timeline__body {
  border-left: 3px solid #cccccc;
  margin: 0 !important;
  padding-top: 20px;
  padding-left: 40px;
  flex: 1;
}
.timeline__body:before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  left: 145px;
  top: 35px;
  border-radius: 100%;
}
.timeline__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 1rem 0 !important;
}
.timeline__content {
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .timeline__item {
    border-bottom: 1px solid #cccccc;
    display: block;
    padding-bottom: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .timeline__item:last-child {
    border-bottom: none;
    margin-bottom: 0 !important;
  }
  .timeline__date {
    font-size: 0.875rem;
    padding: 0;
    margin: 0 0 1rem 0 !important;
    width: 100%;
  }
  .timeline__body {
    border-left: none;
    padding: 0 !important;
    margin: 0 !important;
  }
  .timeline__body:before {
    content: none;
  }
  .timeline__content {
    margin-bottom: 0 !important;
  }
}
.widget {
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .widget {
    margin-bottom: 1rem;
  }
}
.widget:last-child {
  margin-bottom: 0;
}
.widget__title {
  font-size: 1.25rem;
  border-bottom: 2px solid var(--text-color);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.wp-block-heading {
  box-sizing: border-box;
}
.wp-block-heading.is-style-border-vert {
  border-top: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  padding: 1rem 0;
}
.wp-block-heading.is-style-border-left {
  border-left: 4px solid var(--primary-color);
  padding: 0.5rem 1rem;
}
.wp-block-heading.is-style-border-bottom {
  border-bottom: 2px solid var(--primary-color);
  padding: 1rem 0;
}
.wp-block-heading.is-style-bg-fill {
  background-color: var(--primary-color);
  border-radius: 4px;
  color: #fff;
  padding: 1rem;
}
.wp-block-heading.is-style-bg-underline {
  background-color: var(--background-color);
  border-bottom: 2px solid var(--primary-color);
  color: var(--text-color);
  padding: 1rem;
}

.home .l-header {
  margin-bottom: 0;
}

.archive-news .l-main {
  padding-bottom: 3rem;
}
.archive-news .page-content {
  margin-bottom: 3rem;
}

.staff-profile {
  background-color: var(--sub-background-color);
  color: var(--sub-text-color);
  padding: 2rem;
  margin-bottom: 3rem;
}
.staff-profile__info {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.staff-profile__info-name, .staff-profile__info-category, .staff-profile__info-date {
  white-space: nowrap;
}
.staff-profile__info-category {
  border-left: 1px solid var(--sub-text-color);
  padding-left: 0.5rem;
  margin-left: 0.5rem;
  border-right: 1px solid var(--sub-text-color);
  padding-right: 0.5rem;
  margin-right: 0.5rem;
}
.staff-profile__biography {
  line-height: 1.7;
}

@media (max-width: 768px) {
  .staff-profile {
    padding: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .section.section--other-staff {
    margin-top: 2rem;
  }
}

.recruit-section {
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .recruit-section {
    margin-bottom: 2rem;
  }
}
.recruit-section__title {
  border-left: 4px solid var(--primary-color);
  font-size: 2rem;
  margin-bottom: 2rem;
  padding: 0.5rem 1rem;
}
@media (max-width: 768px) {
  .recruit-section__title {
    border-left: none;
    padding: 0;
    text-align: center;
  }
}
.recruit-section--requirements {
  margin-top: 3rem;
}

.recruit-entry {
  margin-bottom: 3rem;
  text-align: center;
}
.recruit-entry__button {
  font-size: 1.25rem;
  position: relative;
  width: 250px;
}
.recruit-entry__button::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  box-sizing: border-box;
}
.recruit-entry__button:hover::after {
  border-top: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
  right: 20px;
}

.recruit-table {
  border: 1px solid var(--border-color);
  box-sizing: border-box;
  width: 100%;
}
.recruit-table__row:last-child .recruit-table__label, .recruit-table__row:last-child .recruit-table__field {
  border-bottom: none;
}
.recruit-table__label, .recruit-table__field {
  border-bottom: 1px solid var(--border-color);
  box-sizing: border-box;
  padding: 1rem;
}
.recruit-table__label {
  width: 150px;
  background-color: var(--sub-background-color);
  vertical-align: middle;
  font-weight: 500;
  text-align: left;
}
.recruit-table__field {
  border-left: 1px solid var(--border-color);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .recruit-table__row:last-child .recruit-table__label {
    border-bottom: 1px solid var(--border-color);
  }
  .recruit-table__label, .recruit-table__field {
    display: block;
  }
  .recruit-table__label {
    width: 100%;
    text-align: center;
  }
  .recruit-table__field {
    width: 100%;
    border-left: none;
  }
}
.text-red {
  color: #d64545;
}

.text-blue {
  color: #235494;
}

.text-green {
  color: #2e7d5f;
}

.text-orange {
  color: #ff9100;
}

.text-gray {
  color: #808080;
}

.text-accent {
  color: #cc1464;
}

.w-0 {
  width: 0 !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.w-1 {
  width: 1rem !important;
}

.w-2 {
  width: 2rem !important;
}

.w-3 {
  width: 3rem !important;
}

.w-4 {
  width: 4rem !important;
}

.w-5 {
  width: 5rem !important;
}

.w-10 {
  width: 10rem !important;
}

.w-15 {
  width: 15rem !important;
}

.w-20 {
  width: 20rem !important;
}

.mw-0 {
  width: 0 !important;
}

.mw-25 {
  width: 25% !important;
}

.mw-50 {
  width: 50% !important;
}

.mw-75 {
  width: 75% !important;
}

.mw-100 {
  width: 100% !important;
}

.mw-auto {
  width: auto !important;
}

.mw-1 {
  width: 1rem !important;
}

.mw-2 {
  width: 2rem !important;
}

.mw-3 {
  width: 3rem !important;
}

.mw-4 {
  width: 4rem !important;
}

.mw-5 {
  width: 5rem !important;
}

.mw-10 {
  width: 10rem !important;
}

.mw-15 {
  width: 15rem !important;
}

.mw-20 {
  width: 20rem !important;
}

.h-0 {
  height: 0 !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.h-1 {
  height: 1rem !important;
}

.h-2 {
  height: 2rem !important;
}

.h-3 {
  height: 3rem !important;
}

.h-4 {
  height: 4rem !important;
}

.h-5 {
  height: 5rem !important;
}

.h-10 {
  height: 10rem !important;
}

.h-15 {
  height: 15rem !important;
}

.h-20 {
  height: 20rem !important;
}

.mh-0 {
  height: 0 !important;
}

.mh-25 {
  height: 25% !important;
}

.mh-50 {
  height: 50% !important;
}

.mh-75 {
  height: 75% !important;
}

.mh-100 {
  height: 100% !important;
}

.mh-auto {
  height: auto !important;
}

.mh-1 {
  height: 1rem !important;
}

.mh-2 {
  height: 2rem !important;
}

.mh-3 {
  height: 3rem !important;
}

.mh-4 {
  height: 4rem !important;
}

.mh-5 {
  height: 5rem !important;
}

.mh-10 {
  height: 10rem !important;
}

.mh-15 {
  height: 15rem !important;
}

.mh-20 {
  height: 20rem !important;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.ml-0 {
  margin-left: 0;
}

.mr-0 {
  margin-right: 0;
}

.ms-0 {
  margin-left: 0;
}

.me-0 {
  margin-right: 0;
}

.mx-0 {
  margin-left: 0;
  margin-right: 0;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.m-0 {
  margin: 0;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.ms-1 {
  margin-left: 0.25rem;
}

.me-1 {
  margin-right: 0.25rem;
}

.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.m-1 {
  margin: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.ms-2 {
  margin-left: 0.5rem;
}

.me-2 {
  margin-right: 0.5rem;
}

.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.m-2 {
  margin: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.ml-3 {
  margin-left: 1rem;
}

.mr-3 {
  margin-right: 1rem;
}

.ms-3 {
  margin-left: 1rem;
}

.me-3 {
  margin-right: 1rem;
}

.mx-3 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.my-3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.m-3 {
  margin: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.ml-4 {
  margin-left: 1.5rem;
}

.mr-4 {
  margin-right: 1.5rem;
}

.ms-4 {
  margin-left: 1.5rem;
}

.me-4 {
  margin-right: 1.5rem;
}

.mx-4 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.my-4 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.m-4 {
  margin: 1.5rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.ml-5 {
  margin-left: 3rem;
}

.mr-5 {
  margin-right: 3rem;
}

.ms-5 {
  margin-left: 3rem;
}

.me-5 {
  margin-right: 3rem;
}

.mx-5 {
  margin-left: 3rem;
  margin-right: 3rem;
}

.my-5 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.m-5 {
  margin: 3rem;
}

.mt-auto {
  margin-top: auto;
}

.mb-auto {
  margin-bottom: auto;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.ms-auto {
  margin-left: auto;
}

.me-auto {
  margin-right: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.m-auto {
  margin: auto;
}

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