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

body {
  font-family: "Noto Sans JP", "Oswald", "Roboto", 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;
}

ul,
ol {
  padding: 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

img:not([alt]) {
  filter: blur(10px);
}

input,
button,
select,
textarea {
  font: inherit;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: 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 {
  width: 100%;
  height: 180px;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .header {
    height: 80px;
  }
}
.header a:hover {
  opacity: 1;
}

.header-name {
  position: fixed;
  z-index: 5000;
  width: 275px;
  height: 180px;
  margin-right: auto;
  display: flex;
}
@media screen and (max-width: 768px) {
  .header-name {
    width: 115px;
    height: 80px;
  }
}

.header__nav {
  position: fixed;
  z-index: 3000;
  top: 0;
  right: 0;
  display: flex;
  width: 100%;
  height: 80px;
  background-color: #fff;
  float: right;
}

.header__items {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header__list {
  margin-right: 50px;
}
.header__list a {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  font-family: "Roboto";
  line-height: 1.312;
}
@media screen and (max-width: 1024px) {
  .header__list a {
    font-size: 14px;
  }
}

.header__contact {
  width: 187px;
  background-color: #011950;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__contact a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  font-family: "Roboto";
  line-height: 1.312;
  margin-left: 10px;
}
.header__contact img {
  width: 22px;
}

.hamburger {
  width: 25px;
  height: 14px;
  position: fixed;
  z-index: 9000;
  top: 33px;
  right: 30px;
  cursor: pointer;
}
.hamburger span {
  display: inline-block;
  position: absolute;
  left: 0;
  background-color: #242424;
  width: 100%;
  height: 1px;
  transition: all 0.3s;
}
.hamburger span:last-child {
  width: 17px;
}

.hamburger.active {
  top: 28px;
  right: 30px;
}

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

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

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

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

.hamburger.active span:nth-child(2) {
  top: 0;
  background-color: #fff;
  transform: translateY(10px) rotate(45deg);
}

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

#g-nav, .g-nav {
  display: none;
}

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

.g-nav.panelactive {
  position: fixed;
  z-index: 9000;
  top: 0;
  left: 0;
}

/*丸の拡大*/
.circle-bg {
  position: fixed;
  z-index: 1000;
  /*丸の形*/
  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-list {
  display: none; /*はじめは表示なし*/
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list {
  display: block; /*クラスが付与されたら出現*/
}

#g-nav.panelactive,
.g-nav.panelactive {
  display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
  opacity: 0; /*はじめは透過0*/
  /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
  width: 275px;
  margin: 160px auto 50px;
}

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

#g-nav.panelactive .sns-logo {
  opacity: 1;
}

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

@-webkit-keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#g-nav ul {
  display: flex;
  flex-direction: column;
  width: 275px;
}

#g-nav li {
  list-style: none;
  display: inline-block;
  border-top: 1px solid #011950;
  padding: 12px 0;
}
#g-nav li a {
  color: #fff;
  font-size: 14px;
  font-family: "Roboto";
  line-height: 1.357;
  font-weight: 300;
}

#g-nav li:last-child {
  border-bottom: 1px solid #011950;
}

.sns {
  width: 275px;
  margin: 0 auto;
}

.sns-logo {
  display: flex;
  width: 103px;
  margin-left: 46px;
}
@media screen and (max-width: 768px) {
  .sns-logo {
    margin-left: 10px;
    margin-top: 50px;
  }
}
.sns-logo a:not(:first-child) {
  margin-left: 20px;
}

.mv {
  width: 100%;
  height: 100vh;
}

.mv__inner {
  width: 100%;
  max-width: 1320px;
  height: 100vh;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
}
@media screen and (max-width: 768px) {
  .mv__inner {
    display: block;
  }
}

.mv__swiper {
  width: 100%;
  max-width: 1034px;
  height: 100vh;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .mv__swiper {
    height: 72%;
  }
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  max-width: 1034px;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .swiper-wrapper {
    height: 72%;
  }
}

.mv__title {
  margin-top: 95px;
  margin-left: 80px;
}
.mv__title p {
  writing-mode: vertical-rl;
  font-size: 60px;
  font-weight: 700;
  font-family: "Noto Sans JP";
}
@media screen and (max-width: 768px) {
  .mv__title {
    margin-top: 20px;
    margin-left: 20px;
  }
  .mv__title p {
    writing-mode: horizontal-tb;
    font-size: 34px;
    font-weight: 700;
    font-family: "Noto Sans JP";
  }
}

.about__header {
  overflow: hidden;
}

.loop__wrap {
  display: flex;
  width: 100%;
  height: 180px;
  overflow: hidden;
  margin-top: 60px;
}

.loop__text {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 150px;
  font-family: "Noto Sans JP";
  font-weight: 700;
  line-height: 0.3;
  color: #011950;
  padding: 38px;
  overflow: hidden;
}

.loop__text:nth-child(odd) {
  -webkit-animation: loop 50s -25s linear infinite;
          animation: loop 50s -25s linear infinite;
}

.loop__text:nth-child(even) {
  -webkit-animation: loop2 50s linear infinite;
          animation: loop2 50s linear infinite;
}

@-webkit-keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.aboutUs__container {
  display: flex;
  width: 100%;
  max-width: 1100px;
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .aboutUs__container {
    display: block;
    padding-top: 20px;
  }
}

.aboutUs__container img {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .aboutUs__container img {
    width: 100%;
  }
}

.aboutUs__body {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 60px;
}
@media screen and (max-width: 768px) {
  .aboutUs__body {
    width: 100%;
    display: block;
    margin: 0 auto;
  }
}
.aboutUs__body h3 {
  margin-bottom: 30px;
  font-family: "Oswald";
  font-size: 20px;
  font-weight: 700;
  color: #000;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .aboutUs__body h3 {
    font-size: 16px;
    line-height: 2.5;
    margin-top: 30px;
  }
}
.aboutUs__body a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.aboutUs__body a::before {
  content: "";
  display: inline-block;
  position: relative;
  bottom: 2px;
  left: 87px;
  width: 6px;
  height: 6px;
  transform: rotate(135deg);
  border-top: 1px solid #001E63;
  border-left: 1px solid #001E63;
  transition: transform 0.3s;
}
.aboutUs__body a::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #001E63;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.aboutUs__body a:hover::before {
  left: 92px;
}
.aboutUs__body a:hover::after {
  transform: scale(1, 1);
}

.aboutUs__text {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .aboutUs__text {
    font-size: 14px;
    line-height: 2.2857;
    margin-top: 27px;
  }
}

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

.service__title {
  text-align: right;
  margin-bottom: 60px;
}
.service__title.slideinRight.is-animated {
  -webkit-animation: slideinRight 0.7s linear 0.7s 1 normal backwards;
          animation: slideinRight 0.7s linear 0.7s 1 normal backwards;
}
@media screen and (max-width: 768px) {
  .service__title {
    text-align: left;
  }
}

@-webkit-keyframes slideinRight {
  0% {
    opacity: 0;
    transform: translateX(210px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideinRight {
  0% {
    opacity: 0;
    transform: translateX(210px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.service__cards {
  display: flex;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .service__cards {
    display: block;
  }
}

.service__card {
  position: relative;
  width: calc((100% - 94px) / 3);
}
@media screen and (max-width: 768px) {
  .service__card {
    width: 100%;
  }
}

.service__card + .service__card {
  margin-left: 47px;
}
@media screen and (max-width: 768px) {
  .service__card + .service__card {
    margin-top: 60px;
    margin-left: 0;
  }
}

.img-title {
  position: absolute;
  top: 18%;
  left: 9%;
}
@media screen and (max-width: 1024px) {
  .img-title {
    top: 10%;
  }
}
@media screen and (max-width: 768px) {
  .img-title {
    top: 18%;
  }
}

.img-title-sub {
  font-family: "Oswald";
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .img-title-sub {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .img-title-sub {
    font-size: 16px;
  }
}

.img-title-main {
  font-family: "Noto Sans JP";
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .img-title-main {
    margin-top: 5px;
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  .img-title-main {
    margin-top: 10px;
    font-size: 26px;
  }
}

.card__body {
  background-color: #fff;
}

.card-text {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .card-text {
    font-size: 14px;
    line-height: 2.285;
  }
}

.read-more-btn {
  width: 140px;
  height: 43px;
  border: 1px solid #001E63;
  border-radius: 4px;
  box-sizing: border-box;
  margin-left: auto;
  margin-top: 20px;
}
.read-more-btn a {
  padding-left: 22px;
}

.btn-service a::after {
  content: none;
}

.works {
  width: 100%;
  background-color: #F8F8F8;
}

.works__title {
  margin: 0 auto;
  max-width: 1200px;
  padding: 120px 50px 0;
}
.works__title.slideinLeft.is-animated {
  -webkit-animation: slideinLeft 0.7s linear 0.7s 1 normal backwards;
          animation: slideinLeft 0.7s linear 0.7s 1 normal backwards;
}
@media screen and (max-width: 768px) {
  .works__title {
    padding-top: 60px;
    margin-bottom: 40px;
  }
}

@-webkit-keyframes slideinLeft {
  0% {
    opacity: 0;
    transform: translateX(-180px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideinLeft {
  0% {
    opacity: 0;
    transform: translateX(-180px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.works__items {
  margin: 40px auto 0;
  padding: 50px 40px;
  max-width: 1100px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .works__items {
    width: 100%;
  }
}

.works__item {
  display: flex;
  border-bottom: 1px solid #E2E2E2;
  padding: 50px 0;
  -webkit-animation: fadeDown 1s ease 1s 1 normal backwards;
          animation: fadeDown 1s ease 1s 1 normal backwards;
}
@media screen and (max-width: 768px) {
  .works__item {
    padding: 30px 0;
  }
}

/* 上から */
.fadeDown {
  -webkit-animation-name: fadeDownAnime;
          animation-name: fadeDownAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.works__item:first-child {
  padding: 0 0 50px;
}
@media screen and (max-width: 768px) {
  .works__item:first-child {
    padding: 0 0 30px;
  }
}

@media screen and (max-width: 768px) {
  .works__img {
    width: 35.8%;
    height: 62%;
  }
}
@media screen and (max-width: 376px) {
  .works__img {
    width: 120px;
    height: 90px;
  }
}

.works__body {
  position: relative;
  margin-left: 50px;
}
@media screen and (max-width: 768px) {
  .works__body {
    margin-left: 18px;
    width: 52.2%;
  }
}

.tag, .news__category {
  position: relative;
  display: inline-block;
  padding: 4px 18px;
  background-color: #f3f3f3;
  color: #626262;
  font-size: 11px;
  font-weight: 500;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .tag, .news__category {
    font-size: 10px;
    padding: 5px 15px;
    margin-right: 6px;
  }
}

.body__title {
  position: relative;
  font-size: 24px;
  line-height: 1.583;
  margin-top: 54px;
  font-weight: 500;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .body__title {
    font-size: 14px;
    line-height: 2;
    margin-top: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.body__title::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.body__title:hover::after {
  transform: scale(1, 1);
}

.body__text {
  font-size: 16px;
  font-weight: 300;
  color: #626262;
  line-height: 2.375;
  margin-top: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .body__text {
    display: none;
  }
}

.works__item-date {
  margin-top: 30px;
}

.works-more {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.works-more__button {
  font-size: 14px;
  font-weight: 500;
  color: #001E63;
  line-height: 2.8571;
  padding-right: 15px;
}
.works-more__button a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.works-more__button::before {
  content: "";
  display: inline-block;
  position: relative;
  bottom: 2px;
  right: 0px;
  margin-right: 10px;
  width: 6px;
  height: 6px;
  transform: rotate(315deg);
  border-top: 1px solid #001E63;
  border-left: 1px solid #001E63;
  transition: transform 0.3s;
}
.works-more__button:hover::before {
  right: 5px;
}

.news {
  width: 100%;
  background-color: #F8F8F8;
}

.news__container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  padding: 120px 50px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .news__container {
    display: block;
    min-width: 315px;
    padding: 80px 20px;
    margin-right: auto;
  }
}

.news__head {
  margin-bottom: 30px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .news__head {
    margin-bottom: 20px;
  }
}

.news__link {
  margin-top: 45px;
  margin-right: 90px;
}
@media screen and (max-width: 768px) {
  .news__link {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-right: 0;
  }
}

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

.link__list, .news__link--lower li a {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  margin-left: 20px;
  cursor: pointer;
  color: #A9A9A9;
  font-size: 14px;
  display: block;
}
@media screen and (max-width: 768px) {
  .link__list, .news__link--lower li a {
    font-size: 12px;
    margin-left: 12px;
  }
}
.link__list::before, .news__link--lower li a::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: relative;
  top: 15px;
  right: 14px;
  background-color: transparent;
  margin-right: 6px;
}
@media screen and (max-width: 768px) {
  .link__list::before, .news__link--lower li a::before {
    top: 13px;
  }
}

.news__link a.is-active, .link__list.is-active,
.news__link--lower li a.is-active { /* activeクラスがついた時の形状*/
  color: #000;
}
.news__link a.is-active::before, .link__list.is-active::before,
.news__link--lower li a.is-active::before {
  background-color: #001E63;
}

/*エリアの表示非表示*/
.area {
  width: 100%;
  display: none; /*はじめは非表示*/
  opacity: 0; /*透過0*/
}

/*areaにis-activeクラスがついた時*/
.area.is-active {
  display: block; /*表示する*/
  -webkit-animation-name: displayAnime;
          animation-name: displayAnime; /*ふわっと表示させるアニメーション*/
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* fadeUp */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.news__title {
  margin-top: 26px;
  margin-right: 120px;
  margin-bottom: 30px;
  font-weight: 500;
}
.news__title.slideinLeft.is-animated {
  -webkit-animation: slideinLeft 0.7s linear 0.7s 1 normal backwards;
          animation: slideinLeft 0.7s linear 0.7s 1 normal backwards;
}
@media screen and (max-width: 768px) {
  .news__title {
    margin-bottom: 40px;
  }
}

@keyframes slideinLeft {
  0% {
    opacity: 0;
    transform: translateX(-150px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.news__items, .works-lower__items {
  padding-left: 60px;
  border-left: 1px solid #E2E2E2;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .news__items, .works-lower__items {
    padding: 0 20px;
    border: none;
  }
}

.news__list, .wd__item {
  border-bottom: 1px solid #E2E2E2;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .news__list, .wd__item {
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .news__list:first-child {
    border-top: 1px solid #E2E2E2;
  }
}

.news-top {
  display: flex;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 26px;
}
.news-top:not(:first-child) {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .news-top p {
    font-size: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.news-tag {
  display: flex;
}

.news__category + .news__category {
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .news__category + .news__category {
    margin-right: 6px;
  }
}

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

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

.news-more {
  position: relative;
  display: inline-block;
  text-decoration: none;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .news-more {
    margin-top: 45px;
  }
}

.contact {
  position: relative;
  overflow: hidden;
}

.contact__container {
  width: 100%;
  display: flex;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .contact__container {
    display: flex;
    flex-direction: column-reverse;
  }
}

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

.contact__img img {
  height: 100%;
}

.contact__body {
  display: flex;
  width: 40%;
  padding: 80px 0;
  background-color: #011950;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .contact__body {
    width: 100%;
  }
}

.contact__text {
  color: #fff;
  font-size: 18px;
  line-height: 1.666;
  margin-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .contact__text {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 25px;
  }
}

.btn {
  width: 235px;
  height: 70px;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 3px;
}
@media screen and (max-width: 1024px) {
  .btn {
    width: 227px;
    height: 60px;
    font-size: 16px;
  }
}

.btn + .btn {
  margin-top: 20px;
}

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

.btn {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  border: 1px solid #fff; /* ボーダーの色と太さ */
  border-radius: 3px;
  padding: 10px 30px;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  transition: ease 0.2s;
}

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

.btn:hover span {
  color: #011950;
}

.btn span i {
  margin-right: 6px;
}

/*== 背景が流れる（左から右） */
.bgleft:after {
  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:after {
  transform-origin: left top;
  transform: scale(1, 1);
}

footer {
  background-color: #001135;
}

.footer__inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 50px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    display: flex;
    max-width: 295px;
    flex-direction: column-reverse;
  }
}

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

.icon-area {
  display: flex;
  align-items: center;
  margin-top: 100px;
}
.icon-area img {
  width: 258px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .icon-area img {
    width: 114px;
  }
}
@media screen and (max-width: 768px) {
  .icon-area {
    display: block;
    margin-top: 0;
  }
}

.footer_copyright {
  color: #fff;
  font-family: "Roboto";
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .footer_copyright {
    margin-top: 50px;
    margin-bottom: 30px;
  }
}

.footer__inner ul {
  display: flex;
  flex-direction: column;
  margin: 62px 0;
}

.footer__inner ul li {
  list-style: none;
}
.footer__inner ul li a {
  color: #fff;
  font-size: 16px;
  font-family: "Roboto";
  font-weight: 300;
}

.footer__inner ul li:not(:first-child) {
  padding-top: 20px;
}

.button {
  display: flex;
  align-items: center;
  margin: 0 auto;
  cursor: pointer;
  background: transparent;
  border-radius: 6px;
  transition: all 0.3s;
}

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

h2 {
  font-family: "Oswald";
  font-size: 70px;
  font-weight: 700;
  color: #000;
  line-height: 0.5714;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 38px;
  }
}

.inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 50px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 20px;
  }
}

.read-more {
  font-size: 14px;
  font-weight: 500;
  color: #001E63;
  line-height: 2.8571;
  margin-left: auto;
  padding-right: 15px;
}
.read-more a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.read-more::before {
  content: "";
  display: inline-block;
  position: relative;
  bottom: 2px;
  left: 87px;
  width: 6px;
  height: 6px;
  transform: rotate(135deg);
  border-top: 1px solid #001E63;
  border-left: 1px solid #001E63;
  transition: transform 0.3s;
}
.read-more::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #001E63;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.read-more:hover::before {
  left: 92px;
}
.read-more:hover::after {
  transform: scale(1, 1);
}

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

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

.fv {
  width: 100%;
}
.fv.fv-lower {
  margin-top: 156px;
}
@media screen and (max-width: 768px) {
  .fv.fv-lower {
    margin-top: 110px;
  }
}

.fv__inner {
  margin-left: 170px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .fv__inner {
    margin-left: 120px;
  }
}
@media screen and (max-width: 768px) {
  .fv__inner {
    margin-left: 10px;
  }
}

.fv__title {
  background-color: #fff;
  width: 500px;
  height: 224px;
  position: absolute;
  z-index: 100;
  top: 0;
  left: -1px;
  -webkit-animation: slideIn 0.7s linear 0.7s 1 normal backwards;
  animation: slideIn 0.7s linear 0.7s 1 normal backwards;
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .fv__title {
    width: 345px;
    height: 177px;
    top: 0;
  }
}
@media screen and (max-width: 768px) {
  .fv__title {
    width: 190px;
    height: 130px;
    top: 0;
  }
}

.slideIn {
  -webkit-animation-name: slideInAnime;
          animation-name: slideInAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s; /*0.1 秒遅らせて出現*/
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.title1 {
  font-family: "Oswald";
  font-size: 100px;
  font-weight: 700;
  padding-top: 16px;
  padding-left: 50px;
}
@media screen and (max-width: 1024px) {
  .title1 {
    font-size: 72px;
    padding-left: 34px;
  }
}
@media screen and (max-width: 768px) {
  .title1 {
    font-size: 44px;
    padding-top: 18px;
    padding-left: 18px;
  }
}

.title2 {
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 700;
  padding-left: 50px;
}
@media screen and (max-width: 768px) {
  .title2 {
    padding-left: 18px;
    font-size: 12px;
  }
}

@media screen and (max-width: 376px) {
  .fadeUpTrigger img {
    width: 365px;
    height: 280px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

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

.message {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .message {
    padding-top: 53px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.nav__link {
  display: flex;
  justify-content: center;
}
.nav__link p {
  color: #011950;
}
.nav__link p a {
  text-decoration: none;
  color: #011950;
}
@media screen and (max-width: 768px) {
  .nav__link p {
    font-size: 12px;
  }
}
.nav__link p::after {
  content: "";
  display: inline-block;
  position: relative;
  bottom: 6px;
  width: 6px;
  height: 6px;
  left: 10px;
  transform: rotate(225deg);
  border-top: 1px solid #011950;
  border-left: 1px solid #011950;
  transition: transform 0.3s;
}
@media screen and (max-width: 768px) {
  .nav__link p::after {
    left: 6px;
  }
}

.nav__link p:not(:first-child) {
  margin-left: 120px;
}
@media screen and (max-width: 768px) {
  .nav__link p:not(:first-child) {
    margin-left: 55px;
  }
}

.catch__title {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .catch__title {
    font-size: 18px;
    line-height: 2.055;
    margin-top: 60px;
  }
}

.catch__text {
  font-size: 16px;
  font-weight: 300;
  line-height: 2.375;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .catch__text {
    font-size: 14px;
    line-height: 2.285;
    margin-top: 30px;
  }
}

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

.p__inner {
  max-width: 1100px;
  margin: 0 auto;
  background-color: #F8F8F8;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p__inner {
    display: block;
  }
}

.p__container {
  margin: 30px 70px;
}

.area__title {
  font-family: "Oswald";
  font-size: 40px;
  font-weight: 700;
  padding-top: 10px;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .area__title {
    padding-bottom: 30px;
    font-size: 26px;
  }
}
.area__title::after {
  content: "";
  position: relative;
  display: block;
  bottom: 10px;
  left: 180px;
  width: 60px;
  height: 2px;
  background-color: #000;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .area__title::after {
    left: 110px;
    bottom: 6px;
  }
}

.sub__title {
  color: #001E63;
  font-size: 16px;
  font-weight: 700;
  padding-top: 70px;
}
@media screen and (max-width: 768px) {
  .sub__title {
    bottom: 35px;
    padding-top: 60px;
  }
}

.p-text {
  margin-top: 60px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-text {
    margin-top: 30px;
    font-size: 14px;
  }
}

.p-name {
  margin-top: 40px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .p-name {
    margin-top: 30px;
    font-size: 14px;
  }
}

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

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

.access__title {
  padding-bottom: 15px;
  font-family: "Oswald";
  font-size: 40px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .access__title {
    padding-bottom: 20px;
  }
}
.access__title::after {
  left: 110px;
}
@media screen and (max-width: 768px) {
  .access__title::after {
    bottom: 6px;
  }
}

.address {
  display: block;
  margin-top: 16px;
  margin-bottom: 60px;
}
@media screen and (max-width: 376px) {
  .address {
    margin-bottom: 20px;
  }
}

.about__link {
  color: #000;
}

.map {
  max-width: 1100px;
  width: 100%;
  height: auto;
  aspect-ratio: 1100/400;
}
.map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .map {
    min-width: 335px;
    width: 100%;
    height: 400px;
    aspect-ratio: 335/400;
  }
}

.company__inner {
  background-color: #F8F8F8;
}

.company__title::after {
  left: 265px;
}
@media screen and (max-width: 768px) {
  .company__title::after {
    left: 170px;
  }
}

.company__prof {
  width: 100%;
}

.company__prof tr {
  display: flex;
  border-bottom: 1px solid #E2E2E2;
}
@media screen and (max-width: 768px) {
  .company__prof tr {
    display: block;
  }
}

.company__prof th {
  padding: 40px 0;
  display: flex;
}
@media screen and (max-width: 768px) {
  .company__prof th {
    padding: 20px 0 16px;
    text-align: left;
  }
}

.company__prof td {
  padding: 40px 0;
  display: flex;
  line-height: 1.87;
}
@media screen and (max-width: 768px) {
  .company__prof td {
    padding: 20px 0;
    line-height: 1.5;
  }
}

.company__prof th {
  width: 30%;
}

/* sp */
@media screen and (max-width: 768px) {
  .company__prof th,
.company__prof td {
    width: 100%;
    display: block;
  }
}
.company__prof th .company__prof th,
.company__prof td .company__prof th {
  width: 100%;
}
.company__prof th .company__prof td,
.company__prof td .company__prof td {
  padding-top: 0;
}

/* 無限スクロール */
.gallery {
  width: 100vw;
  display: flex;
  margin: 120px 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .gallery {
    margin: 80px 0;
  }
}
.gallery:hover .loop-left {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.gallery__list {
  display: flex;
}
.gallery__list-wrap {
  width: 480px;
  height: 400px;
  margin-right: 15px;
}
.gallery__list-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@-webkit-keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.loop-left {
  -webkit-animation: infinity-scroll-left 20s infinite linear;
          animation: infinity-scroll-left 20s infinite linear;
}

.s__inner {
  width: 100%;
  max-width: 1200px;
  margin: 120px auto 0;
  display: flex;
  background-color: #F8F8F8;
}
@media screen and (max-width: 768px) {
  .s__inner {
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
  }
}
.s__inner img {
  width: 53.4%;
}
@media screen and (max-width: 768px) {
  .s__inner img {
    width: 100%;
    padding: 0 20px;
  }
}

.s__container {
  display: flex;
  padding: 110px 50px;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .s__container {
    width: 100%;
  }
}

.nl-number {
  font-family: "Oswald";
  font-size: 40px;
  font-weight: 700;
  color: #001E63;
}
@media screen and (max-width: 768px) {
  .nl-number {
    font-size: 32px;
  }
}
.nl-number::after {
  content: "";
  position: relative;
  display: block;
  bottom: 24px;
  left: 54px;
  width: 1px;
  height: 34px;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  .nl-number::after {
    right: 9px;
    height: 30px;
  }
}

.nav__link01 {
  font-size: 28px;
  font-weight: 700;
  margin: 20px 0;
}
@media screen and (max-width: 768px) {
  .nav__link01 {
    font-size: 20px;
  }
}

.nl-text {
  font-size: 22px;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .nl-text {
    font-size: 14px;
  }
}

.f-head {
  display: flex;
  align-items: center;
}

.f-title {
  font-family: "Oswald";
  font-weight: 500;
  font-size: 22px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .f-title {
    font-size: 18px;
    margin-top: 20px;
  }
}

.f-sub-title {
  font-size: 12px;
  margin-left: 16px;
  color: #626262;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .f-sub-title {
    font-size: 10px;
    margin-left: 9px;
    margin-top: 20px;
  }
}

.f-text {
  margin-top: 20px;
  font-size: 14px;
}

.f-text:last-child {
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .f-text:last-child {
    margin-bottom: 80px;
  }
}

.news-lower__inner,
.works-lower__inner {
  display: flex;
  padding-top: 100px;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .news-lower__inner,
.works-lower__inner {
    display: block;
    padding-top: 52px;
    margin: 0 auto;
  }
}

.news__link--lower,
.works__link--lower {
  width: 264px;
  position: -webkit-sticky;
  position: sticky;
  top: 200px;
  left: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .news__link--lower,
.works__link--lower {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 40px;
  }
}

.news__head {
  position: relative;
  font-size: 16px;
  margin-bottom: 30px;
  font-weight: 500;
  overflow: hidden;
  cursor: pointer;
}
.news__head--sidebar::after {
  display: none;
}
@media screen and (max-width: 768px) {
  .news__head {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.news__head::after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.news__head:hover::after {
  transform: scale(1, 1);
}

.detail__container {
  display: flex;
  margin: 62px auto 120px;
  max-width: 1100px;
}
@media screen and (max-width: 768px) {
  .detail__container {
    display: block;
    margin: 30px auto 60px;
  }
}

.detail-content {
  display: flex;
  flex-direction: column;
  padding: 0 40px;
  width: 800px;
}
@media screen and (max-width: 768px) {
  .detail-content {
    padding: 0 30px;
    width: 100%;
  }
}

.tag__area {
  display: flex;
}

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

.detail-content h1,
.works-detail__container h1 {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 20px 0;
}
@media screen and (max-width: 768px) {
  .detail-content h1,
.works-detail__container h1 {
    font-size: 18px;
    letter-spacing: 0.03em;
    margin: 10px 0;
  }
}

.detail-content h2 {
  font-size: 22px;
  font-weight: 500;
  margin: 40px 0;
  background-color: #F8F9F9;
  padding: 14px 8px;
  position: relative;
}
.detail-content h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3px;
  height: 40px;
  background-color: #001E63;
}
@media screen and (max-width: 768px) {
  .detail-content h2 {
    font-size: 16px;
    padding: 15.5px 11px;
    margin: 40px 0;
  }
}

.detail-content p {
  font-size: 16px;
  font-weight: 300;
}

.detail-content h3 {
  font-size: 18px;
  margin: 40px 0;
  padding-left: 13px;
  font-weight: 500;
  position: relative;
}
.detail-content h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 270px;
  height: 1px;
  background-color: #001E63;
}
@media screen and (max-width: 768px) {
  .detail-content h3::after {
    width: 125px;
  }
}

.detail-content ul {
  margin-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #E2E2E2;
}
@media screen and (max-width: 768px) {
  .detail-content ul {
    border: none;
  }
}

.detail-content ul li {
  font-size: 16px;
  font-weight: 300;
  cursor: pointer;
  position: relative;
  padding-left: 14px;
  color: #242424;
}
.detail-content ul li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: relative;
  top: 15px;
  right: 14px;
  background-color: #001E63;
  border-radius: 50%;
  margin-right: 10px;
}

.detail__button {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .detail__button {
    margin-top: 0;
  }
}

.read-more-na {
  width: 129px;
  height: 44px;
  border: 1px solid #001E63;
  border-radius: 4px;
  box-sizing: border-box;
}
.read-more-na a {
  padding-left: 22px;
}

.read-more--next {
  font-size: 14px;
  font-weight: 500;
  color: #001E63;
  line-height: 2.8571;
  margin-left: auto;
  padding-right: 15px;
}
.read-more--next a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.read-more--next::before {
  content: "";
  display: inline-block;
  position: relative;
  bottom: 2px;
  right: 0px;
  margin-right: 10px;
  width: 6px;
  height: 6px;
  transform: rotate(315deg);
  border-top: 1px solid #001E63;
  border-left: 1px solid #001E63;
  transition: transform 0.3s;
}
.read-more--next:hover::before {
  right: 5px;
}

.side__container {
  margin-left: 40px;
}
@media screen and (max-width: 768px) {
  .side__container {
    margin: 0;
    padding: 0 15px;
  }
}

.side__list {
  width: 300px;
}
@media screen and (max-width: 768px) {
  .side__list {
    width: 345px;
  }
}

.side__header {
  width: 300px;
  padding: 15px 18px;
  margin-top: 40px;
  color: #fff;
  background-color: #001135;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .side__header {
    width: 345px;
  }
}

.a-box {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.a-box a {
  color: #000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 12px;
  line-height: 2;
}

.side__item {
  display: flex;
  width: 100%;
  max-width: 264px;
  padding: 18px 0;
  margin: 0 18px;
  border-bottom: 1px solid #E4E4E4;
}

.as-text {
  font-size: 12px;
  font-weight: 500;
  color: #040404;
  line-height: 2;
}

.na-text {
  font-size: 14px;
  text-decoration: none;
  margin: 18px;
  color: #000;
}

.works__detail__img {
  width: 160px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .works__detail__img {
    width: 130px;
    height: 100px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.w-body__title {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 1.777;
  margin-top: 30px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .w-body__title {
    font-size: 14px;
    line-height: 2;
    margin: 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.w-body__title::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.w-body__title:hover::after {
  transform: scale(1, 1);
}

.wd__item-date {
  font-size: 10px;
  font-weight: 700;
  color: #A9A9A9;
  margin-top: auto;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .wd__item-date {
    margin-bottom: 20px;
  }
}

.wd__item {
  display: flex;
  border-bottom: 1px solid #E2E2E2;
  padding: 30px 0;
  -webkit-animation: fadeDown 1s ease 1s 1 normal backwards;
          animation: fadeDown 1s ease 1s 1 normal backwards;
}
@media screen and (max-width: 768px) {
  .wd__item {
    padding: 20px 0;
  }
}

/* 上から */
.fadeDown {
  -webkit-animation-name: fadeDownAnime;
          animation-name: fadeDownAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.works-detail__container {
  width: 100%;
  max-width: 1100px;
  padding: 0 130px;
  margin: 100px auto 120px;
}
@media screen and (max-width: 768px) {
  .works-detail__container {
    padding: 0 20px;
    margin: 30px auto 80px;
  }
}
.works-detail__container p {
  font-size: 16px;
  line-height: 2;
  font-weight: 300;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .works-detail__container p {
    font-size: 14px;
  }
}
.works-detail__container img {
  aspect-ratio: 840/470;
}

.works-detail__thumbnail {
  margin-top: 40px;
  height: auto;
}

.read-more-wd {
  width: 285px;
  height: 44px;
  border: 1px solid #001E63;
  border-radius: 4px;
  box-sizing: border-box;
  margin: 60px auto 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .read-more-wd {
    margin-top: 40px auto 80px;
  }
}

.return {
  font-size: 14px;
  font-weight: 500;
  color: #001E63;
}
.return a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.return::before {
  content: "";
  display: inline-block;
  position: relative;
  bottom: 2px;
  right: 0px;
  margin-right: 10px;
  width: 6px;
  height: 6px;
  transform: rotate(315deg);
  border-top: 1px solid #001E63;
  border-left: 1px solid #001E63;
  transition: transform 0.3s;
}
.return:hover::before {
  right: 5px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-top: 20px;
  margin-right: 60px;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    margin-top: 10px;
    margin-right: 10px;
  }
}
.breadcrumb span {
  font-family: "Roboto";
  font-weight: 300;
  font-size: 15px;
  color: #a9a9a9;
  max-width: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.breadcrumb span:hover {
  max-width: none;
}
@media screen and (max-width: 768px) {
  .breadcrumb span {
    font-size: 10px;
  }
}
.breadcrumb .current-item {
  color: #000;
}

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

.detail__breadcrumb {
  margin-top: 200px;
  margin-right: 60px;
}
@media screen and (max-width: 768px) {
  .detail__breadcrumb {
    margin-top: 90px;
    margin-right: 10px;
  }
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 120px;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .pagination {
    margin-top: 40px;
    margin-bottom: 80px;
  }
}

.nav-links {
  display: flex;
  margin-right: auto;
  gap: 12px;
}

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

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #E9EEEF;
  color: #242424;
}

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

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

.page-numbers.dots,
.page-numbers.prev,
.page-numbers.next {
  border: none;
}

.block-editor-block-list__layout h2 {
  font-size: 22px;
  font-weight: 500;
  margin: 48px 0;
  background-color: #F8F9F9;
  padding: 14px 8px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .block-editor-block-list__layout h2 {
    font-size: 16px;
    padding: 15.5px 11px;
    margin: 40px 0;
  }
}

.block-editor-block-list__layout h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3px;
  height: 40px;
  background-color: #001E63;
}

.block-editor-block-list__layout h3 {
  font-size: 18px;
  margin: 40px 0;
  padding-left: 13px;
  font-weight: 500;
  position: relative;
}
.block-editor-block-list__layout h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 270px;
  height: 1px;
  background-color: #001E63;
}
@media screen and (max-width: 768px) {
  .block-editor-block-list__layout h3::after {
    width: 125px;
  }
}

.detail-content img {
  aspect-ratio: 680/380;
}

.detail__thumbnail {
  height: auto;
  margin-top: 40px;
}

.side__list + .side__list {
  margin-top: 40px;
}

.side__list li {
  padding: 18px 0;
  margin: 0 18px;
  border-bottom: 1px solid #E4E4E4;
}
.side__list li a {
  color: #000;
  font-size: 14px;
  font-weight: 300;
}

.sidebar__img {
  display: flex;
  width: 100%;
}
.sidebar__img img {
  width: 100px;
  height: auto;
  aspect-ratio: 1/1;
}

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

.detail__prev {
  border: 1px solid #001E63;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 12px 24px;
  color: #001E63;
  font-size: 14px;
  font-weight: 500;
}
.detail__prev::before {
  content: "";
  display: inline-block;
  position: relative;
  bottom: 2px;
  right: 5px;
  width: 6px;
  height: 6px;
  transform: rotate(315deg);
  border-top: 1px solid #001E63;
  border-left: 1px solid #001E63;
  transition: transform 0.3s;
}
.detail__prev:hover::before {
  transition: transform 0.3s;
  right: 10px;
}

.detail__next {
  border: 1px solid #001E63;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 12px 24px;
  color: #001E63;
  font-size: 14px;
  font-weight: 500;
}
.detail__next::after {
  content: "";
  display: inline-block;
  position: relative;
  bottom: 2px;
  width: 6px;
  height: 6px;
  left: 5px;
  transform: rotate(135deg);
  border-top: 1px solid #011950;
  border-left: 1px solid #011950;
  transition: transform 0.3s;
}
.detail__next:hover::after {
  transition: transform 0.3s;
  left: 10px;
}
@media screen and (max-width: 768px) {
  .detail__next {
    left: 6px;
  }
}

.form__list {
  margin-top: 40px;
}

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

.form__required {
  color: #e20000;
}

.form__input::-moz-placeholder {
  color: #a9a9a9;
  font-size: 14px;
  font-weight: 300;
}

.form__input::placeholder {
  color: #a9a9a9;
  font-size: 14px;
  font-weight: 300;
}

.form__textarea {
  height: 160px;
}

.form__input,
.form__select,
.form__textarea,
.form__acceptance-text {
  font-size: 14px;
  font-weight: 300;
  width: 100%;
  padding: 12px;
  border: 1px solid #000;
  border-radius: 4px;
}

.form__acceptance-text {
  overflow-y: auto;
  height: 120px;
  background-color: #f2f2f2;
}

.form__select {
  padding-right: 35px;
}

.form__data-select {
  position: relative;
}

.form__data-select::after {
  position: absolute;
  top: 46%;
  right: 15px;
  width: 10px;
  height: 10px;
  content: "";
  transform: translateY(-50%) rotate(135deg);
  border-top: solid 2px #000;
  border-right: solid 2px #000;
}

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

.wpcf7-form-control-wrap[data-name=privacy] .wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  padding-left: 24px;
}

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

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

.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: 446px;
  padding: 21px 20px;
  transition: opacity 0.3s;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  border-radius: 4px;
  background-color: #011950;
}
@media screen and (max-width: 768px) {
  .form__submit-input {
    max-width: 260px;
    padding: 12px 20px;
    font-size: 14px;
  }
}
.form__submit-input:hover {
  transition: opacity 0.3s;
  opacity: 0.7;
}

.contact__form {
  width: 100%;
}

.form__inner, .contact__inner {
  max-width: 840px;
  padding: 60px 100px;
  margin: 40px auto 60px;
}
@media screen and (max-width: 768px) {
  .form__inner, .contact__inner {
    padding: 30px 20px 80px;
    margin: 0 auto;
  }
}

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

.form__input, .form__select, .form__textarea, .form__acceptance-text {
  border: 1px solid #E2E2E2;
}

.form__label {
  display: flex;
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 10px;
}
.form__label p:nth-child(2) {
  margin-left: 15px;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .form__label {
    display: block;
  }
  .form__label p:nth-child(2) {
    font-size: 14px;
    margin-bottom: 10px;
    margin-left: 0;
  }
}

.contact__text2 {
  color: #000;
  font-weight: 300;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .contact__text2 {
    margin-bottom: 40px;
  }
}

.contact__term p {
  font-weight: 500;
  font-size: 15px;
}

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

.contact__required {
  color: #E20000;
}

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

.contact__item + .contact__item {
  margin-top: 30px;
}

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

.contact__buttons {
  display: flex;
  transition: opacity 0.3s;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .contact__buttons {
    font-size: 14px;
    padding: 0 5px;
  }
}
.contact__buttons:hover {
  transition: opacity 0.3s;
  opacity: 0.7;
}

.return-button p {
  font-size: 18px;
  font-weight: 500;
  border: 1px solid #001E63;
  border-radius: 4px;
  padding: 20px 122px;
}
.return-button p input {
  color: #001E63;
}
@media screen and (max-width: 768px) {
  .return-button p {
    font-size: 14px;
    padding: 11.5px 55.5px;
  }
}

.submit-button p {
  font-size: 18px;
  font-weight: 500;
  margin-left: 80px;
  border: 1px solid #001E63;
  border-radius: 4px;
  background-color: #001E63;
  padding: 20px 104px;
}
.submit-button p input {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .submit-button p {
    font-size: 14px;
    margin-left: 23px;
    padding: 11.5px 41.5px;
  }
}

.wpcf7-spinner {
  display: none;
}

.contact__inner h3 {
  font-family: "Oswald";
  font-weight: 700;
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .contact__inner h3 {
    font-size: 24px;
  }
}

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

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

.contact__thanks {
  margin-top: 40px;
  margin-bottom: 40px;
  font-weight: 300;
  font-size: 16px;
  line-height: 2.375;
}
@media screen and (max-width: 768px) {
  .contact__thanks {
    margin-top: 30px;
    font-weight: 300;
    font-size: 14px;
    line-height: 2.285;
  }
}

.contact-btn {
  width: 460px;
  font-size: 18px;
  font-weight: 500;
  background-color: #001E63;
  padding: 20px 150px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact-btn {
    width: 275px;
    padding: 11.5px 95px;
    font-size: 14px;
  }
}
.contact-btn a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #fff;
}
.contact-btn::before {
  content: "";
  display: block;
  position: relative;
  top: 17px;
  left: 15px;
  width: 6px;
  height: 6px;
  transform: rotate(315deg);
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transition: transform 0.3s;
}
.contact-btn:hover::before {
  left: 10px;
}

.title__wrapper {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 28.3%;
  left: 44%;
}
@media screen and (max-width: 768px) {
  .title__wrapper {
    left: 20.7%;
  }
}
@media screen and (max-width: 376px) {
  .title__wrapper {
    top: 18%;
  }
}

.title-notFind {
  font-family: "Oswald";
  font-size: 70px;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .title-notFind {
    font-size: 35px;
  }
}
@media screen and (max-width: 376px) {
  .title-notFind {
    font-size: 35px;
  }
}

.text-notFind {
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  line-height: 2.375;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .text-notFind {
    display: none;
  }
}

.contact-btn2 {
  width: 145px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #fff;
  border-radius: 4px;
  background-color: transparent;
  padding: 12px 32px;
  text-align: center;
  margin-top: 20px;
}
.contact-btn2 a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #fff;
}
.contact-btn2::before {
  content: "";
  display: block;
  position: relative;
  top: 14px;
  right: 5px;
  width: 6px;
  height: 6px;
  transform: rotate(315deg);
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transition: transform 0.3s;
}
.contact-btn2:hover::before {
  right: 10px;
}
@media screen and (max-width: 768px) {
  .contact-btn2 {
    display: none;
  }
}

.title__wrapper2 {
  position: relative;
  padding: 40px 20px 80px;
}

.text-notFind2 {
  color: #000;
  font-size: 14px;
  margin-top: 40px;
}

.contact-btn3 {
  width: 145px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #001E63;
  border-radius: 4px;
  background-color: transparent;
  padding: 12px 32px;
  text-align: center;
  margin-top: 20px;
}
.contact-btn3 a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #001E63;
}
.contact-btn3::before {
  content: "";
  display: block;
  position: relative;
  top: 14px;
  right: 5px;
  width: 6px;
  height: 6px;
  transform: rotate(315deg);
  border-top: 1px solid #001E63;
  border-left: 1px solid #001E63;
  transition: transform 0.3s;
}
.contact-btn3:hover::before {
  right: 10px;
}