@charset "UTF-8";
/*-------------------------------------------
ALL
-------------------------------------------*/
*,
h1, h2 {
  font-family: "Noto Sans CJK JP", "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック体", ヒラギノ角ゴ Pro W3, メイリオ, sans-serif;
  font-weight: 700;
  font-optical-sizing: auto;
  font-style: normal;
  font-display: swap;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
}

h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.6;
}

/*
section {
	opacity: 0;
	transform: translateY(20px);
}
*/
section {
  margin-bottom: 50px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #fff;
  border-bottom: 1px solid #ccc;
}

.challenges,
.features,
.specs,
.videos,
.faq,
.contact,
.product-lineup,
.automation-lineup {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

/*-------------------------------------------
ヘッダー
-------------------------------------------*/
.main-navigation {
  border-bottom: 0;
  display: flex;
}

.site-header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* 最前面に表示 */
  position: relative;
}

.site-header-inline {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header-nav1 {
  display: flex;
  align-items: center;
  background-color: transparent;
}

.site-logo img {
  max-width: 220px;
  height: auto;
}

#menu-menu-lp_nt-flex {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

/* ✅ レスポンシブ対応 */
@media (max-width: 768px) {
  .site-logo img {
    max-width: 180px;
  }
}
/*-------------------------------------------
ヒーローセクション
-------------------------------------------*/
.hero-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(135deg, #d9d9d9, #bfbfbf, #333333, #000000);
  background-size: 400% 400%;
  animation: gradientShift 12s ease infinite;
  text-align: center;
  padding: 10px 20px;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* キラキラエフェクト */
.sparkles {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.8) 2px, transparent 3px);
  background-size: 50px 50px;
  animation: sparkleMove 6s linear infinite;
}

@keyframes sparkleMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100px 100px;
  }
}
.hero-img {
  max-width: 500px;
  width: 100%;
  margin: 0 auto 30px;
  display: block;
  border-radius: 10px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-title span {
  color: #28a745;
  /* ブランドカラーで強調 */
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-buttons a:hover {
  color: #fff;
  opacity: 0.7;
}

.btn {
  flex: 1;
  /* 各ボタンを均等に伸ばす */
  max-width: 300px;
  /* 最大幅を制限 */
  text-align: center;
  padding: 15px 0;
  /* 横幅固定なので左右のpaddingを減らす */
  font-size: 1.2rem;
  text-decoration: none;
  color: #fff;
  border-radius: 50px;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.btn.green {
  background: #28a745;
}

.btn.black {
  background: #000;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* ✅ レスポンシブ対応 */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }
  .btn {
    max-width: 100%;
  }
}
/*-------------------------------------------
課題提起
-------------------------------------------*/
.cards {
  display: grid;
  gap: 20px;
  align-items: stretch;
  /* 各カードの高さを揃える */
}

.cards-solution {
  grid-template-columns: repeat(3, 1fr);
  /* 均等幅 */
}

.cards-lineup {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 20px;
}

.card {
  display: flex;
  flex-direction: column;
  /* 画像・テキストを縦並び */
  justify-content: space-between;
  /* 均等配置 */
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
  padding: 20px;
  box-sizing: border-box;
  background: #fff;
  /* 背景色を設定（任意） */
  border-radius: 8px;
  border: 0;
}

.card img {
  width: 100%;
  height: 200px;
  /* 固定高さで統一 */
  -o-object-fit: cover;
     object-fit: cover;
  /* 画像の縦横比を維持しつつトリミング */
  border-radius: 6px;
}

.card-lineup {
  text-align: center;
}

.card-lineup img {
  width: 100%;
  height: 150px;
  /* 固定高さで統一 */
  -o-object-fit: cover;
     object-fit: cover;
  /* 画像の縦横比を維持しつつトリミング */
  border-radius: 6px;
  margin-bottom: 20px;
}

.card h3 {
  margin: 15px 0 10px;
  font-size: 1.2rem;
}

.card p {
  font-size: 1rem;
  line-height: 1.5;
  flex-grow: 1;
  /* テキスト部分を伸ばして高さ調整 */
  font-weight: 500;
}

/*-------------------------------------------
メリット
-------------------------------------------*/
.features {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.feature-item.reverse {
  flex-direction: row-reverse;
}

.feature-item img {
  max-width: 45%;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.feature-text {
  max-width: 50%;
}

.feature-text h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.feature-text p {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
}

.features-wrap {
  width: 100%;
  margin: auto;
  padding: 40px 20px;
  background-image: url("<?php echo get_template_directory_uri(); ?>/images/detail/lp_merit_bg.jpg");
  /* 添付画像のパス */
  background-size: cover;
  /* セクション全体にフィット */
  background-position: center;
  /* 中央寄せ */
  background-repeat: no-repeat;
  /* 繰り返し防止 */
  color: #fff;
  /* 背景が暗い場合、テキストを白に */
  position: relative;
  z-index: 1;
}

.features-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* 背景画像に半透明オーバーレイで文字を見やすく */
  z-index: -1;
}

/* ✅ レスポンシブ対応 */
@media (max-width: 768px) {
  .feature-item,
  .feature-item.reverse {
    flex-direction: column;
    text-align: center;
  }
  .feature-item img,
  .feature-text {
    max-width: 100%;
  }
}
/*-------------------------------------------
仕様表
-------------------------------------------*/
.specs {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

.specs h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.specs-table th {
  background: #333;
  color: #fff;
  padding: 15px;
  text-align: left;
  font-weight: bold;
}

.specs-table td {
  padding: 15px;
  border-bottom: 1px solid #ddd;
}

.specs-table tr:nth-child(even) {
  background: #f9f9f9;
}

.option {
  margin-top: 30px;
  border-radius: 8px;
}

.option h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 横並び2列 */
  gap: 20px;
}

.option-item {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.option-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.option-item p {
  font-size: 1rem;
  margin-bottom: 15px;
}

.option-item img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 6px;
  -o-object-fit: cover;
     object-fit: cover;
}

.option-item-sub {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* ✅ レスポンシブ対応 */
@media (max-width: 768px) {
  .option-grid {
    grid-template-columns: 1fr;
    /* モバイルでは縦並び */
  }
  .option-item-sub {
    flex-direction: column;
  }
}
/* ✅ レスポンシブ対応 */
@media (max-width: 768px) {
  .specs-table th,
  .specs-table td {
    font-size: 0.9rem;
    padding: 10px;
  }
}
/*-------------------------------------------
関連動画
-------------------------------------------*/
#lp-video {
  padding: 50px 20px;
  background: linear-gradient(to right, rgb(34, 34, 34), rgb(85, 85, 85));
  color: #fff;
}

.lp-video-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.lp-video-wrap h2 {
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
}

.product-movie__inner {
  display: flex;
  align-items: center;
}

.product-movie__thum {
  margin-bottom: 30px;
}

.product-movie__thum ul {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr;
  justify-content: space-evenly;
}

.product-movie__thum li {
  width: 100%;
  text-align: center;
}

.product-movie__title {
  font-weight: bold;
  padding-top: 20px;
}

.lp-comparison-oc-txt {
  font-size: 1.2rem;
  margin-bottom: 50px;
  text-align: left;
}

.lp-comparison-oc-title {
  font-size: 1.2rem;
}

.lp-comparison-oc-cap {
  font-size: 1.2rem;
}

.lp-comparison-oc-inline {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin: 0 auto;
}

.lp-comparison-oc-inline .lp-comparison-oc-item {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}

.lp-comparison-oc-inline img {
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 20px;
}

@media (width < 768px) {
  #lp-video {
    padding: 30px 20px;
  }
  .lp-comparison-oc-inline {
    grid-template-columns: 1fr;
  }
  .lp-video-wrap h2 {
    font-size: 1.5rem;
  }
  .product-movie__thum li {
    width: 100%;
  }
  .product-movie__title {
    font-size: 0.8rem;
  }
  .product-movie__thum ul {
    gap: 20px;
  }
}
/*-------------------------------------------
よくあるご質問
-------------------------------------------*/
#lp-qa {
  padding: 0 20px;
}

.lp-qa-wrap {
  max-width: 1100px;
  margin: 0 auto;
}
.lp-qa-wrap h2 {
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  padding: 50px 0;
}

@media (width < 768px) {
  .lp-qa-wrap h2 {
    font-size: 1.5rem;
  }
}
.faq-item {
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  text-align: left;
  background-color: #f4f4f4;
  border: none;
  padding: 15px;
  font-size: 1.1rem;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 15px;
  background: #fff;
  font-size: 1rem;
  line-height: 1.6;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  padding: 15px;
}

/*-------------------------------------------
ダウンロードフォーム
-------------------------------------------*/
.catalog-wrap {
  background: linear-gradient(to right, #f9f9f9, #eee);
  padding: 40px 0px;
}

.catalog-wrap h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

.catalog-grid {
  display: flex;
  gap: 20px;
  max-width: 1100px;
  margin: auto;
  align-items: flex-start;
}

.catalog-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.catalog-info img {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
}

.catalog-info p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.catalog-info-text {
  text-align: left;
  padding: 20px;
}

.catalog-form {
  flex: 1;
}

.catalog-form iframe {
  width: 100%;
  border-radius: 8px;
}

/* ✅ レスポンシブ対応 */
@media (max-width: 768px) {
  .catalog-grid {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .cards {
    flex-direction: column;
  }
  .cards-solution,
  .cards-lineup {
    grid-template-columns: 1fr;
  }
  .card {
    width: 100%;
  }
  .card img {
    height: 180px;
    /* モバイル用に少し小さく */
  }
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.5rem;
  }
}
.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s ease, transform 1s ease;
}

/*-------------------------------------------
モーダルウインドウ
-------------------------------------------*/
/* モーダルを開くボタン */
.product-movie__modal--trigger:hover {
  opacity: 0.7;
  cursor: pointer;
}

/* モーダル本体 */
.modal-wrap {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
}

.modal-layer {
  height: 100%;
  background: rgba(50, 50, 50, 0.85);
  cursor: pointer;
}

.modal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(100% - 40px, 1000px);
  background: transparent;
}

.modal-inner {
  position: relative;
  height: 100%;
  padding: 80px 20px 20px;
}

/* モーダルを閉じるボタン */
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgb(50, 50, 50);
  cursor: pointer;
  transition: opacity 0.6s;
}

.modal-close:hover {
  opacity: 0.6;
}

.modal-close:before,
.modal-close:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: #fff;
  content: "";
}

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

.modal-close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* モーダル内のコンテンツ */
.modal-text {
  text-align: center;
} 
/*-------------------------------------------
FAQ
-------------------------------------------*/
.faq-wrap {
  max-width: 100vw;
  width: 100%;
  background: #eee;
  padding: 30px 0;
  margin: 0 auto;
}

.faq-list {
  font-size: 1.3rem;
  padding-bottom: 50px;
}

.faq-list__toggle--q,
.faq-list__toggle--a {
  position: relative;
  display: flex;
  width: calc(100% - 2rem);
  padding: 0 50px;
}

.faq-list__toggle {
  position: relative;
  cursor: pointer;
  background: #fff;
  margin-bottom: 30px;
  padding: 15px 10px 10px;
  border-radius: 30px;
  font-weight: bold;
}
.faq-list__toggle p {
  margin-bottom: 0;
}

.faq-list__toggle--a {
  margin-top: 20px;
}

.faq-list__toggle--q .q::before {
  display: block;
  background: #222;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 1.5em;
  border-radius: 100%;
  width: 1.8em;
  height: 1.8em;
  margin-right: 15px;
}

.faq-list__toggle--q .q::before {
  content: "Q";
}

.faq-list__toggle--a .a::before {
  display: block;
  background: #eee;
  color: #222;
  font-weight: bold;
  text-align: center;
  line-height: 1.8em;
  border-radius: 100%;
  width: 1.8em;
  height: 1.8em;
  margin-right: 15px;
}

.faq-list__toggle--a .a::before {
  content: "A";
}

.faq-list__toggle--a a {
  display: contents;
}

.faq-list__toggle--q.down::before {
  content: "";
  width: 12px;
  height: 12px;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
  position: absolute;
  right: 15px;
}

.faq-list__toggle--q.up:before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #000;
  border-left: 2px solid #000;
  transform: rotate(45deg);
  position: absolute;
  top: 8px;
  right: 15px;
}

.faq-list__toggle--link:hover {
  color: #0082FE;
  opacity: 0.7;
}

.faq-list__toggle--open {
  display: none;
  margin: 0 auto;
  width: 100%;
}

@media (width < 768px) {
  .faq-list__toggle--q,
  .faq-list__toggle--a {
    padding: 0 0;
  }
  .faq-list__toggle--q.down::before {
    content: "";
    right: -20px;
  }
  .faq-list__toggle--q.up:before {
    content: "";
    right: -20px;
  }
  .faq-list {
    font-size: 1rem;
  }
}
/* footer */
.footer {
  background: #f1f1f1;
  padding: 30px 20px;
  font-size: 0.95rem;
  color: #333;
}

.footer-container {
  display: grid;
  align-items: flex-start;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1100px;
  margin: auto;
  gap: 40px;
  padding-bottom: 20px;
}

.footer-logo img {
  max-width: 250px;
  height: auto;
}

.footer-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-info p {
  margin: 5px 0;
}

.footer-bottom {
  max-width: 1100px;
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #0082FE;
}

.footer-copy {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0;
}

/* ✅ レスポンシブ対応 */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    grid-template-columns: 1fr;
    text-align: center;
    border-bottom: none;
  }
  .footer-info {
    border-left: none;
    padding-left: 0;
    margin-top: 15px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}
/*-------------------------------------------
モーダルウインドウ
-------------------------------------------*/
/* モーダルを開くボタン */
.product-movie__modal--trigger:hover {
  opacity: 0.7;
  cursor: pointer;
}

/* モーダル本体 */
.modal-wrap {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
}

.modal-layer {
  height: 100%;
  background: rgba(50, 50, 50, 0.85);
  cursor: pointer;
}

.modal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(100% - 40px, 1000px);
  background: transparent;
}

.modal-inner {
  position: relative;
  height: 100%;
  padding: 80px 20px 20px;
}

/* モーダルを閉じるボタン */
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgb(50, 50, 50);
  cursor: pointer;
  transition: opacity 0.6s;
}

.modal-close:hover {
  opacity: 0.6;
}

.modal-close:before,
.modal-close:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: #fff;
  content: "";
}

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

.modal-close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* モーダル内のコンテンツ */
.modal-text {
  text-align: center;
}

/*-------------------------------------------
アニメーション
-------------------------------------------*/
/* 下から上に移動しながらフェードイン */
.fadeInUp {
  opacity: 0;
  transform: translateY(100px);
}

/* 上から下に移動しながらフェードイン */
.fadeInDown {
  opacity: 0;
  transform: translateY(-100px);
}

/* 右から左に移動しながらフェードイン */
.fadeInLeft {
  opacity: 0;
  transform: translate(-100px, 0);
}

/* 左から右に移動しながらフェードイン */
.fadeInRight {
  opacity: 0;
  transform: translateX(100px);
}

/* フェードインアニメーション */
@keyframes fadeIn {
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
/* フェードインさせるクラス */
.fadeIn {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}/*# sourceMappingURL=lp_nt-flex.css.map */