@charset "UTF-8";
.title-wrapper {
  margin-bottom: 120px;
  text-align: center;
}

.top-btn-wraper a {
  color: #ffffff;
}

.catch-section {
  text-align: center;
  font-family: "FP-ヒラギノ角ゴ ProN W6";
  padding: 150px 10% 100px 10%;
}
.catch-section .text-title {
  margin-bottom: 40px;
}
.catch-section .text {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.message-section {
  padding: 100px 10%;
}
.message-section .title-wrapper .sub-title {
  color: #c49122;
}
.message-section .message-wrapper {
  position: relative;
  border: 1px solid #c49122;
  background-color: #ffffff;
  box-sizing: border-box;
  max-height: 1300px;
  height: 100%;
}
.message-section .message-wrapper .image-set {
  position: relative;
  display: flex;
  z-index: 1;
  gap: 30px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-height: 800px;
  overflow: hidden;
}
.message-section .message-wrapper .image-set .content-set {
  display: flex;
  flex-direction: row;
  gap: 40px;
  flex: 1.5;
}
.message-section .message-wrapper .image-set .content-set img {
  max-width: 700px;
  width: 40%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.message-section .message-wrapper .image-set .content-set .text-set {
  width: 60%;
}
.message-section .message-wrapper .image-set .content-set .text-set .text {
  margin-bottom: 30px;
  max-width: 500px;
}
.message-section .message-wrapper .image-set .content-set .text-set .ceo-name {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: row;
  margin-bottom: 20px;
}
.message-section .message-wrapper .image-set .backimage-ceo {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  flex: 1;
  width: auto;
}
.message-section .message-wrapper .image-set .backimage-ceo img {
  width: 100%;
}

.company-section {
  background-color: #c49122;
  padding-bottom: 100px;
}
.company-section .title-wrapper .sub-title {
  color: #ffffff;
}
.company-section .tab-buttons {
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
  margin-bottom: 50px;
  max-width: 1270px;
  display: grid;
  justify-items: stretch;
  margin: 0 auto;
}
.company-section h2 {
  background-color: #494949;
  color: #ffffff;
  text-align: center;
  margin-bottom: 5%;
  margin-top: 5%;
}
.company-section .circle-set {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 20px;
}
.company-section .circle-set img {
  width: 100%;
}
.company-section .circle-set h3 {
  text-align: center;
}
.company-section .tab {
  padding: 0.5rem 1rem;
  border: none;
  background: #898989;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.2s;
  max-width: 350px;
  width: 100%;
  padding: 5%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5vw;
  border: 2px solid #ffffff;
}
.company-section .tab.active {
  background: #bafff8;
  color: #c49122;
}
.company-section .tab-content {
  max-width: 1270px;
  margin: auto;
  margin-top: 50px;
}
.company-section .tab-content .tab-panel {
  display: none;
}
.company-section .tab-content .tab-panel:not(.hidden) {
  display: block;
}

.track-section {
  background-color: #1f384b;
  color: #ffffff;
  padding-bottom: 100px;
}
.track-section .custom-prev-btn,
.track-section .custom-next-btn {
  position: absolute; /* スライダー内で絶対配置 */
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #003a68; /* 青背景 */
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
  z-index: 10; /* スライドの上に表示 */
  color: #ffffff;
}
.track-section .custom-prev-btn:hover,
.track-section .custom-next-btn:hover {
  background-color: #c49122;
  color: #1f384b;
}
.track-section .custom-prev-btn {
  left: 10px; /* 左端から10px */
}
.track-section {
  /* 右のボタン */
}
.track-section .custom-next-btn {
  right: 10px; /* 右端から10px */
}
.track-section svg {
  width: 45%;
  height: auto;
  display: block;
}
.track-section .swiper-slide img {
  width: 100%;
  height: auto;
}

.corporate-section {
  padding: 100px;
  background-image: url(../image/photo/corp-back.png);
  background-size: cover;
}
.corporate-section .title-wrapper {
  color: #ffffff;
}
.corporate-section .corporate-list {
  margin: auto;
  max-width: 1450px;
}
.corporate-section .corporate-list ul li {
  display: grid;
  grid-template-columns: 0.5fr 2fr;
}
.corporate-section .corporate-list ul li .list-title {
  text-align: center;
}
.corporate-section .corporate-list ul li p {
  background-color: #ffffff;
  color: #333333;
  font-family: "FP-ヒラギノ角ゴ ProN W6";
  padding: 20px;
  margin: 10px;
}
.corporate-section .corporate-list ul li:nth-child(even) p {
  background-color: #c49122;
}

@media (max-width: 1024px) {
  .title-wrapper {
    margin-bottom: 40px;
  }
  .catch-section {
    padding: 50px 5%;
  }
  .message-section {
    padding: 50px 5%;
  }
  .message-section .message-wrapper {
    max-height: -moz-max-content;
    max-height: max-content;
    border: none;
  }
  .message-section .message-wrapper .image-set {
    flex-direction: column-reverse;
    gap: 0;
  }
  .message-section .message-wrapper .image-set .content-set {
    width: 100%;
  }
  .message-section .message-wrapper .image-set .content-set img {
    display: none;
  }
  .message-section .message-wrapper .image-set .content-set .text-set {
    width: 100%;
  }
  .message-section .message-wrapper .image-set .backimage-ceo {
    height: 200px;
    width: 100%;
  }
  .company-section {
    padding: 50px 5%;
  }
  .company-section .tab-buttons {
    gap: 1rem;
  }
  .company-section .circle-set {
    grid-template-columns: repeat(2, 1fr);
  }
  .track-section {
    padding: 50px 5%;
  }
  .track-section .custom-prev-btn,
  .track-section .custom-next-btn {
    display: none;
  }
  .corporate-section {
    padding: 50px 5%;
  }
  .corporate-section .corporate-list ul li {
    grid-template-columns: auto;
  }
  .corporate-section .corporate-list ul li p {
    margin: 0;
    padding: 10px;
    text-align: center;
  }
}/*# sourceMappingURL=about.css.map */