@charset "UTF-8";


.noto-serif-jp {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}


.jost-bold {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}


html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  /* ここは auto か scroll に統一 */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: 'Yu Gothic', '游ゴシック', sans-serif;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background-color: #f5f5f5;
}

.kv {
  position: relative;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}

.kv-bg {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.zoom-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  animation: zoomOut 4s ease-out forwards;
  transform: scale(1.1);
  z-index: 1;
}

.bg-left {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
  filter: brightness(0.6);
}

.kv-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.bg-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 90%;
  object-fit: cover;
  z-index: 0;
}

@keyframes zoomOut {
  0% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}


.kv-text {
  position: absolute;
  z-index: 10;
  padding: 40vh 5vw;
  color: #FFF;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.2em;
}

@media (min-width: 769px) {

  .kv-text {
    top: 0;
    left: 0;
  }
}


.tagline {
  font-family: "Noto Serif JP", serif;
  margin-bottom: 3vh;
}

.catch1 {
  font-size: 50px;
  margin: 2vh 0;
  letter-spacing: 8px;
  font-family: "Noto Serif JP", serif;
}

.catch1 .text {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  opacity: 0;
  display: inline-block;
  transform: translateY(20px);
  filter: blur(5px);
  transition: all 0.4s ease;

}

.sub {
  font-size: 20px;
  margin-top: 2vh;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(30px);
}

/* メディアクエリ：768px以上（PC時） */

/* モバイル版のスタイル */
@media (max-width: 768px) {
  .kv {
    height: 90vh;
    /* 高さを90vhに設定 */
  }

  .kv-bg {
    display: flex;
    width: 100%;
    height: 90vh;
    /* 高さ90vhにする */
    overflow: hidden;
    transition: transform 1s ease-in-out;
  }

  .kv-bg .bg-fade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 90vh;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
  }

  .kv-bg .bg-fade.active {
    opacity: 1;
    z-index: 1;
  }

  .kv-bg img {
    width: 100%;
    /* 1枚ずつ画面幅いっぱいに表示 */
    height: 90vh;
    /* 高さ揃える */
    object-fit: cover;
    flex-shrink: 0;
    /* これがないと縮むことがあります */
  }

  /* ポリゴンを削除 */
  .bg-left,
  .bg-right {
    clip-path: none;
    /* ポリゴンを削除 */
  }

  .kv-mask {
    display: none;
  }

  .kv-text {
    bottom: 0;
    text-shadow: 4px 4px 7px rgba(0, 0, 0, 0.8);
    padding-bottom: 10vh;
    /* 強いシャドウ */
  }

  .catch1 {
    line-height: 45px;
    opacity: 0;
    /* ← ここを追加 */
  }

  .catch1 .text {
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 3px;
  }

  .sub {
    font-size: 14px;
  }
}




/*メニュー*/

.fixed-menu {
  position: fixed;
  top: 0px;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 10px 0;
  transition: all 0.3s ease;
  display: flex;
  justify-content: flex-end;
}

.menu-inner {
  display: flex;
  align-items: center;
  padding: 1vh 2vw;
  background-color: rgba(255, 255, 255, 0.7);

}

.fixed-menu ul {
  display: flex;
  gap: 30px;
  list-style: none;
  letter-spacing: 0.1em;
  font-size: 15px;
  background: none;
  padding: 0;
  margin: 0;
}

.fixed-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.contact-btn {
  background: linear-gradient(45deg, #253B53, #5385B9);
  padding: 15px 15px;
  border: 0.5px solid #FFF;
  text-decoration: none;
  letter-spacing: 3px;
  text-align: center;
  font-weight: 500;
  margin-left: 2vw;
}

.fixed-menu a.contact-btn {
  color: #FFF;
  font-weight: 200;
}


/* デフォルト設定 */
#menu-list {
  display: flex;
  gap: 30px;
  list-style: none;
}

/* ハンバーガーアイコン初期は非表示 */
.hamburger {
  display: none;
}

/* メニューを表示（ハンバーガーが開かれたとき） */
#menu-list.menu-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 60px;
  right: 0;
  background-color: rgba(255, 255, 255, 0.9);
  width: 100%;
  padding: 10px;
}

#menu-list.menu-open li {
  padding: 10px;
  text-align: center;
}

/* メディアクエリ：768px以上（PC時） */
@media (min-width: 769px) {

  .menu-inner {
    justify-content: space-between;
  }

  .contact-btn {
    order: 2;
    /* お問い合わせを右側に */
  }

  .hamburger {
    display: none;
  }

  #menu-list {
    order: 1;
    /* メニューを左側に */
    display: flex !important;
    flex-direction: row;
    position: static;
    padding: 0;
  }
}


/* メディアクエリ：768px以下（モバイル時） */
@media (max-width: 768px) {

  .menu-inner {
    justify-content: space-between;
    background-color: transparent;
  }

  .contact-btn {
    order: 1;
    /* モバイルでは左に */
    margin-right: 5vw;
    padding: 7px 7px;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 300;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    order: 2;

  }

  #menu-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    width: 100%;
    padding: 10px;
  }

  #menu-list.menu-open {
    display: flex;
  }


  /* ハンバーガーのバー */
  .hamburger .bar {
    background: linear-gradient(45deg, #253B53, #5385B9);
    width: 30px;
    height: 3px;
    background: linear-gradient(45deg, #253B53, #5385B9);
  }

  /* バツ印用のスタイル */
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(3.2px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(2) {
    transform: translateY(-3.2px) rotate(-45deg);
  }
}





/* タイトル　*/

.text-wrapper {
  display: flex;
  flex-direction: column;
  width: fit-content;
  margin: 10vh auto 3vh;
  align-items: center;
  font-family: 'Jost', sans-serif;
}

.text-bottom {
  color: rgb(70, 107, 176);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.2em;
  border-bottom: 1px solid rgb(73, 112, 185);
  font-style: italic;
  padding: 0 5px;
  margin-bottom: 10px;
  font-family: "Jost", sans-serif;
}

.text-top {
  bottom: 0;
  z-index: 2;
  color: #253B53;
  font-size: 30px;
  letter-spacing: 0.3em;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
}

@media (max-width: 768px) {

  .text-wrapper {
    display: flex;
    flex-direction: column;
    width: 200px;
    margin-left: 7vw;
    align-items: flex-start;
    /* ←ここ修正 */
    font-family: 'Jost', sans-serif;
    overflow-x: hidden;
    /* 横スクロールを防ぐ */
  }

  .text-bottom {
    position: relative;
    display: inline-block;
    font-size: 14px;
    border-bottom: 0;
    padding: 0 5px 0 0;
  }

  .text-bottom::after {
    content: "";
    display: inline-block;
    width: 0;
    /* 初期状態は幅0 */
    height: 1px;
    /* 線の高さ */
    background: rgb(70, 107, 176);
    /* 線の色 */
    position: absolute;
    bottom: 50%;
    /* テキストの下に配置 */
    left: 100%;
    /* テキストの中央から開始 */
    transition: width 1.5s ease-in-out;
    /* アニメーションの設定 */
  }

  .text-bottom.show-line::after {
    width: 100px;
    /* 横に広がる */
  }

  .text-top {
    font-size: 24px;
  }

}






/*　ISSUE　お客様の課題　*/

.issue {
  padding-top: 10vh;
}


.issue-description,
.service-description,
.contact-description {
  display: block;
  text-align: center;
  line-height: 2em;
  font-weight: 300;
}


.issue .grid {
  padding: 10vh 0;
  width: 50vw;
  display: grid;
  gap: 3rem 1.5rem;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  margin: 0 auto;
}

.issue .item {
  background: linear-gradient(45deg, #253B53, #5385B9);
  color: #ffffff;
  letter-spacing: 0.2em;
  padding: 15px 0;
  font-weight: 300;
}

.arrow-wrapper {
  position: relative;
  background-color: #f5f5f5;
  margin-top: 10vh;
}

.triangle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 50vw solid transparent;
  /* 横幅：左右で80px分 */
  border-right: 50vw solid transparent;
  border-top: 12vh solid #f5f5f5;
  /* 高さ（下向き） */
}

.solution-message {
  background: linear-gradient(to right, #dfdede, #e2e1e1);
  margin: 0;
  /* 不要な余白をなくす */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15vh 0 10vh;
  text-align: center;

}

.solution-message .catch {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #333;
  background: linear-gradient(transparent 90%, #fbffb0 50%);
  margin-top: 8vh;
  font-family: "Noto Serif JP", serif;
}


.solution-message .description {
  color: #333;
  max-width: 600px;
  /* 長文対策におすすめ */
  font-weight: 400;
  line-height: 2em;
  margin-top: 5vh;
}


@media (max-width: 768px) {
  .text-bottom {
    font-size: 14px;
  }

  .text-top {
    font-size: 24px;
  }

  .issue-description,
  .service-description,
  .contact-description {
    font-size: 14px;
    width: 80vw;
    margin-left: 7vw;
    text-align: left;
  }


  .issue .grid {
    grid-template-columns: repeat(2, 1fr);
    width: 80vw;
  }

  .issue .item {
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  .solution-message .catch {
    font-size: 18px;
  }


  .solution-message .description {
    font-size: 13px;
  }

}

/* service */

.service {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 10vh;
}

.service::before {
  content: '';
  position: absolute;
  top: 50%;
  /* ←画像の半分くらいから */
  left: 0;
  width: 90%;
  height: 100%;
  background-color: #FFF;
  /* 変更したい背景色 */
  z-index: -2;
}

.service::after {
  content: '';
  position: absolute;
  top: 70%;
  /* 画像の半分くらいから */
  left: 90%;
  /* 右端に配置 */
  width: 10%;
  /* 右側に薄いグレーを追加する分 */
  height: 100%;
  background-color: #f5f5f5;
  /* 薄いグレー */
  z-index: -1;
  /* 手前に表示されないように */
}


.service .grid {
  padding-top: 15vh;
  width: 70vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20vh;
  gap: 8vw;
}


.service .item p {
  text-align: left;
  /* テキストは左寄せ */
  margin-top: 3vh;
  color: #253B53;
  font-style: italic;
  font-family: "Jost", sans-serif;
}

.service .item h2 {
  font-size: 20px;
  margin-left: 1vw;
  margin-bottom: 2vh;
  text-align: left;
  /* テキストは左寄せ */
  color: #253B53;
  letter-spacing: 0.1em;
  font-weight: 500;
  border-bottom: 0.5px solid;

}

.service .item ul {
  list-style: none;
  line-height: 5vh;
  margin-left: 1vw;
  text-align: left;
  /* テキストは左寄せ */
  color: #253B53;
}


.service .item img {
  width: 18vw;
  margin: 0 auto;
  /* 画像だけ中央に */
  box-shadow: 6px 5px 15px rgba(0, 0, 0, 0.32);
}


@media (max-width: 768px) {

  .service .grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .service .item {
    margin-bottom: 5vh;
  }

  .service .item h2 {
    margin-left: 10px;
    font-size: 18px;
  }

  .service .item img {
    width: 60vw;
    display: block;
    margin: auto;
  }

  .service .item ul {
    font-size: 14px;
  }
}




/* works*/
.works {
  position: relative;
  z-index: 1;
  overflow: visible;
  background-color: #f5f5f5;
  padding: 10vh 0 5vh;
  height: auto;
  background-image: url('image/gear.png');
  /* 背景画像を設定 */
  background-size: 600px 600px;
  /* 画像を要素内に収める */
  background-repeat: no-repeat;
  /* 画像が繰り返し表示されないように */
  background-position: calc(100% - -150px) calc(200px);
  /* 画像を右上に配置 */
}

.swiper {
  justify-content: center;
  padding: 0 120px;
  /* 左右に空間を作ることで、前後のスライドがチラ見えする */
  transition: transform 0.5s ease;
}

.swiper-slide {
  flex: 0 0 900px;
  height: 500px;
  background-color: #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


/* 前のスライドボタン */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  background-color: rgba(181, 219, 255, 0.918);
  /* 半透明な黒背景 */
  border-radius: 50%;
  padding: 40px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}


/* ホバー時のスタイル */
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: rgb(37, 67, 129);
  /* ホバー時に色を濃く */
}

/* ボタンを目立たせるための装飾 */
.swiper-button-prev::after,
.swiper-button-next::after {
  color: #FFF;
}

.swiper-scrollbar {
  display: none;
}

.works-item {
  width: 900px;
  background-color: #fff;
  border-top: 5px solid #043c78;
  margin: 10vh auto;
  padding: 5vh 3vw;
}

.works-tag-wrapper {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin: 0 auto;
}

.works-tag {
  color: #004896;
  border: 1px solid #004896;
  padding: 3px 8px;
  letter-spacing: 1px;
  font-weight: 500;
  font-size: 12px;
}

.works-topic {
  color: #004896;
  font-size: 24px;
  margin: 2vh 0 5vh;
  padding-bottom: 3vh;
  letter-spacing: 3px;
  display: flex;
  justify-content: center;
  font-weight: 600;
  border-bottom: 1px solid #cbe4ff;
}


.works-issue-wrapper,
.works-result-wrapper,
.works-service-wrapper {
  display: flex;
  gap: 30px;
  padding: 20px;
}

.works-title {
  width: 100px;
  height: 40px;
  flex-shrink: 0;
  text-align: center;
  margin: auto 0;
  display: flex;
  justify-content: center;
  /* 横方向の中央 */
  align-items: center;
  /* 縦方向の中央 */
  color: #FFF;
  letter-spacing: 1px;
  font-weight: 500;
}

.works-issue-wrapper .works-title {
  background-color: #7cb7d4;
}

.works-issue-text {
  letter-spacing: 1px;
}

.works-result-wrapper .works-title {
  background: linear-gradient(45deg, #ebbf21, #fc8353);
}

.works-result-contents-wrapper {
  display: flex;
  gap: 30px;
  align-items: center;

}

.works-result-contents {
  letter-spacing: 2px;
}

.label {
  font-size: 40px;
  font-weight: 600;
  display: inline-block;
  margin-left: 10px;
  background: linear-gradient(transparent 65%, #fbffb0 65% 85%, transparent 85%);
}


.divider {
  width: 1px;
  background-color: #ccc;
  height: 100%;
  /* 必要に応じて調整 */
}

.works-result-right img {
  width: 80px;
}

.works-service-wrapper {
  margin-top: 5vh;
  border: 1px solid #cbe4ff;
}

.works-service-wrapper .works-title {
  background-color: #253B53;
}

.works-service {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.works-service-item {
  display: flex;
  gap: 15px;
}

.works-service-wrapper img {
  width: 20px;
  height: 20px;
}

@media (max-width: 950px) {


  .swiper-slide {
    flex: 0 0 700px;
  }

  .works-topic {
    font-size: 20px;
    letter-spacing: 2px;
  }


  .works-item {
    width: 700px;
    background-color: #fff;
  }


  .works-title {
    width: 90px;
    height: 35px;
    letter-spacing: 2px;
    font-size: 14px;
  }

  .works-issue-wrapper .works-title {
    background-color: #7cb7d4;
  }

  .works-issue-text {
    letter-spacing: 1px;
    font-size: 13px;
  }

  .works-result-wrapper .works-title {
    background: linear-gradient(45deg, #ebbf21, #fc8353);
  }

  .works-result-contents-wrapper {
    display: flex;
    gap: 30px;
    align-items: center;
  }

  .works-result-contents {
    letter-spacing: 1px;
    font-size: 13px;

  }

  .label {
    font-size: 35px;
  }


  .works-service-wrapper img {
    width: 15px;
    height: 15px;
  }

  .works-service-wrapper {
    font-size: 13px;
  }

}


@media (max-width: 768px) {

  .swiper-button-prev,
  .swiper-button-next {
    padding: 25px;

  }


  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 13px !important;
  }

  .swiper-slide {
    flex: 0 0 350px;
  }

  .works-item {
    width: 350px;
    background-color: #fff;
  }

  .works-tag {
  font-size: 11px;
}


  .works-issue-wrapper,
  .works-result-wrapper,
  .works-service-wrapper,
  .works-result-contents-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px;
  }

  .divider {
    width: 200px;
    background-color: #ccc;
    height: 1px;
    /* 必要に応じて調整 */
  }

  .works-topic {
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 2vh;
  }

  .works-title {
    width: 80px;
    height: 30px;
    font-size: 13px;
  }

  .works-issue-text {
    font-size: 12px;
  }

  .works-result-contents {
    letter-spacing: 1px;
    font-size: 12px;
  }

  .label {
    font-size: 30px;
  }


  .works-service-wrapper img {
    width: 13px;
    height: 13px;
  }

  .works-service-wrapper {
    font-size: 12px;
    margin-top: 0vh;
  }

}



/*message*/

.message {
  position: relative;
  background-color: #ffffff;
  padding: 10vh 0 5vh;
  z-index: 0;
}

.message::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  /* 斜めの高さ調整 */
  background: linear-gradient(45deg, #253B53, #5385B9);
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0% 100%);
  z-index: -1;
}

.message-wrapper {
  padding: 15vh 0 15vh 10vw;
  height: auto;
  gap: 5vw;
  display: flex;
  margin: 0 auto;
}

.message-text span {
  color: #253B53;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 5vh;
  font-family: "Noto Serif JP", serif;
}

.sp-only {
  display: none;
}

.message-text p {
  line-height: 2em;
  color: #000;
  font-weight: 300;
  letter-spacing: 1px;
  font-weight: 400;
}

.message-img {
  display: flex;
  justify-content: center;
}

.message-img img {
  height: 50vh;
}


@media (max-width: 768px) {

  .message::after {
    height: 100px;
  }


  .message-wrapper {
    flex-direction: column-reverse;
    padding: 0;
  }

  .message-img img {
    height: 40vh;
  }

  .message-text {
    margin: 5vh 10vw;
  }

  .message-text span {
    font-size: 18px;
    font-weight: 600;
    display: block;
    border-bottom: 1px solid #253B53;
    line-height: 2em;
  }

  .sp-only {
    display: inline;
    line-height: 3em;
    /* スマホでは改行の高さを2倍に設定 */
  }

  .message-text p {
    margin-top: 3vh;
    font-size: 14px;
  }

}




.contact {
  padding-top: 15vh;
  padding-bottom: 15vh;
  margin: 0 auto;
  text-align: center;
  /* 追加: 中央揃え */
}

.contact-description {
  margin-bottom: 10vh;
}

.form {
  width: 100%;
  max-width: 700px;
  /* お好みで調整 */
  margin: 0 auto;
  /* 中央寄せ */
  text-align: left;
  /* テキスト左揃え */
  font-size: 17px;
  font-weight: 300;
  color: #333;
}

.block {
  margin-bottom: 40px;
  font-weight: 300;
}


input,
textarea {
  width: 100%;
  max-width: 80vw;
  padding: 15px;
  border: 1px solid #ccc;
  font-size: 15px;
  margin-top: 10px;
}

textarea {
  height: 150px;
  resize: vertical;
}

.contact-detail1 {
  display: block;
  margin-bottom: 10px;
}

/* チェックボックスのレイアウト修正 */
.checkbox-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-items: center;
  gap: 10px;
  margin-top: 2vh;
  margin-left: 10px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.4;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  /* ↓↓↓ 追加！表示のズレを吸収 */
  transform: translateY(2px);
}

.honeypot {
  display: none;
}

.form-submit {
  display: flex;
  justify-content: center;
  /* 中央揃え */
  margin-top: 10vh;
  /* 上に余白を追加 */
}

.form button {
  background: linear-gradient(45deg, #253B53, #5385B9);
  color: #FFF;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
  width: 50%;
  max-width: 200px;
  text-align: center;
  font-family: 'Yu Gothic', '游ゴシック', sans-serif;

}

.form button:hover {
  background: linear-gradient(45deg, #5385B9, #253B53);
}



@media (max-width: 768px) {

  .form {
    max-width: 350px;
    /* テキスト左揃え */
    font-size: 12px;
    /* お好みで調整 */
    padding-left: 3vw;
    padding-right: 3vw;
  }

  input,
  textarea {
    font-size: 12px;
  }

  input {
    height: 20px;
  }

  textarea {
    height: 100px;
  }

  .checkbox-group label {
    font-size: 12px;
    line-height: 1.4;
  }

  .checkbox-group input[type="checkbox"] {
    width: 12px;
    height: 12px;
  }


  .form button {
    max-width: 150px;
  }


}


/*company*/


.company-info {
  width: auto;
  padding: 5vh 0;
  text-align: center;
  background-color: #51565c;
}

.info {
  width: 80vw;
  margin: 0 auto;
}

.company-info .text-top {
  display: block;
  font-size: 20px;
  font-weight: bold;
  width: fit-content;
  margin: 0 auto;
  padding-top: 5vh;
  font-weight: 600;
  font-family: 'Yu Gothic', '游ゴシック', sans-serif;
  color: #FFF;
}

.line-short {
  width: 40px;
  /* 線の長さ */
  border-bottom: 5px solid #ffffff;
  margin: 10px auto 5vh;
}

.info-wrapper {
  width: 60%;
  margin: 0 auto;
  text-align: left;
  padding-bottom: 5vh;
}

dl {
  margin: 0;
}

.info-row {
  display: flex;
  text-decoration: none;
  padding-top: 2vh;
  padding-bottom: 2vh;
  border-bottom: 1px solid #fff;
}

.info-row:last-child {
  margin-bottom: 8;
}

.info-row a {
  text-decoration: none;
  color: #ffffff;
}

dt {
  width: 30%;
  letter-spacing: 3px;
  font-weight: 500;
  color: #FFF;
  font-size: 14px;
}

dd {
  width: 70%;
  font-weight: 500;
  font-size: 14px;
  color: #FFF;

}



@media (max-width: 768px) {

  .company-info .text-top {
    font-size: 15px;
    font-weight: 500;
  }

  .line-short {
    width: 30px;
    margin-bottom: 8vh;
    border-bottom: 3px solid #ffffff;
  }

  .info-wrapper {
    width: 90%;
    font-size: 12px;
  }

  dt {
    width: 35%;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 12px;
  }

  dd {
    width: 65%;
    font-weight: 400;
    font-size: 12px;
    color: #FFF;
  }
}



.small {
  background-color: #51565c;
  color: #FFF;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  padding-bottom: 20px;
  font-family: 'Yu Gothic', '游ゴシック', sans-serif;
}


/* アニメーションの開始状態（透明、位置調整） */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  /* 少し下から現れるように */
  transition: opacity 1s ease-out, transform 1s ease-out;
}

/* アニメーションが発火した時の状態（透明度が1、位置が元に戻る） */
.fade-in.in-view {
  opacity: 1;
  transform: translateY(0);
  /* 元の位置に戻る */
}

/* 初期状態：透明で右にスライドアウト */
.fade-in-right {
  opacity: 0;
  transform: translateX(100px);
  /* 右から出てくる */
  transition: opacity 1s ease-out, transform 1s ease-out;
}

/* アニメーション後：元の位置にスライドインし、表示される */
.fade-in-right.in-view {
  opacity: 1;
  transform: translateX(0);
  /* 元の位置 */
}



/* 各アイテムに遅延を加えて順番に表示 */
.item {
  transition-delay: 0s;
  /* 初期値 */
}

.item:nth-child(1) {
  transition-delay: 0.2s;
  /* 最初のアイテムに少し遅延 */
}

.item:nth-child(2) {
  transition-delay: 0.4s;
  /* 2番目のアイテムに遅延 */
}

.item:nth-child(3) {
  transition-delay: 0.6s;
  /* 3番目のアイテムに遅延 */
}

.item:nth-child(4) {
  transition-delay: 0.8s;
  /* 最初のアイテムに少し遅延 */
}

.item:nth-child(5) {
  transition-delay: 1.0s;
  /* 2番目のアイテムに遅延 */
}

.item:nth-child(6) {
  transition-delay: 1.2s;
  /* 3番目のアイテムに遅延 */
}

@media (max-width: 768px) {

  .item:nth-child(1) {
    transition-delay: 0.2s;
    /* 最初のアイテムに少し遅延 */
  }

  .item:nth-child(2) {
    transition-delay: 0.2s;
    /* 2番目のアイテムに遅延 */
  }

  .item:nth-child(3) {
    transition-delay: 0.4s;
    /* 3番目のアイテムに遅延 */
  }

  .item:nth-child(4) {
    transition-delay: 0.4s;
    /* 最初のアイテムに少し遅延 */
  }

  .item:nth-child(5) {
    transition-delay: 0.6s;
    /* 2番目のアイテムに遅延 */
  }

  .item:nth-child(6) {
    transition-delay: 0.6s;
    /* 3番目のアイテムに遅延 */
  }
}