* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.wrap {
  overflow: hidden;
}
body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
}
.pc-none {
  display: none;
}
a {
  text-decoration: none;
  color: inherit;
  letter-spacing: 1.2px;
}
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
p {
  letter-spacing: 1.2px;
  line-height: 1.7;
}

/*header*/
header {
  display: flex;
  position: relative;
  z-index: 99;
  width: 100%;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
.header-logo {
  padding: 1rem;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0 0.5rem 0.5rem 0;
}
.header-logo h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.header-logo .logo-icon {
  display: block;
  width: 150px;
  animation-name: decoSwing;
  animation-duration: 1000ms;
  animation-timing-function: steps(2, end);
  animation-iteration-count: infinite;
  position: relative;
  z-index: 1;
}
@keyframes decoSwing {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.header-logo .logo-text {
  display: block;
  width: 150px;
  position: relative;
  z-index: 2;
}
.header-nav {
  height: 80px;
}
.header-nav ul {
  display: flex;
  align-items: center;
  height: 100%;
  font-weight: bold;
}
.header-nav li:not(:first-of-type) {
  margin-left: 2rem;
}
.header-info {
  background-color: #ebebeb;
  margin-left: 1rem;
  height: 100%;
}
.header-info a {
  display: flex;
  padding: 1rem;
}
.header-info p {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  text-align: center;
}
.header-info img {
  display: block;
  width: 25px;
  margin-right: 0.25rem;
}
.header-info-tel {
  font-size: 1.5rem;
  font-weight: bold;
}
.header-btnwrap {
  display: flex;
  height: 100%;
}
.btn-contact {
  background-color: #333d92;
}
.btn-line {
  background-color: #01b902;
}
.btn-line img {
  width: 65px;
}
.btn-contact img {
  display: block;
  width: 40px;
}
.header-btn {
  width: 80px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/*fv*/
.fv {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 80px);
  position: relative;
}
.fv-side-text {
  position: absolute;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-lr;
}
.fv-side-text.left {
  left: 0.5rem;
}
.fv-side-text.right {
  right: 0.5rem;
}
.fv-side-text p {
  display: flex;
  align-items: center;
  font-weight: bold;
}
.fv-side-text p span {
  margin: 1rem 0;
  letter-spacing: 7px;
  font-size: 1.2rem;
}
.fv-side-text p::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 10px solid #000;
  border-top: 0;
}
.fv-side-text p::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 10px solid #000;
  border-bottom: 0;
}
.fv-img {
  width: calc(100% - 100px);
  height: calc(100% - 50px);
  margin-bottom: auto;
  border-radius: 0.5rem;
}

/*==================================================
スライダーのためのcss
===================================*/
.fv-slider {
  position: relative;
  z-index: 1;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  height: 100%;
  width: 100%;
}
/*　背景画像設定　*/

.slider-item01 {
  background: url(../img/fv-slide01.jpg);
}

.slider-item02 {
  background: url(../img/fv-slide02.jpg);
}
.slider-item03 {
  background: url(../img/fv-slide03.jpg);
}

.slider-item04 {
  background: url(../img/fv-slide04.jpg);
}
.slider-item05 {
  background: url(../img/fv-slide05.jpg);
}

.fv-slider .slider-item {
  width: 100%; /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  height: 100%;
  background-repeat: no-repeat; /*背景画像をリピートしない*/
  background-position: center; /*背景画像の位置を中央に*/
  background-size: cover; /*背景画像が.slider-item全体を覆い表示*/
  border-radius: 0 0 0.5rem 0.5rem;
}
.fv-slider .slick-list,
.fv-slider .slick-track {
  height: 100%;
}
/*main共通*/
.section-titlewrap {
  width: fit-content;
  margin: 0 auto;
}
.section-title {
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  position: relative;
  width: fit-content;
  margin: 0 auto;
  font-style: italic;
}
.section-title::after {
  content: attr(data-en);
  font-size: 4rem;
}
/* .section-title::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -2rem;
  width: 100px;
  height: 100px;
  background-color: #333d92;
  opacity: 0.5;
  border-radius: 50%;
  z-index: -1;
} */
section {
  padding: 4rem 0;
}
.more-btn {
  text-align: center;
  margin-top: 4rem;
}
.more-btn a {
  padding: 1rem 5rem;
  display: inline-block;
  position: relative;
  transition: color 0.3s ease, background-color 0.3s ease;
  font-weight: bold;
  color: #fff;
  background-color: #333d92;
  border-radius: 0.5rem;
}
.more-btn a img {
  display: block;
  width: 40px;
  position: absolute;
  right: 0.5rem;
  bottom: -2rem;
}
.more-btn a:hover {
  background-color: #c4b58a;
  color: #fff;
}
.more-btn a:hover img {
  animation-name: decoSwing;
  animation-duration: 600ms;
  animation-timing-function: steps(2, end);
  animation-iteration-count: infinite;
}
.white-more-btn a {
  background-color: #fff;
  color: #333d92;
}
.white-more-btn a:hover {
  background-color: #c4b58a;
  color: #fff;
}

@keyframes decoSwing {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-25deg);
  }
}

/*about*/
.about {
  padding-top: 6rem;
}
.philosophy {
  padding-top: 2rem;
}
.about-contents-top {
  margin: 4rem auto 0;
  width: 90%;
}
.about-contents-top-title {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}
.about-contents-top-title span {
  color: #333d92;
}
.about-contents-top-text {
  width: 100%;
  max-width: 900px;
  margin: 2rem auto 0;
  line-height: 2;
}

.about-philosophy-top {
  display: flex;
  margin: 3rem auto 0;
  width: 95%;
  max-width: 1200px;
  justify-content: center;
}
.about-philosophy-bottom {
  display: flex;
  margin: 3rem auto 0;
  width: 95%;
  max-width: 1200px;
  justify-content: space-around;
}
.about-philosophy-item {
  width: 48%;
  max-width: 500px;
  text-align: center;
  margin: 0.5rem;
  background-color: #fff;
  padding: 2rem 1rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.about-philosophy-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333d92;
}
.about-philosophy-text {
  margin-top: 1rem;
  font-weight: bold;
  font-size: 1rem;
}
.about-philosophy-text span {
  display: block;
}
.about-philosophy-text span + span {
  margin-top: 0.5rem;
}
/*business*/
.business {
  background: #333d92;
  color: #fff;
  padding-bottom: 6rem;
}
.business-top {
  width: 80%;
  margin: 0 auto;
  padding-top: 3rem;
  max-width: 1170px;
}

.business .section-titlewrap {
  color: #fff;
}

.business-contents {
  display: flex;
  margin: 3rem auto 0;
  width: 95%;
  max-width: 1200px;
  flex-wrap: wrap;
}
.business-item {
  margin: 1rem;
  width: calc(((100% - (1rem * 4))) / 2);
}
.business-item-img {
  height: 280px;
  width: 100%;
}
.business-item-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

.business-item-title {
  text-align: center;
  padding: 0.5rem 0;
}

/*example*/
.example {
  position: relative;
  top: -1px;
  background-color: #fff;
}

.example .section-titlewrap {
  color: #000;
  margin: 0;
}
.slick {
  position: relative;
  z-index: 3;
}

.slick__inner {
  width: min(100%, 1400px);
  margin: 2rem auto 0;
  padding: 0 20px;
}

.slick__container {
  position: relative;
  /* インナー幅から片側をはみ出させる */
  width: calc(100% + (100vw - 100%) / 2);
  /* / インナー幅から片側をはみ出させる */
}

.slick__images {
  padding: 20px 0 20px 80px;
}

.slick__prev,
.slick__next {
  position: absolute;
  top: -5.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #18212b;
  cursor: pointer;
  background-color: #fff;
  transition: background-color 0.3s ease;
}

.slick__prev {
  right: 9rem;
}

.slick__next {
  right: 5rem;
}

.slick__prev:before,
.slick__next:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 1px solid #18212b;
  border-right: 1px solid #18212b;
  opacity: 1;
  content: "";
  transition: border-color 0.3s ease;
}

.slick__prev:before {
  transform: translate(-25%, -50%) rotate(-135deg);
}

.slick__next:before {
  transform: translate(-75%, -50%) rotate(45deg);
}

.slick__prev:hover,
.slick__next:hover {
  background-color: #c4b58a;
}

.slick__prev:hover:before,
.slick__next:hover:before {
  border-color: #fff;
}

.slick__image {
  position: relative;
  width: 400px;
  transition: all 0.3s ease;
  padding: 1.5rem;
}
.slick__image:hover {
  transform: translateY(-10px);
}
.slick__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.example-title {
  align-items: flex-start;
}
.example-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 0.5rem;
}
.slick__image:hover .example-img img {
  /* transform: scale(1.1); */
}

.example-date {
  margin: 1rem 0 0.25rem;
}
.example-more {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 2rem;
  margin-top: 1rem;
}
.example-arrow {
  position: relative;
  display: inline-block;
  width: 120px;
  height: 2px;
  border-radius: 9999px;
  background-color: #4d445b;
  top: 0;
  right: -1.3rem;
  transition: all 0.3s ease;
}

.example-arrow::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 2px;
  height: 20px;
  border-radius: 9999px;
  background-color: #4d445b;
  transform: rotate(-45deg);
  transform-origin: 50% calc(100% - 2px);
  transition: all 0.3s ease;
}
.slick__image:hover .example-more {
  color: #333d92;
  font-weight: bold;
}
.slick__image:hover .example-arrow {
  background-color: #333d92;
  height: 3px;
}
.slick__image:hover .example-arrow::before {
  background-color: #333d92;
  width: 3px;
}

/*recruit*/
.recruit {
  background-color: #383838;
  color: #fff;
  position: relative;
  padding-top: 0;
}
.recruit-contents {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.recruit-textwrap {
  width: 45%;
  padding: 6rem 0;
}
.recruit-img {
  width: 45%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 0.5rem 0;
}

.recruit-img img {
  display: block;
  width: 80%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  border-radius: 0 0 0.5rem 0;
}
.recruit .section-titlewrap {
  margin: 0;
}
.recruit-title {
  align-items: flex-start;
}
.recruit-subtitle {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 4rem;
}

.recruit-subtitle span {
  color: #fff;
}
.recruit-more {
  margin-top: 4rem;
  text-align: left;
}

/*contact*/
.contact {
  background-color: #212a37;
  color: #fff;
}

/*footer*/
footer {
  padding: 3rem 0;
  background-color: #f1f1f198;
  position: relative;
  top: -1px;
}
.footer-inner {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
  border-top: 1px solid #aaa;
  padding: 3rem 0;
}
.footer-logowrap {
  display: flex;
  align-items: center;
  font-weight: bold;
}
.footer-logowrap p {
  font-size: 1.2rem;
  margin-left: 1rem;
}
.footer-logo {
  display: block;
  width: 120px;
}
.footer-contents {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.footer-address {
  margin-top: 2rem;
}
.footer-navwrap {
  display: flex;
  align-items: flex-start;
}
.footer-nav li + li {
  margin-top: 1.5rem;
}
.footer-nav + .footer-nav {
  margin-left: 2rem;
}

/*アニメーション*/
/*全共通*/

.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden; /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*中の要素*/
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*左から右*/
.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #0a0a0a; /*伸びる背景色の設定*/
}
@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgLRextendTrigger {
  opacity: 0;
}

/*contact*/
.Form {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}
@media screen and (max-width: 480px) {
  .Form {
    margin-top: 40px;
  }
}
.Form-Item {
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
}
.Form-Item:nth-child(5) {
}
.Form-Item-Label {
  width: 100%;
  max-width: 350px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
}
.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}
.Form-Item-Label-Required {
  margin-right: 8px;
  padding-top: 5px;
  padding-bottom: 5px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #333d92;
  color: #fff;
  font-size: 14px;
}
.Form-Item-Label-nonRequired {
  margin-right: 8px;
  padding-top: 5px;
  padding-bottom: 5px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #9a9a9a;
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
}
.Form-Item-Input {
  border: 1px solid #ddd;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  background: #eaedf2;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Item-Textarea {
  border: 1px solid #ddd;

  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  background: #eaedf2;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Btn {
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #212a37;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 480px) {
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }
}

/*==================================================
　5-2-1 3本線が×に
===================================*/
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn {
  /*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
  position: relative;
  background: #000;
  cursor: pointer;
  width: 80px;
  height: 100%;
  display: none;
}

/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  border-radius: 2px;
  background: #fff;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 30px;
}

.openbtn span:nth-of-type(2) {
  top: 40px;
}

.openbtn span:nth-of-type(3) {
  top: 50px;
}

/*activeクラスが付与されると線が回転して×に*/

.openbtn.active span:nth-of-type(1) {
  top: 40px;
  transform: translateX(-50%) rotate(-45deg);
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}

.openbtn.active span:nth-of-type(3) {
  top: 40px;
  transform: translateX(-50%) rotate(45deg);
}

/*intro*/
.introduction {
  background-color: #383838;
  color: #fff;
}
/*==================================================
スライダーのためのcss
===================================*/
.intro-slider {
  margin-top: 4rem;
}
.intro-slider img {
  width: 100%; /*スライダー内の画像を横幅100%に*/
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 0.5rem;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.intro-slider .slick-slide {
  margin: 0 10px; /*スライド左右の余白調整*/
  width: 100%;
  aspect-ratio: 1 / 1.5;
}

/*blog*/
.blog {
  padding-top: 6rem;
}
.blog-contents {
  display: flex;
  width: 95%;
  margin: 0 auto;
  max-width: 1100px;
}
.blog-left {
  width: 320px;
  display: flex;
  flex-direction: column;
}
.section-titlewrap.tal {
  margin: 0;
}
.blog-more-btn {
  text-align: left;
}
.blog-right {
  width: calc(100% - 320px);
}
.blog-lists li + li {
  margin-top: 1rem;
}
.blog-lists a {
  display: flex;
}
.blog-item-img {
  width: 200px;
  aspect-ratio: 1.5/1;
}
.blog-item-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

.blog-item-textwrap {
  width: calc(100% - 200px);
  padding-left: 1.5rem;
}

.blog-item-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0.5rem;
}
.blog-item-info {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}
.blog-item-genre {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}
.blog-item-cat {
  background-color: #333d92;
  color: #fff;
  padding: 0.1rem 0.3rem;
  margin: 0 0.25rem;
  border-radius: 0.25rem;
  font-size: 0.9rem;
  font-weight: bold;
}
.blog-date {
  color: #333d92;
}
