@charset "UTF-8";
html {
  font-size: 16px;
  overflow-x: hidden; /* スクロールバーの影響を防ぐ */
}

body {
  font-family: "Roboto", serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

@media screen and (max-width: 768px) {
  .md-none {
    display: none;
  }
}

.md-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .md-show {
    display: block;
  }
}

.inner {
  width: 100%;
  max-width: 1150px;
  padding-left: 25px;
  padding-right: 25px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.title {
  font-size: 70px;
  font-weight: 700;
  font-family: "Oswald", serif;
  color: #000;
}
@media screen and (max-width: 768px) {
  .title {
    font-size: 38px;
  }
}

.label {
  font-size: 16px;
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
  color: #011950;
}
@media screen and (max-width: 768px) {
  .label {
    font-size: 12px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 2000;
}
@media screen and (max-width: 768px) {
  .header {
    height: 0px;
  }
}

.header__title {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3000;
}

.header__title img {
  max-width: 100%;
  width: auto;
  height: 180px;
}
@media screen and (max-width: 768px) {
  .header__title img {
    max-width: 114.72px;
    height: 80px;
  }
}

.header__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: inherit;
  background-color: #fff;
}

.header__nav {
  height: inherit;
}
@media screen and (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}

.header__list {
  display: flex;
  align-items: center;
  height: inherit;
}

.header__item {
  display: flex;
  align-items: center;
  height: inherit;
}

.header__item:not(:first-child) {
  margin-left: 49px;
}

.header__link {
  font-size: 16px;
  color: #000;
  font-family: "Roboto", serif;
  font-weight: 500;
  height: inherit;
  display: flex;
  align-items: center;
}

.header__link--contact {
  height: 100%;
  color: #fff;
  background-color: #011950;
  padding: 0 45px;
}

.header__link--contact i {
  font-size: 16px;
  margin-right: 10px;
}

.hamburger {
  position: fixed;
  z-index: 9999;
  top: 20px;
  right: 20px;
  width: 25px;
  height: 16px;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 2px;
  transition: top 0.3s, transform 0.3s, opacity 0.3s, background-color 0.3s;
  background-color: #242424;
}

.hamburger.is-active span {
  background-color: #fff;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 7px;
}

.hamburger span:nth-child(3) {
  top: 14px;
  width: 17px;
}

.hamburger.is-active span:nth-child(1) {
  top: 10px;
  transform: rotate(-45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 10px;
  transform: rotate(45deg);
  width: 25px;
}

.drawer {
  position: absolute;
  z-index: 5000;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  background-color: #001135;
  overflow-y: auto;
}

.drawer__logo {
  max-width: 114.72px;
}

.drawer__nav {
  display: flex;
  justify-content: flex-start;
  height: inherit;
  margin-top: 80px;
}

.drawer__items {
  padding-left: 50px;
}

.drawer__item:not(:last-child) {
  margin-top: 26px;
}

.drawer__link {
  font-size: 14px;
  font-family: "Roboto", serif;
  font-weight: 300;
  color: #fff;
}

.drawer__link--secondary {
  font-family: "Noto Sans JP", serif;
}

.drawer__item--social {
  display: flex;
  column-gap: 20px;
  margin-top: 50px;
}

.drawer__item--social a {
  font-size: 22px;
  color: #fff;
}

.mv {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .mv {
    height: 100vh;
  }
}

.mv__inner {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  column-gap: 50px;
  padding-right: 40px;
  padding-left: 80px;
}
@media screen and (max-width: 768px) {
  .mv__inner {
    flex-direction: column;
    row-gap: 22px;
    padding-right: 10px;
    padding-left: 10px;
  }
}

.swiper {
  margin-inline: auto;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.picture {
  width: 100%;
  height: 100%;
  display: block;
}

.mv__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  object-position: center; /* 画像の中心を表示 */
}

.mv__text {
  margin-top: 201px;
}
@media screen and (max-width: 768px) {
  .mv__text {
    margin-top: 0;
    padding-left: 10px;
    text-align: left;
    width: 100%;
  }
}

.mv__title {
  font-size: 60px;
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
  color: #000;
  line-height: 1.2;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
@media screen and (max-width: 768px) {
  .mv__title {
    font-size: 34px;
    writing-mode: horizontal-tb;
  }
}

.hero-text {
  margin-top: 60px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .hero-text {
    margin-top: 22px;
  }
}

.hero-text__wrapper {
  position: relative;
  margin-inline: auto;
  max-width: 1440px;
  width: 100%;
  white-space: nowrap; /* テキストを1行にする */
  animation: slide-left 10s linear infinite; /* アニメーションを適用 */
}

.hero-text__content {
  font-size: 150px;
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
  color: #001135;
}
@media screen and (max-width: 768px) {
  .hero-text__content {
    font-size: 84px;
  }
}

@keyframes slide-left {
  0% {
    transform: translateX(100%); /* 初期位置（右側からスタート） */
  }
  100% {
    transform: translateX(-100%); /* 最終位置（左側に消える） */
  }
}
.about {
  margin-top: 55px;
}
@media screen and (max-width: 768px) {
  .about {
    margin-top: 20px;
  }
}

.about__inner {
  max-width: 1150px;
  margin-inline: auto;
  padding-left: 25px;
  padding-right: 25px;
  display: flex;
  column-gap: 60px;
}
@media screen and (max-width: 768px) {
  .about__inner {
    flex-direction: column;
    column-gap: 0;
    row-gap: 30px;
  }
}

.about__img {
  width: 550px;
  aspect-ratio: 550/480;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .about__img {
    max-width: 100%;
  }
}

.about__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 490px;
}

.about__title {
  margin-top: 70px;
  font-size: 14px;
  font-weight: 700;
  font-family: "Oswald", serif;
  color: #000;
}
@media screen and (max-width: 768px) {
  .about__title {
    margin-top: 0px;
  }
}

.about__text {
  margin-top: 40px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
  color: #000;
  line-height: 2.375;
}
@media screen and (max-width: 768px) {
  .about__text {
    font-size: 14px;
    margin-top: 30px;
  }
}

.ReadMore__button--about {
  margin-top: 40px;
  display: flex;
  justify-content: flex-end;
  padding-right: 10px;
}

.ReadMore__link {
  position: relative;
  display: inline-block;
  transition: all 0.3s;
}
.ReadMore__link::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #001e63;
  transition: width 0.3s;
}
.ReadMore__link:hover::before {
  width: calc(100% + 15px);
}
.ReadMore__link::after {
  position: absolute;
  content: url(../images/arrow-icon.svg);
  width: 5px;
  height: 9px;
  top: 0;
  right: -10px;
  transition: transform 0.3s ease;
}
.ReadMore__link:hover::after {
  transform: translateX(5px);
}

.ReadMore__link {
  font-size: 14px;
  font-weight: 500;
  font-family: "Roboto", serif;
  color: #001e63;
  cursor: pointer;
}

.service {
  padding: 124px 0 96px;
}
@media screen and (max-width: 768px) {
  .service {
    padding: 80px 0;
  }
}

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

.service__list {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 18px;
  row-gap: 50px;
}
@media screen and (max-width: 768px) {
  .service__list {
    margin-top: 20px;
    grid-template-columns: repeat(1, 1fr);
    column-gap: 0;
  }
}

.service__item {
  position: relative;
}

.service__image {
  aspect-ratio: 355/170;
  object-fit: cover;
}

.service__content {
  position: absolute;
  padding: 10px;
  top: 10%;
  left: 30px;
}

.service__label {
  font-size: 16px;
  font-weight: 700;
  font-family: "Oswald", serif;
  color: #fff;
}

.service__name {
  font-size: 26px;
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
  color: #fff;
  margin-top: 10px;
}

.service__description {
  margin-top: 18px;
  padding-right: 20px;
  font-size: 16px;
  font-weight: 300;
  font-family: "Noto Sans JP", serif;
  line-height: 2.375;
  color: #000;
}

.ReadMore__button--service {
  margin-top: 22px;
  width: 139px;
  border: 1px solid #001e63;
  border-radius: 3px;
  padding: 9px 28px;
  text-align: center;
  margin-left: 193px;
}

.works {
  padding-top: 131px;
  background-color: #f8f8f8;
}
@media screen and (max-width: 768px) {
  .works {
    padding-top: 60px;
  }
}

.works__inner {
  width: 100%;
  max-width: 1150px;
  padding-left: 25px;
  padding-right: 25px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .works__inner {
    padding: 0;
  }
}

.works__title,
.news__title {
  opacity: 0; /* 初期状態では非表示 */
  transform: translateX(-100%); /* 左側からスタート */
  transition: transform 1s ease-out, opacity 1s ease-out; /* スムーズな移動とフェードイン */
}

.works__title.animate,
.news__title.animate {
  opacity: 1; /* 表示 */
  transform: translateX(0); /* 元の位置に移動 */
}

@media screen and (max-width: 768px) {
  .works__title {
    padding-left: 15px;
  }
}

.works__list {
  background-color: #fff;
  margin-top: 47px;
}
@media screen and (max-width: 768px) {
  .works__list {
    margin-top: 20px;
  }
}

.works__item {
  padding-top: 45px;
  padding-bottom: 42px;
  margin: 0 40px;
  border-bottom: 1px solid #e2e2e2;
}
@media screen and (max-width: 768px) {
  .works__item {
    width: 100%;
    padding: 30px 40px;
    margin: 0;
  }
}

.works__link {
  display: flex;
  column-gap: 50px;
  text-decoration: none;
  color: inherit;
}
@media screen and (max-width: 768px) {
  .works__link {
    column-gap: 18px;
  }
}

.works__image {
  width: 290px;
  height: 229px;
  flex-shrink: 0;
}
.works__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .works__image {
    width: 120px;
    height: 120px;
  }
}

.my-category {
  font-size: 11px;
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
  color: #000;
  background-color: #f3f3f3;
  padding: 5px 20px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .my-category {
    font-size: 10px;
    padding: 5px 15px;
  }
}

.my-category:not(:first-child) {
  margin-left: 10px;
}

.works__post-title {
  margin-top: 30px;
  font-size: 24px;
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
  color: #000;
  position: relative;
}
@media screen and (max-width: 768px) {
  .works__post-title {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
  }
}

.works__post-title::after,
.news__text::after {
  content: "";
  position: absolute;
  bottom: -4px; /* 下線の位置を調整 */
  left: 0;
  width: 0; /* 初期状態では幅0 */
  height: 1px; /* 下線の太さ */
  background-color: #333; /* 下線の色 */
  transition: width 0.3s ease; /* アニメーションの設定 */
}

/* ホバー時に下線を表示 */
.works__post-title:hover::after,
.news__text:hover::after {
  width: 100%; /* 要素の幅いっぱいまで広がる */
}

.works__description {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 300;
  font-family: "Noto Sans JP", serif;
  line-height: 2.375;
  color: #626262;
}

.works__description,
.news__text {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 1s ease, transform 1s ease;
}

.works__description.is-active,
.news__text.is-active {
  opacity: 1;
  transform: translateY(0);
}

.works__date {
  margin-top: 17px;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
  color: #a9a9a9;
}
@media screen and (max-width: 768px) {
  .works__date {
    font-size: 10px;
  }
}

.ReadMore__button--works {
  background-color: #fff;
  display: flex;
  justify-content: flex-end;
  padding: 50px 49px 50px 0;
}

.news {
  padding: 120px 0 114px;
  background-color: #f8f8f8;
}
@media screen and (max-width: 768px) {
  .news {
    padding: 80px 0 72px;
  }
}

.news-page {
  padding-top: 50px;
  padding-bottom: 134px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .news-page {
    padding-top: 30px;
  }
}

.news__inner-wrapper {
  display: flex;
  column-gap: 60px;
}
@media screen and (max-width: 768px) {
  .news__inner-wrapper {
    flex-direction: column;
    column-gap: 0;
  }
}

.news__sidebar,
.works-page__sidebar {
  border-right: 1px solid #e2e2e2;
  width: 23%;
}
@media screen and (max-width: 768px) {
  .news__sidebar,
  .works-page__sidebar {
    width: 100%;
    border-right: none;
  }
}

.news__nav-list,
.works-page__nav-list {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .news__nav-list,
  .works-page__nav-list {
    padding-top: 0;
    flex-direction: row;
    row-gap: 15px;
    flex-wrap: wrap;
    padding-bottom: 38px;
    border-bottom: 1px solid #e2e2e2;
  }
}

.news-page .news__nav-list,
.works-page.works-page__nav-list {
  padding-top: 0;
}

.news__nav {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.news__nav.is-active {
  opacity: 1;
  transform: translateY(0);
}

.news__nav-item {
  margin-left: 17px;
}

@media screen and (max-width: 768px) {
  .news__nav-item:nth-child(2),
  .works-page__nav-item:nth-child(2) {
    margin-left: 40px;
  }
}

@media screen and (max-width: 768px) {
  .news__nav-item:nth-child(4),
  .works-page__nav-item:nth-child(4) {
    margin-left: 55px;
  }
}

.news__nav-item:not(:first-child),
.works-page__nav-item:not(:first-child) {
  margin-top: 14px;
}
@media screen and (max-width: 768px) {
  .news__nav-item:not(:first-child),
  .works-page__nav-item:not(:first-child) {
    margin-top: 0px;
  }
}

.news__nav-link--all,
.news__nav-link,
.works-page__nav-link--all,
.works-page__nav-link {
  font-size: 14px;
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news__nav-link--all,
  .news__nav-link,
  .works-page__nav-link--all,
  .works-page__nav-link {
    font-size: 12px;
  }
}

.news__nav-link--all,
.works-page__nav-link--all {
  color: #000;
}

.news__nav-link:not(.news__nav-link--all),
.works-page__nav-link:not(.works-page__nav-link--all) {
  color: #a9a9a9;
}

.news__nav-link--all::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #001e63;
}

.news__list {
  padding-left: 20px;
}

.news__item {
  display: block;
  text-decoration: none;
  color: inherit;
  padding-bottom: 24px;
  border-bottom: 1px solid #e2e2e2;
  transition: opacity 0.3s;
}
.news__item:hover {
  opacity: 0.9;
}
@media screen and (max-width: 768px) {
  .news__item {
    margin-top: 20px;
    padding-bottom: 20px;
  }
}

.news__item:not(:first-child) {
  margin-top: 32px;
}

.news__content {
  display: flex;
  column-gap: 32px;
  align-items: center;
  min-height: 24px;
}
@media screen and (max-width: 768px) {
  .news__content {
    column-gap: 14px;
  }
}

.news__date {
  display: block;
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
  color: #a9a9a9;
}

.news-details__date {
  display: block;
  margin-top: 10px; /* 上の要素との間隔を調整 */
}

.news__category {
  display: flex;
  column-gap: 20px;
  row-gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .news__category {
    column-gap: 6px;
  }
}

.news__tag {
  font-size: 11px;
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
  color: #626262;
  background-color: #fff;
  padding: 4px 10px;
}
@media screen and (max-width: 768px) {
  .news__tag {
    font-size: 10px;
    padding: 5px 10px;
  }
}

.news-details .news__tag {
  background-color: #f3f3f3;
}

.news__text {
  margin-top: 26px;
}
@media screen and (max-width: 768px) {
  .news__text {
    margin-top: 20px;
  }
}

.news__text {
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
  color: #000;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .news__text {
    font-size: 14px;
  }
}

.ReadMore__button--news {
  margin-top: 40px;
  text-align: right;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.pagination .nav-links {
  display: flex;
  gap: 10px;
  align-items: center;
}
.pagination .page-numbers {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #242424;
  font-size: 14px;
  font-weight: 500;
  font-family: "Oswald", serif;
  background-color: #e9eeef;
  transition: background-color 0.3s, color 0.3s;
}
.pagination .page-numbers.current {
  background-color: #001e63;
  color: #fff;
}
.pagination .page-numbers:hover {
  background-color: #a9a9a9;
}
.pagination .page-numbers.prev, .pagination .page-numbers.next {
  font-size: 18px;
}

.contact {
  background-color: #011950;
  width: 100%;
}

.contact__inner {
  display: flex;
}
@media screen and (max-width: 768px) {
  .contact__inner {
    flex-direction: column-reverse;
  }
}

.contact__img {
  width: 56.9%;
  aspect-ratio: 410/223;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .contact__img {
    width: 100%;
    max-width: 100%;
  }
}

.contact__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 43%;
  max-width: 620px;
  text-align: center;
  height: auto;
  padding: 80px 0;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .contact__content {
    width: 100%;
    padding: 80px 15px;
  }
}

.contact__description {
  font-size: 18px;
  font-weight: 300;
  font-family: "Noto Sans JP", serif;
  color: #fff;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .contact__description {
    font-size: 14px;
  }
}

.contact__button {
  width: 235px;
  color: #fff;
  font-size: 22px;
  font-weight: 300;
  font-family: "Noto Sans JP", serif;
  border: 1px solid #fff;
  border-radius: 6px;
  padding: 16px 26px;
  display: block;
  margin-inline: auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .contact__button {
    font-size: 16px;
    padding: 19px 22px;
  }
}
.contact__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: left 0.3s ease;
  z-index: -1;
}
.contact__button:hover {
  color: #011950;
}
.contact__button:hover::before {
  left: 0;
}
.contact__button:hover .contact__link {
  color: #011950;
}

.contact__button-mail {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .contact__button-mail {
    margin-top: 32px;
  }
}

.contact__button-phone {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .contact__button-phone {
    margin-top: 20px;
  }
}

.contact__icon i {
  margin-right: 15px;
}

.contact__link {
  color: #fff;
  transition: color 0.3s ease;
  position: relative;
  z-index: 2;
}

.contact__hours {
  margin-top: 23px;
  font-size: 14px;
  font-weight: 300;
  font-family: "Noto Sans JP", serif;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .contact__hours {
    font-size: 12px;
    margin-top: 10px;
  }
}

.footer {
  background-color: #001135;
  padding: 46px 0;
}

.footer__nav {
  display: flex;
  flex-direction: column;
}

.footer__items {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media screen and (max-width: 768px) {
  .footer__items {
    row-gap: 24px;
  }
}

.footer__item {
  display: flex;
  align-items: center;
}

.footer__link {
  font-size: 16px;
  color: #fff;
  font-family: "Roboto", serif;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .footer__link {
    font-size: 14px;
  }
}

.footer__link--secondary {
  font-family: "Noto Sans JP", serif;
}

.footer__inner {
  max-width: 1200px;
  padding-left: 54px;
  padding-right: 15px;
  width: 100%;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    max-width: 100%;
    padding-left: 50px;
    padding-right: 15px;
    flex-direction: column-reverse;
    row-gap: 62px;
    align-items: flex-start;
    justify-content: flex-start;
  }
}

.footer__logo {
  margin-top: 49px;
  max-width: 255px;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    max-width: 114.72px;
    margin-top: 0;
  }
}

.footer__marks {
  display: flex;
  align-items: center;
  column-gap: 49px;
}
@media screen and (max-width: 768px) {
  .footer__marks {
    flex-direction: column;
    row-gap: 50px;
    align-items: flex-start;
  }
}

.footer__social {
  display: flex;
  column-gap: 26px;
  margin-top: 40px;
}

.footer__social-item {
  display: flex;
  align-items: center;
}

.footer__social-link {
  font-size: 22px;
  color: #fff;
}

.footer__copyright-text {
  font-size: 12px;
  font-weight: 300;
  font-family: "Roboto", serif;
  color: #fff;
  margin-top: 21px;
}
@media screen and (max-width: 768px) {
  .footer__copyright-text {
    margin-top: 51px;
  }
}

.sub-page__mv {
  width: 100%;
  margin-top: 236px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sub-page__mv {
    margin-top: 100px;
  }
}

.sub-page__mv-inner {
  position: relative;
  max-width: 1440px;
  padding-left: 170px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .sub-page__mv-inner {
    padding-left: 0;
  }
}

.sub-page__mv-img {
  width: 100%;
  height: auto;
  max-width: 1270px;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease forwards;
}
@media screen and (max-width: 768px) {
  .sub-page__mv-img {
    aspect-ratio: 365/280;
    max-width: 100%;
  }
}

.sub-page__mv-content {
  position: absolute;
  width: 34.79%;
  padding-left: 50px;
  padding-bottom: 46px;
  height: auto;
  top: 0px;
  left: 170px;
  background-color: #fff;
  opacity: 0;
  transform: translateX(-100%);
  animation: slideInRight 0.8s ease forwards;
  animation-delay: 0.6s;
}
@media screen and (max-width: 768px) {
  .sub-page__mv-content {
    width: 50.7%;
    left: 0px;
    padding-left: 28px;
    padding-bottom: 47px;
  }
}

.sub-page__mv-title {
  line-height: 1.3;
  margin-top: 20px;
  font-size: 100px;
  font-weight: 700;
  font-family: "Oswald", serif;
  color: #000;
}
@media screen and (max-width: 768px) {
  .sub-page__mv-title {
    font-size: 44px;
  }
}

.sub-page__mv-text {
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
  color: #000;
}
@media screen and (max-width: 768px) {
  .sub-page__mv-text {
    font-size: 12px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 20px;
  padding: 0 60px;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    padding: 0 10px;
  }
}

.breadcrumb__between {
  display: inline-block;
  width: 12px;
  height: 2px;
  margin: 0 8px;
  background-color: #000;
}

.breadcrumb span:not(.breadcrumb__between) {
  font-size: 15px;
  font-weight: 300;
  font-family: "Roboto", serif;
  color: #000;
}
@media screen and (max-width: 768px) {
  .breadcrumb span:not(.breadcrumb__between) {
    font-size: 10px;
  }
}

.breadcrumb span:last-child {
  color: #000;
}

.single .breadcrumb {
  margin-top: 180px;
}
@media screen and (max-width: 768px) {
  .single .breadcrumb {
    margin-top: 80px;
  }
}

.nav-buttons {
  margin-top: 20px;
  padding: 0 60px;
  display: flex;
  gap: 50px;
  justify-content: flex-end;
  position: relative;
}
@media screen and (max-width: 768px) {
  .nav-buttons {
    margin-top: 10px;
    padding: 0 10px;
  }
}

.nav-buttons.details-nav {
  margin-top: 180px;
}
@media screen and (max-width: 768px) {
  .nav-buttons.details-nav {
    margin-top: 80px;
  }
}
.nav-buttons.details-nav .nav-button:nth-child(2)::before {
  content: "";
  position: absolute;
  right: -33px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background-color: #a9a9a9;
}

.nav-button {
  font-size: 15px;
  font-weight: 300;
  font-family: "Roboto", serif;
  color: #a9a9a9;
  transition: color 0.3s ease;
  position: relative;
}
@media screen and (max-width: 768px) {
  .nav-button {
    font-size: 10px;
  }
}
.nav-button:first-child::before {
  content: "";
  position: absolute;
  right: -33px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background-color: #a9a9a9;
}

.nav-button:hover {
  color: #242424; /* ホバー時の色 */
}

.nav-button.active {
  color: #242424; /* アクティブ状態の色 */
}

.site-navigation {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .site-navigation {
    margin-top: 30px;
  }
}

.site-navigation__inner,
.works-details__inner {
  width: 100%;
  max-width: 890px;
  padding-left: 25px;
  padding-right: 25px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .site-navigation__inner,
  .works-details__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.site-navigation__menu {
  display: flex;
  align-items: center;
  column-gap: 141px;
  margin-left: 173px;
}
@media screen and (max-width: 768px) {
  .site-navigation__menu {
    column-gap: 40px;
    margin-left: 33px;
  }
}
.page-service .site-navigation__menu {
  margin-left: 146px;
}
@media screen and (max-width: 768px) {
  .page-service .site-navigation__menu {
    margin-left: 20px;
  }
}

.site-navigation__menu-link {
  font-size: 16px;
  font-weight: 300;
  font-family: "Noto Sans JP", serif;
  color: #011950;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 768px) {
  .site-navigation__menu-link {
    font-size: 12px;
  }
}

.site-navigation__menu-link::after {
  content: url(../images/arrow-down.svg);
  position: absolute;
  right: -20px;
  top: 34%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .site-navigation__menu-link::after {
    right: -12px;
    top: 36%;
  }
}

.main-message {
  margin-top: 94px;
}
@media screen and (max-width: 768px) {
  .main-message {
    margin-top: 60px;
  }
}

.main-message__title {
  font-size: 40px;
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
  color: #000;
}
@media screen and (max-width: 768px) {
  .main-message__title {
    font-size: 18px;
    line-height: 2;
  }
}

.about-page__title {
  font-size: 40px;
  font-weight: 700;
  font-family: "Oswald", serif;
  color: #000;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .about-page__title {
    font-size: 26px;
  }
}

.about-page__title::after {
  position: absolute;
  content: "";
  width: 60px;
  height: 2px;
  background-color: #000;
  top: 47%;
  left: 283px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .about-page__title::after {
    left: 130px;
  }
}

.main-message__description {
  margin-top: 40px;
  font-size: 16px;
  font-weight: 300;
  font-family: "Noto Sans JP", serif;
  color: #000;
  line-height: 2.38;
}
@media screen and (max-width: 768px) {
  .main-message__description {
    margin-top: 30px;
    font-size: 14px;
    line-height: 2.3;
  }
}

.philosophy {
  margin-top: 120px;
  background-color: #f8f8f8;
}
@media screen and (max-width: 768px) {
  .philosophy {
    margin-top: 80px;
  }
}

.philosophy__inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .philosophy__inner {
    flex-direction: column;
    row-gap: 60px;
  }
}

.philosophy__title::after {
  content: "";
  left: 202px;
}
@media screen and (max-width: 768px) {
  .philosophy__title::after {
    left: 130px;
  }
}

.philosophy__content {
  padding: 70px 30px;
  width: 67.3%;
}
@media screen and (max-width: 768px) {
  .philosophy__content {
    width: 100%;
    padding-top: 60px;
    padding-bottom: 30px;
  }
}

.philosophy__image {
  height: auto;
  object-fit: cover;
  width: 32%;
}
@media screen and (max-width: 768px) {
  .philosophy__image {
    width: 100%;
  }
}

.philosophy__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philosophy__text {
  line-height: 2.3;
  margin-top: 59px;
  font-size: 16px;
  font-weight: 300;
  font-family: "Noto Sans JP", serif;
  color: #000;
}
@media screen and (max-width: 768px) {
  .philosophy__text {
    margin-top: 30px;
    font-size: 14px;
  }
}

.philosophy__author {
  margin-top: 40px;
  font-size: 16px;
  font-weight: 300;
  font-family: "Noto Sans JP", serif;
  color: #000;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .philosophy__author {
    font-size: 14px;
    margin-top: 30px;
  }
}

.access {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .access {
    margin-top: 80px;
  }
}

.access__inner {
  display: flex;
  flex-direction: column;
}

.access__title::after {
  content: "";
  left: 135px;
}
@media screen and (max-width: 768px) {
  .access__title::after {
    left: 87px;
  }
}

.access__address {
  margin-top: 8px;
}

.access__map {
  margin-top: 60px;
  width: 100%;
}

.access__map iframe {
  display: block;
  width: 100%;
  height: 400px;
}

.company {
  margin-top: 120px;
  padding: 60px 0 120px;
  background-color: #f8f8f8;
}
@media screen and (max-width: 768px) {
  .company {
    margin-top: 80px;
    padding-bottom: 80px;
  }
}

.company__title::after {
  content: "";
  left: 285px;
}
@media screen and (max-width: 768px) {
  .company__title::after {
    left: 191px;
  }
}

.company-profile__details {
  margin-top: 60px;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .company-profile__details {
    margin-top: 30px;
    margin-bottom: 80px;
  }
}

.company-profile__detail {
  display: flex;
  align-items: center;
  column-gap: 90px;
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 40px;
}
.company-profile__detail:last-child {
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .company-profile__detail {
    flex-direction: column;
    row-gap: 16px;
    align-items: flex-start;
    padding-bottom: 20px;
  }
}

.company-profile__detail:not(:first-child) {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .company-profile__detail:not(:first-child) {
    margin-top: 20px;
  }
}

.company-profile__label {
  font-size: 16px;
  width: 80px;
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
  color: #000;
}

.company-profile__value {
  font-size: 16px;
  font-weight: 300;
  font-family: "Noto Sans JP", serif;
  color: #000;
}

.company-profile__value p:not(:first-child) {
  margin-top: 21px;
}

.company-gallery__swiper {
  width: 100%;
  max-width: 1440px;
}

.company-gallery__swiper-wrapper {
  display: flex;
}

.company-gallery__swiper-slide {
  margin-inline: auto;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 480/400;
}
@media screen and (max-width: 768px) {
  .company-gallery__swiper-slide {
    max-width: 100%;
  }
}

.company-gallery__swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-sizing: border-box;
}

.values {
  margin-bottom: 140px;
}
@media screen and (max-width: 768px) {
  .values {
    margin-bottom: 80px;
  }
}

.value__inner {
  width: 100%;
  max-width: 1250px;
  padding-left: 25px;
  padding-right: 25px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .value__inner {
    padding: 0;
  }
}

.value__content {
  margin-top: 120px;
  display: flex;
  align-items: center;
  background-color: #f8f8f8;
}
@media screen and (max-width: 768px) {
  .value__content {
    margin-top: 50px;
    flex-direction: column;
    align-items: center;
  }
}

.value__content-inner {
  text-align: left;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-left: 50px;
  padding-right: 100px;
}
@media screen and (max-width: 768px) {
  .value__content-inner {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 60px;
  }
}

.value__text {
  position: relative;
  width: 100%;
  text-align: left;
  flex: 1;
  font-size: 40px;
  font-weight: 700;
  font-family: "Oswald", serif;
  color: #000;
}
@media screen and (max-width: 768px) {
  .value__text {
    font-size: 32px;
  }
}

.value__text::after {
  position: absolute;
  content: "";
  display: block;
  width: 1px;
  height: 34px;
  background-color: #001e63;
  top: 10px;
  left: 56px;
}

.value__title {
  width: 100%;
  text-align: left;
  font-size: 28px;
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
  color: #000;
}
@media screen and (max-width: 768px) {
  .value__title {
    font-size: 20px;
  }
}

.value__description {
  width: 100%;
  text-align-last: left;
  font-size: 22px;
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
  color: #000;
  line-height: 2.3;
}
@media screen and (max-width: 768px) {
  .value__description {
    font-size: 14px;
  }
}

.value__img {
  flex-basis: 138%;
  max-width: 640px;
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .value__img {
    max-width: 335px;
  }
}

.value__wrapper {
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  .value__wrapper {
    padding: 20px;
  }
}

.value__subtitle {
  display: flex;
  align-items: center;
  column-gap: 16px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .value__subtitle {
    margin-top: 20px;
    column-gap: 9px;
  }
}

.value__subtitle--en {
  font-size: 22px;
  font-weight: 500;
  font-family: "Oswald", serif;
  color: #000;
}
@media screen and (max-width: 768px) {
  .value__subtitle--en {
    font-size: 18px;
  }
}

.value__subtitle--ja {
  font-size: 12px;
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
  color: #626262;
}
@media screen and (max-width: 768px) {
  .value__subtitle--ja {
    font-size: 10px;
  }
}

.value__detail {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 300;
  font-family: "Noto Sans JP", serif;
  color: #000;
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .value__detail {
    font-size: 14px;
  }
}

.news-details__content {
  width: 100%;
  max-width: 1250px;
  margin-inline: auto;
  padding-left: 25px;
  padding-right: 25px;
  margin-top: 60px;
  margin-bottom: 120px;
  display: flex;
  column-gap: 97px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .news-details__content {
    flex-direction: column;
    margin-top: 30px;
    margin-bottom: 57px;
    column-gap: 0;
    row-gap: 57px;
  }
}

.news-details__main-content {
  width: 100%;
  max-width: 803px;
}

.news-details__main-content__inner {
  padding: 0 42.26px;
}
@media screen and (max-width: 768px) {
  .news-details__main-content__inner {
    padding: 0 30px;
  }
}

.detail__thumbnail {
  margin-top: 40px;
  width: 100%;
  max-width: 718.47px;
  height: 400px;
  object-fit: cover;
}

.article__content {
  margin-top: 40px;
}

.article__section {
  margin-top: 40px;
}

.article__section h2 {
  font-size: 22px;
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
  color: #000;
  background-color: #f8f8f8;
  padding: 8px 10px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .article__section h2 {
    font-size: 16px;
  }
}

.article__section h2:not(:first-of-type) {
  background: none; /* 背景色を削除 */
  border-bottom: 1px solid #000; /* 下線を追加 */
  padding: 0 0 10px; /* 下線との間隔を調整 */
}

.article__section h3 {
  font-size: 18px;
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
  color: #000;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2e2e2;
}

.article__section p {
  padding-top: 40px;
  padding-bottom: 72px;
  font-size: 16px;
  font-weight: 300;
  font-family: "Noto Sans JP", serif;
  color: #000;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .article__section p {
    font-size: 14px;
  }
}

.article__section ul {
  padding-bottom: 40px;
  border-bottom: 1px solid #e2e2e2;
}

.article__section li {
  position: relative;
  padding-left: 1em;
}

.article__section li::after {
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 4px;
  background-color: #000;
}

.article__section li + li {
  margin-top: 4px;
}

.content__navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

.detail__prev {
  position: relative;
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
  padding: 15px 20px;
  border: 1px solid #001e63;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.detail__prev::before {
  content: url(../images/arrow-left.svg);
  font-size: 14px;
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
  color: #001e63;
  transition: transform 0.3s ease;
}

.detail__prev:hover::before {
  transform: translateX(-5px);
}

.detail__next {
  position: relative;
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
  padding: 15px 20px;
  border: 1px solid #001e63;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.detail__next::after {
  content: url(../images/arrow-right.svg);
  font-size: 14px;
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
  color: #001e63;
  transition: transform 0.3s ease;
}

.detail__next:hover::after {
  transform: translateX(5px);
}

.page-layout__sidebar {
  width: 100%;
  max-width: 300px;
  margin-inline: auto;
}

.sidebar__inner {
  width: 100%;
}

.sidebar__list {
  padding: 0 18px;
}

.sidebar__list li {
  padding: 18px 0;
}

.sidebar__link img {
  width: 100px;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.sidebar__title {
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
  color: #fff;
  background-color: #001135;
  padding: 15px 10px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .sidebar__title {
    font-size: 12px;
  }
}

.sidebar__item {
  margin-top: 20px;
  display: flex;
  align-items: center;
  column-gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e2e2e2;
}

.sidebar__item img {
  width: 100px;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.sidebar__link {
  font-size: 12px;
  font-weight: 300;
  font-family: "Noto Sans JP", serif;
  color: #000;
  line-height: 2;
}

.sidebar__list a {
  font-size: 14px;
  font-weight: 300;
  font-family: "Noto Sans JP", serif;
  color: #000;
}

.article__section .article__section-title:not(:first-of-type) {
  margin-top: 71px;
}

.content__list {
  margin-top: 40px;
  padding-bottom: 72px;
  border-bottom: 1px solid #e2e2e2;
}

.content__list-item {
  position: relative;
  padding-left: 16px;
  font-size: 16px;
  font-weight: 300;
  font-family: "Noto Sans JP", serif;
  color: #000;
}
@media screen and (max-width: 768px) {
  .content__list-item {
    font-size: 14px;
  }
}

.content__list-item::before {
  position: absolute;
  top: 50%;
  left: 4px;
  width: 6px;
  aspect-ratio: 1;
  content: "";
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #000;
}

.works-page {
  padding: 60px 0 120px;
}
@media screen and (max-width: 768px) {
  .works-page {
    padding: 30px 0 80px;
  }
}

.works-page__inner {
  max-width: 1148px;
  margin-inline: auto;
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (max-width: 768px) {
  .works-page__inner {
    padding: 0 40px;
  }
}

.works-page__inner-wrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .works-page__inner-wrapper {
    flex-direction: column;
  }
}

.works-page__content {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .works__content {
    width: 50.8%;
  }
}

.works-page__list {
  margin-top: 0;
  max-width: 776px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .works-page__list {
    max-width: 100%;
  }
}

.works-page__item {
  display: flex;
  column-gap: 30px;
  padding-bottom: 30px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .works-page__item {
    column-gap: 0px;
    padding-left: 0;
    padding-right: 0;
    margin: 0;
  }
}

.works-page__item:not(:first-child) {
  padding-top: 30px;
}

.works__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.works-page__image {
  width: 160px;
  height: 160px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .works-page__image {
    width: 130px;
    height: 100px;
  }
}

.works-page__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.works-page__heading {
  margin-top: 30px;
  font-size: 18px;
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
  color: #000;
  line-height: 1.77;
}
@media screen and (max-width: 768px) {
  .works-page__heading {
    font-size: 14px;
    line-height: 2;
  }
}

.works-page__date {
  font-size: 10px;
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
  color: #a9a9a9;
  margin-top: 61px;
}
@media screen and (max-width: 768px) {
  .works-page__date {
    font-size: 10px;
    margin-top: 10px;
  }
}

.works-details {
  padding-bottom: 129px;
}
@media screen and (max-width: 768px) {
  .works-details {
    padding-bottom: 79px;
  }
}

.works-details__title {
  margin-top: 20px;
  font-size: 26px;
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
  color: #000;
}
@media screen and (max-width: 768px) {
  .works-details__title {
    margin-top: 10px;
    font-size: 18px;
  }
}

.works-details__date {
  margin-top: 2 0px;
  color: #a9a9a9;
  font-size: 11px;
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
}
@media screen and (max-width: 768px) {
  .works-details__date {
    margin-top: 10px;
    font-size: 10px;
  }
}

.works-details__image {
  margin-top: 40px;
}

.works-details__image img {
  width: 840px;
  aspect-ratio: 840/471;
  height: auto;
  object-fit: cover;
}

.works-details__text {
  margin-top: 40px;
}

.works-detail__content {
  padding: 0 80px;
  font-size: 16px;
  font-weight: 300;
  font-family: "Noto Sans JP", serif;
  color: #000;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .works-detail__content {
    padding: 0;
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .works-detail__content + .works-detail__content {
    margin-top: 1em;
  }
}

.works-details__button {
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .works-details__button {
    margin-top: 40px;
  }
}

.works-details__button-link {
  position: relative;
  display: inline-block;
  width: 285px;
  font-size: 14px;
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
  color: #001e63;
  border: 1px solid #001e63;
  padding: 12px 20px;
  border-radius: 4px;
  transition: all 0.8s ease;
}

.works-details__button-link::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 5px;
  height: 9px;
  background-image: url(../images/arrow-left.svg);
  top: 50%;
  left: 72px;
  transform: translateY(-50%);
}

.works-details__button-link:hover::before {
  left: 67px;
}

.main-contact__description {
  margin-top: 60px;
  font-size: 16px;
  font-weight: 300;
  font-family: "Noto Sans JP", serif;
  color: #000;
  line-height: 2.375;
}
@media screen and (max-width: 768px) {
  .main-contact__description {
    margin-top: 30px;
    font-size: 14px;
    line-height: 2.2;
  }
}

.main-contact {
  margin-top: 100px;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .main-contact {
    margin-top: 60px;
    margin-bottom: 80px;
  }
}

.main-contact__item {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .main-contact__item {
    margin-top: 30px;
  }
}

.main-contact__label {
  display: flex;
  align-items: center;
}

.main-contact__label-text,
.main-contact__note {
  font-size: 15px;
  font-family: "Noto Sans JP", serif;
  color: #000;
}

.main-contact__label-text {
  font-weight: 500;
}

.main-contact__note {
  display: inline-block;
  font-weight: 300;
  margin-left: 10px;
}

.required,
.contact-confirm-page__required {
  color: red;
  font-weight: bold; /* 太字にする（オプション） */
}

.main-contact__input,
.main-contents__textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #a9a9a9;
  border-radius: 4px;
}

.main-contact__input {
  margin-top: 14px;
}

.main-contents__textarea {
  height: 160px;
  margin-top: 10px;
}

.main-contact__item {
  margin-bottom: 16px;
}

/* チェックボックス全体のスタイル */
.main-contact__checkbox {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

/* 実際のチェックボックスを非表示にする */
.main-contact__checkbox-input {
  position: absolute;
  width: 16px; /* 幅を持たせる */
  height: 16px;
  opacity: 0;
  cursor: pointer;
}

/* チェックボックスの見た目を作る */
.main-contact__checkbox-box {
  position: relative;
  top: 3px;
  left: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  display: inline-block;
  margin-right: 8px;
}

/* チェックが入ったときのスタイル */
.main-contact__checkbox-input:checked + .main-contact__checkbox-box::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 2px;
  width: 6px;
  height: 10px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg);
}

.main-contact__button-wrap {
  margin-top: 43px;
}

.main-contact__button {
  width: 100%;
  max-width: 446px;
  padding: 21px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #011950;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
  color: #fff;
  transition: all 0.3s ease;
  display: block;
  margin-inline: auto;
}

.main-contact__button:hover {
  background-color: #001e63;
}

.contact-confirm-page__text {
  margin-top: 98px;
  font-size: 16px;
  font-weight: 300;
  font-family: "Noto Sans JP", serif;
  color: #000;
}
@media screen and (max-width: 768px) {
  .contact-confirm-page__text {
    margin-top: 52px;
  }
}

.contact-confirm-page__list {
  margin-top: 104px;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .contact-confirm-page__list {
    margin-top: 40px;
    margin-bottom: 80px;
  }
}

.contact-confirm-page__item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .contact-confirm-page__item {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact-confirm-page__item:nth-of-type(6) {
  align-items: flex-start;
}

.contact-confirm-page__item:not(:first-child) {
  margin-top: 45px;
}
@media screen and (max-width: 768px) {
  .contact-confirm-page__item:not(:first-child) {
    margin-top: 20px;
  }
}

.contact-confirm-page__term {
  width: 143px;
  font-size: 15px;
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
  color: #000;
}
@media screen and (max-width: 768px) {
  .contact-confirm-page__term {
    width: 100%;
  }
}

.contact-confirm-page__definition {
  margin-left: 49px;
  font-size: 14px;
  font-weight: 300;
  font-family: "Noto Sans JP", serif;
  color: #000;
  max-width: 452px;
}
@media screen and (max-width: 768px) {
  .contact-confirm-page__definition {
    margin-left: 0;
  }
}

.contact-confirm-page__buttons {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}

.contact-confirm-page__back-button,
.contact-confirm-page__submit-input {
  display: inline-block;
  width: 100%;
  max-width: 280px;
  padding: 10px;
  border: 1px solid #a9a9a9;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
  transition: all 0.3s ease;
}

.contact-confirm-page__back-button:hover {
  background-color: #001e63;
  color: #fff;
}

.contact-confirm-page__back-button {
  background-color: #fff;
  color: #011950;
}

.contact-confirm-page__submit-input {
  margin-left: 80px;
  background-color: #011950;
  color: #fff;
}

.thanks-page {
  margin: 98px 0 120px;
}

.thanks-page__inner,
.main-contact__inner,
.contact-confirm-page__inner {
  max-width: 690px;
  padding-left: 25px;
  padding-right: 25px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .thanks-page__inner,
  .main-contact__inner,
  .contact-confirm-page__inner {
    padding: 0 20px;
  }
}

.thanks-page__title {
  font-size: 40px;
  font-weight: 700;
  font-family: "Oswald", serif;
  color: #000;
}
@media screen and (max-width: 768px) {
  .thanks-page__title {
    font-size: 24px;
  }
}

.thanks-page__text {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 300;
  font-family: "Noto Sans JP", serif;
  color: #000;
}
@media screen and (max-width: 768px) {
  .thanks-page__text {
    margin-top: 10px;
    font-size: 14px;
  }
}

.thanks-page__description {
  margin-top: 40px;
  font-size: 16px;
  font-weight: 300;
  font-family: "Noto Sans JP", serif;
  color: #000;
  line-height: 2.375;
}
@media screen and (max-width: 768px) {
  .thanks-page__description {
    margin-top: 30px;
    font-size: 14px;
    line-height: 2.2857142857;
  }
}

.thanks-page__button {
  margin-top: 40px;
  text-align: center;
}

.thanks-page__button-link {
  display: inline-block;
  width: 460px;
  font-size: 18px;
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
  color: #fff;
  padding: 12px 20px;
  border-radius: 4px;
  background-color: #011950;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .thanks-page__button-link {
    width: 275px;
    font-size: 14px;
  }
}

.mv-404 {
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .mv-404 {
    margin-bottom: 80px;
  }
}

.not-found-page__text {
  position: absolute;
  top: 27%;
  left: 50%;
}
@media screen and (max-width: 768px) {
  .not-found-page__text {
    left: 19.7%;
    transform: none;
  }
}

.not-found-page__title {
  font-size: 70px;
  font-weight: 700;
  font-family: "Oswald", serif;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .not-found-page__title {
    font-size: 35px;
  }
}

.not-found-page__content-wrapper {
  position: absolute;
  top: 46%;
  left: 50%;
}
@media screen and (max-width: 768px) {
  .not-found-page__content-wrapper {
    padding-left: 20px;
    padding-right: 20px;
    position: static;
    transform: none;
  }
}

.not-found-page__description {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
  color: #fff;
  line-height: 2.375;
}
@media screen and (max-width: 768px) {
  .not-found-page__description {
    font-size: 14px;
    line-height: 2.2857142857;
    color: #000;
  }
}

.not-found-page__button {
  margin-top: 20px;
  width: 145px;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 12px 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .not-found-page__button {
    margin-top: 40px;
    margin-bottom: 80px;
    color: #001e63;
    border-color: #001e63;
    margin-inline: auto;
  }
}

.not-found-page__button-link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
  color: #fff;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .not-found-page__button-link {
    color: #001e63;
  }
}

.not-found-page__button-link::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 5px;
  height: 9px;
  background-image: url(../images/arrow-left-white.svg);
  top: 50%;
  left: -14px;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.not-found-page__button-link:hover::before {
  left: -17px;
}

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