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

html,
body,
main,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
figure,
figcaption,
blockquote,
address {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

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

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

input,
button,
textarea,
select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
  background-color: #ffffff;
  opacity: 0;
  transition: opacity 0.5s ease;
}
body.is-loaded {
  opacity: 1;
}
body.is-menu-open {
  overflow: hidden;
}

.main {
  overflow-x: clip;
}

.l-wrapper {
  overflow-x: clip;
}

.sp-only {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
}

.mt-80 {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .mt-80 {
    margin-top: 7.5rem;
  }
}

.header {
  position: fixed;
  z-index: 1000;
  width: 100%;
  top: 0;
  left: 0;
  height: 5rem;
}
@media screen and (min-width: 768px) {
  .header {
    height: 11.25rem;
  }
}

.header.is-open {
  background-color: #001135;
}

.header.is-scrolled {
  background-color: #001135;
  transition: background-color 0.3s ease;
}

.header__inner {
  max-width: 90rem;
  margin: 0 auto;
  width: 100%;
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .header__content {
    align-items: flex-start;
  }
}

.header__logo img {
  height: 5rem;
}
@media screen and (min-width: 768px) {
  .header__logo img {
    height: 11.25rem;
  }
}

.header__hamburger {
  width: 1.5625rem;
  height: 0.875rem;
  position: relative;
  margin-right: 1.875rem;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .header__hamburger {
    display: none;
  }
}
.header__hamburger.is-open span:nth-child(1) {
  width: 1.625rem;
  transform: rotate(45deg);
  top: 0.375rem;
  background-color: #ffffff;
}
.header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-open span:nth-child(3) {
  width: 1.625rem;
  transform: rotate(-45deg);
  bottom: 0.4375rem;
  background-color: #ffffff;
}

.header__hamburger span {
  position: absolute;
  width: 100%;
  height: 0.0625rem;
  background-color: #000;
  left: 0;
  transition: all 0.3s ease;
}
.header__hamburger span:nth-child(1) {
  top: 0;
}
.header__hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header__hamburger span:nth-child(3) {
  width: 1.0625rem;
  bottom: 0;
}

.footer {
  padding-block: 3.875rem 1.875rem;
  background-color: #001135;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-block: 3.875rem 4rem;
  }
}

.footer__inner {
  max-width: 70.625rem;
  padding-inline: 3.125rem;
  margin: 0 auto;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .footer__contents {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
  }
}

.footer__content + .footer__content {
  margin-top: 3.875rem;
}
@media screen and (min-width: 768px) {
  .footer__content + .footer__content {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .footer__top {
    display: flex;
    align-items: center;
    gap: 2.875rem;
  }
}

.footer__logo img {
  width: 7.125rem;
}
@media screen and (min-width: 768px) {
  .footer__logo img {
    width: 16.125rem;
  }
}

.footer__sns {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .footer__sns {
    margin-top: 0;
  }
}

.footer__copyright {
  margin-top: 3.125rem;
  font-size: 0.75rem;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 1.25rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  padding: 0.75rem 2.5rem;
  border-radius: 4px;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .btn {
    padding: 0.6875rem 1.25rem;
  }
}
.btn--primary {
  background-color: #011950;
  color: #ffffff;
}
.btn--primary:hover {
  opacity: 0.8;
}
.btn--outline {
  background-color: transparent;
  border: 0.0625rem solid #ffffff;
  color: #ffffff;
}
.btn--outline:hover {
  background-color: #ffffff;
  color: #011950;
}
.btn--outline:hover .btn__icon {
  filter: brightness(0) saturate(100%) invert(11%) sepia(85%) saturate(2849%) hue-rotate(218deg) brightness(91%) contrast(101%);
}
.btn__icon {
  width: 1rem;
}
@media screen and (min-width: 768px) {
  .btn__icon {
    width: 1.375rem;
  }
}
@media screen and (min-width: 768px) {
  .btn span {
    font-size: 1.375rem;
  }
}

.inner {
  max-width: 1320px;
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
}

.sp-nav {
  visibility: hidden;
  opacity: 0;
  background-color: #001135;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  padding-bottom: 1.875rem;
}
.sp-nav.is-open {
  visibility: visible;
  opacity: 1;
  transition: all 0.3s ease;
}

.sp-nav__logo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.sp-nav__items {
  padding-top: 10rem;
  margin-inline: 3.125rem;
}

.sp-nav__item {
  border-bottom: 0.0625rem solid #011950;
}
.sp-nav__item:first-child {
  border-top: 0.0625rem solid #011950;
}

.sp-nav__item a {
  color: #ffffff;
  font-size: 0.875rem;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  display: block;
  padding-block: 0.75rem;
}

.sp-nav__sns {
  margin: 2.5rem 0 0;
  padding: 0 3.125rem;
}

.pc-nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-nav {
    display: block;
  }
}

.pc-nav__items {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 4vw, 3.125rem);
  height: 5rem;
}

.pc-nav__item {
  height: inherit;
}
.pc-nav__item:last-child {
  background: #011950;
  color: #ffffff;
  padding-inline: 4.5625rem 2.5625rem;
  position: relative;
}
.pc-nav__item:last-child::after {
  content: "";
  width: 1.375rem;
  height: 1.125rem;
  background-image: url("../images/contact-icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 2.5rem;
  transform: translateY(-50%);
}
.pc-nav__item a {
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  height: inherit;
}
.pc-nav__item a:hover {
  opacity: 0.7;
}

.sns {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.sns-item a {
  color: #ffffff;
  font-size: 1.5rem;
  display: block;
  transition: opacity 0.3s ease;
}
.sns-item a:hover {
  opacity: 0.7;
}

.footer-nav__item a {
  color: #ffffff;
  font-size: 0.875rem;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  display: block;
  padding-block: 0.75rem;
}
@media screen and (min-width: 768px) {
  .footer-nav__item a {
    font-size: 1rem;
    padding-block: 0.625rem;
  }
}

.mv {
  overflow: hidden;
}

.mv__inner {
  padding-inline: 0.625rem;
}
@media screen and (min-width: 768px) {
  .mv__inner {
    padding-inline: 20px;
  }
}

@media screen and (min-width: 768px) {
  .mv__content {
    margin-top: 5rem;
    display: flex;
    align-items: center;
    gap: 6.3125rem;
  }
}

.mv__swiper {
  height: 100svh;
  width: 100%;
  touch-action: pan-y;
}
.mv__swiper .swiper-wrapper,
.mv__swiper .swiper-slide {
  touch-action: pan-y;
}

.mv__title {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .mv__title {
    margin-top: 0;
    writing-mode: vertical-rl;
  }
}

.mv__title-line {
  display: block;
  font-size: 2.125rem;
  font-weight: 700;
  margin-left: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .mv__title-line {
    font-size: 3.75rem;
  }
}

.mv__title-line,
.mv__catch {
  visibility: hidden;
}

.mv__slide {
  height: 100%;
}
.mv__slide picture {
  width: 100%;
  height: 100%;
  display: block;
}
.mv__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv__catch-wrap {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  animation: marquee 20s linear infinite;
}

.mv__catch {
  font-size: 5.25rem;
  font-weight: 700;
  color: #011950;
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 1.875rem;
}
@media screen and (min-width: 768px) {
  .mv__catch {
    font-size: 9.375rem;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.mv-css-slider .swiper-wrapper {
  display: block;
  position: relative;
  height: 100svh;
}
.mv-css-slider .swiper-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: mv-fade 20s infinite;
}
.mv-css-slider .swiper-slide:nth-child(1) {
  animation-delay: 0s;
}
.mv-css-slider .swiper-slide:nth-child(2) {
  animation-delay: 5s;
}
.mv-css-slider .swiper-slide:nth-child(3) {
  animation-delay: 10s;
}
.mv-css-slider .swiper-slide:nth-child(4) {
  animation-delay: 15s;
}

@keyframes mv-fade {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: #001E63;
  font-size: 0.875rem;
  padding: 0.9375rem 1.25rem;
  margin: -0.9375rem -1.25rem;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  position: relative;
}
.btn-more span {
  position: relative;
}
.btn-more span::before {
  content: "";
  width: 100%;
  height: 0.125rem;
  background-color: #001E63;
  position: absolute;
  left: 0;
  bottom: -0.1875rem;
  transform: scale(0);
  transform-origin: left center;
  transition: transform 0.3s;
}
.btn-more::after {
  content: "";
  width: 0.3125rem;
  height: 0.5625rem;
  background-image: url("../images/btn-icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  transition: all 0.3s;
}
.btn-more:hover span::before {
  transform: scaleX(1);
}
.btn-more:hover::after {
  transform: translateX(0.3125rem);
}
.btn-more--outline {
  margin: 0;
  color: #011950;
  border: 0.0625rem solid #011950;
  border-radius: 0.25rem;
  padding: 0.75rem 1.5rem;
}

.about {
  margin-top: 1.25rem;
}

.about__inner {
  max-width: 70.625rem;
  padding-inline: 1.25rem;
  margin: 0 auto;
  width: 100%;
}

.about__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .about__content {
    flex-direction: row;
    gap: 3.75rem;
  }
}

@media screen and (min-width: 768px) {
  .about__img {
    width: 50%;
    flex-shrink: 0;
  }
}

@media screen and (min-width: 768px) {
  .about__body {
    flex: 1;
  }
}

.about__img img {
  aspect-ratio: 335/292;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .about__img img {
    aspect-ratio: 550/480;
  }
}

.about__title {
  font-size: 0.875rem;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
}

.about__text {
  margin-top: 1.875rem;
  font-size: 0.875rem;
  line-height: 2.2857;
}

.about__btn {
  margin-top: 2.5rem;
  text-align: right;
}

.section-title {
  font-family: "Oswald", sans-serif;
  font-size: 2.375rem;
  font-weight: 700;
  color: #000;
}
.section-title .char {
  display: inline-block;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .section-title {
    font-size: 4.375rem;
  }
}

.service {
  margin-top: 5rem;
}
.service__inner {
  max-width: 72.5rem;
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .service {
    margin-top: 7.5rem;
  }
}

@media screen and (min-width: 768px) {
  .service__title {
    text-align: right;
  }
}

.service__items {
  margin-top: 1.25rem;
  display: grid;
  gap: 3.125rem;
}
@media screen and (min-width: 768px) {
  .service__items {
    margin-top: 2.5rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.125rem;
  }
}

.service__img {
  position: relative;
}
.service__img img {
  aspect-ratio: 335/170;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .service__img img {
    aspect-ratio: 355/170;
  }
}

.service__header {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1.875rem;
}

.service__number {
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-style: normal;
  font-weight: 700;
}

.service__header-title {
  color: #ffffff;
  font-size: 1.625rem;
  font-weight: 700;
  margin-top: 0.625rem;
}

.service__body {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .service__body {
    margin-right: 1.625rem;
  }
}

.service__text {
  color: #000;
  font-size: 0.875rem;
  line-height: 2.28571;
}
@media screen and (min-width: 768px) {
  .service__text {
    font-size: 1rem;
    line-height: 2.375;
  }
}

.service__link {
  margin-top: 1.25rem;
  text-align: right;
}

.works {
  margin-top: 5rem;
  padding-top: 3.75rem;
  background: #F8F8F8;
}
@media screen and (min-width: 768px) {
  .works {
    margin-top: 7.5rem;
    padding-top: 7.5rem;
  }
}

.works__inner {
  max-width: 71.25rem;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.works__content {
  background-color: #ffffff;
  margin-top: 0.75rem;
  margin-inline: calc(50% - 50vw);
  padding-block: 1.875rem 5rem;
  padding-inline: 2.5rem;
}
@media screen and (min-width: 768px) {
  .works__content {
    margin-inline: inherit;
    margin-top: 2.5rem;
    padding-block: 3.125rem;
  }
}

.works__items {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .works__items {
    flex: 1;
    margin-top: 0;
  }
}

.works__item {
  display: flex;
  gap: 1.125rem;
  padding-bottom: 1.875rem;
  border-bottom: 0.0625rem solid #E2E2E2;
  cursor: pointer;
}
.works__item:hover .works__text {
  background-size: 100% 1px;
}
@media screen and (min-width: 768px) {
  .works__item {
    gap: 3.125rem;
    padding-bottom: 3.125rem;
  }
}

.works__img {
  width: 41%;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .works__img {
    width: 18.125rem;
  }
}
.works__img img {
  aspect-ratio: 120/90;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .works__img img {
    aspect-ratio: 290/229;
  }
}

@media screen and (min-width: 768px) {
  .works__body {
    flex: 1;
  }
}

.works__category {
  color: #626262;
  font-size: 0.625rem;
  font-weight: 500;
  background-color: #F3F3F3;
  padding: 0.3125rem 0.9375rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .works__category {
    font-size: 0.6875rem;
    padding: 0.25rem 1.125rem;
  }
}

.works__text {
  margin-top: 0.375rem;
  color: #000;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-size: 0 1px;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease;
}
@media screen and (min-width: 768px) {
  .works__text {
    font-size: 1.5rem;
    margin-top: 2.125rem;
  }
}

.works__description {
  display: none;
}
@media screen and (min-width: 768px) {
  .works__description {
    display: block;
    margin-top: 1.0625rem;
    color: #626262;
    line-height: 2.375;
  }
}

.works__date {
  display: block;
  margin-top: 0.75rem;
  color: #A9A9A9;
  font-size: 0.625rem;
  font-weight: 700;
}

.works__link {
  text-align: right;
  margin-top: 2.5rem;
}

.works__page-content {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .works__page-content {
    display: flex;
    align-items: flex-start;
    position: relative;
    margin-top: 3.75rem;
  }
  .works__page-content::before {
    content: "";
    position: absolute;
    left: calc(30.138% + -3.125rem);
    top: 1.25rem;
    bottom: -4.375rem;
    width: 0.0625rem;
    background-color: #E2E2E2;
  }
}

@media screen and (min-width: 768px) {
  .works__sidebar {
    width: 30.138%;
    position: sticky;
    top: 12.5rem;
    align-self: flex-start;
  }
}

.works__filter {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9375rem 2.5rem;
  margin-inline: 2.125rem;
}
@media screen and (min-width: 768px) {
  .works__filter {
    flex-direction: column;
    margin-inline: 0;
  }
}

.works__filter-link {
  font-size: 0.75rem;
  color: #A9A9A9;
  font-weight: 500;
  position: relative;
}
.works__filter-link--active {
  color: #000;
}
.works__filter-link--active::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: #011950;
  position: absolute;
  left: -0.875rem;
  top: 50%;
  transform: translateY(-50%);
}

.contact {
  position: relative;
}

.contact__title {
  position: absolute;
  width: 0.0625rem;
  height: 0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.contact__content {
  display: grid;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__content {
    grid-template-columns: 820fr 620fr;
  }
}

.contact__body {
  background-color: #011950;
  color: #ffffff;
  padding: 5rem 4.625rem;
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .contact__body {
    order: 1;
  }
}

.contact__actions {
  margin-top: 2rem;
  margin-inline: auto;
  display: grid;
  gap: 1.25rem;
  max-width: 14.1875rem;
}
@media screen and (min-width: 768px) {
  .contact__actions {
    margin-top: 1.5625rem;
    max-width: 14.6875rem;
  }
}

.contact__img picture,
.contact__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact__hours {
  font-size: 0.75rem;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .contact__hours {
    margin-top: 1.375rem;
  }
}

.news {
  background-color: #F8F8F8;
  padding-block: 5rem 4.5rem;
}
@media screen and (min-width: 768px) {
  .news {
    padding-block: 7.5rem;
  }
}

.news__inner {
  max-width: 71.25rem;
  padding-inline: 1.25rem;
  margin-inline: auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .news__inner {
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .news__content {
    display: flex;
    position: relative;
    align-items: flex-start;
  }
  .news__content::before {
    content: "";
    position: absolute;
    left: calc(30.138% + -3.125rem);
    top: 1.25rem;
    bottom: -4.375rem;
    width: 0.0625rem;
    background-color: #E2E2E2;
  }
}

.news__content--page {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .news__content--page {
    margin-top: 3.75rem;
  }
}

@media screen and (min-width: 768px) {
  .news__head {
    width: 30.138%;
    position: sticky;
    top: 12.5rem;
    align-self: flex-start;
  }
}

.news__categories {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9375rem 2.5rem;
  margin-inline: 2.125rem;
}
@media screen and (min-width: 768px) {
  .news__categories {
    flex-direction: column;
  }
}

.news__categories--page {
  margin-top: 0;
}

.news__category {
  font-size: 0.75rem;
  color: #A9A9A9;
  font-weight: 500;
  position: relative;
}
.news__category--active {
  position: relative;
  color: #000;
}
.news__category--active::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: #011950;
  position: absolute;
  left: -0.875rem;
  top: 50%;
  transform: translateY(-50%);
}

.news__items {
  margin-top: 2.5rem;
  margin-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .news__items {
    flex: 1;
    margin-top: -1.25rem;
    margin-left: 3.75rem;
    margin-right: 0;
  }
}

.news__item {
  padding-block: 1.25rem;
  border-bottom: 0.0625rem solid #E2E2E2;
}
.news__item:first-child {
  border-top: 0.0625rem solid #E2E2E2;
}
@media screen and (min-width: 768px) {
  .news__item:first-child {
    border-top: none;
  }
}

.news__link-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .news__link-head {
    gap: 1.8125rem;
  }
}

.news__date {
  color: #A9A9A9;
  font-size: 0.625rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .news__date {
    font-size: 0.75rem;
  }
}

.news__tags {
  display: flex;
  gap: 0.375rem;
}
@media screen and (min-width: 768px) {
  .news__tags {
    gap: 1.25rem;
  }
}

.news__tag {
  color: #626262;
  font-size: 0.625rem;
  font-weight: 500;
  padding: 0.3125rem 0.9375rem;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .news__tag {
    font-size: 0.6875rem;
    padding: 0.25rem 1.125rem;
  }
}

.news__tag--sub {
  background-color: #F8F8F8;
}

.news__text {
  padding-top: 1.25rem;
  color: #000;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
  position: relative;
  display: inline-block;
}
.news__text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.0625rem;
  background-color: #000;
  transition: width 0.3s ease;
}
@media screen and (min-width: 768px) {
  .news__text {
    padding-top: 1.625rem;
    font-size: inherit;
  }
}

.news__link:hover .news__text::after {
  width: 100%;
}

.news__btn {
  text-align: right;
  margin-top: 2.8125rem;
}

.sub-mv {
  margin-top: 6.875rem;
}
@media screen and (min-width: 768px) {
  .sub-mv {
    margin-top: 14.75rem;
  }
}

.sub-mv__inner {
  margin-left: 0.625rem;
  max-width: 90rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .sub-mv__inner {
    margin-left: 0;
    margin-inline: auto;
  }
}

.sub-mv__content {
  position: relative;
  max-width: 79.375rem;
  width: 100%;
  margin-left: auto;
}

.sub-mv__title {
  background-color: #ffffff;
  padding-block: 1.125rem 2.25rem;
  padding-inline: 1.125rem 4.125rem;
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .sub-mv__title {
    padding-block: 1rem 2.9375rem;
    padding-inline: 3.125rem 13.125rem;
  }
}

.sub-mv__en {
  font-family: "Oswald", sans-serif;
  color: #000;
  font-size: 2.75rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .sub-mv__en {
    font-size: 6.25rem;
  }
}

.sub-mv__ja {
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: -0.375rem;
}
@media screen and (min-width: 768px) {
  .sub-mv__ja {
    font-size: 1.25rem;
    margin-top: -1rem;
  }
}

.sub-mv__img img {
  aspect-ratio: 365/280;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .sub-mv__img img {
    aspect-ratio: 1270/514;
  }
}

.breadcrumb {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .breadcrumb {
    margin-top: 1.25rem;
  }
}

.breadcrumb__inner {
  padding-inline: 0.625rem;
  max-width: 90rem;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .breadcrumb__inner {
    padding-inline: 3.75rem;
  }
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.375rem 0.625rem;
}

.breadcrumb__inner > span {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  justify-content: flex-end;
  font-size: 0.6875rem;
  font-family: "Roboto", sans-serif;
}
@media screen and (min-width: 768px) {
  .breadcrumb__inner > span {
    font-size: 0.9375rem;
  }
}
.breadcrumb__inner > span a, .breadcrumb__inner > span span {
  font-size: inherit;
}

.breadcrumb__item {
  font-family: "Roboto", sans-serif;
  font-size: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .breadcrumb__item {
    font-size: 0.9375rem;
  }
}
.breadcrumb__item a {
  font-size: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .breadcrumb__item a {
    font-size: 0.9375rem;
  }
}
.breadcrumb__item img {
  width: 1.25rem;
  display: flex;
}
.breadcrumb__item:not(:last-child) {
  color: #A9A9A9;
}
.breadcrumb__item:last-child {
  color: #242424;
  max-width: 10em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.page-nav {
  margin-top: 1.875rem;
}
.page-nav__lists {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .page-nav__lists {
    gap: 7.5rem;
  }
}
.page-nav__list a {
  display: inline-block;
  color: #011950;
  font-size: 0.75rem;
  position: relative;
  padding-block: 0.625rem;
  margin-block: -0.625rem;
}
@media screen and (min-width: 768px) {
  .page-nav__list a {
    font-size: 1rem;
  }
}
.page-nav__list a::after {
  content: "";
  width: 0.5625rem;
  height: 0.3125rem;
  background-image: url(../images/page-icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -1.1875rem;
}

.about-intro {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .about-intro {
    margin-top: 6.25rem;
  }
}
.about-intro__inner.inner {
  max-width: 55rem;
  width: 100%;
  margin-inline: auto;
}
.about-intro__title {
  color: #000;
  font-size: 1.125rem;
  line-height: 2.0555;
}
@media screen and (min-width: 768px) {
  .about-intro__title {
    font-size: 2.5rem;
    line-height: 1.5;
  }
}
.about-intro__text {
  margin-top: 1.875rem;
  color: #000;
  font-size: 0.875rem;
  line-height: 2.2857;
}
@media screen and (min-width: 768px) {
  .about-intro__text {
    margin-top: 2.5rem;
    font-size: inherit;
    line-height: 2.375;
  }
}

.philosophy {
  margin-top: 5rem;
  scroll-margin-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .philosophy {
    margin-top: 7.5rem;
  }
}
.philosophy__inner.inner {
  max-width: 71.25rem;
  width: 100%;
}
.philosophy__content {
  display: grid;
}
@media screen and (min-width: 768px) {
  .philosophy__content {
    grid-template-columns: 740fr 360fr;
  }
}
.philosophy__head {
  background-color: #F8F8F8;
  margin-left: calc(50% - 50vw);
  width: 100vw;
  padding-block: 3.75rem 1.875rem;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .philosophy__head {
    padding-block: 4.375rem;
    padding-inline: 1.875rem;
    width: inherit;
    margin-left: inherit;
  }
}
.philosophy__text {
  margin-top: 1.875rem;
  font-size: 0.875rem;
  line-height: 2.285;
}
.philosophy__name {
  margin-top: 1.875rem;
  font-size: 0.875rem;
  text-align: right;
}
.philosophy__img img {
  aspect-ratio: 335/300;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .philosophy__img img {
    aspect-ratio: 360/535;
  }
}

.sub-header__ja {
  color: #001E63;
  font-size: 0.75rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .sub-header__ja {
    font-size: inherit;
  }
}
.sub-header__en {
  color: #000;
  font-family: "Oswald", sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  display: flex;
  gap: 0.625rem;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .sub-header__en {
    font-size: 2.5rem;
    gap: 1.25rem;
  }
}
.sub-header__en span {
  display: inline-block;
  height: 0.125rem;
  width: 3.75rem;
  background-color: #000;
}

.access {
  margin-top: 5rem;
  scroll-margin-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .access {
    margin-top: 7.5rem;
    scroll-margin-top: 12.5rem;
  }
}
.access__inner {
  max-width: 71.25rem;
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.access__address-wrap {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: #000;
}
@media screen and (min-width: 768px) {
  .access__address-wrap {
    margin-top: 0.5rem;
    flex-direction: inherit;
    gap: 1.25rem;
  }
}
.access__address {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .access__address {
    font-size: inherit;
  }
}
.access__map {
  margin-top: 1.25rem;
  width: 100%;
  aspect-ratio: 335/400;
}
@media screen and (min-width: 768px) {
  .access__map {
    margin-top: 3.75rem;
    aspect-ratio: 1100/400;
  }
}
.access__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.company {
  margin-top: 5rem;
  scroll-margin-top: 6.25rem;
  background-color: #F8F8F8;
  padding-block: 3.75rem 5rem;
}
@media screen and (min-width: 768px) {
  .company {
    margin-top: 7.5rem;
    padding-block: 4.375rem 7.5rem;
  }
}
.company__inner {
  max-width: 71.25rem;
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.company__lists {
  margin-top: 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .company__lists {
    margin-top: 3.75rem;
    gap: 2.5rem;
  }
}
.company__list {
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-bottom: 0.0625rem solid #E2E2E2;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .company__list {
    padding-bottom: 2.5rem;
    font-size: inherit;
    flex-direction: row;
    gap: 0;
  }
}
.company__list dt {
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .company__list dt {
    width: 10.625rem;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 768px) {
  .company__list dd {
    flex: 1;
  }
}
.company__multi {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .company__multi {
    gap: 1.25rem;
  }
}
.company__marquee {
  margin-top: 5rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .company__marquee {
    margin-top: 7.5rem;
  }
}
.company__marquee-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}
.company__marquee-lists {
  display: flex;
  gap: 0.25rem;
  padding-right: 0.25rem;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .company__marquee-lists {
    gap: 0.625rem;
    padding-right: 0.625rem;
  }
}
.company__marquee-list {
  flex-shrink: 0;
  width: 11.25rem;
}
@media screen and (min-width: 768px) {
  .company__marquee-list {
    width: 30rem;
  }
}
.company__marquee-list img {
  width: 100%;
  height: auto;
  aspect-ratio: 180/150;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .company__marquee-list img {
    aspect-ratio: 480/400;
  }
}
@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.sub-service {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .sub-service {
    margin-top: 7.5rem;
  }
}
.sub-service__items {
  display: grid;
  gap: 3.125rem;
}
@media screen and (min-width: 768px) {
  .sub-service__items {
    gap: 7.5rem;
  }
}
.sub-service__item {
  max-width: 75rem;
  width: 100%;
  margin-inline: auto;
  scroll-margin-top: 8.125rem;
}
.sub-service__head {
  padding-top: 3.75rem;
  background-color: #F8F8F8;
  margin-inline: -1.25rem;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .sub-service__head {
    display: grid;
    grid-template-columns: 560fr 640fr;
    align-items: center;
    padding-top: 0;
    margin-inline: 0;
    padding-inline: 0;
  }
}
@media screen and (min-width: 768px) {
  .sub-service__content {
    padding: 1.25rem 3.125rem;
  }
}
.sub-service__number {
  color: #001E63;
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  display: inline-block;
  position: relative;
}
.sub-service__number::after {
  content: "";
  width: 0.0625rem;
  height: 1.875rem;
  background-color: #000;
  position: absolute;
  right: -0.625rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .sub-service__number::after {
    height: 2.125rem;
    right: -1rem;
  }
}
@media screen and (min-width: 768px) {
  .sub-service__number {
    font-size: 2.5rem;
  }
}
.sub-service__title {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .sub-service__title {
    font-size: 1.75rem;
  }
}
.sub-service__text {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2.285;
}
@media screen and (min-width: 768px) {
  .sub-service__text {
    font-size: 1.375rem;
    max-width: 25rem;
    width: 100%;
  }
}
.sub-service__img {
  margin-top: 1.25rem;
}
.sub-service__img img {
  aspect-ratio: 335/220;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .sub-service__img img {
    aspect-ratio: 640/450;
  }
}
@media screen and (min-width: 768px) {
  .sub-service__img {
    margin-top: 0;
  }
}
.sub-service__body {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .sub-service__body {
    margin-top: 1.875rem;
    max-width: 68.75rem;
    width: 100%;
    margin-inline: auto;
  }
}
.sub-service__body-title {
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5625rem;
}
.sub-service__body-title span {
  color: #626262;
  font-size: 0.625rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .sub-service__body-title span {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 768px) {
  .sub-service__body-title {
    font-size: 1.375rem;
    gap: 1rem;
  }
}
.sub-service__body-text {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 2.285;
}
@media screen and (min-width: 768px) {
  .sub-service__body-text {
    font-size: inherit;
    line-height: 2.375;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  margin-top: 3.75rem;
  margin-bottom: 5rem;
}
.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #e9eeef;
  color: #242424;
  font-family: "Oswald", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.pagination .page-numbers:hover {
  opacity: 0.7;
}
.pagination .page-numbers.current {
  background-color: #001E63;
  color: #ffffff;
  pointer-events: none;
}
.pagination .page-numbers.prev, .pagination .page-numbers.next {
  background-color: transparent;
  font-size: 1.25rem;
  color: #242424;
}
.pagination .page-numbers.dots {
  background-color: transparent;
}

.news-detail {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .news-detail {
    margin-top: 3.75rem;
  }
}

.news-detail__body {
  display: grid;
  gap: 3.5625rem;
}
@media screen and (min-width: 768px) {
  .news-detail__body {
    grid-template-columns: 1fr 18.75rem;
    gap: clamp(3.125rem, 9vw, 8.625rem);
  }
}

.news-detail__inner {
  max-width: 75rem;
  padding-inline: 1.875rem;
  margin-inline: auto;
  width: 100%;
}

.news-detail__title {
  margin-top: 0.625rem;
  color: #000;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6666;
}

.news-detail__date {
  margin-top: 0.625rem;
  color: #A9A9A9;
  font-weight: 700;
  font-size: 0.625rem;
}

.news-detail__eyecatch {
  margin-top: 2.5rem;
}
.news-detail__eyecatch img {
  aspect-ratio: 315/176;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-detail__content {
  margin-top: 2.5rem;
}
.news-detail__content h2 {
  font-size: inherit;
  color: #000;
  background-color: #F8F9F9;
  padding: 0.5rem 0.5rem 0.5625rem 0.6875rem;
  position: relative;
}
.news-detail__content h2::after {
  content: "";
  width: 0.1875rem;
  height: 100%;
  background-color: #001E63;
  position: absolute;
  left: 0;
  top: 0;
}
.news-detail__content p {
  font-size: 0.875rem;
  line-height: 2.2857;
  margin-top: 2.5rem;
}
.news-detail__content h3 {
  color: #000;
  font-size: inherit;
  margin-top: 2.5rem;
  padding: 0.5rem 0.5rem 0.5625rem 0.8125rem;
  position: relative;
}
.news-detail__content h3::before {
  content: "";
  width: 7.8125rem;
  height: 0.0625rem;
  background-color: #001E63;
  position: absolute;
  left: 0;
  bottom: 0;
}
.news-detail__content h3::after {
  content: "";
  width: 11.875rem;
  height: 0.0625rem;
  background-color: #E4E4E4;
  position: absolute;
  right: 0;
  bottom: 0;
}
.news-detail__content ul {
  list-style: disc;
  padding-left: 1.25rem;
}

.news-detail__nav {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
}

.news-detail__prev,
.news-detail__next {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid #001E63;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  color: #001E63;
  transition: opacity 0.3s ease;
}
.news-detail__prev .arrow,
.news-detail__next .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.news-detail__prev:hover,
.news-detail__next:hover {
  opacity: 0.7;
}
.news-detail__prev:hover .arrow,
.news-detail__next:hover .arrow {
  transform: translateX(-5px);
}

.news-detail__next .arrow {
  transform: translateX(0);
}
.news-detail__next:hover .arrow {
  transform: translateX(5px);
}

.sidebar__contents {
  display: grid;
  gap: 2.5rem;
}

.sidebar__title {
  padding: 0.9375rem 1.125rem;
  background-color: #001135;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
}

.sidebar__list {
  display: grid;
  gap: 1.125rem;
  margin-top: 1.125rem;
}

.sidebar__item {
  margin-inline: 1.125rem;
  padding-bottom: 1.125rem;
  border-bottom: 0.0625rem solid #E4E4E4;
}

.sidebar__link {
  display: grid;
  grid-template-columns: 100fr 191fr;
  gap: 1.125rem;
}

.sidebar__img {
  align-self: start;
}
.sidebar__img img {
  aspect-ratio: 100/100;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sidebar__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sidebar__text {
  font-size: 0.75rem;
  line-height: 2.3333;
}

.sidebar__date {
  color: #A9A9A9;
  font-size: 0.625rem;
  font-weight: 700;
}

.sub-news {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .sub-news {
    margin-top: 3.75rem;
  }
}

.sub-news__inner {
  max-width: 71.25rem;
  padding-inline: 1.25rem;
  margin-inline: auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .sub-news__inner {
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .sub-content {
    display: flex;
    position: relative;
    align-items: flex-start;
  }
  .sub-content::before {
    content: "";
    width: 0.125rem;
    height: 100%;
    background-color: #E2E2E2;
    position: absolute;
    top: 0;
    left: 24%;
  }
}

.categories {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0.9375rem 2.5rem;
  margin-inline: 2.125rem;
}
@media screen and (min-width: 768px) {
  .categories {
    grid-template-columns: auto;
    width: calc(21% + 3.75rem);
    position: sticky;
    top: 12.5rem;
    align-self: flex-start;
    margin-right: 0;
    margin-left: 1.25rem;
    flex: 0 0 22%;
  }
}

.categories__item {
  font-size: 0.75rem;
  color: #A9A9A9;
  font-weight: 500;
  position: relative;
}
.categories__item--active {
  position: relative;
  color: #000;
}
.categories__item--active::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: #011950;
  position: absolute;
  left: -0.875rem;
  top: 50%;
  transform: translateY(-50%);
}

.sub-works {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .sub-works {
    margin-top: 3.75rem;
  }
}

.sub-works__inner {
  max-width: 71.25rem;
  padding-inline: 1.25rem;
  margin-inline: auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .sub-works__inner {
    position: relative;
  }
}

.sub-works__items {
  margin-top: 2.375rem;
  margin-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .sub-works__items {
    margin-top: 0;
    margin-inline: 5.25rem;
  }
}

.sub-works-items {
  display: grid;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .sub-works-items {
    gap: 1.875rem;
  }
}

.sub-works-item {
  border-bottom: 0.0625rem solid #E2E2E2;
  padding-bottom: 1.25rem;
  display: grid;
  grid-template-columns: 130fr 150fr;
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .sub-works-item {
    padding-bottom: 1.875rem;
    grid-template-columns: 160fr 530fr;
    gap: 1.875rem;
  }
}

.sub-works__img img {
  aspect-ratio: 130/100;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .sub-works__img img {
    aspect-ratio: 160/160;
  }
}

.sub-works__category {
  color: #626262;
  font-size: 0.625rem;
  font-weight: 500;
  background-color: #F3F3F3;
  padding: 0.3125rem 0.9375rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .sub-works__category {
    font-size: 0.6875rem;
    padding: 0.25rem 1.125rem;
  }
}

.sub-works-item:hover .sub-works__text {
  background-size: 100% 1px;
}

.sub-works__body {
  display: flex;
  flex-direction: column;
}

.sub-works__text {
  margin-top: 0.625rem;
  color: #000;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-size: 0 1px;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease;
  width: -moz-fit-content;
  width: fit-content;
}

.sub-works__date {
  margin-top: auto;
  color: #A9A9A9;
  font-size: 0.625rem;
  font-weight: 700;
}

.works-detail {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .works-detail {
    margin-top: 3.75rem;
  }
}

.works-detail__inner {
  padding-inline: 1.875rem;
  margin-inline: auto;
  width: 100%;
  max-width: 37.5rem;
}
@media screen and (min-width: 768px) {
  .works-detail__inner {
    max-width: 52.5rem;
  }
}

.works-detail__tag {
  color: #626262;
  font-size: 0.625rem;
  font-weight: 500;
  padding: 0.3125rem 0.9375rem;
  background-color: #F8F8F8;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .works-detail__tag {
    font-size: 0.6875rem;
  }
}

.works-detail__title {
  color: #000;
  margin-top: 0.625rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6666;
}
@media screen and (min-width: 768px) {
  .works-detail__title {
    font-size: 1.625rem;
    margin-top: 1.25rem;
  }
}

.works-detail__date {
  margin-top: 0.625rem;
  font-size: 0.625rem;
  font-weight: 700;
  color: #A9A9A9;
}
@media screen and (min-width: 768px) {
  .works-detail__date {
    font-size: 0.6875rem;
  }
}

.works-detail__eyecatch {
  margin-top: 2.125rem;
}
.works-detail__eyecatch img {
  aspect-ratio: 315/176;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .works-detail__eyecatch img {
    aspect-ratio: 841/471;
  }
}
@media screen and (min-width: 768px) {
  .works-detail__eyecatch {
    margin-top: 2.5rem;
  }
}

.works-detail__content {
  margin-top: 2.625rem;
}
@media screen and (min-width: 768px) {
  .works-detail__content {
    margin-top: 2.5rem;
  }
}
.works-detail__content p {
  font-size: 0.875rem;
  line-height: 2.28571;
}
@media screen and (min-width: 768px) {
  .works-detail__content p {
    font-size: inherit;
    line-height: 2;
    padding-inline: 5rem;
  }
}

.works-detail__button {
  margin-top: 2.5rem;
  text-align: center;
}
.works-detail__button a {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 5.375rem;
  border: 1px solid #001E63;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  color: #001E63;
  transition: opacity 0.3s ease;
}
.works-detail__button a span {
  transition: transform 0.3s ease;
}
.works-detail__button a:hover {
  opacity: 0.7;
}
.works-detail__button a:hover span {
  transform: translateX(-5px);
}
@media screen and (min-width: 768px) {
  .works-detail__button {
    margin-top: 3.75rem;
  }
}

.contact-form {
  margin-top: 1.875rem;
  margin-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .contact-form {
    margin-top: 3.75rem;
    margin-bottom: 7.5rem;
  }
}

.contact-form__inner {
  max-width: 71.25rem;
  padding-inline: 1.25rem;
  margin-inline: auto;
  width: 100%;
}

.contact-form__lead {
  font-size: 0.875rem;
  line-height: 2.28571;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .contact-form__lead {
    font-size: inherit;
    line-height: 2.375;
    max-width: 40rem;
    margin-inline: auto;
    margin-bottom: 6.25rem;
  }
}

.contact-form__form {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .contact-form__form {
    max-width: 40rem;
    margin-inline: auto;
  }
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form__label-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media screen and (min-width: 768px) {
  .contact-form__label-wrap {
    flex-direction: row;
    align-items: baseline;
    gap: 0.625rem;
  }
}

.contact-form__label {
  font-size: 0.9375rem;
  font-weight: 500;
}

.contact-form__required {
  color: #e20000;
}

.contact-form__note {
  font-size: 0.875rem;
}

.contact-form__input {
  width: 100%;
  height: 3.125rem;
  border: 0.0625rem solid #d9d9d9;
  padding-inline: 0.9375rem;
  font-size: 0.875rem;
  color: #000;
  background-color: #ffffff;
}
.contact-form__input::-moz-placeholder {
  color: #a9a9a9;
}
.contact-form__input::placeholder {
  color: #a9a9a9;
}

.contact-form__select-wrap {
  position: relative;
}
.contact-form__select-wrap::after {
  content: "";
  position: absolute;
  right: 0.9375rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.75rem;
  height: 0.375rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 6'%3E%3Cpath d='M0 0l6 6 6-6z' fill='%23333'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.contact-form__select {
  width: 100%;
  height: 3.125rem;
  border: 0.0625rem solid #d9d9d9;
  padding-inline: 0.9375rem;
  font-size: 0.875rem;
  color: #000;
  background-color: #ffffff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

.contact-form__textarea {
  width: 100%;
  height: 10rem;
  border: 0.0625rem solid #d9d9d9;
  padding: 0.75rem 0.9375rem;
  font-size: 0.875rem;
  color: #000;
  background-color: #ffffff;
  resize: vertical;
}

.contact-form__privacy {
  margin-top: -0.625rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.contact-form__privacy br {
  display: none;
}
.contact-form__privacy .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  width: auto;
}
.contact-form__privacy .wpcf7-list-item-label {
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  width: auto;
  flex: none;
}
.contact-form__privacy input[type=checkbox] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  accent-color: #011950;
  width: 1.0625rem;
  height: 1.0625rem;
  flex-shrink: 0;
  cursor: pointer;
}

.contact-form__submit {
  text-align: center;
  margin-top: 0.625rem;
}

.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  writing-mode: horizontal-tb;
}
@media screen and (min-width: 768px) {
  .wpcf7-form {
    max-width: 40rem;
    margin-inline: auto;
  }
}
.wpcf7-form br {
  display: none;
}
.wpcf7-form p {
  margin: 0;
  display: flex;
  gap: 0.5rem;
}
.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.wpcf7-form .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}
.wpcf7-form .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
}
.wpcf7-form span.wpcf7-acceptance {
  display: block;
  width: 100%;
}
.wpcf7-form span.wpcf7-acceptance label {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  width: 100%;
}
.wpcf7-form span.wpcf7-acceptance input[type=checkbox] {
  flex-shrink: 0;
  width: 1.0625rem;
  height: 1.0625rem;
  accent-color: #011950;
}
.wpcf7-form .wpcf7-list-item-label {
  white-space: normal;
  line-height: 1.5;
  flex: 1;
  min-width: 0;
}
.wpcf7-form span.wpcf7-acceptance .wpcf7-list-item-label::after,
.wpcf7-form .contact-form__privacy-text::after {
  content: "*";
  color: #e20000;
  margin-left: 0.125rem;
}
.wpcf7-form .wpcf7-submit {
  background-color: #011950;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.75rem 5.9375rem;
  border-radius: 0.25rem;
  cursor: pointer;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .wpcf7-form .wpcf7-submit {
    font-size: 1.125rem;
    padding: 1.25rem 11.125rem;
    width: auto;
  }
}

.contact-form__btn {
  background-color: #011950;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.75rem 5.9375rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.contact-form__btn:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .contact-form__btn {
    font-size: 1.125rem;
    padding: 1.25rem 11.125rem;
  }
}

.contact-confirm {
  margin-top: 1.875rem;
  margin-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .contact-confirm {
    margin-top: 3.75rem;
    margin-bottom: 7.5rem;
  }
}

.contact-confirm__inner {
  max-width: 71.25rem;
  padding-inline: 1.25rem;
  margin-inline: auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .contact-confirm__inner {
    max-width: 42.5rem;
  }
}

.contact-confirm__lead {
  font-size: 0.875rem;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .contact-confirm__lead {
    font-size: 1rem;
    margin-bottom: 3.125rem;
  }
}

.contact-confirm__list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
@media screen and (min-width: 768px) {
  .contact-confirm__list {
    gap: 2rem;
  }
}

.contact-confirm__item {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
@media screen and (min-width: 768px) {
  .contact-confirm__item {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
}

.contact-confirm__label {
  font-size: 0.9375rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .contact-confirm__label {
    flex: 0 0 12rem;
  }
}

.contact-confirm__required {
  color: #e20000;
}

.contact-confirm__value {
  font-size: 0.875rem;
  line-height: 2;
  color: #000;
}

.contact-confirm__actions {
  display: flex;
  justify-content: center;
  gap: 1.4375rem;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .contact-confirm__actions {
    margin-top: 5rem;
    gap: 5rem;
  }
}

.contact-confirm__back-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9.4375rem;
  height: 2.6875rem;
  border: 0.125rem solid #011950;
  border-radius: 0.25rem;
  color: #011950;
  font-size: 0.875rem;
  font-weight: 500;
  transition: opacity 0.3s ease;
}
.contact-confirm__back-btn:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .contact-confirm__back-btn {
    width: 17.5rem;
    height: 4.125rem;
    font-size: 1.125rem;
  }
}

.contact-confirm__submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9.4375rem;
  height: 2.6875rem;
  background-color: #011950;
  border-radius: 0.25rem;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.contact-confirm__submit-btn:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .contact-confirm__submit-btn {
    width: 17.5rem;
    height: 4.125rem;
    font-size: 1.125rem;
  }
}

.contact-thanks {
  margin-top: 1.875rem;
  margin-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .contact-thanks {
    margin-top: 3.75rem;
    margin-bottom: 7.5rem;
  }
}

.contact-thanks__inner {
  max-width: 71.25rem;
  padding-inline: 1.25rem;
  margin-inline: auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .contact-thanks__inner {
    max-width: 42.5rem;
  }
}

.contact-thanks__en {
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .contact-thanks__en {
    font-size: 2.5rem;
  }
}

.contact-thanks__title {
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .contact-thanks__title {
    font-size: 1.125rem;
    margin-top: 1.5rem;
  }
}

.contact-thanks__body {
  font-size: 0.875rem;
  line-height: 2;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .contact-thanks__body {
    font-size: 1rem;
    line-height: 2.375;
    margin-top: 2.5rem;
  }
}

.contact-thanks__btn-wrap {
  margin-top: 3.75rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact-thanks__btn-wrap {
    margin-top: 5rem;
  }
}

.contact-thanks__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 17.1875rem;
  height: 2.6875rem;
  background-color: #011950;
  border-radius: 0.25rem;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  transition: opacity 0.3s ease;
}
.contact-thanks__btn:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .contact-thanks__btn {
    width: 28.75rem;
    height: 4.125rem;
    font-size: 1.125rem;
  }
}

.contact-thanks__btn-icon {
  font-size: 0.5625rem;
}

.not-found {
  margin-top: 7.5rem;
}
@media screen and (min-width: 768px) {
  .not-found {
    margin-top: 20.625rem;
  }
}

.not-found__inner {
  max-width: 90rem;
  width: 100%;
  margin-inline: auto;
}

.not-found__content {
  margin-left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .not-found__content {
    margin-left: 1.25rem;
  }
}

.not-found__img {
  max-width: 79.375rem;
  width: 100%;
  margin-left: auto;
}

.not-found__img-wrap {
  position: relative;
}
.not-found__img-wrap picture {
  display: block;
}
.not-found__img-wrap img {
  display: block;
  aspect-ratio: 365/243;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.not-found__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 2.1875rem;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .not-found__title {
    font-size: 4.375rem;
    transform: inherit;
    top: 30%;
    left: 41%;
  }
}

@media screen and (min-width: 768px) {
  .not-found__overlay {
    position: absolute;
    top: 43%;
    left: 41%;
    color: #ffffff;
  }
}

.not-found__text {
  margin-top: 2.5rem;
  padding-inline: 0.5rem 1.375rem;
  color: #000;
  font-size: 0.875rem;
  line-height: 2.28571;
}
@media screen and (min-width: 768px) {
  .not-found__overlay .not-found__text {
    padding-inline: 0;
    color: #ffffff;
    font-size: 1rem;
    line-height: 2.375;
    margin-top: 1.5rem;
  }
}

.not-found__btn {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .not-found__overlay .not-found__btn {
    text-align: left;
    margin-top: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .news-detail__prev--white {
    border-color: #ffffff;
    color: #ffffff;
  }
}

.lay-breadcrumb {
  margin-top: 5.625rem;
}
@media screen and (min-width: 768px) {
  .lay-breadcrumb {
    margin-top: 12.5rem;
  }
}

.privacy {
  padding-block: 3.75rem 5rem;
}
@media screen and (min-width: 768px) {
  .privacy {
    padding-block: 5rem 7.5rem;
  }
}

.privacy__inner {
  max-width: 50rem;
}

.privacy__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 0.125rem solid #011950;
}
@media screen and (min-width: 768px) {
  .privacy__title {
    font-size: 2rem;
    margin-bottom: 3.75rem;
  }
}

.privacy__content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.privacy__content h2 {
  font-size: 1.125rem;
  font-weight: 700;
  padding-left: 0.75rem;
  border-left: 0.25rem solid #011950;
}
@media screen and (min-width: 768px) {
  .privacy__content h2 {
    font-size: 1.25rem;
  }
}
.privacy__content p {
  font-size: 0.875rem;
  line-height: 2;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .privacy__content p {
    font-size: 1rem;
  }
}
.privacy__content ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 1.25rem;
}
.privacy__content ul li {
  font-size: 0.875rem;
  line-height: 2;
  list-style: disc;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .privacy__content ul li {
    font-size: 1rem;
  }
}
.privacy__content h2 + p,
.privacy__content h2 + ul {
  margin-top: -1.5rem;
}