@charset "UTF-8";
/*
 * Date: 2019-03-10
 * Last UpDate: 2025-01-10
 */

/* -------------------------------
   header
 ------------------------------- */

.front header {
  /* position: absolute; */
  width: 100%;
  height: 70px;
}
.front header.active {
  position: absolute;
}

.front .fix-area header {
  background-color: rgba(0, 0, 0, 0.5);
  border-bottom: none;
}

@media only screen and (max-width: 896px) {
  .front header {
    position: fixed;
    top: 0;
    left: 0;
    border-bottom: none;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .front header.on {
    background-color: rgba(0, 0, 0, 1);
  }
  .front .fix-area header.on {
    background-color: rgba(1, 1, 1, 0.6);
  }
}
@media only screen and (min-width: 896px) {
  .front header.fix {
    position: fixed;
    background-color: rgba(1, 1, 1, 0.6);
    border-bottom-color: #000;
  }
}

header .logo {
}

header .logo a {
}

header .logo strong {
}

.front header .logo strong.logo-vmware {
  border-right: 0.1rem solid #fff;
}

@media only screen and (min-width: 896px) {
  .front header nav.global-nav li a {
    color: #fff;
    border-bottom: 0.3rem solid rgba(255, 255, 255, 0);
  }

  .front header nav.global-nav li a:hover {
    border-bottom: 0.3rem solid rgba(255, 255, 255, 1);
  }
}

@media only screen and (max-width: 896px) {
  .open-navi span {
    background-color: #fff;
  }
}

/* -------------------------------
  slider
------------------------------- */

.slick-prev,
.slick-next {
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  display: block;
  text-indent: -99999px;
  position: absolute;
  border: none;
  outline: none;
  cursor: pointer;
}

.slick-prev {
  background: url(../images/btn_prev.png) no-repeat;
}

.slider .slick-prev {
  left: 20px;
  top: 50%;
  margin-top: -18px;
  z-index: 1;
}

.thum-slider .slick-prev {
  left: -55px;
  top: 25px;
}

.slick-next {
  background: url(../images/btn_next.png) no-repeat;
}

.slider .slick-next {
  right: 20px;
  top: 50%;
  margin-top: -18px;
}

.thum-slider .slick-next {
  right: -35px;
  top: 25px;
}

/* スライダーが少ないときのサムネイル固定用 */
.thum-slider .slick-track {
  transform: unset !important;
}

/* -------------------------------
  front
------------------------------- */

/*common*/
.front-contents {
  padding: 6rem 0;
}

.front-contents h2 {
  font-size: 3.4rem;
  text-align: center;
}
/* 
.front-contents h2:after{
  content: "";
  border-bottom:1px solid #525150;
  width: 80px;
  display: block;
  margin: 2rem auto 3rem;
} */

.front-contents h2 + p {
  text-align: center;
  margin-bottom: 3rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-image: url("../images/BK.jpg"); /* 背景画像(全体を覆う) */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 500px;
  padding-top: 64px;
}

.hero-background-overlay {
  position: relative;
  width: 50%;
  background-image: url("../images/bk_top.webp"); /* 透かし画像（右側） */
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover; /* containからcoverに変更して高さを最大化 */
  opacity: 0.5;
  flex-shrink: 0;
}

.hero-text-block {
  position: relative;
  bottom: 0;
  left: 0;
  max-width: 600px;
}

.hero-text-block span {
  display: block;
  font-size: 2.2rem;
  color: #fff;
  text-shadow: 1px 1px 1px #000;
  margin-bottom: 1rem;
  font-weight: 300;
}

.hero-text-block h1 {
  font-size: 4rem;
  color: #fff;
  text-shadow: 1px 1px 1px #000;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.hero-text-block p {
  font-size: 1.8rem;
  color: #fff;
  text-shadow: 1px 1px 1px #000;
  line-height: 1.6;
}

/* Hero Section Tablet Styles */
@media only screen and (max-width: 1200px) {
  .hero-section {
    height: 500px;
  }

  .hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-text-block {
    position: static;
    transform: none;
    margin: 0 3rem;
    max-width: 500px;
    width: auto;
  }

  .hero-text-block span {
    font-size: 2rem;
  }

  .hero-text-block p {
    font-size: 1.7rem;
  }
}

/* Hero Section Mobile Styles */
@media only screen and (max-width: 896px) {
  .hero-section {
    flex-direction: column-reverse;
    height: 500px;
    padding-top: 80px;
    justify-content: center;
  }

  .hero-background-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.3;
    background-position: center;
  }

  .hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
  }

  .hero-text-block {
    position: static;
    transform: none;
    margin: 0 2rem;
    max-width: 100%;
    width: auto;
    text-align: center;
  }

  .hero-text-block span {
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
  }

  .hero-text-block h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
  }

  .hero-text-block p {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

@media only screen and (max-width: 600px) {
  .hero-section {
    height: 500px;
  }

  .hero-text-block {
    margin: 0 1.5rem;
  }

  .hero-text-block span {
    font-size: 1.5rem;
  }

  .hero-text-block h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }

  .hero-text-block p {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.slide-area .thum-slider .list-thum.slick-current img {
  border: 2px solid #0091da;
}

.front-information {
  padding: 6rem 0;
}

.front-information .flex > div {
  width: calc(50% - 3rem);
  position: relative;
}

@media only screen and (max-width: 1200px) {
  .front-information .flex > div {
    width: calc(50% - 1.5rem);
  }
}

@media only screen and (max-width: 896px) {
  .front-information .flex {
    display: block;
  }
  .front-information .flex > div {
    width: 100%;
  }
}

.front-information .info-h {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.front-information .btn {
  position: absolute;
  top: 0;
  right: 0;
}

.front-information .list-info .list {
  border-bottom: none;
  padding-bottom: 0;
}

.front-information .list-info .list a {
  padding: 1.5rem;
}

.front-information .list-info .day {
  display: inline-block;
}

.front-information .list-info p {
  display: block;
  font-size: 1.2rem;
}

.front-about {
  color: #fff;
}

.front-about .bk-about {
  padding: 10rem 0;
  background: url(../images/img_about.png) no-repeat right 0 top;
  background-size: contain;
}

@media only screen and (max-width: 896px) {
  .front-about .bk-about {
    padding: 10rem 0;
    background: url(../images/img_about.png) no-repeat center top;
    background-size: auto 110%;
  }
}

.front-about h2 {
  font-size: 3.4rem;
  font-weight: normal;
}

.front-about h2:after {
  content: "";
  border-bottom: 1px solid #fff;
  width: 80px;
  display: block;
  margin: 2rem 0 3rem;
}

.front-about p {
  margin-bottom: 5rem;
  line-height: 2;
}

.front-solution {
  background: url(../images/bk_solution.jpg) no-repeat center bottom;
  background-size: cover;
  display: none;
}

.front-solution h2 {
  color: #fff;
}

.front-solution h2:after {
  border-color: #fff;
}

.front-solution h2 + p {
  color: #fff;
}

.front-solution .list-recommend {
  /*margin-bottom: 5rem;*/
  justify-content: flex-start;
}

.front-solution .list-recommend .list {
  margin-left: calc(8rem / 3);
}
.front-solution .list-recommend .list:nth-child(4n + 1) {
  margin-left: 0;
}
@media only screen and (max-width: 896px) {
  .front-solution .list-recommend .list {
    margin-left: 2rem;
  }
  .front-solution .list-recommend .list:nth-child(2n + 1) {
    margin-left: 0;
  }
}
.front-case {
  display: none;
}
.front-case .list-case {
  justify-content: center;
}

/* .front-case .list-case .list:first-child{
display:none;
} */

.front-case .list-case .list {
  width: calc(25% - 20px);
  margin: 0 10px 50px;
}

@media only screen and (max-width: 896px) {
  .front-case .list-case:after {
    width: calc(50% - 20px);
    margin: 0 10px 20px;
  }
  .front-case .list-case .list {
    width: calc(50% - 20px);
    margin: 0 10px 20px;
  }
}

.contact-area a {
  color: #0091da;
}

.contact-area p {
  font-weight: normal;
  font-size: 1.2rem;
  line-height: 1.3;
}

.contact-area p + p {
  margin-top: 1rem;
}

.contact-area .btn-close {
  position: absolute;
  top: -25px;
  left: 15px;
  padding: 2px 10px;
  background-color: #717074;
  font-size: 1.4rem;
}

/* Other Feature */
.front-otherfeature {
  background: url(../images/bk_otherfeature.jpg) no-repeat center bottom;
  background-size: cover;
  position: relative;
  z-index: 0;
}
.front-otherfeature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: -1;
}
.front-otherfeature h2 {
  color: #fff;
}

.front-otherfeature h2:after {
  border-color: #fff;
}

.front-otherfeature h2 + p {
  color: #fff;
}

.list-otherfeature {
  display: flex;
  flex-wrap: wrap;
}
.list-otherfeature .list {
  background-color: #fff;
  margin-bottom: 4rem;
  width: calc(50% - 2em);
}
.list-otherfeature .list:nth-child(2n) {
  margin-left: 4rem;
}
.list-otherfeature .list a {
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
}
.list-otherfeature .list .list-img {
  width: 35%;
}
.list-otherfeature .list .list-img img {
  vertical-align: bottom;
}
.list-otherfeature .list .list-txt {
  width: 60%;
  position: relative;
}
.list-otherfeature .list .list-txt .list-title {
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
}
.list-otherfeature .list .list-txt .btn {
  position: absolute;
  bottom: 0;
  left: 0;
}

@media only screen and (max-width: 896px) {
  /* Other Feature */
  .list-otherfeature .list {
    margin-bottom: 2rem;
    width: calc(50% - 1em);
  }
  .list-otherfeature .list:nth-child(2n) {
    margin-left: 2rem;
  }
  .list-otherfeature .list a {
    padding: 2rem;
    display: block;
  }
  .list-otherfeature .list .list-img {
    width: 100%;
    text-align: center;
  }
  .list-otherfeature .list .list-txt {
    width: 100%;
    margin-top: 10px;
  }
  .list-otherfeature .list .list-txt .list-title {
    position: relative;
  }
  .list-otherfeature .list .list-txt .btn {
    position: relative;
    text-align: center;
    display: block;
    margin-top: 10px;
  }
}
.product-grid .card-media img {
  width: auto;
  height: 80px;
  display: block;
  margin: 0 auto;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0;
  list-style: none;
  max-width: 1200px;
  margin: 0 auto;
}

.product-grid .card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  width: calc(25% - 15px);
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  top: 0;
  left: 0;
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  -ms-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
  cursor: pointer;
  z-index: 1;
}

.product-grid .card:hover {
  top: -0.5rem;
  left: -0.5rem;
}

.product-grid .card:hover:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-right: 0.5rem solid #ccc;
  border-bottom: 0.5rem solid #ccc;
  top: 0.5rem;
  left: 0.5rem;
  border-radius: 8px;
}

.product-grid .card a {
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.product-grid .card-media {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0px;
}

.product-grid .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 0;
}

.product-grid .card-title {
  color: rgb(75, 152, 184);
  margin-bottom: 1rem;
}

.card-actions {
  margin-top: auto;
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

.card-actions a {
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

.card-actions .btn > span {
  line-height: 1;
  border-radius: 0;
  background-color: transparent;
  color: rgb(75, 152, 184);
  border: 1px solid #000;
  font-weight: bold;
  min-width: 160px;
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

.card-link a {
  z-index: 1;
}

@media only screen and (max-width: 1200px) {
  .product-grid .card {
    width: calc(33.333% - 14px); /* 3つ並び */
  }
}

@media only screen and (max-width: 896px) {
  .product-grid .card {
    width: calc(50% - 10px); /* 2つ並び */
  }
}

@media only screen and (max-width: 600px) {
  .product-grid .card {
    width: 100%;
    max-width: 300px; /* 1つ並び */
  }
}

/* -------------------------------
  ニュース・スライダーセクション
------------------------------- */

.news-slider-section {
  margin-top: 40px;
}

.news-slider-section h2 {
  display: none;
}

.news-slider-section .container {
  border-radius: 20px;
  padding: 40px 30px;
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news-header-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-tab {
  font-size: 1.6rem;
  font-weight: bold;
  color: #666;
  cursor: pointer;
  transition: color 0.3s ease;
}

.news-tab.active {
  color: #6b46c1;
}

.news-separator {
  font-size: 1.6rem;
  color: #ccc;
  font-weight: normal;
}

.news-header-link .list-link {
  color: #6b46c1;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 8px 16px;
  border: 1px solid #6b46c1;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.news-header-link .list-link:hover {
  background-color: #6b46c1;
  color: white;
  text-decoration: none;
}

.news-slider-wrapper {
  position: relative;
  padding: 0 40px; /* 矢印のためのスペース */
}

.news-slider {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  position: relative;
  padding: 0 30px;
}

.news-slide {
  display: none;
}

.news-slide.active {
  display: block;
  animation: slideIn 0.3s ease-in-out;
}

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

.news-item {
  display: flex;
  align-items: center;
  gap: 25px;
}

.news-date {
  font-size: 1.3rem;
  color: #666;
  min-width: 110px;
  font-weight: 500;
  flex-shrink: 0;
  font-size: 1.6rem;
}

.news-title {
  flex: 1;
  margin: 0;
  font-size: 1.6rem;
  font-weight: normal;
}

.news-title a {
  color: #1b1c1d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-title a:hover {
  color: #6b46c1;
}

.news-nav-buttons {
  display: none; /* 画像に合わせて非表示 */
}

/* スライダー制御ボタン - シンプルな矢印のみ */
.news-slider-wrapper::before,
.news-slider-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.news-slider-wrapper .before-layer {
  background-image: url("../images/triangle.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
  margin-right: 30px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 15px;
  height: 27px;
  cursor: pointer;
}

.news-slider-wrapper .after-layer {
  background-image: url("../images/triangle.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
  margin-right: 30px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 15px;
  height: 27px;
  transform: rotate(180deg);
  cursor: pointer;
}
.news-slider-wrapper .before-layer:hover {
  background-image: url(../images/triangle_hover.svg);
}
.news-slider-wrapper .after-layer:hover {
  background-image: url(../images/triangle_hover.svg);
}
.news-slider-wrapper::after {
}
.news-slide h1 {
  font-size: 2.4rem;
  opacity: 1 !important;
  color: #414766;
  font-weight: normal;
}

.news-title a {
  font-size: 1.6rem;
}
.info-cate {
  margin-bottom: 0;
  min-width: 140px;
  flex-shrink: 0;
}

/* --- ニュース静的リスト表示 --- */
.news-static .before-layer,
.news-static .after-layer {
  display: none;
}
.news-static::before,
.news-static::after {
  display: none !important;
}
.news-static h1 {
  font-size: 2rem;
  color: #414766;
  font-weight: bold;
  margin-bottom: 0.8rem;
}
.news-static .news-slider {
  padding: 0;
  overflow: visible;
}
.news-static .news-slide {
  display: block;
  animation: none;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #f0f0f0;
  padding: 8px 0;
}
.news-static .news-slide:last-child {
  border-bottom: none;
}
.news-static .news-slide:hover .news-title {
  color: #6b46c1;
}
.news-list-link {
  text-align: center;
  padding-top: 10px;
}
.news-list-link a {
  color: #6b46c1;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 500;
}
.news-list-link a:hover {
  text-decoration: underline;
}
/* レスポンシブ対応 */
@media only screen and (max-width: 896px) {
  .news-slide h1 {
    margin-bottom: 0.5em;
  }
  .info-cate {
    margin-bottom: 0.5rem;
  }
  .news-slider-section {
    padding: 40px 0;
  }

  .news-slider-section .container {
    margin: 0 20px;
    padding: 30px 20px;
  }

  .news-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .news-slider-wrapper {
    padding: 0 25px;
  }

  .news-slider-wrapper::before,
  .news-slider-wrapper::after {
    width: 25px;
    height: 25px;
    background-size: 20px;
  }

  .news-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    min-height: auto;
  }

  .news-date {
    min-width: auto;
    order: 1;
  }

  .news-title {
    order: 2;
  }

  .news-slide {
    padding: 15px 0;
  }
}

@media only screen and (max-width: 600px) {
  .news-slider-section .container {
    margin: 0 10px;
    padding: 25px 15px;
  }

  .news-slider-wrapper {
    padding: 0 20px;
  }

  .news-slider-wrapper::before,
  .news-slider-wrapper::after {
    width: 20px;
    height: 20px;
    background-size: 16px;
  }

  .news-tab {
    font-size: 1.4rem;
  }

  .news-title {
    font-size: 1.2rem;
  }

  .news-date {
    font-size: 1.1rem;
  }

  .news-header-link .list-link {
    font-size: 1.2rem;
    padding: 6px 12px;
  }
}

/* -------------------------------
  Omnissa製品情報セクション
------------------------------- */
.product-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
}

.product-card {
  background: #fff;
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 0px 9px rgba(0, 0, 0, 0.2);
  width: 460px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.product-card h3 {
  color: #4a12f1;
  font-size: 3.8rem;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
  max-width: 285px;
  max-height: 285px;
  margin: 10px auto;
}

.card-icon img {
  max-width: 100%;
  max-height: 100%;
}

.card-content h3 {
  font-size: 1.8rem;
  color: #6b46c1;
  margin-bottom: 20px;
  font-weight: bold;
}

.card-content p {
  font-size: rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 30px;
  text-align: left;
}

.card-button .btn-detail {
  background: #4a12f1;
  color: white;
  padding: 8px 40px;
  border-radius: 3px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-block;
  min-width: 120px;
}

/* .card-button .btn-detail:hover {
  background: #553c9a;
} */

.products-link {
  text-align: center;
}

.btn-products {
  background: #9623f1;
  color: white;
  padding: 8px 50px;
  text-decoration: none;
  /* font-weight: bold; */
  font-size: 1.6rem;
  transition: background-color 0.3s ease;
  display: inline-block;
  min-width: 200px;
  border-radius: 5px;
}
/* 
.btn-products:hover {
  background: #553c9a;
  color: white;
  text-decoration: none;
} */

/* レスポンシブ対応 */
@media only screen and (max-width: 896px) {
  .product-cards {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .product-card {
    width: 100%;
    max-width: 400px;
  }

  .omnissa-products {
    padding: 40px 0;
  }

  .omnissa-products .container {
    margin: 0 20px;
    padding: 30px 20px;
  }

  .omnissa-products h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 600px) {
  .omnissa-products .container {
    margin: 0 10px;
    padding: 25px 15px;
  }

  .product-card {
    padding: 30px 20px;
  }

  .card-icon {
    max-width: 100px;
    max-height: 100px;
    margin-bottom: 20px;
  }

  .card-icon img {
    max-width: 100%;
    max-height: 100%;
  }

  .card-content h3 {
    font-size: 1.6rem;
  }

  .card-content p {
    font-size: 1.3rem;
  }

  .btn-products {
    padding: 12px 30px;
    font-size: 1.4rem;
    min-width: 180px;
  }
}

/* -------------------------------
  C&S ENGINEER VOICEセクション
------------------------------- */

.engineer-voice-section {
  padding: 0px 0 60px;
}

.engineer-voice-section .container {
  border-radius: 20px;
  padding: 0;
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.engineer-voice-block {
  display: flex;
  align-items: stretch;
  min-height: 300px;
  gap: 20px;
  padding: 40px;
  background-color: #506193;
  border-radius: 20px;
}

.engineer-voice-image-wrapper {
  flex: 0 0 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  aspect-ratio: 1 / 1; /* 正方形にする */
  min-width: 300px;
}

.engineer-voice-image {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.engineer-voice-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center; /* 右端を優先して表示 */
}

.engineer-voice-content {
  flex: 0 0 calc(66.666% - 20px);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.engineer-voice-content h2 {
  font-size: 3.2rem;
  color: #fff;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.3;
}

.engineer-voice-content p {
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 30px;
}

.engineer-voice-button .btn-engineer-voice {
  background: #fff;
  color: #506193;
  padding: 8px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  display: inline-block;
  min-width: 160px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.engineer-voice-button .btn-engineer-voice:hover {
  background: #fbf32c;
}
.basic-wrap.engineer-voice {
  background-color: #506193;
  padding: 30px 45px;
}

a.engineer-voice-link,
a.engineer-voice-link:hover {
  text-decoration: none;
  color: inherit;
  display: block;
}

.engineer-voice-content h2 {
  font-size: 40px;
}
.engineer-voice-content p {
  font-size: 20px;
}
.engineer-voice .flex-wrap {
  gap: 60px;
}

/* レスポンシブ対応 */
@media only screen and (max-width: 896px) {
  .engineer-voice-section {
    padding: 40px 0;
  }

  .engineer-voice-section .container {
    margin: 0 20px;
  }

  .engineer-voice-block {
    flex-direction: column;
    min-height: auto;
    gap: 30px;
    padding: 30px;
  }

  .engineer-voice-image-wrapper {
    flex: 0 0 100%;
    max-width: 100%;
    aspect-ratio: auto;
  }

  .engineer-voice-image {
    max-height: 300px;
  }

  .engineer-voice-content {
    padding: 40px 30px;
    flex: 0 0 100%;
  }

  .engineer-voice-content h3 {
    font-size: 1.9rem;
    margin-bottom: 15px;
  }
  .engineer-voice .flex-wrap {
    gap: 0;
  }
  .engineer-voice-content p {
    font-size: 1.4rem;
    margin-bottom: 25px;
    line-height: 1.6;
  }

  .engineer-voice-button .btn-voice {
    padding: 12px 30px;
    font-size: 1.4rem;
    min-width: 140px;
  }
}

@media only screen and (max-width: 600px) {
  .engineer-voice-section .container {
    margin: 0 10px;
  }

  .engineer-voice-block {
    gap: 20px;
    padding: 20px;
  }

  .engineer-voice-image {
    max-height: 250px;
  }

  .engineer-voice-content h3 {
    font-size: 1.7rem;
    margin-bottom: 12px;
  }

  .engineer-voice-content p {
    margin-bottom: 20px;
  }

  .engineer-voice-button .btn-voice {
    padding: 10px 25px;
    min-width: 120px;
  }
  .engineer-voice-button {
    text-align: center;
  }
}
.top-wrap {
  width: 1100px;
  margin: 0 auto;
  margin-top: 50px;
  position: relative;
  z-index: 3;
}
@media only screen and (max-width: 896px) {
  .top-wrap {
    width: auto;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 300px;
  }
}
.top-bg {
  height: 300px;
  background: url(../images/bg.svg) no-repeat center top;
  background-size: cover;
  background-color: #fff;
  overflow: hidden;
  position: relative;
}

.top-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  pointer-events: none;
  opacity: 0.7;
}

.top-overlay .top-person {
  position: absolute;
  bottom: 0;
  right: 15%;
  height: 100%;
  width: auto;
  object-fit: contain;
  z-index: 1;
}

.top-bg .top-circle {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 1000%;
  width: auto;
  z-index: 2;
  pointer-events: none;
  opacity: 0.6;
}

.flex-wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.product .flex-wrap {
  padding: 15px;
}

.product .flex-wrap > a {
  text-decoration: none;
  color: inherit;
}

.product h2 {
  font-size: 3.6rem;
  text-align: center;
  margin: 3rem 0;
}
.products-link {
  margin: 3rem auto;
}

.flex-wrap.big {
  width: 1340px;
}

.flex-wrap.middle {
  width: 1280px;
}

.fix-area .basic-wrap {
  background: none;
}

.fix-area header .logo a {
  color: #fff;
}

.fix-area header .logo {
  display: block;
}

@media only screen and (max-width: 896px) {
  .top-bg {
    background-position: 75% 0;
  }
  .top-overlay {
    width: 100%;
    opacity: 0.3;
  }

  .flex-wrap {
    flex-wrap: wrap;
  }

  .product .flex-wrap {
    flex-direction: column;
    gap: 30px;
    padding: 0 15px;
  }
}
