@charset "UTF-8";
/*
Theme Name: BUEMON
Theme URI: https://buemon.com
Author: BUEMON
Description: 株式会社武右ェ門 公式サイト
Version: 1.0.0
*/
reset.css html {
  color: #000;
  background: #FFF;
}

/*
  TODO remove settings on BODY since we can't namespace it.
*/
/*
  TODO test putting a class on HEAD.
    - Fails on FF.
*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
figure {
  margin: 0;
  padding: 0;
}

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

fieldset,
img {
  border: 0;
}

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

a {
  text-decoration: none;
}

/*
  TODO think about hanlding inheritence differently, maybe letting IE6 fail a bit...
*/
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

/* to preserve line-height and selector appearance */
sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

/*to enable resizing for IE*/
input,
textarea,
select {
  *font-size: 100%;
}

/*because legend doesn't inherit in IE */
legend {
  color: #000;
}

/* YUI CSS Detection Stamp */
#yui3-css-stamp.cssreset {
  display: none;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333333;
  background-color: #ffffff;
}

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

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.7;
}

.site-main {
  padding-top: 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 2rem;
  letter-spacing: 0.1em;
  font-family: "Kohinoor Telugu", "Noto Sans CJK JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
@media (min-width: 1024px) {
  .section-title {
    font-size: 2.5rem;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Kohinoor Telugu", "Noto Sans CJK JP", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: -webkit-gradient(linear, left top, left bottom, from(#061c2d), to(rgba(6, 28, 45, 0)));
  background: linear-gradient(to bottom, #061c2d 0%, rgba(6, 28, 45, 0) 100%);
  -webkit-transition: padding 0.3s ease;
  transition: padding 0.3s ease;
}
@media (min-width: 768px) {
  .site-header.is-scrolled .site-logo__mark {
    width: 60px;
  }
  .site-header.is-scrolled .site-logo__name {
    opacity: 0;
    max-height: 0;
  }
}

.header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
  max-width: 1400px;
  margin: 0 auto;
  -webkit-transition: padding 0.3s ease;
  transition: padding 0.3s ease;
}
.is-scrolled .header-container {
  padding: 0.5rem 1rem;
}

.site-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
}
.site-logo__mark {
  width: 50px;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: width 0.3s ease, -webkit-transform 0.3s ease;
  transition: width 0.3s ease, -webkit-transform 0.3s ease;
  transition: width 0.3s ease, transform 0.3s ease;
  transition: width 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (min-width: 768px) {
  .site-logo__mark {
    width: 100px;
  }
}
.site-logo__name {
  height: auto;
  width: auto;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: opacity 0.3s ease, max-height 0.3s ease;
  transition: opacity 0.3s ease, max-height 0.3s ease;
}
@media (min-width: 768px) {
  .site-logo__name {
    max-height: 55px;
    opacity: 1;
  }
}
.site-logo--menu .site-logo__mark {
  width: 50px;
}

.menu-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  width: 44px;
  height: 44px;
  z-index: 1001;
}
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}
.menu-toggle__line {
  display: block;
  width: 28px;
  height: 2px;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.main-navigation.is-open ~ .menu-toggle {
  opacity: 0;
  pointer-events: none;
}

.main-navigation {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #061c2d;
  padding: 0;
  z-index: 1002;
  overflow-y: auto;
}
.main-navigation.is-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .main-navigation {
    display: block;
    position: static;
    width: auto;
    height: auto;
    background: none;
    padding: 0;
    overflow-y: visible;
  }
}

.menu-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 768px) {
  .menu-header {
    display: none;
  }
}

.menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  width: 44px;
  height: 44px;
  position: relative;
}
.menu-close__icon {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
}
.menu-close__icon::before, .menu-close__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
}
.menu-close__icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.menu-close__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 1.5rem 2rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .nav-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.5rem;
    padding: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .nav-menu__item {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .nav-menu__item {
    margin-bottom: 0;
    position: relative;
    text-align: left;
  }
}
.nav-menu__item--access {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}
@media (min-width: 768px) {
  .nav-menu__item--access {
    display: none;
  }
}
.nav-menu__item--access a {
  font-size: 16px !important;
  font-weight: 700 !important;
  width: 100%;
  text-align: center;
  padding: 0.5rem 0 !important;
}
.nav-menu__item--access a .access-content {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  position: relative;
  opacity: 0.7;
  -webkit-transition: opacity 0.3s ease, color 0.3s ease;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.nav-menu__item--access a .access-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 16px;
  height: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.nav-menu__item--access a .access-icon img {
  width: 100%;
  height: 100%;
  display: block;
}
.nav-menu__item--access a:hover .access-content {
  opacity: 0.7;
}
.nav-menu__item--access.current-menu-item a .access-content {
  opacity: 1 !important;
  color: #ffffff !important;
}
.nav-menu__item--access.current-menu-item a .access-icon img {
  -webkit-filter: brightness(0) saturate(100%) invert(64%) sepia(93%) saturate(1844%) hue-rotate(169deg) brightness(101%) contrast(101%);
          filter: brightness(0) saturate(100%) invert(64%) sepia(93%) saturate(1844%) hue-rotate(169deg) brightness(101%) contrast(101%);
}
.nav-menu__item a {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 500;
  display: block;
  padding: 0.5rem 0;
  position: relative;
  text-decoration: none;
  letter-spacing: 0.05em;
  -webkit-transition: color 0.3s ease, opacity 0.3s ease;
  transition: color 0.3s ease, opacity 0.3s ease;
}
@media (max-width: 767px) {
  .nav-menu__item a {
    width: 100%;
    text-align: center;
  }
  .nav-menu__item a > span {
    display: inline-block;
    position: relative;
    opacity: 0.7;
    -webkit-transition: opacity 0.3s ease, color 0.3s ease;
    transition: opacity 0.3s ease, color 0.3s ease;
  }
  .nav-menu__item a:hover > span {
    color: #37c5ff;
  }
}
@media (min-width: 768px) {
  .nav-menu__item a {
    font-size: 0.875rem;
    padding: 0.25rem 0;
    opacity: 0.7;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .nav-menu__item a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: #37c5ff;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;
  }
  .nav-menu__item a:hover {
    opacity: 1;
  }
  .nav-menu__item a:hover::after {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .nav-menu__item.current-menu-item:not(.nav-menu__item--access) a > span {
    opacity: 1;
    color: #ffffff;
  }
  .nav-menu__item.current-menu-item:not(.nav-menu__item--access) a > span::before {
    content: "";
    position: absolute;
    left: -1rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 4px;
    height: 1em;
    background-color: #37c5ff;
  }
}
@media (min-width: 768px) {
  .nav-menu__item.current-menu-item a {
    opacity: 1 !important;
  }
  .nav-menu__item.current-menu-item a::after {
    width: 100% !important;
  }
}

.menu-social {
  padding: 2rem;
  text-align: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 768px) {
  .menu-social {
    display: none;
  }
}
.menu-social__title {
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.menu-social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-social-links__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.menu-social-links__item a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.menu-social-links__item a svg {
  width: 100%;
  height: 100%;
  max-width: 50px;
  max-height: 50px;
  fill: #ffffff;
  stroke: none;
}

.site-footer {
  background-color: #061c2d;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 4px, rgba(255, 255, 255, 0.1) 4px, rgba(255, 255, 255, 0.1) 6px);
  background-size: auto;
  color: #ffffff;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
@media (min-width: 768px) {
  .footer-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.footer-content {
  padding: 2rem 1rem;
}
@media (min-width: 768px) {
  .footer-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.footer-company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.footer-company-info {
  font-size: 0.875rem;
  line-height: 1.6;
}
.footer-company__name {
  margin: 0 0 0.25rem;
  font-weight: 400;
  font-size: 0.875rem;
}
.footer-company__address {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
}
.footer-company__tel {
  margin: 0;
  font-size: 0.75rem;
}

.footer-logo a {
  display: inline-block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer-logo a:hover {
  opacity: 0.7;
}
.footer-logo img {
  width: 80px;
}
@media (min-width: 768px) {
  .footer-logo img {
    width: 100px;
  }
}

.footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .footer-social {
    text-align: right;
  }
}
.footer-social__title {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .social-links {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.social-links__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.social-links__item a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 1;
}

.social-icon {
  display: block;
  width: 40px;
  height: 40px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (min-width: 768px) {
  .social-icon {
    width: 50px;
    height: 50px;
  }
}

.footer-links {
  background-color: #061c2d;
  padding: 0.5rem 1rem;
  border-top: 1px solid #899faf;
}
@media (min-width: 1024px) {
  .footer-links {
    position: relative;
    left: calc(50% + 165px);
    width: calc(50% - 165px);
    padding: 1rem 1rem 0.5rem 3rem;
  }
  .footer-links::before {
    content: "";
    position: absolute;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    left: 0;
    top: 0;
    height: 100%;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
            clip-path: polygon(100% 0, 100% 100%, 0 100%);
    aspect-ratio: 1;
    background-color: #899faf;
  }
  .footer-links::after {
    content: "";
    position: absolute;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    left: 1px;
    top: 0;
    height: 100%;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
            clip-path: polygon(100% 0, 100% 100%, 0 100%);
    aspect-ratio: 1;
    background-color: #061c2d;
  }
}

.footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 1;
}
@media (min-width: 425px) {
  .footer-menu {
    gap: 1rem;
  }
}
@media (min-width: 1024px) {
  .footer-menu {
    gap: 3rem;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}
.footer-menu__item a {
  font-size: 0.875rem;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .footer-menu__item a {
    font-size: 16px;
  }
}
.footer-menu__item a:hover {
  color: #37c5ff;
}
.footer-menu__item.current-menu-item a {
  color: #37c5ff;
  text-decoration: underline;
  text-decoration-color: #37c5ff;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.footer-copyright {
  background-color: #061c2d;
  text-align: center;
  font-size: 0.75rem;
  border-top: 1px solid #899faf;
  padding: 0.5rem 1rem;
  color: #899faf;
}
@media (min-width: 1024px) {
  .footer-copyright {
    margin-top: -2px;
  }
}
.footer-copyright .footer-container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 1024px) {
  .footer-copyright .footer-container {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}
.footer-copyright p {
  margin: 0;
}

.btn, .btn-secondary, .btn-primary {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 2rem;
  border: 1px solid transparent;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover, .btn-secondary:hover, .btn-primary:hover {
  opacity: 1;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn-more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border: 1px solid currentColor;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-more:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.1);
}
.btn-more__icon {
  width: 16px;
  height: 16px;
}

.btn-robot {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 2rem;
  background-color: #ffffff;
  color: #061c2d;
  border: 1px solid #ffffff;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-robot:hover {
  opacity: 1;
  background-color: #c8d2da;
  border-color: #c8d2da;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.btn-robot::before {
  content: "🤖";
  font-size: 1.2em;
}

.btn-robot-outline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 2rem;
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-robot-outline:hover {
  opacity: 1;
  background-color: #ffffff;
  color: #061c2d;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.btn-robot-outline::before {
  content: "🤖";
  font-size: 1.2em;
}

.btn-primary {
  background-color: #005a88;
  color: #ffffff;
  border-color: #005a88;
}
.btn-primary:hover {
  background-color: #003855;
  border-color: #003855;
}

.btn-secondary {
  background-color: transparent;
  color: #005a88;
  border-color: #005a88;
}
.btn-secondary:hover {
  background-color: #005a88;
  color: #ffffff;
}

.btn-lg {
  padding: 1rem 3rem;
  font-size: 16px;
}

.btn-sm {
  padding: 0.25rem 1.5rem;
  font-size: 0.75rem;
}

.btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.btn-group--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn-group--stack {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .btn-group--stack {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.btn-more--works,
.btn-works-detail {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background-color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 30px;
  color: #061c2d;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
}
.btn-more--works .arrow-icon,
.btn-works-detail .arrow-icon {
  color: #061c2d;
}
.btn-more--works:hover,
.btn-works-detail:hover {
  background-color: #005a88;
  border-color: #005a88;
  color: #ffffff;
}
.btn-more--works:hover .arrow-icon,
.btn-works-detail:hover .arrow-icon {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
  color: #ffffff;
}

.btn-streaming,
.btn-official {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background-color: #c8d2da;
  border: none;
  border-radius: 8px;
  color: #333333;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}
@media (min-width: 768px) {
  .btn-streaming,
  .btn-official {
    max-width: 350px;
  }
}
.btn-streaming__icon,
.btn-official__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #333333;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.btn-streaming__icon svg,
.btn-official__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.btn-streaming:hover,
.btn-official:hover {
  background-color: #ffffff;
  color: #333333;
  opacity: 1;
}

.badge, .badge-status, .badge-works, .badge-report {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 3px;
  white-space: nowrap;
}

.badge-report {
  background-color: #c96a24;
  color: #ffffff;
}
.badge-report--event {
  background-color: #38823d;
}
.badge-report--screening {
  background-color: #a53d3d;
}
.badge-report--press {
  background-color: #904296;
}
.badge-report--work-info {
  background-color: #cccc00;
  color: #333333;
}
.badge-report--interview {
  background-color: #3e5463;
}
.badge-report--other {
  background-color: #899faf;
}

.badge-works {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.badge-works::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.badge-works--kikaku::before {
  background-color: #e63f3f;
}
.badge-works--seisaku::before {
  background-color: #28abff;
}
.badge-works--cg::before {
  background-color: #41e55c;
}
.badge-works--cg-animation::before {
  background-color: #ffe100;
}
.badge-works--modeling::before {
  background-color: #a910ff;
}
.badge-works--kyouryoku::before {
  background-color: #ff609d;
}
.badge-works--bijutsu::before {
  background-color: #005dff;
}
.badge-works--other::before {
  background-color: #e17300;
}

.category-legend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.category-legend__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
}
.category-legend__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.category-legend__label {
  white-space: nowrap;
}

.category-legend--works .category-legend__dot--kikaku {
  background-color: #e63f3f;
}
.category-legend--works .category-legend__dot--seisaku {
  background-color: #28abff;
}
.category-legend--works .category-legend__dot--cg {
  background-color: #41e55c;
}
.category-legend--works .category-legend__dot--cg-animation {
  background-color: #ffe100;
}
.category-legend--works .category-legend__dot--modeling {
  background-color: #a910ff;
}
.category-legend--works .category-legend__dot--kyouryoku {
  background-color: #ff609d;
}
.category-legend--works .category-legend__dot--bijutsu {
  background-color: #005dff;
}
.category-legend--works .category-legend__dot--other {
  background-color: #e17300;
}

.category-legend--report .category-legend__item {
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  color: #ffffff;
}
.category-legend--report .category-legend__item--report {
  background-color: #c96a24;
}
.category-legend--report .category-legend__item--event {
  background-color: #38823d;
}
.category-legend--report .category-legend__item--screening {
  background-color: #a53d3d;
}
.category-legend--report .category-legend__item--press {
  background-color: #904296;
}
.category-legend--report .category-legend__item--work-info {
  background-color: #cccc00;
  color: #333333;
}
.category-legend--report .category-legend__item--interview {
  background-color: #3e5463;
}
.category-legend--report .category-legend__item--other {
  background-color: #899faf;
}

.badge-status--active {
  background-color: #41e55c;
  color: #ffffff;
}
.badge-status--closed {
  background-color: #3e5463;
  color: #ffffff;
}
.badge-status--new {
  background-color: #e63f3f;
  color: #ffffff;
}

.report-card__link {
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.report-card__link:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  opacity: 1;
}
.report-card__link:hover .report-card__image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.report-card__image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 0.5rem;
  border-radius: 8px;
}
.report-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.report-card__category {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  font-weight: 500;
  color: #ffffff;
  background-color: #c96a24;
}
.report-card__category--event {
  background-color: #38823d;
}
.report-card__category--screening {
  background-color: #a53d3d;
}
.report-card__category--press {
  background-color: #904296;
}
.report-card__category--work-info {
  background-color: #cccc00;
  color: #333333;
}
.report-card__category--interview {
  background-color: #3e5463;
}
.report-card__category--other {
  background-color: #899faf;
}
.report-card__date {
  display: block;
  font-size: 0.75rem;
  color: #666666;
}
.report-card__title {
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
  color: #333333;
}

.works-card__link {
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.works-card__link:hover {
  opacity: 1;
}
.works-card__link:hover .works-card__image::after {
  background-color: rgba(0, 0, 0, 0.4);
}
.works-card__link:hover .works-card__image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.works-card__link:hover .works-card__title {
  color: #37c5ff;
  text-decoration: underline;
  text-decoration-color: #37c5ff;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.works-card__image {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 0.5rem;
  position: relative;
}
.works-card__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  pointer-events: none;
}
.works-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.works-card__category {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #ffffff;
}
.works-card__category::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.works-card__category--planning::before {
  background-color: #e63f3f;
}
.works-card__category--production::before {
  background-color: #28abff;
}
.works-card__category--cg-production::before {
  background-color: #41e55c;
}
.works-card__category--cg-animation::before {
  background-color: #ffe100;
}
.works-card__category--modeling::before {
  background-color: #a910ff;
}
.works-card__category--co-production::before {
  background-color: #ff609d;
}
.works-card__category--art-background::before {
  background-color: #005dff;
}
.works-card__category--other::before {
  background-color: #e17300;
}
.works-card__title {
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
  color: #ffffff;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.news-card {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.news-card:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.02);
}
.news-card__link {
  display: block;
}
.news-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.news-card__date {
  font-size: 0.875rem;
  opacity: 0.7;
}
.news-card__category {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}
.news-card__title {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}

.date-with-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  font-size: 0.75rem;
}
.date-with-icon::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("./assets/images/icon_date.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.date-with-icon--white {
  color: #ffffff;
}
.date-with-icon--dark {
  color: #333333;
}

.arrow-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 22px;
  height: 22px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.arrow-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
}
.arrow-icon--circle {
  border-radius: 50%;
  border: 2px solid currentColor;
}

.recruit-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .recruit-block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.recruit-block__image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .recruit-block__image {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: auto;
  }
}
.recruit-block__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.recruit-block__content {
  padding: 2rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .recruit-block__content {
    width: 500px;
    padding: 2rem 0 2rem 3rem;
  }
}
.recruit-block__title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  padding-bottom: 0.25rem;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #ffffff;
  line-height: 1;
  color: #ffffff;
}
@media (min-width: 768px) {
  .recruit-block__title {
    font-size: 2.8rem;
  }
}
.recruit-block__subtitle {
  margin: 0 0 1.5rem;
  font-weight: 700;
  color: #ffffff;
}
.recruit-block__text {
  line-height: 1.8;
  margin: 0 0 2rem;
  color: #ffffff;
}
@media (min-width: 768px) {
  .recruit-block__text {
    margin: 0 2rem 2rem 0;
  }
}
.recruit-block__button {
  margin-top: auto;
  text-align: center;
}
@media (min-width: 768px) {
  .recruit-block__button {
    text-align: left;
  }
}
.recruit-block--gray-blue {
  background-color: #9baab1;
  color: #ffffff;
}
.recruit-block--primary {
  background-color: #061c2d;
  color: #ffffff;
}
.recruit-block--buemon {
  background-color: #005a88;
  color: #ffffff;
}

.btn-recruit {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem 4rem;
  background-color: #ffffff;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
  min-width: 250px;
}
.btn-recruit .arrow-icon {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.btn-recruit:hover {
  background-color: #f2f2f2;
}
.btn-recruit:hover .arrow-icon {
  -webkit-transform: translate(4px, -50%);
          transform: translate(4px, -50%);
}
.recruit-block--gray-blue .btn-recruit {
  color: #9baab1;
}
.recruit-block--gray-blue .btn-recruit .arrow-icon {
  color: #9baab1;
}
.recruit-block--primary .btn-recruit {
  color: #061c2d;
}
.recruit-block--primary .btn-recruit .arrow-icon {
  color: #061c2d;
}
.recruit-block--buemon .btn-recruit {
  color: #005a88;
}
.recruit-block--buemon .btn-recruit .arrow-icon {
  color: #005a88;
}

.breadcrumb {
  background-color: #c8d2da;
  padding: 0.5rem 0;
}
.breadcrumb__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}
.breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.75rem;
}
.breadcrumb__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.breadcrumb__item:not(:last-child)::after {
  content: "/";
  color: #666666;
}
.breadcrumb__item a {
  color: #333333;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.breadcrumb__item a:hover {
  color: #005a88;
  text-decoration: underline;
}
.breadcrumb__item--current {
  color: #666666;
}

.page-hero {
  position: relative;
  height: 40vh;
  min-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #061c2d;
  background-size: cover;
  background-position: center;
}
@media (min-width: 768px) {
  .page-hero {
    height: 50vh;
    min-height: 400px;
  }
}
.page-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.page-hero__title {
  position: relative;
  z-index: 2;
  font-family: "Noto Sans CJK JP", sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (min-width: 768px) {
  .page-hero__title {
    font-size: 3.5rem;
  }
}
.page-hero--report, .page-hero--team {
  background-image: url("assets/images/content_hero_sp.jpg");
}
@media (min-width: 768px) {
  .page-hero--report, .page-hero--team {
    background-image: url("assets/images/content_hero_pc.jpg");
  }
}
.page-hero--recruit {
  background-image: url("assets/images/recruit_hero_sp.jpg");
}
@media (min-width: 768px) {
  .page-hero--recruit {
    background-image: url("assets/images/recruit_hero_pc.jpg");
  }
}
.page-hero--contact {
  background-image: url("assets/images/building_hero_sp.jpg");
}
@media (min-width: 768px) {
  .page-hero--contact {
    background-image: url("assets/images/building_hero_pc.jpg");
  }
}
.page-hero--tag {
  background-image: url("assets/images/content_hero_sp.jpg");
}
@media (min-width: 768px) {
  .page-hero--tag {
    background-image: url("assets/images/content_hero_pc.jpg");
  }
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 3rem 0 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #899faf;
  color: #333333;
  position: relative;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 30%;
  height: 2px;
  background-color: #005a88;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }
}
.section-title--center {
  text-align: center;
}
.section-title--center::after {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.section-title--first {
  margin-top: 0;
}

.section-subtitle {
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  padding-left: 1rem;
  border-left: 4px solid #005a88;
  color: #333333;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero {
    min-height: 600px;
  }
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: radial-gradient(150% 150% at bottom left, rgba(6, 28, 45, 0.95) 0%, rgba(6, 28, 45, 0.8) 15%, rgba(6, 28, 45, 0.7) 25%, rgba(6, 28, 45, 0.6) 35%, rgba(137, 159, 175, 0.4) 50%, rgba(200, 210, 218, 0.5) 70%, rgba(255, 255, 255, 0.7) 100%);
  mix-blend-mode: multiply;
  z-index: 1;
}
.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.hero__slide--active {
  opacity: 1;
}
.hero__image {
  width: 100%;
  height: 100%;
  display: block;
}
.hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.hero__content {
  position: absolute;
  bottom: 15%;
  left: 0;
  right: 0;
  text-align: left;
  color: #ffffff;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
  z-index: 2;
}
@media (min-width: 768px) {
  .hero__content {
    padding: 0 2rem;
    bottom: 20%;
  }
}
.hero__title {
  font-size: 1.5rem;
  margin: 0 0 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W6", sans-serif;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 30px;
    margin: 0 0 1.5rem;
  }
}
.hero__category {
  font-size: 0.875rem;
  margin: 0 0 1rem;
  font-weight: 600;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W6", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
}
@media (min-width: 768px) {
  .hero__category {
    font-size: 15px;
    margin: 0 0 1.5rem;
  }
}
.hero__category::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #e74c3c;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 768px) {
  .hero__category::before {
    width: 10px;
    height: 10px;
  }
}
.hero__text {
  font-size: 0.875rem;
  line-height: 1.8;
  opacity: 0.95;
  max-width: 600px;
  font-weight: 300;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}
@media (min-width: 768px) {
  .hero__text {
    font-size: 16px;
    max-width: 800px;
  }
}
.hero__dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  z-index: 2;
}
@media (min-width: 768px) {
  .hero__dots {
    bottom: 8%;
    gap: 16px;
  }
}
.hero__dot {
  width: 60px;
  height: 6px;
  border-radius: 3px;
  background-color: #ffffff;
  opacity: 0.5;
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.hero__dot--active {
  opacity: 1;
}

.news-section {
  padding: 3rem 1rem;
  background-color: #061c2d;
  color: #ffffff;
}
@media (min-width: 768px) {
  .news-section {
    padding: 4rem 2rem;
  }
}
@media (min-width: 1024px) {
  .news-section {
    padding: 6rem 2rem;
  }
}
.news-section .section-title {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .news-section .section-title {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .news-section .section-title {
    text-align: left;
  }
}

.news-container {
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .news-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 100px;
  }
}

@media (min-width: 768px) {
  .news-list-wrapper {
    max-height: 300px;
    overflow-y: auto;
    direction: rtl;
  }
  .news-list-wrapper::-webkit-scrollbar {
    width: 5px;
  }
  .news-list-wrapper::-webkit-scrollbar-track {
    background: linear-gradient(to right, transparent 0px, transparent 2px, #fff 2px, #fff 3px, transparent 3px, transparent 5px);
    border-radius: 0;
  }
  .news-list-wrapper::-webkit-scrollbar-thumb {
    background: #ffffff;
    border-radius: 0;
  }
  .news-list-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.9);
  }
}

.news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  direction: ltr;
  padding-left: 0.5rem;
}
@media (min-width: 768px) {
  .news-list {
    padding-left: 3rem;
  }
}
@media (max-width: 767px) {
  .news-list {
    max-height: 400px;
    overflow-y: auto;
    direction: rtl;
  }
  .news-list::-webkit-scrollbar {
    width: 5px;
  }
  .news-list::-webkit-scrollbar-track {
    background: linear-gradient(to right, transparent 0px, transparent 2px, #fff 2px, #fff 3px, transparent 3px, transparent 5px);
    border-radius: 0;
  }
  .news-list::-webkit-scrollbar-thumb {
    background: #ffffff;
    border-radius: 0;
  }
  .news-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.9);
  }
}

.news-item {
  position: relative;
  direction: ltr;
  border-bottom: 1px solid #899faf;
}
@media (min-width: 768px) {
  .news-item {
    border-bottom: none;
  }
}
@media (min-width: 768px) {
  .news-item:last-child {
    border-bottom: none;
  }
}
.news-item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  text-decoration: none;
  color: inherit;
  position: relative;
  -webkit-transition: border-bottom 0.3s ease;
  transition: border-bottom 0.3s ease;
}
@media (max-width: 767px) {
  .news-item__link {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.5rem;
  }
}
.news-item__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 13px;
  opacity: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#37c5ff), to(rgba(6, 28, 45, 0)));
  background: linear-gradient(to top, #37c5ff 0%, rgba(6, 28, 45, 0) 100%);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.news-item__link:hover {
  border-bottom: 1px solid #37c5ff;
}
.news-item__link:hover::after {
  opacity: 0.4;
}
.news-item__link:hover .news-item__date,
.news-item__link:hover .news-item__title {
  color: #37c5ff;
}
.news-item__link:hover .news-item__category {
  background-color: #37c5ff;
}
.news-item__link--no-link {
  cursor: default;
}
.news-item__link--no-link::after {
  display: none;
}
.news-item__link--no-link:hover {
  border-bottom: none;
}
.news-item__link--no-link:hover .news-item__date,
.news-item__link--no-link:hover .news-item__title {
  color: inherit;
}
.news-item__link--no-link:hover .news-item__category {
  background-color: #899faf;
}
.news-item__date {
  font-size: 0.875rem;
  opacity: 0.7;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  .news-item__date {
    min-width: 100px;
  }
}
.news-item__category {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  background-color: #899faf;
  border-radius: 16px;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #333333;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media (min-width: 768px) {
  .news-item__category {
    min-width: 100px;
    text-align: center;
  }
}
.news-item__title {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.6;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (max-width: 767px) {
  .news-item__title {
    font-size: 0.875rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

.report-section {
  position: relative;
  padding: 4rem 1rem;
  background-color: #899faf;
}
@media (min-width: 768px) {
  .report-section {
    padding: 6rem 2rem;
  }
}
@media (min-width: 1024px) {
  .report-section {
    padding: 8rem 2rem;
  }
}
.report-section a:hover {
  opacity: 1;
}
.report-section .section-title {
  color: #ffffff;
  text-align: center;
}
@media (min-width: 1024px) {
  .report-section .section-title {
    text-align: left;
  }
}
.report-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background-image: url("./assets/images/bg_reporttop.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  pointer-events: none;
}
@media (min-width: 768px) {
  .report-section::before {
    height: 300px;
  }
}
.report-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background-image: url("./assets/images/bg_reportbottom.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  pointer-events: none;
}
@media (min-width: 768px) {
  .report-section::after {
    height: 300px;
  }
}

.report-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 1;
}

.report-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .report-wrapper {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem 4rem;
  }
}

.report-featured {
  background-color: #ffffff;
  border: 4px solid #ffffff;
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media (min-width: 1024px) {
  .report-featured {
    grid-column: 1;
    grid-row: 1;
  }
}
.report-featured:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.report-featured__link {
  display: block;
}
.report-featured__image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
.report-featured__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.report-featured__content {
  padding: 1rem;
}
@media (min-width: 768px) {
  .report-featured__content {
    padding: 1.5rem;
  }
}
.report-featured__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}
.report-featured__category {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  color: #ffffff;
  border-radius: 3px;
  font-weight: 500;
}
.report-featured__category[data-category=column], .report-featured__category[data-category=コラム] {
  background-color: #005a88;
}
.report-featured__category[data-category=event], .report-featured__category[data-category=イベント] {
  background-color: #cccc00;
}
.report-featured__category[data-category=screening], .report-featured__category[data-category="上映/放映情報"] {
  background-color: #904296;
}
.report-featured__category[data-category=press], .report-featured__category[data-category=プレスリリース] {
  background-color: #c96a24;
}
.report-featured__category[data-category=media], .report-featured__category[data-category=メディア] {
  background-color: #a53d3d;
}
.report-featured__category[data-category=interview], .report-featured__category[data-category=インタビュー] {
  background-color: #38823d;
}
.report-featured__category[data-category=other], .report-featured__category[data-category=その他] {
  background-color: #3e5463;
}
.report-featured__title {
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.5;
  color: #333333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 768px) {
  .report-featured__title {
    font-size: 1.5rem;
  }
}
.report-featured__description {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #333333;
  padding-top: 1rem;
  border-top: 1px solid #c8d2da;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

@media (min-width: 1024px) {
  .report-section-inner {
    grid-column: 1/span 2;
    grid-row: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
}

@media (min-width: 1024px) {
  .report-grid-wrapper {
    max-width: 100%;
    padding: 10px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    cursor: -webkit-grab;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .report-grid-wrapper::-webkit-scrollbar {
    display: none;
  }
  .report-grid-wrapper:active {
    cursor: -webkit-grabbing;
    cursor: grabbing;
  }
}

.report-scroll-control {
  display: none;
}
@media (min-width: 1024px) {
  .report-scroll-control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    padding-bottom: 30px;
  }
}

.report-scrollbar-track {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 1px;
  position: relative;
  overflow: hidden;
}

.report-scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #ffffff;
  border-radius: 1px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.report-scrollbar-thumb:hover {
  opacity: 0.8;
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .report-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .report-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 40px;
  }
}

.report-card {
  background-color: #ffffff;
  border: 4px solid #ffffff;
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media (min-width: 1024px) {
  .report-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 320px;
            flex: 0 0 320px;
    width: 320px;
  }
}
.report-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.report-card__link {
  display: block;
}
.report-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
.report-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.report-card__content {
  padding: 0.5rem;
}
@media (min-width: 768px) {
  .report-card__content {
    padding: 1rem;
  }
}
.report-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}
@media (max-width: 425px) {
  .report-card__meta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.report-card__category {
  display: inline-block;
  font-size: 0.75rem;
  padding: 2px 0.25rem;
  color: #ffffff;
  border-radius: 3px;
  font-weight: 500;
}
.report-card__category[data-category=column], .report-card__category[data-category=コラム] {
  background-color: #005a88;
}
.report-card__category[data-category=event], .report-card__category[data-category=イベント] {
  background-color: #cccc00;
}
.report-card__category[data-category=screening], .report-card__category[data-category="上映/放映情報"] {
  background-color: #904296;
}
.report-card__category[data-category=press], .report-card__category[data-category=プレスリリース] {
  background-color: #c96a24;
}
.report-card__category[data-category=media], .report-card__category[data-category=メディア] {
  background-color: #a53d3d;
}
.report-card__category[data-category=interview], .report-card__category[data-category=インタビュー] {
  background-color: #38823d;
}
.report-card__category[data-category=other], .report-card__category[data-category=その他] {
  background-color: #3e5463;
}
.report-card__title {
  font-size: 0.875rem;
  font-weight: 700;
  margin: 0.25rem 0 0;
  line-height: 1.5;
  color: #333333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.report-topics {
  display: none;
}
@media (min-width: 1024px) {
  .report-topics {
    display: block;
    grid-column: 2;
    grid-row: 1;
  }
}
.report-topics__header {
  width: 100%;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 1rem;
}
.report-topics__title {
  display: inline-block;
  position: relative;
  line-height: 32px;
  padding-left: 10px;
  padding-right: 10px;
  background-color: #ffffff;
  color: #899faf;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0;
}
.report-topics__title::after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 20px;
  height: 100%;
  background-color: #ffffff;
  -webkit-transform: skewX(30deg);
          transform: skewX(30deg);
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
}
.report-topics__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}

.topic-item {
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
}
.topic-item:last-child {
  border-bottom: none;
}
.topic-item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  padding: 1rem 0.5rem;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.topic-item__link:hover {
  background-color: rgba(200, 210, 218, 0.5);
}
.topic-item__image {
  width: 130px;
  height: 80px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
  border-radius: 3px;
}
.topic-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.topic-item__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
.topic-item__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.topic-item__category {
  display: inline-block;
  font-size: 0.75rem;
  padding: 2px 0.25rem;
  color: #ffffff;
  border-radius: 3px;
  font-weight: 500;
}
.topic-item__category[data-category=column], .topic-item__category[data-category=コラム] {
  background-color: #005a88;
}
.topic-item__category[data-category=event], .topic-item__category[data-category=イベント] {
  background-color: #cccc00;
}
.topic-item__category[data-category=screening], .topic-item__category[data-category="上映/放映情報"] {
  background-color: #904296;
}
.topic-item__category[data-category=press], .topic-item__category[data-category=プレスリリース] {
  background-color: #c96a24;
}
.topic-item__category[data-category=media], .topic-item__category[data-category=メディア] {
  background-color: #a53d3d;
}
.topic-item__category[data-category=interview], .topic-item__category[data-category=インタビュー] {
  background-color: #38823d;
}
.topic-item__category[data-category=other], .topic-item__category[data-category=その他] {
  background-color: #3e5463;
}
.topic-item__title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #333333;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  text-decoration: underline;
  text-decoration-color: #333333;
  text-underline-offset: 2px;
  -webkit-transition: -webkit-text-decoration 0.3s ease;
  transition: -webkit-text-decoration 0.3s ease;
  transition: text-decoration 0.3s ease;
  transition: text-decoration 0.3s ease, -webkit-text-decoration 0.3s ease;
}
.topic-item__link:hover .topic-item__title {
  text-decoration: none;
}

.report-more {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #ffffff;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W6", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  letter-spacing: 0.05em;
}
.report-more .arrow {
  font-size: 1.2em;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.report-more:hover {
  opacity: 0.7;
}
.report-more:hover .arrow {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.works-section {
  padding: 4rem 1rem;
  background-color: #061c2d;
  color: #ffffff;
}
@media (min-width: 768px) {
  .works-section {
    padding: 6rem 2rem;
  }
}
@media (min-width: 1024px) {
  .works-section {
    padding: 8rem 2rem;
  }
}

.works-container {
  max-width: 1400px;
  margin: 0 auto;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .works-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
}

.works-more {
  text-align: center;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .works-more {
    margin-bottom: 6rem;
  }
}

.works-archive,
.works-single {
  background-color: #061c2d;
  min-height: 100vh;
}

.works-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.works-hero {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  max-width: 1488px;
  margin: 0 auto;
  padding-top: 90px;
  padding-bottom: 60px;
  padding-left: 60px;
  padding-right: 60px;
}
@media (min-width: 768px) {
  .works-hero {
    min-height: 600px;
    padding-top: 140px;
    padding-bottom: 80px;
    padding-left: 60px;
    padding-right: 60px;
  }
}
.works-hero__slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.works-hero__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  min-height: 500px;
}
@media (min-width: 768px) {
  .works-hero__slide {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    min-height: 600px;
  }
}
.works-hero__content {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  color: #ffffff;
  z-index: 2;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (min-width: 768px) {
  .works-hero__content {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.works-hero__title {
  font-family: "Noto Sans CJK JP", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.works-hero__category {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  font-family: "Noto Sans CJK JP", sans-serif;
  font-size: 0.9375rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #ffffff;
}
.works-hero__category::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.works-hero__category--planning::before {
  background-color: #e63f3f;
}
.works-hero__category--production::before {
  background-color: #28abff;
}
.works-hero__category--cg-production::before {
  background-color: #41e55c;
}
.works-hero__category--cg-animation::before {
  background-color: #ffe100;
}
.works-hero__category--modeling::before {
  background-color: #a910ff;
}
.works-hero__category--co-production::before {
  background-color: #ff609d;
}
.works-hero__category--art-background::before {
  background-color: #005dff;
}
.works-hero__category--other::before {
  background-color: #e17300;
}
.works-hero__caption {
  font-family: "Noto Sans CJK JP", sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.works-hero__image {
  -webkit-box-flex: 5;
      -ms-flex: 5;
          flex: 5;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 300px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .works-hero__image {
    min-height: 600px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.works-hero__image--video {
  background-image: none;
}
.works-hero__image--video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.works-hero__prev, .works-hero__next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: transparent;
  border: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 3;
}
.works-hero__prev:hover, .works-hero__next:hover {
  opacity: 0.7;
}
.works-hero__prev img, .works-hero__next img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
}
.works-hero__prev {
  left: 0.5rem;
}
.works-hero__next {
  right: 0.5rem;
}
.works-hero__dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  z-index: 3;
}
@media (min-width: 768px) {
  .works-hero__dots {
    bottom: 1.5rem;
  }
}
.works-hero__dot {
  width: 60px;
  height: 6px;
  border-radius: 3px;
  background-color: #ffffff;
  opacity: 0.5;
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.works-hero__dot.is-active {
  opacity: 1;
}

.works-category-section {
  padding: 3rem 0;
}

.category-section-title {
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.works-category-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
.works-category-nav--desktop {
  display: none;
}
@media (min-width: 768px) {
  .works-category-nav--desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.works-category-nav--mobile {
  display: block;
  max-width: 400px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .works-category-nav--mobile {
    display: none;
  }
}

.works-category-btn {
  padding: 0.5rem 1.5rem;
  font-size: 16px;
  color: #061c2d;
  background-color: #ffffff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 500;
}
.works-category-btn:hover, .works-category-btn.is-active {
  color: #ffffff;
}
.works-category-btn:not([class*="--"]):hover, .works-category-btn:not([class*="--"]).is-active {
  background-color: #899faf;
}
.works-category-btn--planning:hover, .works-category-btn--planning.is-active {
  background-color: #e63f3f;
}
.works-category-btn--production:hover, .works-category-btn--production.is-active {
  background-color: #28abff;
}
.works-category-btn--cg-production:hover, .works-category-btn--cg-production.is-active {
  background-color: #41e55c;
}
.works-category-btn--cg-animation:hover, .works-category-btn--cg-animation.is-active {
  background-color: #ffe100;
}
.works-category-btn--modeling:hover, .works-category-btn--modeling.is-active {
  background-color: #a910ff;
}
.works-category-btn--co-production:hover, .works-category-btn--co-production.is-active {
  background-color: #ff609d;
}
.works-category-btn--art-background:hover, .works-category-btn--art-background.is-active {
  background-color: #005dff;
}
.works-category-btn--other:hover, .works-category-btn--other.is-active {
  background-color: #e17300;
}

.works-category-select {
  width: 100%;
  padding: 1rem;
  font-size: 16px;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  background-color: #ffffff;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M1.41 0L6 4.58L10.59 0L12 1.41l-6 6l-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

.works-list-section {
  padding: 3rem 0;
}

.works-archive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .works-archive-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .works-archive-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
  }
}
.works-archive-grid .works-card {
  -webkit-box-flex: initial;
      -ms-flex: initial;
          flex: initial;
  width: 100%;
}

.works-loading {
  text-align: center;
  padding: 3rem;
}
.works-loading .spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: #061c2d;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  margin: 0 auto;
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.works-no-results {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 300px;
  font-size: 1.25rem;
  color: #ffffff;
  grid-column: 1/-1;
}

.works-load-more {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.btn-load-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  padding: 1.5rem;
  width: 100%;
  color: #ffffff;
  background-color: transparent;
  border: none;
  border-top: 1px solid #ffffff;
  border-radius: 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-load-more svg {
  width: 40px;
  height: 40px;
}
.btn-load-more svg path {
  stroke-width: 1;
}
.btn-load-more:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.p-work-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.8;
  margin: 1.5rem 0;
}
@media (min-width: 768px) {
  .p-work-table {
    font-size: 16px;
  }
}
.p-work-table tr:nth-child(odd) {
  background-color: #0d2136;
}
.p-work-table tr:nth-child(even) {
  background-color: #152d45;
}
.p-work-table th {
  width: 40%;
  padding: 1rem 1rem;
  color: #ffffff;
  font-weight: normal;
  text-align: left;
  vertical-align: top;
}
.p-work-table td {
  padding: 1rem 1rem;
  color: #ffffff;
  font-weight: bold;
  text-align: right;
  vertical-align: top;
}
.p-work-table a {
  color: #61dafb;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}
.p-work-table a::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 6px;
  vertical-align: middle;
  background-image: url("assets/images/icon_link.svg?v=1");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-work-table a:hover {
  opacity: 0.7;
}
.p-work-table a:hover::after {
  background-image: url("assets/images/icon_link_hover.svg?v=1");
}

.works-hero--single {
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (min-width: 768px) {
  .works-hero--single .works-hero__slide {
    min-height: 500px;
  }
}

.works-detail-section {
  background-color: #061c2d;
  padding: 3rem 0;
  min-height: 100vh;
}

.works-detail-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.works-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}
@media (min-width: 768px) {
  .works-detail {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2rem;
  }
}

.works-detail__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (min-width: 768px) {
  .works-detail__content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
  }
}

.works-detail__sidebar {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (min-width: 768px) {
  .works-detail__sidebar {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.works-detail__thumbnail {
  position: sticky;
  top: 120px;
  padding: 1rem;
}
.works-detail__thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.works-section {
  margin-bottom: 2rem;
  padding: 2rem;
}
.works-section:last-child {
  margin-bottom: 0;
}

.works-section__title {
  font-family: "Noto Sans CJK JP", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 4px solid #37c5ff;
  line-height: 1.4;
}

.works-section__body {
  color: #ffffff;
  line-height: 1.8;
}

.works-streaming-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.works-table-wrapper table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}
@media (min-width: 768px) {
  .works-table-wrapper table {
    font-size: 16px;
  }
}
.works-table-wrapper tr:nth-child(odd) {
  background-color: #002d44;
}
.works-table-wrapper tr:nth-child(even) {
  background-color: transparent;
}
.works-table-wrapper th {
  width: 30%;
  padding: 1rem;
  color: #ffffff;
  font-weight: normal;
  text-align: left;
  vertical-align: top;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.works-table-wrapper td {
  padding: 1rem;
  color: #ffffff;
  font-weight: normal;
  text-align: left;
  vertical-align: top;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.works-table-wrapper a {
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.works-table-wrapper a:hover {
  color: #37c5ff;
  opacity: 1;
  text-decoration: underline;
}
.works-table-wrapper--buemon a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.works-table-wrapper--buemon a:hover {
  text-decoration: none;
}
.works-table-wrapper--buemon a::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("assets/images/icon_link.svg?v=1");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.works-table-wrapper--buemon a:hover::after {
  background-image: url("assets/images/icon_link_hover.svg?v=1");
}

.works-nav-section {
  background-color: #061c2d;
  padding: 3rem 0;
}

.works-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
}
@media (min-width: 768px) {
  .works-nav {
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 767px) {
  .works-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.works-nav__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border: 1px solid #ffffff;
  border-radius: 30px;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 1;
}
.works-nav__link .arrow-icon {
  width: 28px;
  height: 28px;
}
.works-nav__link .arrow-icon svg {
  stroke: currentColor;
}
@media (min-width: 768px) {
  .works-nav__link--prev, .works-nav__link--next {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (max-width: 767px) {
  .works-nav__link--prev, .works-nav__link--next {
    width: 48px;
    height: 48px;
    padding: 0;
    background: none;
    border: 1px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    font-size: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .works-nav__link--prev .arrow-icon, .works-nav__link--next .arrow-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .works-nav__link--prev .arrow-icon svg, .works-nav__link--next .arrow-icon svg {
    stroke-width: 1;
  }
  .works-nav__link--prev:hover, .works-nav__link--next:hover {
    border: none;
    background-color: #005a88;
    color: #ffffff;
    opacity: 1;
  }
}
@media (min-width: 768px) {
  .works-nav__link--prev {
    justify-self: start;
  }
}
.works-nav__link--prev .arrow-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (max-width: 767px) {
  .works-nav__link--prev .arrow-icon {
    margin-left: 6px;
  }
}
@media (min-width: 768px) {
  .works-nav__link--next {
    justify-self: end;
  }
}
@media (max-width: 767px) {
  .works-nav__link--next .arrow-icon {
    margin-right: 6px;
  }
}
.works-nav__link--primary {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}
@media (min-width: 768px) {
  .works-nav__link--primary {
    justify-self: center;
    max-width: 350px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .works-nav__link--primary {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.works-nav__link--primary:hover {
  background-color: #005a88;
  border-color: #ffffff;
  color: #ffffff;
  opacity: 1;
}
.works-nav__link--disabled {
  opacity: 0;
  pointer-events: none;
}
@media (min-width: 768px) {
  .works-nav__link:hover:not(.works-nav__link--primary):not(.works-nav__link--disabled) {
    background-color: #005a88;
    border-color: #ffffff;
    color: #ffffff;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
    opacity: 1;
  }
}

.works-related-section {
  padding: 3rem 0;
  background-color: #899faf;
}

.works-related-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.works-related__title {
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #ffffff;
}

.works-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .works-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .works-related-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.works-related-grid .works-card,
.works-related-grid .report-card {
  -webkit-box-flex: initial;
      -ms-flex: initial;
          flex: initial;
  width: 100%;
  max-width: 100%;
}

.report-category-tag,
.report-featured__category,
.report-card__category,
.report-detail__category,
.topic-item__category {
  display: inline-block;
  font-size: 0.75rem;
  padding: 2px 0.25rem;
  color: #ffffff;
  border-radius: 3px;
  font-weight: 500;
}
.report-category-tag[data-category=column], .report-category-tag[data-category=コラム],
.report-featured__category[data-category=column],
.report-featured__category[data-category=コラム],
.report-card__category[data-category=column],
.report-card__category[data-category=コラム],
.report-detail__category[data-category=column],
.report-detail__category[data-category=コラム],
.topic-item__category[data-category=column],
.topic-item__category[data-category=コラム] {
  background-color: #005a88;
}
.report-category-tag[data-category=event], .report-category-tag[data-category=イベント],
.report-featured__category[data-category=event],
.report-featured__category[data-category=イベント],
.report-card__category[data-category=event],
.report-card__category[data-category=イベント],
.report-detail__category[data-category=event],
.report-detail__category[data-category=イベント],
.topic-item__category[data-category=event],
.topic-item__category[data-category=イベント] {
  background-color: #cccc00;
}
.report-category-tag[data-category=screening], .report-category-tag[data-category="上映/放映情報"],
.report-featured__category[data-category=screening],
.report-featured__category[data-category="上映/放映情報"],
.report-card__category[data-category=screening],
.report-card__category[data-category="上映/放映情報"],
.report-detail__category[data-category=screening],
.report-detail__category[data-category="上映/放映情報"],
.topic-item__category[data-category=screening],
.topic-item__category[data-category="上映/放映情報"] {
  background-color: #904296;
}
.report-category-tag[data-category=press], .report-category-tag[data-category=プレスリリース],
.report-featured__category[data-category=press],
.report-featured__category[data-category=プレスリリース],
.report-card__category[data-category=press],
.report-card__category[data-category=プレスリリース],
.report-detail__category[data-category=press],
.report-detail__category[data-category=プレスリリース],
.topic-item__category[data-category=press],
.topic-item__category[data-category=プレスリリース] {
  background-color: #c96a24;
}
.report-category-tag[data-category=media], .report-category-tag[data-category=メディア],
.report-featured__category[data-category=media],
.report-featured__category[data-category=メディア],
.report-card__category[data-category=media],
.report-card__category[data-category=メディア],
.report-detail__category[data-category=media],
.report-detail__category[data-category=メディア],
.topic-item__category[data-category=media],
.topic-item__category[data-category=メディア] {
  background-color: #a53d3d;
}
.report-category-tag[data-category=interview], .report-category-tag[data-category=インタビュー],
.report-featured__category[data-category=interview],
.report-featured__category[data-category=インタビュー],
.report-card__category[data-category=interview],
.report-card__category[data-category=インタビュー],
.report-detail__category[data-category=interview],
.report-detail__category[data-category=インタビュー],
.topic-item__category[data-category=interview],
.topic-item__category[data-category=インタビュー] {
  background-color: #38823d;
}
.report-category-tag[data-category=other], .report-category-tag[data-category=その他],
.report-featured__category[data-category=other],
.report-featured__category[data-category=その他],
.report-card__category[data-category=other],
.report-card__category[data-category=その他],
.report-detail__category[data-category=other],
.report-detail__category[data-category=その他],
.topic-item__category[data-category=other],
.topic-item__category[data-category=その他] {
  background-color: #3e5463;
}

.report-hero {
  position: relative;
  height: 40vh;
  min-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #061c2d;
  background-image: url("assets/images/content_hero_sp.jpg");
  background-size: cover;
  background-position: center;
}
@media (min-width: 768px) {
  .report-hero {
    height: 50vh;
    min-height: 400px;
    background-image: url("assets/images/content_hero_pc.jpg");
  }
}
.report-hero__content {
  position: relative;
  text-align: center;
  z-index: 1;
}
.report-hero__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.1em;
  margin: 0;
}
@media (min-width: 768px) {
  .report-hero__title {
    font-size: 2.75rem;
  }
}

.report-search {
  padding: 2rem 0;
  background-color: #899faf;
}
.report-search__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.report-search__form {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  background-color: #ffffff;
}
.report-search__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  padding: 0.5rem;
}
@media (min-width: 768px) {
  .report-search__fields {
    gap: 1rem;
    padding: 0 0 0 1rem;
  }
}
.report-search__icon {
  color: #899faf;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 768px) {
  .report-search__icon {
    display: block;
  }
}
.report-search__field--keyword {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.report-search__field--category {
  display: none;
}
@media (min-width: 768px) {
  .report-search__field--category {
    display: block;
    width: 200px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.report-search__input {
  width: 100%;
  padding: 1rem;
  border: none;
  font-size: 16px;
  background-color: #ffffff;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.report-search__input:focus {
  outline: none;
  border-color: #061c2d;
}
.report-search__input::-webkit-input-placeholder {
  color: #899faf;
}
.report-search__input::-moz-placeholder {
  color: #899faf;
}
.report-search__input:-ms-input-placeholder {
  color: #899faf;
}
.report-search__input::-ms-input-placeholder {
  color: #899faf;
}
.report-search__input::placeholder {
  color: #899faf;
}
.report-search__select {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #005a88;
  border-radius: 3px;
  font-size: 16px;
  background-color: #ffffff;
  color: #333333;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23899faf' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.report-search__select:focus {
  outline: none;
  border-color: #061c2d;
}
.report-search__button {
  padding: 0.5rem 2rem;
  background-color: #305878;
  color: #ffffff;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}
.report-search__button:hover {
  background-color: #213d54;
}
@media (min-width: 768px) {
  .report-search__button {
    min-width: 120px;
    padding: 1rem 3rem;
  }
}

.report-archive {
  padding: 3rem 0;
  background-color: #899faf;
}
.report-archive__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.report-archive__featured-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .report-archive__featured-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2rem;
  }
}
.report-archive__featured-row .report-featured {
  -webkit-box-flex: 1.6;
      -ms-flex: 1.6;
          flex: 1.6;
}
.report-archive__sidebar {
  width: 100%;
}
@media (min-width: 1024px) {
  .report-archive__sidebar {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.report-category-section {
  margin-top: 3rem;
}
.report-category-section__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.1em;
  margin: 0 0 1.5rem;
}

.report-category-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.report-category-nav--desktop {
  display: none;
}
@media (min-width: 768px) {
  .report-category-nav--desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.report-category-nav--mobile {
  display: block;
}
@media (min-width: 768px) {
  .report-category-nav--mobile {
    display: none;
  }
}
.report-category-nav__select {
  width: 100%;
  padding: 0.5rem 1.5rem;
  background-color: #ffffff;
  color: #899faf;
  border: none;
  border-radius: 30px;
  font-size: 1.125rem;
  font-weight: 500;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23899faf' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.report-category-nav__select[data-category=""] {
  background-color: #061c2d;
  color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
}
.report-category-nav__select[data-category=column] {
  background-color: #005a88;
  color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
}
.report-category-nav__select[data-category=event] {
  background-color: #cccc00;
  color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
}
.report-category-nav__select[data-category=screening] {
  background-color: #904296;
  color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
}
.report-category-nav__select[data-category=press] {
  background-color: #c96a24;
  color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
}
.report-category-nav__select[data-category=media] {
  background-color: #a53d3d;
  color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
}
.report-category-nav__select[data-category=interview] {
  background-color: #38823d;
  color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
}
.report-category-nav__select[data-category=other] {
  background-color: #3e5463;
  color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
}
.report-category-nav__item {
  padding: 0.5rem 1.5rem;
  background-color: #ffffff;
  color: #899faf;
  border: none;
  border-radius: 30px;
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.report-category-nav__item[data-slug=""]:hover, .report-category-nav__item[data-slug=""].is-active {
  background-color: #061c2d;
  color: #ffffff;
}
.report-category-nav__item[data-slug=column]:hover, .report-category-nav__item[data-slug=column].is-active {
  background-color: #005a88;
  color: #ffffff;
}
.report-category-nav__item[data-slug=event]:hover, .report-category-nav__item[data-slug=event].is-active {
  background-color: #cccc00;
  color: #ffffff;
}
.report-category-nav__item[data-slug=screening]:hover, .report-category-nav__item[data-slug=screening].is-active {
  background-color: #904296;
  color: #ffffff;
}
.report-category-nav__item[data-slug=press]:hover, .report-category-nav__item[data-slug=press].is-active {
  background-color: #c96a24;
  color: #ffffff;
}
.report-category-nav__item[data-slug=media]:hover, .report-category-nav__item[data-slug=media].is-active {
  background-color: #a53d3d;
  color: #ffffff;
}
.report-category-nav__item[data-slug=interview]:hover, .report-category-nav__item[data-slug=interview].is-active {
  background-color: #38823d;
  color: #ffffff;
}
.report-category-nav__item[data-slug=other]:hover, .report-category-nav__item[data-slug=other].is-active {
  background-color: #3e5463;
  color: #ffffff;
}

.report-archive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .report-archive-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .report-archive-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.report-archive-grid .report-card {
  -webkit-box-flex: initial;
      -ms-flex: initial;
          flex: initial;
  width: 100%;
}

.report-no-results {
  grid-column: 1/-1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 300px;
  padding: 3rem;
  text-align: center;
  color: #ffffff;
}
.report-no-results p {
  margin: 0;
  font-size: 1.25rem;
}

.report-pagination {
  margin-top: 3rem;
}
.report-pagination .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.report-pagination .page-numbers {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0.25rem 0.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.875rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.report-pagination .page-numbers:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}
.report-pagination .page-numbers.current {
  background-color: #005a88;
  color: #ffffff;
  border-color: #005a88;
  font-weight: 600;
}
.report-pagination .page-numbers.prev, .report-pagination .page-numbers.next {
  padding: 0.25rem 1rem;
  margin: 0 1rem;
  font-size: 16px;
}

.report-loading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 3rem;
  gap: 1rem;
}
.report-loading__spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: #ffffff;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}
.report-loading__text {
  color: #ffffff;
  font-size: 0.875rem;
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.report-detail-section {
  padding: 3rem 0;
  background-color: #c8d2da;
}

.report-detail-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .report-detail-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3rem;
  }
}

.report-detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 1024px) {
  .report-detail {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
  }
}
.report-detail__header {
  margin-bottom: 2rem;
}
.report-detail__title {
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #333333;
  line-height: 1.4;
  margin: 0 0 1rem;
}
.report-detail__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.report-detail__date {
  font-size: 0.875rem;
  color: #333333;
}
.report-detail__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.25rem;
}
.report-detail__thumbnail {
  margin-bottom: 2rem;
  overflow: hidden;
}
.report-detail__thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}
.report-detail__body {
  margin-bottom: 3rem;
}
.report-detail__footer {
  margin-top: 3rem;
}
.report-detail__nav {
  margin-bottom: 3rem;
}

.post-body {
  color: #333333;
  font-size: 16px;
  line-height: 1.8;
}
.post-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 3rem 0 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #899faf;
  color: #333333;
  position: relative;
}
.post-body h2::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 30%;
  height: 2px;
  background-color: #005a88;
}
@media (min-width: 768px) {
  .post-body h2 {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .post-body h2 {
    font-size: 1.5rem;
  }
}
.post-body h3 {
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  padding-left: 1rem;
  border-left: 4px solid #005a88;
  color: #333333;
}
.post-body h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
  color: #333333;
}
.post-body p {
  margin: 0 0 1.5rem;
}
.post-body ul, .post-body ol {
  margin: 0 0 1.5rem;
  padding-left: 1.5rem;
}
.post-body ul li, .post-body ol li {
  margin-bottom: 0.5rem;
}
.post-body img {
  max-width: 100%;
  height: auto;
  border-radius: 3px;
  margin: 1.5rem 0;
}
.post-body blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background-color: #c8d2da;
  border-left: 4px solid #37c5ff;
  border-radius: 3px;
}
.post-body blockquote p:last-child {
  margin-bottom: 0;
}
.post-body a {
  color: #37c5ff;
  text-decoration: underline;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.post-body a:hover {
  opacity: 0.7;
}
.post-body code {
  padding: 0.2rem 0.4rem;
  background-color: #c8d2da;
  border-radius: 3px;
  font-family: monospace;
  font-size: 0.9em;
}
.post-body pre {
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: #333333;
  color: #ffffff;
  border-radius: 3px;
  overflow-x: auto;
}
.post-body pre code {
  padding: 0;
  background-color: transparent;
  color: inherit;
}
.post-body .p-reference-table {
  margin-bottom: 2rem;
}
.post-body .p-reference-table table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #899faf;
  border-bottom: 1px solid #899faf;
}
@media (max-width: 767px) {
  .post-body .p-reference-table table, .post-body .p-reference-table tbody, .post-body .p-reference-table tr {
    display: block;
    width: 100%;
  }
  .post-body .p-reference-table td {
    display: block;
    width: 100% !important;
    border-bottom: none;
  }
  .post-body .p-reference-table td:last-child {
    border-bottom: 1px solid rgba(137, 159, 175, 0.3);
  }
  .post-body .p-reference-table tr:last-child td:last-child {
    border-bottom: none;
  }
}
.post-body .p-reference-table td {
  padding: 1rem 0.5rem;
  color: #333333;
  font-size: 16px;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid rgba(137, 159, 175, 0.3);
}
.post-body .p-reference-table td:first-child {
  font-weight: normal;
  width: 30%;
  text-align: left;
  background-color: #ffffff;
}
.post-body .p-reference-table td:last-child {
  font-weight: normal;
  text-align: left;
}
.post-body .p-reference-table a {
  color: #005a88;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.post-body .p-reference-table a:hover {
  text-decoration: underline;
  text-decoration-color: #005a88;
}
.post-body .p-reference-table tr:last-child td {
  border-top: none;
  border-bottom: none;
}

.report-tag {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background-color: #899faf;
  color: #ffffff;
  border: 1px solid #899faf;
  border-radius: 30px;
  font-size: 0.875rem;
  line-height: 1;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.report-tag:hover {
  background-color: #ffffff;
  color: #899faf;
}

.report-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .report-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.report-nav__item {
  text-align: center;
}
.report-nav__item--prev, .report-nav__item--next {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.report-nav__item--list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (min-width: 768px) {
  .report-nav__item--list {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.report-nav__item--prev {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (min-width: 768px) {
  .report-nav__item--prev {
    text-align: left;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.report-nav__item--next {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media (min-width: 768px) {
  .report-nav__item--next {
    text-align: right;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.report-nav__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 2rem;
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .report-nav__link {
    padding: 0.5rem 2rem;
  }
}
.report-nav__link--prev {
  background-color: transparent;
  border: 1px solid #ffffff;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .report-nav__link--prev {
    width: auto;
    height: auto;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    border-radius: 30px;
  }
}
.report-nav__link--prev .arrow-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.report-nav__link--prev:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.report-nav__link--next {
  background-color: #005a88;
  border: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .report-nav__link--next {
    width: auto;
    height: auto;
    padding: 0.5rem 0.5rem 0.5rem 1rem;
    border-radius: 30px;
  }
}
.report-nav__link--next:hover {
  background-color: #003855;
}
.report-nav__link--primary {
  background-color: #ffffff;
  color: #005a88;
  font-weight: 600;
  border: 1px solid transparent;
}
.report-nav__link--primary:hover {
  background-color: transparent;
  color: #005a88;
  border-color: #005a88;
}
@media (max-width: 767px) {
  .report-nav__link--prev .report-nav__label, .report-nav__link--next .report-nav__label {
    display: none;
  }
}
.report-nav .arrow-icon {
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.report-related-section {
  padding: 3rem 0;
  background-color: #899faf;
}

.report-related-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.report-detail__related-title {
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #ffffff;
}

.report-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .report-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .report-related-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.report-related-grid .report-card {
  -webkit-box-flex: initial;
      -ms-flex: initial;
          flex: initial;
  width: 100%;
}

.report-sidebar {
  display: none;
}
@media (min-width: 1024px) {
  .report-sidebar {
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.report-sidebar .report-topics {
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  margin-bottom: 2rem;
}
.report-sidebar .report-tag-cloud {
  background-color: transparent;
  border-radius: 0;
  padding: 0;
}

.report-detail-section .report-tag-cloud__header,
.report-sidebar .report-tag-cloud__header {
  border-bottom-color: #899faf;
}
.report-detail-section .report-tag-cloud__title,
.report-sidebar .report-tag-cloud__title {
  background-color: #899faf;
  color: #ffffff;
}
.report-detail-section .report-tag-cloud__title::after,
.report-sidebar .report-tag-cloud__title::after {
  background-color: #899faf;
}
.report-detail-section .report-topics__header,
.report-sidebar .report-topics__header {
  border-bottom-color: #899faf;
}
.report-detail-section .report-topics__title,
.report-sidebar .report-topics__title {
  background-color: #899faf;
  color: #ffffff;
}
.report-detail-section .report-topics__title::after,
.report-sidebar .report-topics__title::after {
  background-color: #899faf;
}
.report-detail-section .topic-item__title,
.report-sidebar .topic-item__title {
  -webkit-line-clamp: 3;
}
.report-detail-section .topic-item__link:hover,
.report-sidebar .topic-item__link:hover {
  background-color: rgba(137, 159, 175, 0.3);
}

.report-tag-cloud {
  background-color: transparent;
  border-radius: 0;
  padding: 0;
}
.report-tag-cloud__header {
  width: 100%;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 1rem;
}
.report-tag-cloud__title {
  background-color: #ffffff;
  color: #899faf;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  padding-left: 10px;
  padding-right: 10px;
  display: inline-block;
  position: relative;
  margin: 0;
}
.report-tag-cloud__title::after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 20px;
  height: 100%;
  background-color: #ffffff;
  -webkit-transform: skewX(30deg);
          transform: skewX(30deg);
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
}
.report-tag-cloud__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}

.recruit-archive {
  background-color: #ffffff;
  min-height: 100vh;
}

.recruit-list-section {
  padding: 2rem 0 3rem;
}
@media (min-width: 768px) {
  .recruit-list-section {
    padding: 3rem 0 4rem;
  }
}

.recruit-list-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.recruit-intro {
  margin-bottom: 3rem;
}
.recruit-intro__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 3rem 0 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #899faf;
  color: #333333;
  position: relative;
  margin-top: 0;
}
.recruit-intro__title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 30%;
  height: 2px;
  background-color: #005a88;
}
@media (min-width: 768px) {
  .recruit-intro__title {
    font-size: 1.5rem;
  }
}
.recruit-intro__text {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #333333;
}
@media (min-width: 768px) {
  .recruit-intro__text {
    font-size: 16px;
  }
}

.recruit-category {
  margin-bottom: 3rem;
}
.recruit-category__title {
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  padding-left: 1rem;
  border-left: 4px solid #005a88;
  color: #333333;
}

.recruit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.recruit-grid .recruit-card {
  border-bottom: none;
}
.recruit-grid .recruit-card:not(:last-child) {
  border-bottom: 1px solid #e0e0e0;
}
@media (min-width: 768px) {
  .recruit-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .recruit-grid .recruit-card {
    border-bottom: 1px solid #e0e0e0;
  }
  .recruit-grid .recruit-card:last-child {
    border-bottom: 1px solid #e0e0e0;
  }
}

.recruit-card {
  background-color: #ced5db;
  border-radius: 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  margin-bottom: 1.5rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
}
.recruit-card:hover {
  background-color: #005a88;
}
.recruit-card:hover .recruit-card__link {
  opacity: 1;
}
.recruit-card:hover .recruit-card__title {
  color: #ffffff;
}
.recruit-card:hover .recruit-card__period-label {
  color: #ffffff;
}
.recruit-card:hover .recruit-card__period-value {
  color: #ffffff;
}
.recruit-card:hover .recruit-card__arrow {
  background-color: #ffffff !important;
}
.recruit-card:hover .recruit-card__arrow svg {
  stroke: #005a88;
}
.recruit-card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  text-decoration: none;
  color: #333333;
  min-height: 120px;
}
.recruit-card__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.recruit-card__title {
  font-family: "Noto Sans CJK JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #333;
  padding: 1.5rem;
  border-bottom: 2px solid #fff;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .recruit-card__title {
    font-size: 1.25rem;
  }
}
.recruit-card__period-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: rgba(0, 0, 0, 0.03);
}
.recruit-card__period-label {
  width: 120px;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  text-align: center;
  border-right: 2px solid #fff;
  white-space: nowrap;
  color: #333;
}
@media (min-width: 768px) {
  .recruit-card__period-label {
    width: 140px;
  }
}
.recruit-card__period-value {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #333;
}
.recruit-card__action {
  width: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-left: 2px solid #fff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 768px) {
  .recruit-card__action {
    width: 100px;
  }
}
.recruit-card__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #061c2d;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.recruit-card__arrow svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
}
.recruit-card:hover .recruit-card__arrow {
  background-color: #005a88;
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.recruit-stats {
  margin-top: 3rem;
}
.recruit-stats__title {
  font-family: "Noto Sans CJK JP", sans-serif;
  font-size: 1.125rem;
  font-weight: normal;
  color: #333333;
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) {
  .recruit-stats__title {
    font-size: 1.25rem;
  }
}
.recruit-stats__period {
  font-size: 0.75rem;
  color: #666666;
  margin-left: 0.25rem;
  margin-bottom: 1.5rem;
}
.recruit-stats__subtitle {
  font-size: 0.875rem;
  font-weight: normal;
  color: #333333;
  margin-bottom: 0.5rem;
}
.recruit-stats__content {
  margin-top: 1rem;
}
.recruit-stats__text {
  font-size: 0.75rem;
  line-height: 1.8;
  color: #333333;
}
@media (min-width: 768px) {
  .recruit-stats__text {
    font-size: 0.875rem;
  }
}

.recruit-banner-section {
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .recruit-banner-section {
    padding: 4rem 0;
  }
}

.recruit-banner-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.recruit-block--training {
  /* 以下の記述でストライプを作成します */
  background-image: repeating-linear-gradient(315deg, #254c1d, #254c1d 40px, #5a7c4a 40px, #5a7c4a 80px);
}
.recruit-block--training .btn-recruit {
  color: #5a7c4a;
}
.recruit-block--training .btn-recruit .arrow-icon {
  border-color: #5a7c4a;
  color: #5a7c4a;
}

.recruit-detail__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}

.recruit-detail__intro-section {
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .recruit-detail__intro-section {
    padding: 4rem 0;
  }
}

.recruit-detail__header {
  margin-bottom: 2rem;
}

.recruit-detail__title {
  margin-bottom: 0.5rem;
}

.recruit-detail__title-ja {
  display: inline-block;
  background-color: #000;
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .recruit-detail__title-ja {
    font-size: 1.5rem;
  }
}

.recruit-detail__title-en {
  display: block;
  font-size: 0.875rem;
  color: #000;
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 400;
}

.recruit-detail__summary {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
}

.recruit-detail__requirements-section {
  background-color: #ced5db;
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .recruit-detail__requirements-section {
    padding: 4rem 0;
  }
}

.recruit-detail__requirements-title {
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .recruit-detail__requirements-title {
    font-size: 1.375rem;
  }
}

.recruit-detail__requirements-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 2rem 1rem;
}
@media (min-width: 768px) {
  .recruit-detail__requirements-card {
    padding: 3rem 2.5rem;
  }
}

.recruit-detail__requirements-content {
  margin-bottom: 3rem;
}
.recruit-detail__requirements-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}
.recruit-detail__requirements-content th,
.recruit-detail__requirements-content td {
  padding: 1rem;
  border-left: none;
  border-right: none;
  text-align: left;
  vertical-align: top;
}
@media (min-width: 768px) {
  .recruit-detail__requirements-content th,
  .recruit-detail__requirements-content td {
    border-top: 1px solid #c8d2da;
  }
}
.recruit-detail__requirements-content th {
  background-color: transparent;
  font-weight: 700;
  width: 20%;
}
@media (max-width: 768px) {
  .recruit-detail__requirements-content th {
    width: 100%;
    display: block;
    border-bottom: 1px solid #c8d2da;
    padding-bottom: 0.5rem;
  }
}
.recruit-detail__requirements-content td {
  background-color: transparent;
}
@media (max-width: 768px) {
  .recruit-detail__requirements-content td {
    width: 100%;
    display: block;
    border-top: none;
    padding-top: 0.5rem;
  }
}
@media (max-width: 768px) {
  .recruit-detail__requirements-content tr {
    display: block;
    margin-bottom: 1.5rem;
  }
}
.recruit-detail__requirements-content ul,
.recruit-detail__requirements-content ol {
  margin: 0;
  padding: 0;
}
.recruit-detail__requirements-content li {
  margin-bottom: 0.25rem;
}
.recruit-detail__requirements-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.recruit-detail__entry {
  text-align: center;
  margin-top: 3rem;
}

.recruit-detail__entry-btn {
  display: inline-block;
  width: 100%;
  max-width: 400px;
  background-color: #005a88;
  color: #fff;
  padding: 1.25rem;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.recruit-detail__entry-btn:hover {
  opacity: 0.8;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
@media (min-width: 768px) {
  .recruit-detail__entry-btn {
    font-size: 1.125rem;
    padding: 1.5rem;
  }
}

.entry-page .breadcrumb {
  background-color: #899faf;
}
.entry-page .breadcrumb .breadcrumb__item {
  color: #ffffff;
}
.entry-page .breadcrumb .breadcrumb__item a {
  color: #ffffff;
}
.entry-page .breadcrumb .breadcrumb__item a:hover {
  opacity: 0.8;
}
.entry-page .breadcrumb .breadcrumb__item::after {
  color: #ffffff;
}
.entry-page .breadcrumb .breadcrumb__item--current {
  color: #ffffff;
}

.entry-page-content {
  background-color: #c8d2da;
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .entry-page-content {
    padding: 2rem 0;
  }
}

.entry-page-content__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.entry-page-header {
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .entry-page-header {
    margin-bottom: 2rem;
  }
}
.entry-page-header__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #899faf;
  color: #333333;
  position: relative;
}
.entry-page-header__title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 30%;
  height: 2px;
  background-color: #005a88;
}
@media (min-width: 768px) {
  .entry-page-header__title {
    font-size: 1.5rem;
  }
}
.entry-page-header__text {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #333333;
  margin: 0;
}
@media (min-width: 768px) {
  .entry-page-header__text {
    font-size: 16px;
  }
}
.entry-page-header__text a {
  color: #005a88;
  text-decoration: underline;
}
.entry-page-header__text a:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .entry-page-header__text br {
    display: none;
  }
}

.entry-form {
  max-width: 1000px;
  margin: 0 auto;
}

.entry-form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2.5rem 0;
}
@media (max-width: 768px) {
  .entry-form__row {
    display: block;
    padding: 1.5rem 0;
  }
}
.entry-form__row:first-child {
  border-top: 1px solid #e0e0e0;
}

.entry-form__label {
  width: 240px;
  font-weight: 700;
  color: #333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 0.75rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .entry-form__label {
    width: 100%;
    margin-bottom: 1rem;
    padding-top: 0;
  }
}

.entry-form__required {
  display: inline-block;
  background-color: #d32f2f;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-left: 0.25rem;
  line-height: 1;
}

.entry-form__input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 768px) {
  .entry-form__input {
    width: 100%;
  }
}
.entry-form__input > .entry-form__item + .entry-form__item {
  margin-top: 1rem;
}

.entry-form__input--group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
@media (max-width: 768px) {
  .entry-form__input--group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.75rem;
  }
}
.entry-form__input--group > .entry-form__item + .entry-form__item {
  margin-top: 0;
}

.entry-form__input--group .entry-form__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 768px) {
  .entry-form__item {
    width: 100%;
  }
}
.entry-form__item--zip {
  max-width: 200px;
}
.entry-form__input--group .entry-form__item--zip {
  -webkit-box-flex: initial;
      -ms-flex: initial;
          flex: initial;
}
@media (max-width: 768px) {
  .entry-form__item--zip {
    max-width: 100%;
  }
}

.entry-form__sub-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.5rem;
}

.entry-form__note {
  font-size: 0.875rem;
  color: #666666;
  margin: 1rem 0 0;
  line-height: 1.6;
}

.entry-form input[type=text],
.entry-form input[type=email],
.entry-form input[type=tel],
.entry-form input[type=url],
.entry-form input[type=date],
.entry-form textarea,
.entry-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.entry-form input[type=text]:focus,
.entry-form input[type=email]:focus,
.entry-form input[type=tel]:focus,
.entry-form input[type=url]:focus,
.entry-form input[type=date]:focus,
.entry-form textarea:focus,
.entry-form select:focus {
  outline: none;
  border-color: #005a88;
}
.entry-form input[type=text]::-webkit-input-placeholder, .entry-form input[type=email]::-webkit-input-placeholder, .entry-form input[type=tel]::-webkit-input-placeholder, .entry-form input[type=url]::-webkit-input-placeholder, .entry-form input[type=date]::-webkit-input-placeholder, .entry-form textarea::-webkit-input-placeholder, .entry-form select::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.entry-form input[type=text]::-moz-placeholder, .entry-form input[type=email]::-moz-placeholder, .entry-form input[type=tel]::-moz-placeholder, .entry-form input[type=url]::-moz-placeholder, .entry-form input[type=date]::-moz-placeholder, .entry-form textarea::-moz-placeholder, .entry-form select::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.entry-form input[type=text]:-ms-input-placeholder, .entry-form input[type=email]:-ms-input-placeholder, .entry-form input[type=tel]:-ms-input-placeholder, .entry-form input[type=url]:-ms-input-placeholder, .entry-form input[type=date]:-ms-input-placeholder, .entry-form textarea:-ms-input-placeholder, .entry-form select:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.entry-form input[type=text]::-ms-input-placeholder, .entry-form input[type=email]::-ms-input-placeholder, .entry-form input[type=tel]::-ms-input-placeholder, .entry-form input[type=url]::-ms-input-placeholder, .entry-form input[type=date]::-ms-input-placeholder, .entry-form textarea::-ms-input-placeholder, .entry-form select::-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.entry-form input[type=text]::placeholder,
.entry-form input[type=email]::placeholder,
.entry-form input[type=tel]::placeholder,
.entry-form input[type=url]::placeholder,
.entry-form input[type=date]::placeholder,
.entry-form textarea::placeholder,
.entry-form select::placeholder {
  color: #999;
  opacity: 1;
}

.entry-form textarea {
  min-height: 150px;
  resize: vertical;
}

.entry-form input[type=date] {
  max-width: 200px;
  color: #333333;
}
@media (max-width: 768px) {
  .entry-form input[type=date] {
    max-width: 100%;
  }
}
.entry-form input[type=date]::-webkit-datetime-edit-text, .entry-form input[type=date]::-webkit-datetime-edit-month-field, .entry-form input[type=date]::-webkit-datetime-edit-day-field, .entry-form input[type=date]::-webkit-datetime-edit-year-field {
  color: #999;
}
.entry-form input[type=date]:not(:placeholder-shown)::-webkit-datetime-edit-text, .entry-form input[type=date]:not(:placeholder-shown)::-webkit-datetime-edit-month-field, .entry-form input[type=date]:not(:placeholder-shown)::-webkit-datetime-edit-day-field, .entry-form input[type=date]:not(:placeholder-shown)::-webkit-datetime-edit-year-field {
  color: #333333;
}

.entry-form input[type=tel] {
  max-width: 250px;
}
@media (max-width: 768px) {
  .entry-form input[type=tel] {
    max-width: 100%;
  }
}

.entry-form input[type=checkbox],
.entry-form input[type=radio] {
  margin-right: 0.5rem;
  cursor: pointer;
}

.entry-form .wpcf7-checkbox,
.entry-form .wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .entry-form .wpcf7-checkbox,
  .entry-form .wpcf7-radio {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
  }
}

.entry-form .wpcf7-list-item {
  margin: 0;
}
.entry-form .wpcf7-list-item label {
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.entry-form__submit {
  text-align: center;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #e0e0e0;
}

.btn-submit {
  display: inline-block;
  min-width: 300px;
  background-color: #002d44;
  color: #fff;
  padding: 1.25rem 3rem;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-submit:hover:not(:disabled) {
  opacity: 0.8;
}
.btn-submit:disabled {
  background-color: #ccc;
  color: #999;
  cursor: not-allowed;
  opacity: 1;
}
@media (max-width: 768px) {
  .btn-submit {
    min-width: 100%;
    width: 100%;
  }
}

.entry-form .wpcf7-not-valid-tip {
  color: #d32f2f;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: block;
  line-height: 1.4;
}

.entry-form .wpcf7-not-valid {
  border-color: #d32f2f !important;
}

.entry-form .wpcf7-response-output {
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  border-radius: 4px;
  font-weight: 700;
  text-align: center;
}

.entry-form .wpcf7-mail-sent-ok {
  background-color: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #4caf50;
}

.entry-form .wpcf7-validation-errors,
.entry-form .wpcf7-mail-sent-ng {
  background-color: #ffebee;
  color: #c62828;
  border: 1px solid #f44336;
}

.entry-form input[type=file] {
  width: 100%;
  max-width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.entry-form input[type=file]:focus {
  outline: none;
  border-color: #005a88;
}
.entry-form input[type=file]::-webkit-file-upload-button {
  padding: 0.5rem 1rem;
  margin-right: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #f5f5f5;
  color: #333333;
  font-size: 0.875rem;
  font-family: inherit;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.entry-form input[type=file]::file-selector-button {
  padding: 0.5rem 1rem;
  margin-right: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #f5f5f5;
  color: #333333;
  font-size: 0.875rem;
  font-family: inherit;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.entry-form input[type=file]::-webkit-file-upload-button:hover {
  background-color: #e0e0e0;
  border-color: #005a88;
}
.entry-form input[type=file]::file-selector-button:hover {
  background-color: #e0e0e0;
  border-color: #005a88;
}

.entry-form .wpcf7-file {
  display: block;
  width: 100%;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-break: break-word;
  overflow-wrap: break-word;
}

.entry-form__privacy {
  margin-top: 2rem;
  padding: 1.5rem;
}
.entry-form__privacy label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  cursor: pointer;
}
.entry-form__privacy label input[type=checkbox] {
  margin-top: 0.25rem;
  margin-right: 0.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.entry-form__privacy label span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 0.875rem;
  line-height: 1.6;
}

.entry-form .p-country-name {
  display: none !important;
}

.contact-page .breadcrumb {
  background-color: #899faf;
}
.contact-page .breadcrumb .breadcrumb__item {
  color: #ffffff;
}
.contact-page .breadcrumb .breadcrumb__item a {
  color: #ffffff;
}
.contact-page .breadcrumb .breadcrumb__item a:hover {
  opacity: 0.8;
}
.contact-page .breadcrumb .breadcrumb__item::after {
  color: #ffffff;
}
.contact-page .breadcrumb .breadcrumb__item--current {
  color: #ffffff;
}

.access-page .access-hero {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .access-page .access-hero {
    height: 250px;
  }
}
.access-page .access-hero picture {
  width: 100%;
  height: 100%;
  display: block;
}
.access-page .access-hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.access-page .access-hero__text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .access-page .access-hero__text {
    font-size: 2rem;
  }
}
.access-page .access-content {
  padding: 3rem 0;
  background-color: #fff;
}
@media (max-width: 768px) {
  .access-page .access-content {
    padding: 2rem 0;
  }
}
.access-page .access-content__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}
.access-page .access-content__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 3rem;
  padding-top: 1rem;
  border-top: 2px solid #899faf;
  color: #333333;
  position: relative;
}
.access-page .access-content__title::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 30%;
  height: 2px;
  background-color: #005a88;
}
@media (max-width: 768px) {
  .access-page .access-content__title {
    margin-bottom: 2rem;
  }
}
.access-page .access-map {
  margin-bottom: 3rem;
}
.access-page .access-map__iframe-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .access-page .access-map__iframe-wrapper {
    padding-bottom: 56.25%;
  }
}
.access-page .access-map__iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.access-page .access-map__link {
  margin: 0;
}
.access-page .access-map__link a {
  color: #005a88;
  text-decoration: none;
  font-size: 0.875rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.access-page .access-map__link a:hover {
  opacity: 0.7;
}
.access-page .access-info__company {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: #333333;
}
.access-page .access-info__address {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 3rem;
  color: #333333;
}
.access-page .access-info__detail {
  margin-bottom: 2rem;
}
.access-page .access-info__detail-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: #333333;
}
.access-page .access-info__detail-text {
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  color: #333333;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.about-hero {
  position: relative;
  width: 100%;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 アスペクト比 */
  height: 0;
  overflow: hidden;
  background-color: #000;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.sec-vision {
  background-color: #061c2d;
  color: #fff;
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .sec-vision {
    padding: 3rem 0;
  }
}
.sec-vision__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.sec-vision__title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 1rem;
  line-height: 1;
}
.sec-vision__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: #005a88;
}
@media (max-width: 768px) {
  .sec-vision__title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }
}
.sec-vision__content {
  line-height: 2;
}
.sec-vision__content p {
  margin-bottom: 1.5rem;
}
.sec-vision__content p:last-child {
  margin-bottom: 0;
}

.sec-message {
  background-color: #061c2d;
  color: #fff;
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .sec-message {
    padding: 3rem 0;
  }
}
.sec-message__container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.sec-message__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 3rem;
  padding-top: 1rem;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
}
.sec-message__title::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 30%;
  height: 2px;
  background-color: #005a88;
}
@media (max-width: 768px) {
  .sec-message__title {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
}
.sec-message__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 768px) {
  .sec-message__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}
.sec-message__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 280px;
          flex: 0 0 280px;
}
@media (max-width: 768px) {
  .sec-message__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    max-width: 280px;
    margin: 0 auto;
  }
}
.sec-message__image img {
  width: 100%;
  height: auto;
  display: block;
}
.sec-message__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 2;
}
.sec-message__text p {
  margin-bottom: 1.5rem;
}
.sec-message__text p:last-of-type {
  margin-bottom: 2rem;
}
.sec-message__signature {
  text-align: right;
  font-weight: 700;
  margin-top: 2rem;
  padding-top: 1.5rem;
}
@media (max-width: 768px) {
  .sec-message__signature {
    text-align: center;
  }
}

.sec-profile {
  background-color: #c8d2da;
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .sec-profile {
    padding: 3rem 0;
  }
}
.sec-profile__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.sec-profile__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  padding-top: 0.5rem;
  border-top: 2px solid #899faf;
  position: relative;
}
.sec-profile__title::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 30%;
  height: 2px;
  background-color: #005a88;
}
@media (max-width: 768px) {
  .sec-profile__title {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .sec-profile__table {
    border-top: 1px solid #899faf;
    border-bottom: 1px solid #899faf;
    border-right: 1px solid #899faf;
  }
}
.sec-profile__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sec-profile__row:first-child {
  padding-top: 0;
}
.sec-profile__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.sec-profile__row:last-child .sec-profile__label,
.sec-profile__row:last-child .sec-profile__data {
  border-bottom: none;
}
@media (max-width: 768px) {
  .sec-profile__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 1rem;
  }
}
.sec-profile__label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
  font-weight: 700;
  color: #ffffff;
  background-color: #899faf;
  padding: 1rem 2rem;
  border-bottom: 1px solid #c8d2da;
}
@media (max-width: 768px) {
  .sec-profile__label {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding: 0.5rem;
  }
}
.sec-profile__data {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 1.8;
  padding: 1rem;
}
@media (min-width: 768px) {
  .sec-profile__data {
    border-bottom: 1px solid #899faf;
  }
}
@media (max-width: 768px) {
  .sec-profile__data br {
    display: block;
    content: "";
    margin-top: 0.25rem;
  }
}

.sec-history {
  background-color: #c8d2da;
  padding: 0 0 4rem;
}
@media (max-width: 768px) {
  .sec-history {
    padding: 0 0 3rem;
  }
}
.sec-history__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.sec-history__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 3rem;
  padding-top: 0.5rem;
  border-top: 2px solid #899faf;
  position: relative;
}
.sec-history__title::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 30%;
  height: 2px;
  background-color: #005a88;
}
@media (max-width: 768px) {
  .sec-history__title {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
}
.sec-history__table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
}
.sec-history__table tbody tr {
  border-top: 1px solid #899faf;
}
.sec-history__year {
  width: 200px;
  padding: 1rem;
  text-align: left;
  vertical-align: top;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .sec-history__year {
    width: 80px;
    font-size: 0.875rem;
    padding: 1rem 0.25rem;
  }
  .sec-history__year br {
    display: none;
  }
}
.sec-history__event {
  padding: 1rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .sec-history__event {
    font-size: 0.875rem;
    padding: 1rem 0.25rem;
  }
}
@media (max-width: 768px) {
  .sec-history__event br {
    display: block;
    content: "";
    margin-top: 0.25rem;
  }
}

.privacy-page .breadcrumb {
  background-color: #899faf;
  color: #ffffff;
}
.privacy-page .breadcrumb .breadcrumb__item a {
  color: #ffffff;
}
.privacy-page .breadcrumb .breadcrumb__item--current {
  color: #ffffff;
}

.privacy-hero {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .privacy-hero {
    height: 400px;
  }
}
.privacy-hero picture,
.privacy-hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.privacy-hero__text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .privacy-hero__text {
    font-size: 3rem;
  }
}

.privacy-content {
  background-color: #c8d2da;
  padding: 3rem 1rem;
}
@media (min-width: 768px) {
  .privacy-content {
    padding: 5rem 1rem;
  }
}
.privacy-content__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
}
@media (min-width: 768px) {
  .privacy-content__container {
    padding: 4rem 3rem;
  }
}
.privacy-content__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 3rem 0 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #899faf;
  color: #333333;
  position: relative;
  margin-top: 0;
  margin-bottom: 3rem;
}
.privacy-content__title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 30%;
  height: 2px;
  background-color: #005a88;
}
@media (min-width: 768px) {
  .privacy-content__title {
    font-size: 1.5rem;
  }
}

.privacy-section {
  margin-bottom: 4rem;
}
.privacy-section:last-child {
  margin-bottom: 0;
}
.privacy-section__title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333333;
  margin: 0 0 1rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .privacy-section__title {
    font-size: 1.3rem;
  }
}
.privacy-section p {
  font-size: 1rem;
  color: #333;
  line-height: 2;
  margin: 0 0 1rem;
}
.privacy-section p:last-child {
  margin-bottom: 0;
}
.privacy-section a {
  color: #005a88;
  text-decoration: underline;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.privacy-section a:hover {
  opacity: 0.7;
}

.privacy-list {
  list-style: disc inside;
  padding-left: 0;
  margin: 1rem 0;
}
@media (min-width: 768px) {
  .privacy-list {
    padding-left: 1.5rem;
    list-style-position: outside;
  }
}
.privacy-list li {
  font-size: 1rem;
  color: #333;
  line-height: 2;
  margin-bottom: 0.5rem;
}
.privacy-list li:last-child {
  margin-bottom: 0;
}

.privacy-contact {
  background-color: #c8d2da;
  padding: 1.5rem;
  border-radius: 4px;
  margin-top: 1rem;
}

.team-intro {
  background-color: #ffffff;
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .team-intro {
    padding: 5rem 0;
  }
}
.team-intro__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.team-intro__logo {
  text-align: center;
  margin-bottom: 2rem;
}
.team-intro__logo img {
  max-width: 300px;
  height: auto;
}
@media (min-width: 768px) {
  .team-intro__logo img {
    max-width: 400px;
  }
}
.team-intro__logo-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.5rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.team-intro__logo-main {
  display: block;
  width: 100%;
  text-align: left;
  background-color: #000;
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  border-right: 8px solid #005a88;
}
@media (min-width: 768px) {
  .team-intro__logo-main {
    font-size: 1.5rem;
  }
}
.team-intro__logo-sub {
  display: block;
  font-size: 0.875rem;
  color: #000;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 400;
}
.team-intro__text {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
}
.team-intro__text p {
  margin: 0 0 1rem;
}
.team-intro__text p:last-child {
  margin-bottom: 0;
}

.team-member-section {
  background-color: #c8d2da;
  padding: 3rem 1rem;
}
@media (min-width: 768px) {
  .team-member-section {
    padding: 5rem 1rem;
  }
}

.team-member-container {
  max-width: 1400px;
  margin: 0 auto;
}

.team-member__title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin: 0 0 3rem;
  letter-spacing: 0.1em;
  color: #ffffff;
  color: #ffffff;
}
@media (min-width: 768px) {
  .team-member__title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }
}

.team-filter {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .team-filter {
    margin-bottom: 3rem;
  }
}

.team-filter__list--pc {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .team-filter__list--pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.team-filter__item {
  margin: 0;
}

.team-filter__button {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #899faf;
  color: #ffffff;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid #899faf;
}
@media (min-width: 768px) {
  .team-filter__button {
    font-size: 16px;
  }
}
.team-filter__button:hover {
  background-color: #005a88;
  color: #ffffff;
  border-color: #005a88;
  opacity: 1;
}
.team-filter__button.is-active {
  background-color: #005a88;
  color: #ffffff;
  border-color: #005a88;
}

.team-filter__select-wrapper--sp {
  display: block;
}
@media (min-width: 768px) {
  .team-filter__select-wrapper--sp {
    display: none;
  }
}

.team-filter__select-wrapper {
  position: relative;
  max-width: 100%;
}
.team-filter__select-wrapper::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: #ffffff transparent transparent transparent;
  pointer-events: none;
}

.team-filter__select {
  width: 100%;
  padding: 1rem 2.5rem 1rem 1rem;
  background-color: #899faf;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.team-filter__select:hover {
  background-color: #7a93a5;
}
.team-filter__select:focus {
  outline: 2px solid #005a88;
  outline-offset: 2px;
}

.team-member-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .team-member-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.team-member__no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 3rem 0;
  color: #666666;
  font-size: 16px;
}

.team-card {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.team-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.team-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.team-card__image {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  background-color: #c8d2da;
}
.team-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.team-card__image--placeholder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.team-card__image--placeholder span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #666666;
  font-size: 0.875rem;
  white-space: nowrap;
}
.team-card__info {
  padding: 1rem;
  text-align: center;
}
.team-card__position {
  font-size: 0.75rem;
  color: #666666;
  margin: 0 0 0.5rem;
}
@media (min-width: 768px) {
  .team-card__position {
    font-size: 0.875rem;
  }
}
.team-card__name {
  font-size: 16px;
  font-weight: bold;
  color: #333333;
  margin: 0;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .team-card__name {
    font-size: 1.125rem;
  }
}

.team-detail-page .breadcrumb {
  background-color: #899faf;
}
.team-detail-page .breadcrumb .breadcrumb__item a,
.team-detail-page .breadcrumb .breadcrumb__item--current {
  color: #ffffff;
}

.team-detail {
  background-color: #c8d2da;
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .team-detail {
    padding: 4rem 0;
  }
}
.team-detail__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1rem;
  background-color: #ffffff;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .team-detail__container {
    padding: 3rem;
  }
}
.team-detail__profile-section {
  padding: 0;
  margin-bottom: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .team-detail__profile-section {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3rem;
  }
}
.team-detail__profile-left {
  display: contents;
}
@media (min-width: 768px) {
  .team-detail__profile-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.team-detail__position-area {
  margin-bottom: 0;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.team-detail__position-ja {
  font-size: 0.875rem;
  font-weight: 400;
  color: #333333;
  margin: 0 0 0.25rem;
  text-align: left;
}
@media (min-width: 768px) {
  .team-detail__position-ja {
    font-size: 16px;
  }
}
.team-detail__position-en {
  font-size: 0.75rem;
  color: #666666;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .team-detail__position-en {
    font-size: 0.875rem;
  }
}
.team-detail__name-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.5rem;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  position: relative;
}
.team-detail__name {
  margin: 0;
}
.team-detail__name-ja {
  display: inline-block;
  background-color: #000;
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.6;
  padding: 0.25rem 0.5rem;
}
@media (min-width: 768px) {
  .team-detail__name-ja {
    font-size: 1.5rem;
  }
}
.team-detail__name-en {
  font-size: 0.875rem;
  color: #333333;
  margin: 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 400;
}
@media (min-width: 768px) {
  .team-detail__name-en {
    font-size: 16px;
  }
}
.team-detail__profile-text {
  font-size: 16px;
  line-height: 2;
  color: #333333;
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}
.team-detail__profile-text p {
  margin: 0 0 1rem;
}
.team-detail__profile-text p:last-child {
  margin-bottom: 0;
}
.team-detail__interview {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
  text-align: center;
}
@media (min-width: 768px) {
  .team-detail__interview {
    margin-top: auto;
    text-align: left;
  }
}
.team-detail__profile-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  max-width: 400px;
  margin: -80px auto 0;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media (min-width: 768px) {
  .team-detail__profile-image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 45%;
    max-width: 500px;
    margin: 0 auto;
  }
}
.team-detail__profile-image img {
  width: 100%;
  height: auto;
  display: block;
}
.team-detail__profile-image--placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background-color: #c8d2da;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #666666;
  font-size: 16px;
}
.team-detail__content {
  padding: 0;
  margin-bottom: 2rem;
}
.team-detail__content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 3rem 0 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #899faf;
  color: #333333;
  position: relative;
  font-size: 1.25rem;
  margin: 0 0 1.5rem;
}
.team-detail__content h2::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 30%;
  height: 2px;
  background-color: #005a88;
}
@media (min-width: 768px) {
  .team-detail__content h2 {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .team-detail__content h2 {
    font-size: 1.5rem;
  }
}
.team-detail__content h3 {
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  padding-left: 1rem;
  border-left: 4px solid #005a88;
  color: #333333;
  font-size: 1.125rem;
  margin: 2rem 0 1rem;
}
.team-detail__content h3:first-child {
  margin-top: 0;
}
@media (min-width: 768px) {
  .team-detail__content h3 {
    font-size: 1.25rem;
  }
}
.team-detail__content p {
  font-size: 16px;
  line-height: 2;
  color: #333333;
  margin-bottom: 1rem;
}
.team-detail__content p:last-child {
  margin-bottom: 0;
}
.team-detail__qa-section {
  padding: 0;
}
.team-detail__qa-list {
  margin: 0;
  padding: 0;
}
.team-detail__qa-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #c8d2da;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (min-width: 768px) {
  .team-detail__qa-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2rem;
  }
}
.team-detail__qa-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.team-detail__qa-question {
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  padding-left: 1rem;
  border-left: 4px solid #005a88;
  color: #333333;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.8;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 768px) {
  .team-detail__qa-question {
    width: 30%;
    font-size: 1.25rem;
  }
}
.team-detail__qa-answer {
  font-size: 16px;
  line-height: 2;
  color: #333333;
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 768px) {
  .team-detail__qa-answer {
    width: 70%;
  }
}

.btn-interview {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background-color: #ffffff;
  border: 2px solid #000000;
  border-radius: 30px;
  color: #333333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
}
.btn-interview .arrow-icon {
  color: #333333;
}
.btn-interview:hover {
  background-color: #005a88;
  border-color: #005a88;
  color: #ffffff;
}
.btn-interview:hover .arrow-icon {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
  color: #ffffff;
}

.tag-content {
  background-color: #899faf;
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .tag-content {
    padding: 4rem 0;
  }
}
.tag-content__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.tag-header {
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .tag-header {
    margin-bottom: 3rem;
  }
}
.tag-header__title {
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .tag-header__title {
    font-size: 2.5rem;
  }
}
.tag-header__subtitle {
  font-size: 1rem;
  color: #ffffff;
  margin: 0;
  opacity: 0.9;
}
@media (min-width: 768px) {
  .tag-header__subtitle {
    font-size: 1.125rem;
  }
}

.tag-no-results {
  text-align: center;
  padding: 3rem 0;
  color: #ffffff;
  font-size: 1.125rem;
}
.tag-no-results p {
  margin: 0;
}/*# sourceMappingURL=style.css.map */