@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-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]) {
  -webkit-text-decoration-skip: ink;
          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;
}

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

.header__inner {
  display: flex;
  align-items: center;
  height: 80px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .header__inner {
    background-color: transparent;
  }
}

.header__name {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 500;
}

.header__name--color {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
}

.header__logo {
  width: 258px;
  height: 180px;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    width: 200px;
    height: 140px;
  }
}
@media screen and (max-width: 900px) {
  .header__logo {
    width: 160px;
    height: 120px;
  }
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 114px;
    height: 80px;
  }
}

.header__nav {
  width: 100%;
  height: inherit;
}

.header__items {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: inherit;
}

.header__item {
  height: inherit;
}

.header__item:not(:first-child) {
  margin-left: 50px;
}
@media screen and (max-width: 1024px) {
  .header__item:not(:first-child) {
    margin-left: 30px;
  }
}

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

.header__link.header__link--contact {
  padding: 30px 40px;
  background-color: #011950;
  color: #fff;
}

.fa-regular {
  margin-right: 10px;
}

.fa-lg {
  line-height: 0;
}

.hamburger {
  position: fixed;
  z-index: 5000;
  top: 33px;
  right: 30px;
  width: 25px;
  height: 14px;
  cursor: pointer;
}

.hamburger.is-active {
  top: 29px;
  right: 30px;
}

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

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

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

.hamburger span:nth-child(2) {
  top: 8px;
  transition: 0.3s opacity;
}

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

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

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

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

.drawer-menu {
  position: absolute;
  z-index: 3000;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  background-color: #001E63;
}

.drawer-menu.active {
  display: block;
}

.drawer__logo {
  width: 114px;
  height: 80px;
}

.drawer-menu .js-drawer .drawer-header {
  position: absolute;
  top: 20px; /* Adjust the top position as needed */
  left: 20px; /* Adjust the left position as needed */
}

.drawer-menu__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: inherit;
}

.drawer-menu__items {
  opacity: 0; /* はじめは透過0 */
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.drawer-menu__item {
  display: inline-block;
}

.drawer-menu__item:not(:first-child) {
  margin-top: 12px;
}

.drawer-menu__link {
  font-size: 14px;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
  display: inline-block;
  width: 275px;
  color: #fff;
  padding-bottom: 12px;
  border-bottom: solid 1px #011950;
  text-transform: uppercase;
}

.drawer-menu__item:first-child .drawer-menu__link {
  padding-top: 12px;
  border-top: 1px solid #011950;
}

.drawer-menu__box {
  display: flex;
  margin-top: 50px;
  gap: 20px;
}

/*========= ナビゲーションのためのCSS ===============*/
.g-nav {
  display: none;
}

.g-nav.panelactive {
  display: block;
}

/* アクティブになったエリア */
#g-nav.panelactive {
  /* position:fixed;にし、z-indexの数値を大きくして前面へ */
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  height: 100vh;
}

/* 丸の拡大 */
.circle-bg {
  position: fixed;
  z-index: 3;
  /* 丸の形 */
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #001135;
  /* 丸のスタート位置と形状 */
  transform: scale(0); /* scaleをはじめは0に */
  right: -50px;
  bottom: -50px;
  transition: all 0.6s; /* 0.6秒かけてアニメーション */
}

.circle-bg.circleactive {
  transform: scale(50); /* クラスが付与されたらscaleを拡大 */
}

/* 背景が出現後にナビゲーションを表示 */
#g-nav.panelactive ul {
  opacity: 1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除 */
#g-nav.panelactive ul li {
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: 0.2s; /* 0.2 秒遅らせて出現 */
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.mv {
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 610px) {
  .mv {
    height: 81vh;
  }
}

.mv__inner {
  display: flex;
  position: relative;
  width: 100%;
  height: inherit;
  max-width: 1440px;
  padding-right: 80px;
  padding-left: 80px;
  margin-inline: auto;
  gap: 34px;
}
@media screen and (max-width: 1024px) {
  .mv__inner {
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media screen and (max-width: 768px) {
  .mv__inner {
    display: block;
    padding-right: 10px;
    padding-left: 10px;
  }
}

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

.mv__slider {
  height: 100%;
}
@media screen and (max-width: 610px) {
  .mv__slider {
    height: 77%;
  }
}

/* スライドのサイズ調整 */
.swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .swiper-slide img {
    aspect-ratio: 355/480;
  }
}

.mv__box {
  transform: translateY(24%);
  writing-mode: vertical-rl; /* 縦書きのスタイル */
}
@media screen and (max-width: 768px) {
  .mv__box {
    writing-mode: initial;
  }
}
@media screen and (max-width: 610px) {
  .mv__box {
    transform: translateY(35%);
  }
}

.mv__title-jp {
  display: inline-block;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.7666;
}
@media screen and (max-width: 1240px) {
  .mv__title-jp {
    font-size: 46px;
  }
}
@media screen and (max-width: 768px) {
  .mv__title-jp {
    font-size: 34px;
    margin-left: 10px;
    line-height: initial;
  }
}

.mv__wrap {
  width: 100%;
  overflow: hidden;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .mv__wrap {
    margin-top: 20px;
  }
}
@media screen and (max-width: 610px) {
  .mv__wrap {
    margin-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .mv__wrap-box {
    margin-top: 110px;
  }
}
@media screen and (max-width: 610px) {
  .mv__wrap-box {
    margin-top: 0;
  }
}

.mv__title-en {
  display: inline-block;
  font-size: 150px;
  font-weight: 700;
  color: #011950;
  animation: text_scroll 20s linear infinite;
  transform: translateX(100%);
}
@media screen and (max-width: 768px) {
  .mv__title-en {
    font-size: 84px;
  }
}

@keyframes text_scroll {
  100% {
    transform: translateX(-100%);
  }
}
.top-about {
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  .top-about {
    padding-top: 20px;
  }
}

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

.top-about__item {
  width: 50%;
  margin-right: 60px;
}
@media screen and (max-width: 768px) {
  .top-about__item {
    width: 100%;
    margin-right: 0;
  }
}

.top-about__body {
  width: 44.5%;
}
@media screen and (max-width: 768px) {
  .top-about__body {
    width: 100%;
  }
}

.top-about__wrap {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .top-about__wrap {
    margin-top: 30px;
  }
}

.top-about__title {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 14px;
}

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

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

.top-service__area {
  overflow: hidden;
}

.section-title--right {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .section-title--right {
    text-align: initial;
  }
}

.top-service__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(355px, 1fr));
  margin-top: 40px;
  -moz-column-gap: 17px;
       column-gap: 17px;
  row-gap: 50px;
}
@media screen and (max-width: 768px) {
  .top-service__cards {
    grid-template-columns: repeat(auto-fit, minmax(335px, 1fr));
    margin-top: 20px;
  }
}
@media screen and (max-width: 400px) {
  .top-service__cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

.top-service__card {
  width: 100%;
}

.top-service__item {
  position: relative;
}

.img-label {
  position: absolute;
  top: 49px;
  left: 30px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  color: #fff;
}

.img-lead {
  position: absolute;
  top: 83px;
  left: 30px;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}

.top-service__img {
  aspect-ratio: 335/170;
}

.card__body {
  margin-top: 20px;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .card__body {
    margin-right: 0;
  }
}

.top-service__box {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.top-service__button {
  display: block;
  width: 141px;
  height: 44px;
  display: grid;
  display: grid;
  place-content: center;
  border: 1px solid #011950;
  border-radius: 4px;
  color: #011950;
  transition: all 0.3s; /*アニメーションの指定*/
}

.top-service__button span {
  position: relative;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  padding-right: 15px;
}

.top-service__button span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate3d(0, -60%, 0);
  -webkit-transform: translate3d(0, -60%, 0);
  background: url("../images/icon_arrow-right.svg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 5px;
  height: 9px;
}

.top-works {
  padding-top: 120px;
  background-color: #F8F8F8;
}
@media screen and (max-width: 1024px) {
  .top-works {
    padding-top: 200px;
  }
}
@media screen and (max-width: 768px) {
  .top-works {
    padding-top: 130px;
  }
}

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

.top-works__wrap {
  display: inline-block;
}

.top-works__title {
  display: inline-block;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .top-works__title {
    margin-bottom: 20px;
  }
}

.top-works__inner {
  display: flex;
  width: 100%;
  max-width: 1100px;
  padding-right: 40px;
  padding-left: 40px;
  margin-inline: auto;
  background-color: #fff;
}
@media screen and (max-width: 374px) {
  .top-works__inner {
    padding-right: 30px;
    padding-left: 30px;
  }
}

.top-works__list {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .top-works__list {
    margin-top: 30px;
  }
}

.top-works__item {
  display: flex;
  padding-bottom: 50px;
  border-bottom: solid 1px #E2E2E2;
}
@media screen and (max-width: 768px) {
  .top-works__item {
    padding-bottom: 30px;
  }
}

.top-works__item:not(:first-child) {
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .top-works__item:not(:first-child) {
    padding-top: 30px;
  }
}

.top-works__item-img {
  width: 28.5%;
  margin-right: 50px;
}
@media screen and (max-width: 1024px) {
  .top-works__item-img {
    width: 51%;
  }
}
@media screen and (max-width: 768px) {
  .top-works__item-img {
    width: 56%;
    margin-right: 18px;
  }
}
@media screen and (max-width: 450px) {
  .top-works__item-img {
    width: 51%;
  }
}
@media screen and (max-width: 374px) {
  .top-works__item-img {
    width: 37%;
  }
}

.top-works__img {
  aspect-ratio: 290/229;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 450px) {
  .top-works__img {
    aspect-ratio: 120/90;
  }
}

.top-works__item-wrap {
  width: 66.7%;
}
@media screen and (max-width: 374px) {
  .top-works__item-wrap {
    width: 60%;
  }
}

.top-works a {
  display: inline-block;
  height: inherit;
}

.top-works__item-box {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .top-works__item-box {
    margin-top: 40px;
  }
}
@media screen and (max-width: 610px) {
  .top-works__item-box {
    margin-top: 12px;
  }
}

.top-works__post-title {
  font-size: 24px;
  font-weight: 500;
  color: #000;
}
@media screen and (max-width: 768px) {
  .top-works__post-title {
    font-size: 14px;
    line-height: 2;
  }
}

.top-works__item-wrap p {
  margin-top: 30px;
  line-height: 2.375;
  color: #626262;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 768px) {
  .top-works__item-wrap p {
    display: none;
  }
}

.top-works__unit {
  margin-top: 13px;
}
@media screen and (max-width: 768px) {
  .top-works__unit {
    margin-top: 10px;
  }
}

.top-works__item-date {
  font-size: 12px;
  font-weight: 700;
  color: #A9A9A9;
}

.top-works__box {
  display: inline-block;
  margin-top: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .top-works__box {
    margin-bottom: 60px;
  }
}

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

.top-news__inner {
  width: 100%;
  max-width: 1150px;
  padding-right: 25px;
  padding-left: 25px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-news__inner {
    padding-right: 38px;
    padding-left: 22px;
  }
}
@media screen and (max-width: 374px) {
  .top-news__inner {
    padding-right: 15px;
    padding-left: 15px;
  }
}

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

.top-news__field {
  width: 24%;
  padding-right: 15px;
}
@media screen and (max-width: 900px) {
  .top-news__field {
    width: 28%;
  }
}
@media screen and (max-width: 768px) {
  .top-news__field {
    width: 100%;
    padding-right: 0;
  }
}

.top-news__title {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .top-news__title {
    margin-right: 10px;
  }
}

@media screen and (max-width: 768px) {
  .top-news__wrap {
    padding-left: 18px;
  }
}
@media screen and (max-width: 374px) {
  .top-news__wrap {
    padding-left: 0;
  }
}

.top-news__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 45px;
}
@media screen and (max-width: 768px) {
  .top-news__content {
    display: inline-block;
    flex-direction: initial;
    border-bottom: 1px solid #E2E2E2;
    margin-top: 40px;
    padding-bottom: 40px;
  }
}

/*===================================
ふわっ
===================================*/
/* fadeUp */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定 */
.fadeUpTrigger {
  opacity: 0;
}

.top-news__area {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .top-news__area {
    display: flex;
  }
}

.news-info__title {
  margin-top: 20px;
  margin-left: 15px;
}
@media screen and (max-width: 768px) {
  .news-info__title {
    margin-top: 0;
    margin-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .top-news__unit {
    margin-top: 15px;
    display: flex;
  }
}

@media screen and (max-width: 768px) {
  .top-news__unit a:first-child .title-info {
    margin-left: 20px;
  }
}

@media screen and (max-width: 768px) {
  .top-news__unit a:not(:first-child) .title-info {
    margin-left: 40px;
  }
}

.tab__wrap {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .tab__wrap {
    display: inline-block;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 768px) {
  .top {
    white-space: nowrap;
  }
}

.tab__link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  margin-top: 20px;
  padding-left: 20px;
  color: #A9A9A9;
}
@media screen and (max-width: 768px) {
  .tab__link {
    font-size: 12px;
    line-height: 2.375;
    margin-top: 0;
  }
}
@media screen and (max-width: 610px) {
  .tab__link {
    display: inline-block;
    width: 45%;
  }
}
@media screen and (max-width: 450px) {
  .tab__link {
    width: initial;
  }
}

.tab__link:first-child::before {
  position: absolute;
  content: "";
  top: 6px;
  left: 5px;
  display: block;
  width: 8px;
  height: 8px;
  background: #001E63;
}
@media screen and (max-width: 768px) {
  .tab__link:first-child::before {
    top: 5px;
    left: -2px;
    margin-left: 8px;
  }
}
@media screen and (max-width: 610px) {
  .tab__link:first-child::before {
    top: 10px;
  }
}

.tab__link:first-child {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .tab__link {
    margin-right: 14px;
  }
}

.is-active {
  color: #000;
}

.top-news__list {
  width: 76%;
  padding-left: 60px;
  border-left: 1px solid #E2E2E2;
}
@media screen and (max-width: 900px) {
  .top-news__list {
    width: 62%;
    padding-left: 40px;
  }
}
@media screen and (max-width: 768px) {
  .top-news__list {
    width: 100%;
    padding-left: 18px;
    border-left: none;
  }
}
@media screen and (max-width: 374px) {
  .top-news__list {
    padding-left: 0;
  }
}

.top-news__item:not(:first-child) .top-news__group {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .top-news__item:not(:first-child) .top-news__group {
    margin-top: 20px;
  }
}

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

.contact {
  height: 466px;
}
@media screen and (max-width: 768px) {
  .contact {
    height: auto;
  }
}

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

.contact__inner {
  height: inherit;
}

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

.contact__wrap {
  width: 56.94%;
  flex-shrink: 0;
  height: inherit;
}
@media screen and (max-width: 768px) {
  .contact__wrap {
    width: 100%;
  }
}

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

.contact__img {
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact__body {
  width: 100%;
  height: inherit;
  padding: 81px 0;
  text-align: center;
  background-color: #011950;
}

.contact__body-inner {
  width: 100%;
  max-width: 435px;
  padding: 0 80px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .contact__body-inner {
    padding: 0 32px;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .contact__body-inner {
    max-width: 287px;
  }
}

.contact__text {
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  line-height: 1.6666;
}
@media screen and (max-width: 1024px) {
  .contact__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .contact__text {
    font-size: 14px;
    line-height: 2;
  }
}

.contact__box {
  display: inline-block;
  color: #fff;
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .contact__box {
    margin-top: 32px;
  }
}

.contact__box i {
  margin-right: 16px;
}
@media screen and (max-width: 768px) {
  .contact__box i {
    margin-right: 10px;
  }
}

/*== ボタン共通設定 */
.contact__button {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  font-size: 22px;
  font-weight: 300;
  border: 1px solid #fff; /* ボーダーの色と太さ */
  padding: 18px 32px;
  border-radius: 5px;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  transition: ease 0.2s;
}
@media screen and (max-width: 1024px) {
  .contact__button {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .contact__button {
    font-size: 16px;
    padding: 18px 49.5px;
  }
}

/*ボタン内spanの形状*/
.contact__button span {
  position: relative;
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #fff;
}

.contact__button:hover span,
.contact__button:hover i {
  color: #011950;
}

.contact__button i {
  position: relative;
  z-index: 3;
}

/*== 背景が流れる（左から右） */
.bgleft:before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #fff; /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}

/*hoverした際の形状*/
.bgleft:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.white-color {
  color: #fff;
}

.fa-envelope:hover {
  color: #fff;
}

.content__area {
  display: inline-block;
  margin-top: 20px;
}

.fa-solid {
  margin-right: 16px;
}
@media screen and (max-width: 768px) {
  .fa-solid {
    margin-right: 10px;
    font-size: 0.75em;
  }
}

.call__button {
  display: inline-block;
  font-size: 22px;
  font-weight: 300;
  color: #fff;
  padding: 18px 29.5px;
  border: 1px solid #fff;
  border-radius: 5px;
}
@media screen and (max-width: 1024px) {
  .call__button {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .call__button {
    font-size: 16px;
    padding: 18px 49.5px;
  }
}

.contact__label {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  margin-top: 22px;
}
@media screen and (max-width: 768px) {
  .contact__label {
    font-size: 12px;
    margin-top: 10px;
  }
}

.footer {
  padding: 100px 0 100px;
  background-color: #001135;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 63px 0 30px;
  }
}

.footer__inner {
  width: 100%;
  max-width: 1180px;
  padding: 0 25px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding: 0 50px;
  }
}
@media screen and (max-width: 374px) {
  .footer__inner {
    padding: 0 30px;
  }
}

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

.footer__body {
  display: grid;
  justify-content: center;
  align-items: end;
}
@media screen and (max-width: 768px) {
  .footer__body {
    display: block;
  }
}

.footer__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 27px;
}
@media screen and (max-width: 768px) {
  .footer__wrap {
    display: block;
    margin-top: 62px;
  }
}

.footer__logo {
  width: 258px;
  height: 180px;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 114px;
    height: 80px;
  }
}

.footer-sns__box {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .footer-sns__box {
    margin-top: 50px;
  }
}

.footer-sns__box a:first-child {
  margin-left: 46px;
}
@media screen and (max-width: 768px) {
  .footer-sns__box a:first-child {
    margin-left: 0;
  }
}

.footer-sns__box a:not(:first-child) {
  margin-left: 20px;
}

.fa-facebook::before {
  font-size: 22px;
}

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

.footer-menu__item {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: #fff;
}

.footer-menu__item:not(:first-child) {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .footer-menu__item:not(:first-child) {
    margin-top: 24px;
  }
}

.footer-menu__link {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: #fff;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .footer-menu__link {
    font-size: 14px;
  }
}

.philosophy {
  padding: 120px 50px 0 50px;
}
@media screen and (max-width: 1024px) {
  .philosophy {
    padding: 100px 40px 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .philosophy {
    padding: 80px 0 0;
  }
}

.philosophy__inner {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  background-color: #F8F8F8;
}
@media screen and (max-width: 768px) {
  .philosophy__inner {
    max-width: 600px;
    background: linear-gradient(180deg, #F8F8F8 0%, #F8F8F8 90%, #fff 90%, #fff 100%);
  }
}

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

.philosophy__wrap {
  width: 69.7%;
  margin: 69px 0;
  padding: 0 30px;
}
@media screen and (max-width: 1024px) {
  .philosophy__wrap {
    width: 78%;
    margin: 60px 0;
  }
}
@media screen and (max-width: 768px) {
  .philosophy__wrap {
    width: 100%;
    margin-bottom: 0;
    padding: 0 20px;
  }
}

.philosophy-title__box {
  width: 100%;
}

.philosophy__title--jp {
  font-weight: 700;
  color: #001E63;
}
@media screen and (max-width: 768px) {
  .philosophy__title--jp {
    font-size: 12px;
  }
}

.philosophy__title--en {
  font-size: 40px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  position: relative;
  padding-right: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .philosophy__title--en {
    font-size: 26px;
    padding-right: 10px;
  }
}

.philosophy__title--en::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30%;
  transform: translate(0%, -50%);
  width: 60px;
  height: 2px;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  .philosophy__title--en::after {
    right: -47%;
  }
}

.philosophy__text {
  font-weight: 300;
  line-height: 2.375;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .philosophy__text {
    font-size: 14px;
    line-height: 2.2857;
    margin-top: 30px;
  }
}

.philosophy__label-box {
  text-align: right;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .philosophy__label-box {
    margin-top: 30px;
  }
}

.philosophy__label-name {
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .philosophy__label-name {
    font-size: 14px;
  }
}

.philosophy__area {
  width: 34.9%;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .philosophy__area {
    width: 65.4%;
  }
}
@media screen and (max-width: 900px) {
  .philosophy__area {
    padding: 40px 0;
    width: 75%;
  }
}
@media screen and (max-width: 768px) {
  .philosophy__area {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    padding: 0;
    margin-top: 30px;
  }
}
@media screen and (max-width: 610px) {
  .philosophy__area {
    padding: 0 20px;
  }
}

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

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

.access__title--jp {
  font-weight: 700;
  color: #001E63;
}
@media screen and (max-width: 768px) {
  .access__title--jp {
    font-size: 12px;
  }
}

.access__title--en {
  position: relative;
  font-size: 40px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  padding-right: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .access__title--en {
    font-size: 26px;
    padding-right: 10px;
  }
}

.access__title--en::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -45%;
  transform: translate(0%, -50%);
  width: 60px;
  height: 2px;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  .access__title--en::after {
    right: -70%;
  }
}

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

.access__address {
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .access__address {
    display: block;
    font-size: 14px;
    margin-top: 4px;
  }
}

.access__map-wrap {
  max-width: 100%;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .access__map-wrap {
    margin-top: 20px;
  }
}

.access__map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 36.5%;
}
@media screen and (max-width: 1024px) {
  .access__map {
    padding-top: 56.5%;
  }
}
@media screen and (max-width: 768px) {
  .access__map {
    padding-top: 100%;
  }
}
@media screen and (max-width: 450px) {
  .access__map {
    padding-top: 0;
    height: 400px;
  }
}

.access__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.company-profile {
  padding-top: 70px;
  background-color: #F8F8F8;
}
@media screen and (max-width: 768px) {
  .company-profile {
    padding-top: 60px;
  }
}

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

.company-profile__title--jp {
  font-weight: 700;
  color: #001E63;
}
@media screen and (max-width: 768px) {
  .company-profile__title--jp {
    font-size: 12px;
  }
}

.company-profile__title--en {
  position: relative;
  font-size: 40px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  padding-right: 15px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .company-profile__title--en {
    font-size: 26px;
    padding-right: 10px;
  }
}

.company-profile__title--en::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -21%;
  transform: translate(0%, -50%);
  width: 60px;
  height: 2px;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  .company-profile__title--en::after {
    right: -33%;
  }
}

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

.company-profile__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  border-bottom: 1px solid #E2E2E2;
}
@media screen and (max-width: 768px) {
  .company-profile__list {
    flex-direction: column;
    align-items: start;
  }
}

.company-profile__list:first-child {
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .company-profile__list:first-child {
    padding-bottom: 20px;
  }
}

.company-profile__list:not(:first-child) {
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .company-profile__list:not(:first-child) {
    padding: 20px 0;
  }
}

.company-profile__term {
  width: 100%;
  max-width: 15.5%;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .company-profile__term {
    font-size: 14px;
    max-width: 100%;
    margin-bottom: 16px;
  }
}

.company-profile__description {
  width: 84.5%;
  max-width: 100%;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .company-profile__description {
    font-size: 14px;
    width: 100%;
  }
}

.company-profile__description + .company-profile__description {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .company-profile__description + .company-profile__description {
    margin-top: 10px;
  }
}

.company-profile__body {
  display: flex;
  overflow: hidden;
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .company-profile__body {
    padding: 80px 0;
  }
}

.company-profile__box {
  display: flex;
  animation: loop-list 50s linear infinite;
}
@keyframes loop-list {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.company-profile__item {
  width: 33.3333333333vw;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .company-profile__item {
    width: 50vw;
    margin-right: 0;
  }
}
@media screen and (max-width: 374px) {
  .company-profile__item {
    margin-right: 4px;
  }
}

.company-profile__item img {
  width: 100%;
  aspect-ratio: 480/400;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .company-profile__item img {
    width: 96%;
    aspect-ratio: 180/150;
  }
}
@media screen and (max-width: 374px) {
  .company-profile__item img {
    width: 100%;
  }
}

.service-category {
  padding-top: 120px;
}
@media screen and (max-width: 1024px) {
  .service-category {
    padding-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .service-category {
    padding-top: 50px;
  }
}

.service-category__inner {
  width: 100%;
  max-width: 1300px;
  padding-right: 50px;
  padding-left: 50px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .service-category__inner {
    max-width: 600px;
    padding: 0;
  }
}

.service-category__container {
  background-color: #F8F8F8;
  display: flex;
}
@media screen and (max-width: 768px) {
  .service-category__container {
    flex-direction: column;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.service-category__wrap {
  width: 79.5%;
  margin: 111px 0 111px 0;
  padding-left: 50px;
  padding-right: 110px;
}
@media screen and (max-width: 1240px) {
  .service-category__wrap {
    width: 83%;
    margin: 90px 0 90px 0;
    padding-right: 70px;
  }
}
@media screen and (max-width: 1024px) {
  .service-category__wrap {
    margin: 80px 0 80px 0;
    padding-right: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .service-category__wrap {
    margin: 60px 0 60px 0;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 900px) {
  .service-category__wrap {
    width: 90%;
    margin: 50px 0 50px 0;
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .service-category__wrap {
    width: 100%;
    margin-top: 60px;
    margin-bottom: 0;
    padding: 0;
  }
}

.service-category__number {
  position: relative;
  display: inline-block;
  font-size: 40px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  color: #001E63;
}
@media screen and (max-width: 900px) {
  .service-category__number {
    font-size: 32px;
  }
}

.service-category__number::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 34px;
  background-color: #000;
  position: absolute;
  top: 25%;
  right: -40%;
}

.service-category__title {
  font-size: 28px;
  font-weight: bold;
  margin-top: 20px;
}
@media screen and (max-width: 900px) {
  .service-category__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .service-category__title {
    font-size: 20px;
  }
}

.service-category__text-box {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 20px;
}

.service-category__text {
  font-size: 22px;
  font-weight: 500;
  line-height: 2.0909;
}
@media screen and (max-width: 900px) {
  .service-category__text {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .service-category__text {
    font-size: 14px;
    line-height: 2.2857;
  }
}

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

.purchase-support-img,
.maintenance-img,
.inspection-img {
  width: 100%;
  aspect-ratio: 640/499;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .purchase-support-img,
  .maintenance-img,
  .inspection-img {
    aspect-ratio: 335/220;
  }
}

.service-category__body {
  margin-top: 30px;
  padding-right: 50px;
  padding-left: 50px;
}
@media screen and (max-width: 768px) {
  .service-category__body {
    margin-top: 20px;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.service-category__item {
  display: flex;
  align-items: center;
}

.service-category__title--en {
  display: inline-block;
  font-size: 22px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .service-category__title--en {
    font-size: 18px;
  }
}

.service-category__title--jp {
  font-size: 12px;
  font-weight: 500;
  margin-left: 16px;
  color: #626262;
}
@media screen and (max-width: 768px) {
  .service-category__title--jp {
    font-size: 10px;
  }
}

.service-category__lead {
  font-weight: 300;
  line-height: 2.375;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .service-category__lead {
    font-size: 14px;
    line-height: 2.2857;
  }
}

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

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

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

.news__wrap {
  width: 22.5%;
  padding-right: 15px;
}
@media screen and (max-width: 900px) {
  .news__wrap {
    width: 26.5%;
  }
}
@media screen and (max-width: 768px) {
  .news__wrap {
    width: 100%;
    padding-right: 0;
  }
}

.news__area {
  position: sticky;
  display: flex;
  flex-direction: column;
  top: 30%;
}
@media screen and (max-width: 768px) {
  .news__area {
    display: flex;
    flex-wrap: wrap;
    position: initial;
    flex-direction: initial;
    padding-bottom: 38px;
    border-bottom: 1px solid #E2E2E2;
  }
}

@media screen and (max-width: 450px) {
  .news__area a:nth-child(2) {
    padding-left: 75px;
  }
}

@media screen and (max-width: 450px) {
  .news__area a:nth-child(4) {
    padding-left: 40px;
  }
}

.news-tab__link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  margin-top: 20px;
  padding-left: 20px;
  color: #A9A9A9;
}
@media screen and (max-width: 768px) {
  .news-tab__link {
    width: 50%;
    font-size: 12px;
    line-height: 2.375;
    margin-top: 0;
  }
}
@media screen and (max-width: 450px) {
  .news-tab__link {
    width: initial;
  }
}

.news-tab__link:first-child::before {
  position: absolute;
  content: "";
  top: 6px;
  left: 5px;
  display: block;
  width: 8px;
  height: 8px;
  background: #001E63;
}
@media screen and (max-width: 768px) {
  .news-tab__link:first-child::before {
    top: 10px;
    left: -2px;
    margin-left: 8px;
  }
}

.news-tab__link:first-child {
  margin-top: 0;
}

.is-active {
  color: #000;
}

@media screen and (max-width: 768px) {
  .news__wrap-box {
    display: flex;
    align-items: flex-start;
  }
}

.news__wrap-box a {
  color: #000;
}

@media screen and (max-width: 768px) {
  .news-info__title.title-info.topic {
    margin-left: 91px;
  }
}

@media screen and (max-width: 768px) {
  .news-info__title.title-info.info {
    margin-left: 55px;
  }
}

.news__wrap-unit {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .news__wrap-unit {
    display: flex;
  }
}

@media screen and (max-width: 768px) {
  .news__wrap-unit a:first-child .title-info {
    margin-left: 20px;
  }
}

.news__list {
  width: 76%;
  padding-left: 60px;
  border-left: 1px solid #E2E2E2;
}
@media screen and (max-width: 900px) {
  .news__list {
    width: 72.5%;
  }
}
@media screen and (max-width: 768px) {
  .news__list {
    width: 100%;
    padding-left: 0;
    border-left: none;
  }
}

.news-details {
  padding: 60px 0 120px;
}
@media screen and (max-width: 1024px) {
  .news-details {
    padding: 50px 0 100px;
  }
}
@media screen and (max-width: 768px) {
  .news-details {
    padding: 30px 0 80px;
  }
}

.news-details__inner {
  width: 100%;
  max-width: 1440px;
  padding-right: 140px;
  padding-left: 100px;
  margin-inline: auto;
}
@media screen and (max-width: 1150px) {
  .news-details__inner {
    padding-right: 120px;
    padding-left: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .news-details__inner {
    padding-right: 90px;
    padding-left: 50px;
  }
}
@media screen and (max-width: 900px) {
  .news-details__inner {
    padding-right: 60px;
    padding-left: 40px;
  }
}
@media screen and (max-width: 768px) {
  .news-details__inner {
    padding: 0;
  }
}

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

.news-details__body {
  width: 67%;
  padding: 0 42px;
}
@media screen and (max-width: 1024px) {
  .news-details__body {
    width: 62%;
  }
}
@media screen and (max-width: 1024px) {
  .news-details__body {
    width: 62%;
    padding: 0 30px;
  }
}
@media screen and (max-width: 900px) {
  .news-details__body {
    width: 62%;
    padding: 0 15px;
  }
}
@media screen and (max-width: 768px) {
  .news-details__body {
    width: 100%;
    padding-right: 30px;
    padding-left: 30px;
  }
}

.news__post-box {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .news__post-box {
    margin-top: 10px;
  }
}

.post-title {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.923;
  color: #000;
}
@media screen and (max-width: 1024px) {
  .post-title {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  .post-title {
    font-size: 18px;
    line-height: 1.6666;
    margin-right: 20px;
  }
}

.post-date {
  display: inline-block;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .post-date {
    margin-top: 10px;
  }
}

.news-details__img-box {
  margin: 40px 0;
}

.news-details-mv__img {
  aspect-ratio: 718/380;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 400px) {
  .news-details-mv__img {
    aspect-ratio: 315/176;
  }
}

.news-details__content h2 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 40px;
  padding: 8px 14px;
  border-left: 3px solid #001E63;
  background-color: #F8F9F9;
}
@media screen and (max-width: 1024px) {
  .news-details__content h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .news-details__content h2 {
    font-size: 16px;
  }
}

.news-details__content h3 {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  padding: 0 13px 8px;
  margin-bottom: 40px;
  border-bottom: 1px solid #E4E4E4;
}

.news-details__content h3::after {
  position: absolute;
  content: "";
  bottom: -1px;
  left: 0;
  width: 39.7%;
  border-bottom: 1px solid #001E63;
}

.news-details__content p {
  font-weight: 300;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .news-details__content p {
    font-size: 14px;
    line-height: 2.2857;
  }
}

.news-details__content p:nth-of-type(odd) {
  margin-bottom: 32px;
}

.news-details__content p:nth-of-type(2) {
  margin-bottom: 72px;
}
@media screen and (max-width: 1024px) {
  .news-details__content p:nth-of-type(2) {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .news-details__content p:nth-of-type(2) {
    margin-bottom: 40px;
  }
}

.news-details__content p:nth-of-type(4) {
  margin-bottom: 72px;
}
@media screen and (max-width: 1024px) {
  .news-details__content p:nth-of-type(4) {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 768px) {
  .news-details__content p:nth-of-type(4) {
    margin-bottom: 22px;
  }
}

.news-details__content ul {
  border-bottom: 1px solid #E2E2E2;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .news-details__content ul {
    border-bottom: none;
    padding: 0;
    margin-bottom: 48px;
  }
}

.news-details__content li {
  position: relative;
  padding-left: 16px;
}
@media screen and (max-width: 768px) {
  .news-details__content li {
    font-size: 14px;
  }
}

.news-details__content li::after {
  position: absolute;
  content: "";
  top: 7px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #001E63;
}

.news-details__button-box {
  display: flex;
  justify-content: space-between;
}

.prev__button {
  display: inline-block;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: #001E63;
  padding: 11px 15px 11px 33px;
  border: 1px solid #001E63;
  border-radius: 4px;
  text-decoration: none;
}

.prev__button::before {
  content: "";
  position: absolute;
  top: 44%;
  left: 20px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #001E63;
  border-right: 1px solid #001E63;
  transform: rotate(-135deg);
  transition: left 0.3s ease-out;
}

.prev__button:hover:before {
  left: 15px;
}

.next__button-box {
  text-align: right;
}

.next__button {
  display: inline-block;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: #001E63;
  padding: 11px 33px 11px 15px;
  border: 1px solid #001E63;
  border-radius: 4px;
  text-decoration: none;
}

.next__button::before {
  content: "";
  position: absolute;
  top: 44%;
  right: 20px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #001E63;
  border-right: 1px solid #001E63;
  transform: rotate(45deg);
  transition: right 0.3s ease-out;
}

.next__button:hover::before {
  right: 15px;
}

.news-details__wrap {
  width: 25%;
  max-width: 300px;
  margin-left: 97px;
}
@media screen and (max-width: 1150px) {
  .news-details__wrap {
    width: 36%;
    margin-left: 70px;
  }
}
@media screen and (max-width: 1024px) {
  .news-details__wrap {
    width: 37%;
    margin-left: 40px;
  }
}
@media screen and (max-width: 900px) {
  .news-details__wrap {
    margin-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .news-details__wrap {
    width: 100%;
    margin-top: 57px;
    margin-inline: auto;
    max-width: 600px;
    padding-right: 15px;
    padding-left: 15px;
  }
}

.lead__title {
  font-size: 14px;
  font-weight: 500;
  padding: 14px 18px;
  color: #fff;
  background-color: #001135;
}

.news-details__area {
  padding-bottom: 40px;
}

.news-details__item {
  display: flex;
  padding: 17px 17px;
  border-bottom: 1px solid #E4E4E4;
}
@media screen and (max-width: 768px) {
  .news-details__item {
    padding: 37px 17px;
  }
}
@media screen and (max-width: 450px) {
  .news-details__item {
    padding: 17px 17px;
  }
}

.news-details__item-box {
  width: 38%;
}
@media screen and (max-width: 768px) {
  .news-details__item-box {
    width: 36%;
  }
}
@media screen and (max-width: 450px) {
  .news-details__item-box {
    width: 32.2%;
  }
}
@media screen and (max-width: 374px) {
  .news-details__item-box {
    width: 42%;
  }
}

.news-details__img {
  aspect-ratio: 100/100;
  width: 100px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 450px) {
  .news-details__img {
    width: 100px;
  }
}

.news-details__unit {
  width: 56%;
  margin-left: 18px;
}
@media screen and (max-width: 768px) {
  .news-details__unit {
    display: grid;
    align-items: center;
  }
}
@media screen and (max-width: 450px) {
  .news-details__unit {
    width: 62%;
    display: block;
  }
}
@media screen and (max-width: 374px) {
  .news-details__unit {
    width: 57%;
  }
}

.news-details__list-box li {
  padding: 17px;
  border-bottom: 1px solid #E4E4E4;
  list-style: none;
}

.news-details__list-box li:last-child {
  border-bottom: none;
}

.news-details__list-box a {
  font-size: 14px;
  font-weight: 300;
  color: #000;
}

.news-details__text {
  font-size: 12px;
  font-weight: 300;
  line-height: 2;
  color: #040404;
}
@media screen and (max-width: 768px) {
  .news-details__text {
    font-size: 18px;
  }
}
@media screen and (max-width: 450px) {
  .news-details__text {
    font-size: 12px;
    line-height: 2.3333;
  }
}

.news-details__list-box {
  padding-bottom: 40px;
}

.news-details__list-box:last-child {
  padding-bottom: 0;
}

.archive__list,
.category__list {
  font-size: 14px;
  font-weight: 300;
  color: #000;
  padding: 17px;
  border-bottom: 1px solid #E4E4E4;
}

.category__list:last-child {
  border-bottom: none;
}

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

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

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

.works__wrap {
  width: 23.5%;
}
@media screen and (max-width: 768px) {
  .works__wrap {
    width: 100%;
  }
}

.works__area {
  position: sticky;
  display: flex;
  flex-direction: column;
  top: 30%;
}
@media screen and (max-width: 768px) {
  .works__area {
    display: inline-block;
    position: initial;
    flex-direction: initial;
    padding-bottom: 38px;
  }
}

@media screen and (max-width: 450px) {
  .works__area a:nth-child(2) {
    padding-left: 40px;
  }
}

@media screen and (max-width: 450px) {
  .works__area a:nth-child(4) {
    padding-left: 40px;
  }
}

.works-tab__link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  margin-top: 20px;
  padding-left: 20px;
  color: #A9A9A9;
}
@media screen and (max-width: 768px) {
  .works-tab__link {
    font-size: 12px;
    line-height: 2.375;
    margin-top: 0;
  }
}
@media screen and (max-width: 610px) {
  .works-tab__link {
    display: inline-block;
    width: 42%;
  }
}

.works-tab__link:first-child::before {
  position: absolute;
  content: "";
  top: 6px;
  left: 5px;
  display: block;
  width: 8px;
  height: 8px;
  background: #001E63;
}
@media screen and (max-width: 768px) {
  .works-tab__link:first-child::before {
    top: 5px;
    left: -2px;
    margin-left: 8px;
  }
}
@media screen and (max-width: 610px) {
  .works-tab__link:first-child::before {
    top: 10px;
  }
}

.works-tab__link:first-child {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .works-tab__link {
    margin-right: 14px;
  }
}

.is-active {
  color: #000;
}

@media screen and (max-width: 768px) {
  .works__wrap-box {
    display: flex;
  }
}

.works-title__heading {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  padding-left: 18px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .works-title__heading {
    font-size: 12px;
    padding-left: 13px;
  }
}

.works-title__heading::before {
  position: absolute;
  content: "";
  top: 6px;
  left: 5px;
  display: block;
  width: 8px;
  height: 8px;
  background: #001E63;
}
@media screen and (max-width: 768px) {
  .works-title__heading::before {
    top: 5px;
    left: 0;
  }
}

@media screen and (max-width: 768px) {
  .works__wrap-unit {
    display: flex;
  }
}

.works-info__title {
  margin-top: 20px;
  margin-left: 16px;
}
@media screen and (max-width: 610px) {
  .works-info__title {
    margin-top: 15px;
  }
}

@media screen and (max-width: 768px) {
  .works__wrap-box a:nth-of-type(2) .works-info__title {
    margin-top: 0;
    margin-left: 95px;
  }
}

@media screen and (max-width: 768px) {
  .works__wrap-unit a:first-of-type .works-info__title {
    margin-left: 15px;
  }
}

@media screen and (max-width: 768px) {
  .works__wrap-unit a:nth-of-type(2) .works-info__title {
    margin-left: 103px;
  }
}

.works__list {
  width: 76%;
  padding-left: 60px;
  border-left: 1px solid #E2E2E2;
}
@media screen and (max-width: 768px) {
  .works__list {
    width: 100%;
    padding-left: 0;
    border-left: none;
  }
}

.works__item {
  display: flex;
  padding-bottom: 30px;
  border-bottom: 1px solid #E2E2E2;
}
@media screen and (max-width: 610px) {
  .works__item {
    padding-bottom: 20px;
  }
}

.works__item:not(:first-of-type) {
  padding-top: 30px;
}
@media screen and (max-width: 610px) {
  .works__item:not(:first-of-type) {
    padding-top: 20px;
  }
}

.works__img-box {
  width: 20.7%;
  margin-right: 30px;
}
@media screen and (max-width: 1024px) {
  .works__img-box {
    width: 26%;
  }
}
@media screen and (max-width: 900px) {
  .works__img-box {
    width: 28%;
  }
}
@media screen and (max-width: 768px) {
  .works__img-box {
    width: 35%;
  }
}
@media screen and (max-width: 610px) {
  .works__img-box {
    width: 57%;
    margin-right: 15px;
  }
}
@media screen and (max-width: 400px) {
  .works__img-box {
    width: 60%;
  }
}

.works__img {
  width: 100%; /* 画像の幅を100%に設定 */
  height: auto; /* 高さを自動調整してアスペクト比を維持 */
  display: block; /* インライン要素をブロック要素に変更 */
  aspect-ratio: 160/160;
}
@media screen and (max-width: 610px) {
  .works__img {
    aspect-ratio: 130/100;
  }
}

.works__item-wrap {
  width: 68%;
}

.works__post-title-box {
  margin-top: 30px;
}
@media screen and (max-width: 610px) {
  .works__post-title-box {
    margin-top: 10px;
  }
}

.works__post-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7777;
  color: #000;
}
@media screen and (max-width: 768px) {
  .works__post-text {
    font-size: 14px;
    line-height: 2;
  }
}

.works__group {
  display: inline-block;
  margin-top: 45px;
}
@media screen and (max-width: 610px) {
  .works__group {
    margin-top: 10px;
  }
}

.works__group:nth-child(3) {
  margin-top: 30px;
}

.works__group-box:nth-child(3) {
  margin-top: 30px;
}

.works-details {
  padding-top: 60px;
  padding-bottom: 120px;
}
@media screen and (max-width: 1024px) {
  .works-details {
    padding-top: 40px;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 768px) {
  .works-details {
    padding-top: 30px;
    padding-bottom: 80px;
  }
}

.works-details__inner {
  width: 100%;
  max-width: 900px;
  padding-left: 30px;
  padding-right: 30px;
  margin-inline: auto;
}
@media screen and (max-width: 374px) {
  .works-details__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.works-details__title-box {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .works-details__title-box {
    margin-top: 10px;
  }
}

.works-details__title {
  display: inline-block;
  font-size: 26px;
  font-weight: 500;
  color: #000;
}
@media screen and (max-width: 768px) {
  .works-details__title {
    font-size: 22px;
  }
}
@media screen and (max-width: 610px) {
  .works-details__title {
    font-size: 18px;
    line-height: 1.6666;
  }
}

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

.works-details__img-box {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .works-details__img-box {
    margin-top: 34px;
  }
}

.works-details__img.wp-post-image {
  max-width: 100%;
  height: auto;
  aspect-ratio: 840/470;
  -o-object-fit: cover;
     object-fit: cover;
}

.works-details__text-box {
  margin-top: 40px;
  padding: 0 80px;
}
@media screen and (max-width: 1024px) {
  .works-details__text-box {
    padding: 0 60px;
  }
}
@media screen and (max-width: 768px) {
  .works-details__text-box {
    margin-top: 42px;
    padding: 0;
  }
}

.works-details__text-box p + p {
  margin-top: 33px;
}

.works-details__text-box br {
  display: none;
}
@media screen and (max-width: 768px) {
  .works-details__text-box br {
    display: block;
  }
}

.works-details__text {
  display: inline-block;
  font-weight: 300;
  line-height: 2;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .works-details__text {
    font-size: 14px;
    line-height: 2.2857;
  }
}

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

.button-medium {
  display: inline-block;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: #001E63;
  padding: 12px 86px 12px 100px;
  border: 1px solid #001E63;
  border-radius: 4px;
}

.button-medium::before {
  content: "";
  position: absolute;
  top: 46%;
  left: 88px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #001E63;
  border-right: 1px solid #001E63;
  transform: rotate(-135deg);
  transition: margin-left 0.3s ease-out;
}

.button-medium:hover:before {
  margin-left: -5px;
}

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

.form__inner {
  width: 100%;
  max-width: 680px;
  padding-left: 20px;
  padding-right: 20px;
  margin-inline: auto;
}

.form__info {
  font-weight: 300;
  line-height: 2.375;
}
@media screen and (max-width: 768px) {
  .form__info {
    font-size: 14px;
    line-height: 2.2857;
  }
}

.form__list {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .form__list {
    margin-top: 40px;
  }
}

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

.name__text--medium,
.wpcf7-list-item-label {
  font-weight: 500;
}

@media screen and (max-width: 374px) {
  .name__text--medium {
    font-size: 14px;
  }
}

.wpcf7-list-item {
  margin: 0;
}

.form__required {
  color: #e20000;
}

.name__text--indent {
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .name__text--indent {
    display: block;
    margin-top: 10px;
    margin-left: 0;
  }
}
@media screen and (max-width: 374px) {
  .name__text--indent {
    font-size: 14px;
  }
}

.form__input::-moz-placeholder {
  color: #A9A9A9;
}

.form__input::placeholder {
  color: #A9A9A9;
}

.form__textarea {
  height: 160px;
}

.form__input,
.form__select,
.form__textarea {
  font-size: 14px;
  font-weight: 300;
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  border: 1px solid #E2E2E2;
  border-radius: 4px;
}

.form__select {
  padding-right: 35px;
}

.form__data-select {
  position: relative;
}

.form__data-select::after {
  position: absolute;
  top: 55%;
  right: 15px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: #000000 transparent transparent transparent;
}

.wpcf7-list-item-label {
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 374px) {
  .wpcf7-list-item-label {
    font-size: 12px;
  }
}

.wpcf7-form-control-wrap[data-name=privacy] .wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  padding-left: 24px;
}
@media screen and (max-width: 768px) {
  .wpcf7-form-control-wrap[data-name=privacy] .wpcf7-list-item-label {
    padding-left: 25px;
  }
}

.wpcf7-form-control-wrap[data-name=privacy] .wpcf7-list-item-label::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 17px;
  height: 17px;
  content: "";
  border: 1px solid #E2E2E2;
  border-radius: 3px;
}

.wpcf7-form-control-wrap[data-name=privacy] .wpcf7-list-item-label::after {
  position: absolute;
  top: 6.25px;
  left: 4px;
  width: 10px;
  height: 5px;
  content: "";
  transform: rotate(-45deg);
  opacity: 0;
  border-bottom: 2px solid #011950;
  border-left: 2px solid #011950;
}
@media screen and (max-width: 768px) {
  .wpcf7-form-control-wrap[data-name=privacy] .wpcf7-list-item-label::after {
    top: 5px;
  }
}

.form__checkbox:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.form__submit-button {
  margin-top: 40px;
  text-align: center;
}

.form__submit-input {
  display: inline-block;
  width: 100%;
  max-width: 466px;
  font-size: 18px;
  font-weight: 500;
  padding: 21px 20px;
  transition: opacity 0.3s;
  color: #fff;
  border-radius: 4px;
  background-color: #011950;
}
.form__submit-input:hover {
  transition: opacity 0.3s;
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .form__submit-input {
    max-width: 260px;
    font-size: 14px;
    padding: 12px 15px;
  }
}

.contact-confirm {
  padding-top: 60px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .contact-confirm {
    padding-top: 30px;
    padding-bottom: 80px;
  }
}

.contact-confirm__inner {
  width: 100%;
  max-width: 720px;
  padding-left: 20px;
  padding-right: 20px;
  margin-inline: auto;
}

.contact-confirm__text {
  font-weight: 500;
}

.contact-confirm__list {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .contact-confirm__list {
    margin-top: 40px;
  }
}

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

.contact-confirm__item + .contact-confirm__item {
  margin-top: 40px;
}

.contact-confirm__term {
  width: 47%;
  font-size: 15px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .contact-confirm__term {
    width: 100%;
  }
}

.contact-confirm__required {
  color: #e20000;
}

.contact-confirm__definition {
  width: 100%;
  font-size: 14px;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .contact-confirm__definition {
    margin-top: 10px;
  }
}

.special-line-height {
  line-height: 2.2857;
}

.contact-confirm__buttons {
  margin-top: 40px;
}

.contact-confirm__back-button {
  padding: 18px 120px;
  color: #011950;
  border: 2px solid;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .contact-confirm__back-button {
    padding: 18px 114px;
  }
}
@media screen and (max-width: 610px) {
  .contact-confirm__back-button {
    padding: 12px 78px;
  }
}
@media screen and (max-width: 450px) {
  .contact-confirm__back-button {
    padding: 9px 60px;
  }
}
@media screen and (max-width: 374px) {
  .contact-confirm__back-button {
    padding: 9px 46px;
  }
}

.contact-confirm__submit-input {
  padding: 19px 103px;
  background-color: #011950;
  color: #fff;
  border: 1px solid;
  border-radius: 4px;
  margin-left: 40px;
}
@media screen and (max-width: 768px) {
  .contact-confirm__submit-input {
    padding: 18px 101px;
  }
}
@media screen and (max-width: 610px) {
  .contact-confirm__submit-input {
    padding: 13px 65px;
    margin-left: 30px;
  }
}
@media screen and (max-width: 450px) {
  .contact-confirm__submit-input {
    padding: 10px 47px;
    margin-left: 23px;
  }
}
@media screen and (max-width: 374px) {
  .contact-confirm__submit-input {
    padding: 10px 33px;
  }
}

.contact-confirm__back-button,
.contact-confirm__submit-input {
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .contact-confirm__back-button,
  .contact-confirm__submit-input {
    font-size: 14px;
  }
}

.contact-complete {
  padding-top: 60px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .contact-complete {
    padding-top: 70px;
    padding-bottom: 80px;
  }
}

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

.contact-complete__title-en {
  font-size: 40px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .contact-complete__title-en {
    font-size: 24px;
  }
}

.contact-complete__title-jp {
  font-size: 18px;
  font-weight: 500;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .contact-complete__title-jp {
    font-size: 14px;
    margin-top: 10px;
  }
}

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

.contact-complete__text {
  font-weight: 300;
  line-height: 2.375;
}
@media screen and (max-width: 768px) {
  .contact-complete__text {
    font-size: 14px;
    line-height: 2.2857;
  }
}

.contact-complete__item {
  margin-top: 40px;
  text-align: center;
}

.button-large {
  display: inline-block;
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  padding: 20px 185px;
  background-color: #011950;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .button-large {
    font-size: 14px;
    padding: 11.5px 95px 11.5px 110px;
  }
}

.button-large::before {
  content: "";
  position: absolute;
  top: 46%;
  left: 37%;
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(-135deg);
  transition: margin-left 0.3s ease-out;
}

.button-large:hover:before {
  margin-left: -5px;
}

.error {
  padding-top: 180px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .error {
    padding: 80px 0;
  }
}

.error__inner {
  width: 90%;
  padding-left: 25px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .error__inner {
    width: 100%;
    padding-left: 20px;
  }
}
@media screen and (max-width: 450px) {
  .error__inner {
    padding-left: 10px;
  }
}

.error__wrap {
  position: relative;
  margin-top: 150px;
}
@media screen and (max-width: 768px) {
  .error__wrap {
    margin-top: 40px;
  }
}

.error__img {
  width: 100%;
  height: auto; /* アスペクト比を保持するために高さを自動計算 */
  aspect-ratio: 1270/700;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .error__img {
    aspect-ratio: 365/243;
  }
}

.error__content {
  position: absolute;
  top: 48%;
  left: 63%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 510px;
}
@media screen and (max-width: 1150px) {
  .error__content {
    top: 52%;
    left: 68%;
  }
}
@media screen and (max-width: 1024px) {
  .error__content {
    max-width: 400px;
  }
}
@media screen and (max-width: 850px) {
  .error__content {
    max-width: 300px;
  }
}
@media screen and (max-width: 768px) {
  .error__content {
    top: 50%;
    left: 50%;
    text-align: center;
  }
}

.error__area {
  position: absolute;
  top: 32%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media screen and (max-width: 450px) {
  .error__area {
    top: 27%;
    left: 49%;
  }
}

.error__title {
  font-size: 70px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .error__title {
    font-size: 50px;
  }
}
@media screen and (max-width: 900px) {
  .error__title {
    font-size: 42px;
  }
}
@media screen and (max-width: 768px) {
  .error__title {
    font-size: 50px;
  }
}
@media screen and (max-width: 610px) {
  .error__title {
    font-size: 35px;
  }
}
@media screen and (max-width: 374px) {
  .error__title {
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  .error__container {
    padding-left: 10px;
    padding-right: 20px;
  }
}

.error-text__box {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .error-text__box {
    margin-top: 40px;
  }
}

.error__text {
  font-weight: 500;
  line-height: 2.375;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .error__text {
    font-size: 14px;
    line-height: 2.2857;
    color: initial;
  }
}

.error__button-box {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .error__button-box {
    margin-top: 40px;
    text-align: center;
  }
}

.error__button {
  display: inline-block;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 11px 37px;
}
@media screen and (max-width: 768px) {
  .error__button {
    color: #011950;
    border-color: #011950;
  }
}

.error__button::before {
  content: "";
  position: absolute;
  top: 44%;
  left: 25px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(-135deg);
  transition: left 0.3s ease-out;
}
@media screen and (max-width: 768px) {
  .error__button::before {
    border-color: #001E63;
  }
}

.error__button:hover:before {
  left: 20px;
}

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

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

.text {
  font-weight: 300;
  line-height: 2.375;
}
@media screen and (max-width: 768px) {
  .text {
    font-size: 14px;
    line-height: 2.2857;
  }
}

.box-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  margin-top: 20px;
  margin-right: 60px;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    font-size: 10px;
    margin-top: 10px;
    margin-right: 10px;
  }
}

.breadcrumb a {
  color: #A9A9A9;
}

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

.button {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  padding: 20px;
  color: #001E63;
  text-transform: uppercase;
}

.arrow-button::before {
  content: "";
  position: absolute;
  top: 44%;
  right: 10px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #001E63;
  border-right: 1px solid #001E63;
  transform: rotate(45deg);
  transition: right 0.3s ease-out;
}

.arrow-button::after {
  position: absolute;
  bottom: 20px;
  left: 19px;
  content: "";
  width: 81%;
  height: 1px;
  background: #001E63;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s ease-out;
}

.arrow-button:hover::before {
  right: 5px;
}

.arrow-button:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

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

/*========= 流れるテキスト =========*/
/* 全共通 */
.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;
}

/* 左右のアニメーション */
.rightAnime {
  opacity: 0; /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 0;
  margin-left: auto;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .slideAnimeRightLeft {
    display: inline-block;
  }
}

@keyframes slideTextX-100 {
  from {
    transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
/*左右のアニメーション*/
.leftAnime {
  opacity: 0; /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0%); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX-100 {
  from {
    transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
/*=========================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
=========================================================*/
.outer {
  opacity: 0;
}

/*======================================
動かしたい動き（今回は” ふわっ” を採用）
======================================*/
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.underline {
  padding-bottom: 4px;
  background: linear-gradient(black, black) 0 100%/0 1px no-repeat;
  transition: background 0.4s;
  text-decoration: none;
}

.underline:hover {
  background-size: 100% 1px;
}

.heading-info {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  padding-left: 18px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .heading-info {
    font-size: 12px;
    padding-left: 20px;
  }
}

.heading-info::before {
  position: absolute;
  content: "";
  top: 6px;
  left: 5px;
  display: block;
  width: 8px;
  height: 8px;
  background: #001E63;
}
@media screen and (max-width: 768px) {
  .heading-info::before {
    top: 5px;
    left: -2px;
    margin-left: 8px;
  }
}

.news-info__field {
  margin-left: 6px;
}

.title-info {
  font-size: 14px;
  font-weight: 500;
  color: #A9A9A9;
}
@media screen and (max-width: 768px) {
  .title-info {
    font-size: 12px;
  }
}

@media screen and (max-width: 768px) {
  .title-info:not(:first-child) {
    margin-left: 40px;
  }
}
@media screen and (max-width: 374px) {
  .title-info:not(:first-child) {
    margin-left: 20px;
  }
}

@media screen and (max-width: 768px) {
  .title-info:first-child {
    margin-left: 40px;
  }
}

.news__item:not(:first-child) .news__group-item {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .news__item:not(:first-child) .news__group-item {
    margin-top: 20px;
  }
}

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

.news__item-date {
  font-size: 12px;
  font-weight: 700;
  color: #A9A9A9;
}
@media screen and (max-width: 768px) {
  .news__item-date {
    font-size: 10px;
  }
}

.item-date {
  margin-right: 29px;
}
@media screen and (max-width: 768px) {
  .item-date {
    margin-right: 12px;
  }
}

.news__tag {
  font-size: 11px;
  font-weight: 500;
  color: #626262;
  padding: 4px 18px;
  margin-right: 20px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .news__tag {
    font-size: 10px;
    padding: 5px 12px;
    margin-right: 6px;
  }
}
@media screen and (max-width: 374px) {
  .news__tag {
    padding: 5px 8px;
  }
}

.news__tag--light-gray {
  background-color: #F3F3F3;
}

.article-tag:first-of-type {
  margin-left: 29px;
}
@media screen and (max-width: 768px) {
  .article-tag:first-of-type {
    margin-left: 12px;
  }
}
@media screen and (max-width: 374px) {
  .article-tag:first-of-type {
    margin-left: 6px;
  }
}

.article-tag:not(:first-of-type) {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .article-tag:not(:first-of-type) {
    margin-left: 6px;
  }
}

.news__post-title-box {
  padding: 26px 0 30px;
  border-bottom: 1px solid #E2E2E2;
}
@media screen and (max-width: 768px) {
  .news__post-title-box {
    padding: 20px 0;
  }
}

.title-post {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
@media screen and (max-width: 768px) {
  .title-post {
    font-size: 14px;
    line-height: 2;
  }
}

.nav-links {
  display: flex;
  gap: 10px;
}

.pagination__arrow {
  display: inline-block;
  width: 11px;
  height: 18px;
}

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  width: 40px;
  height: 40px;
  color: #242424;
  background-color: #E9EEEF;
}

.page-numbers.current {
  color: #fff;
  background-color: #001E63;
}

.prev.page-numbers,
.next.page-numbers {
  background-color: #fff;
}

.common-mv {
  width: 100%;
  padding-top: 12.5%;
}
@media screen and (max-width: 1024px) {
  .common-mv {
    padding-top: 13.5%;
  }
}
@media screen and (max-width: 768px) {
  .common-mv {
    padding-top: 80px;
  }
}

.common-inner {
  position: relative;
  width: 91.7%;
  height: inherit;
  padding-left: 50px;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .common-inner {
    padding-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .common-inner {
    width: 100%;
    padding-left: 10px;
  }
}

.common-wrap {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  max-width: 500px;
  padding: 0 50px 39px 0;
  margin-left: 49px;
  background-color: #fff;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .common-wrap {
    max-width: 350px;
    padding: 13px 50px 25px 0;
    margin-left: 29px;
  }
}
@media screen and (max-width: 768px) {
  .common-wrap {
    max-width: 260px;
    padding: 13px 18px 33px;
    margin-left: 9px;
  }
}
@media screen and (max-width: 610px) {
  .common-wrap {
    max-width: 220px;
  }
}
@media screen and (max-width: 450px) {
  .common-wrap {
    max-width: 190px;
    padding: 13px 18px 28px;
  }
}
@media screen and (max-width: 374px) {
  .common-wrap {
    max-width: 160px;
    padding: 10px 10px 25px;
  }
}

@media screen and (max-width: 768px) {
  .layout {
    top: 1%;
  }
}

.common-box {
  margin-left: 50px;
}
@media screen and (max-width: 1024px) {
  .common-box {
    margin-left: 40px;
  }
}
@media screen and (max-width: 768px) {
  .common-box {
    margin-left: 0;
  }
}

.common-box.leftAnime {
  animation-delay: 0.6s;
}

.common-title--en {
  font-family: "Oswald", sans-serif;
  font-size: 100px;
  font-weight: 700;
}
@media screen and (max-width: 1150px) {
  .common-title--en {
    font-size: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .common-title--en {
    font-size: 60px;
  }
}
@media screen and (max-width: 768px) {
  .common-title--en {
    font-size: 44px;
  }
}

.common-title--jp {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .common-title--jp {
    font-size: 12px;
  }
}

.common__post-title {
  font-size: 60px;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .common__post-title {
    font-size: 42px;
  }
}
@media screen and (max-width: 768px) {
  .common__post-title {
    font-size: 46px;
  }
}
@media screen and (max-width: 610px) {
  .common__post-title {
    font-size: 32px;
  }
}
@media screen and (max-width: 450px) {
  .common__post-title {
    font-size: 24px;
  }
}

.common-content {
  margin-top: 56px;
}
@media screen and (max-width: 768px) {
  .common-content {
    margin-top: 30px;
  }
}

.title-wide {
  max-width: 600px;
}
@media screen and (max-width: 1024px) {
  .title-wide {
    max-width: 450px;
  }
}
@media screen and (max-width: 610px) {
  .title-wide {
    max-width: 330px;
  }
}
@media screen and (max-width: 768px) {
  .title-wide {
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 450px) {
  .title-wide {
    max-width: 230px;
    padding-bottom: 15px;
  }
}

.message {
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  .message {
    padding-top: 30px;
  }
}

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

.message__box {
  display: flex;
  justify-content: space-evenly;
}

.message-category {
  font-weight: 300;
  color: #011950;
}
@media screen and (max-width: 768px) {
  .message-category {
    font-size: 12px;
  }
}

.arrow {
  position: relative;
}

.arrow::before {
  content: "";
  display: block;
  position: absolute;
  top: 40%;
  right: -25%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #011950;
  border-right: 1px solid #011950;
  transform: translateY(-50%) rotate(135deg);
}

.message-wrap {
  margin-top: 100px;
}
@media screen and (max-width: 1024px) {
  .message-wrap {
    margin-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .message-wrap {
    margin-top: 60px;
    text-align: center;
  }
}

.message__title {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .message__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .message__title {
    font-size: 18px;
    line-height: 2.0555;
    text-align: left;
  }
}

.message__text {
  font-weight: 300;
  line-height: 2.375;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .message__text {
    font-size: 14px;
    line-height: 2.2857;
    margin-top: 30px;
    text-align: left;
  }
}

.pagination {
  margin-top: 56px;
}
@media screen and (max-width: 768px) {
  .pagination {
    margin-top: 40px;
  }
}

.common-details {
  margin-top: 165px;
}
@media screen and (max-width: 1024px) {
  .common-details {
    margin-top: 125px;
  }
}
@media screen and (max-width: 768px) {
  .common-details {
    margin-top: 45px;
  }
}

.text-date {
  font-size: 10px;
  font-weight: 700;
  color: #A9A9A9;
}

.works__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: #626262;
  padding: 4px 18px;
  background-color: #F3F3F3;
}
@media screen and (max-width: 768px) {
  .works__label {
    font-size: 10px;
  }
}

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

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

.md-show--required {
  display: none;
}
@media screen and (max-width: 768px) {
  .md-show--required {
    display: inline-block;
    margin-top: 5px;
  }
}/*# sourceMappingURL=style.css.map */