@media screen and (min-width: 768px) {
}

/* ===============================
  スライダー中央3枚表示（左右半分見せ）
================================ */
.slider-section {
 background: #000;
 width: 100%;
 overflow: hidden;
 position: relative;
 padding: 20px 0;
 margin: 0 auto;
 display: flex;
 align-items: center; /* 縦中央揃え */
}

/* スライド上のテキスト重ね */
.slider-text-overlay {
 width: 1200px;
 position: absolute;
 top: 50%;
 left: 50%;
 z-index: 10;
 transform: translate(-50%, -50%);
 text-align: center;
 color: #fff;
 padding: 0 20px;
 pointer-events: none;
}

.slider-text-ja {
 font-family: "Sawarabi Mincho", "RyuminPro", "Hiragino Mincho ProN",
  "MS Mincho", serif;
 text-align: center;
 font-size: 4.5rem;
 font-weight: bold;
 line-height: 1.5;
 letter-spacing: 0.05em;
}

.slider-text-en {
 text-align: center;
 font-family: "Sawarabi Mincho", "RyuminPro", "Hiragino Mincho ProN",
  "MS Mincho", serif;
 font-size: 1.7rem;
 font-weight: 400;
 margin-top: 10px;
 letter-spacing: 0.05em;
 opacity: 0.9;
 text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.slider-swiper {
 width: 100%;
 overflow: visible; /* 左右のスライドを見せるため */
}

.slider-swiper .swiper-wrapper {
 align-items: center;
}

.slider-swiper .swiper-slide {
 transition: transform 0.5s ease, opacity 0.5s ease;
 transform: scale(0.9);
 opacity: 0.6;
 display: flex;
 justify-content: center;
 align-items: center;
}

.slider-swiper .swiper-slide-active {
 transform: scale(1);
 opacity: 1;
}

.slider-swiper img {
 display: block;
 width: 100%;
 height: auto;
 object-fit: contain; /* 歪み防止 */
 border-radius: 12px;
 max-height: 900px; /* 高さ制限で整える */
}

.swiper-pagination {
 bottom: 10px !important;
}

@media screen and (max-width: 767px) {
 .slider-section {
  min-height: 600px;
  padding: 30px 0 0px;
 }

 .slider-text-ja {
  font-size: 1.7rem;
 }

 .slider-text-en {
  font-size: 0.8rem;
 }

 .slider-swiper {
  overflow: hidden;
 }

 .slider-swiper .swiper-slide {
  transform: scale(1);
  opacity: 1;
 }

 .slider-swiper img {
  max-height: 400px;
 }
}
/* 下部に固定配置するテキストブロック */
.slider-text-bottom-fixed {
 position: absolute;
 bottom: 8%;

 left: 50%;
 transform: translateX(-50%);
 text-align: center;
 z-index: 10;
}

.slider-text-sub {
 font-size: 1.3rem;
 font-weight: bold;
 color: #fff;
 margin-bottom: 8px;
 letter-spacing: 0.05em;
}

.slider-text-company {
 display: inline-block;
 background: rgba(255, 255, 255, 0.9);
 color: #000;
 font-weight: bold;
 font-size: 1.1rem;
 padding: 8px 35px;
 border-radius: 20px;
 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 767px) {
 .slider-text-bottom-fixed {
  display: flex;
  width: 300px;
  bottom: 5%;
  flex-direction: column;
  align-items: center;
 }

 .slider-text-sub {
  font-size: 0.9rem;
 }

 .slider-text-company {
  font-size: 0.9rem;
  padding: 5px 16px;
 }
}

/* ===============================
 Conceptセクション（Coolvetica風）
=============================== */
.concept-section {
 background-color: #000;
 color: #fff;
 padding: 80px 0;
 text-align: center;
}

.concept-section .wrap-l {
 max-width: 1200px;
 margin: 0 auto;
 display: flex;
 flex-direction: column;
 align-items: center;
}

.concept-section h2 {
 font-family: "Montserrat Alternates", sans-serif;
 font-weight: 700;
 font-size: 2.6rem;
 letter-spacing: 2px;
 color: #f7a800; /* オレンジの差し色 */
 margin-bottom: 40px;
}

.concept-section h3 {
 font-family: "Sawarabi Mincho", "RyuminPro", "Hiragino Mincho ProN",
  "MS Mincho", serif;
 font-size: 2rem;
 font-weight: 500;
 margin-bottom: 40px;
 color: #fff;
}

.concept-section .concept-content {
 display: flex;
 flex-wrap: nowrap;
 justify-content: space-between;
 align-items: flex-start;
 gap: 30px;
 width: 100%;
}

/* 画像6割、テキスト4割 */
.concept-section .concept-image {
 flex: 0 0 50%;
}

.concept-section .concept-image img {
 width: 100%;
 height: auto;
 border-radius: 8px;
 display: block;
}
.concept-section .concept-texts {
 display: flex;
 flex-direction: column;
 gap: 20px;
}
.concept-section .concept-text {
 flex: 0 0 50%;
 text-align: left;
 font-family: "Noto Sans JP", sans-serif;
 line-height: 1.9;
 font-size: 1rem;
 color: #ddd;
}

/* ===============================
  スマホ対応（1カラム）
=============================== */
@media screen and (max-width: 767px) {
 .concept-section {
  padding: 60px 0px;
 }

 .concept-section h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
 }

 .concept-section h3 {
  font-size: 1.2rem;
  margin-bottom: 40px;
 }

 .concept-section .concept-content {
  flex-direction: column;
  align-items: center;
  gap: 30px;
 }

 .concept-section .concept-image,
 .concept-section .concept-text {
  flex: 1 1 100%;
  width: 100%;
 }

 .concept-section .concept-text {
  text-align: center;
  font-size: 0.95rem;
 }
}

/* ===============================
 Head Installer セクション
=============================== */
.installer-section {
 background-color: #000;
 color: #fff;
 padding: 80px 0;
 text-align: center;
}

.installer-section .wrap-l {
 max-width: 1200px;
 margin: 0 auto;
}

.installer-head {
 margin-bottom: 60px;
}

.installer-role {
 text-align: center;
 font-family: "Poppins", sans-serif;
 font-weight: 600;
 font-size: 1.7rem;
 color: #999;
 margin-bottom: 10px;
}

.installer-name {
 text-align: center;
 font-family: "Montserrat Alternates", sans-serif;
 font-weight: 800;
 font-size: 2.8rem;
 color: #ccc;
 margin: 0;
}

.installer-content {
 display: flex;
 align-items: flex-start;
 gap: 30px;
 justify-content: center;
}

.installer-texts {
 flex: 0 0 53%;
 display: flex;
 flex-direction: column;
 gap: 20px;
 text-align: left;
}

.installer-text p {
 font-family: "Noto Sans JP", sans-serif;
 font-size: 1rem;
 line-height: 1.9;
 color: #ddd;
}

.installer-image {
 flex: 0 0 50%;
}

.installer-image img {
 width: 100%;
 height: auto;
 border-radius: 10px;
 display: block;
}

/* ボタン */
.installer-btn {
 text-align: center;
 margin-top: 60px;
}

.installer-more {
 display: inline-block;
 background-color: #d27a00;
 color: #000;
 padding: 12px 80px;
 border-radius: 8px;
 font-family: "Noto Sans JP", sans-serif;
 font-weight: bold;
 font-size: 1.1rem;
 text-decoration: none;
 transition: background-color 0.3s ease;
}

.installer-more:hover {
 background-color: #f7a800;
}

/* ===============================
 スマホ対応（1カラム）
=============================== */
@media screen and (max-width: 767px) {
 .installer-section {
  padding: 5px 0px 60px;
 }

 .installer-name {
  font-size: 2rem;
 }

 .installer-content {
  flex-direction: column;
  gap: 30px;
 }

 .installer-texts {
  flex: 1 1 100%;
  text-align: center;
 }

 .installer-image {
  flex: 1 1 100%;
 }

 .installer-more {
  padding: 12px 50px;
  font-size: 0.95rem;
 }
}

/* ===============================
 News セクション
=============================== */
.news-section {
 background-color: #000;
 color: #fff;
 padding: 100px 0;
 text-align: center;
}

.news-section .wrap-l {
 max-width: 1200px;
 margin: 0 auto;
}

.news-title {
 font-family: "Montserrat Alternates", sans-serif;
 font-weight: 700;
 font-size: 2.6rem;
 color: #d27a00;
 margin-bottom: 30px;
 text-align: center;
}

.news-list {
 display: flex;
 flex-direction: column;
 gap: 50px;
}
.news-item a {
 display: flex;
 align-items: flex-start;
 gap: 20px;
 color: inherit;
 text-decoration: none;
 flex-direction: row;
}
@media screen and (min-width: 768px) {
 .news-item a {
  display: flex;
  align-items: center;
  gap: 40px;
  color: inherit;
  text-decoration: none;
  flex-direction: row;
 }
}
.news-item a:hover .news-text {
 text-decoration: underline;
}

.news-item {
 display: flex;
 align-items: center;
 justify-content: flex-start;
 gap: 40px;
 border-top: 1px solid #333;
 padding-top: 40px;
}

.news-item:last-child {
 border-bottom: 1px solid #333;
 padding-bottom: 40px;
}

.news-thumb {
 flex: 0 0 200px;
}

.news-thumb img {
 width: 100%;
 height: auto;
 border-radius: 6px;
 display: block;
}

.news-info {
 flex: 1;
 text-align: left;
}

.news-date {
 font-family: "Poppins", sans-serif;
 font-size: 0.9rem;
 color: #aaa;
 margin-bottom: 10px;
}

.news-text {
 font-family: "Noto Sans JP", sans-serif;
 font-size: 1rem;
 line-height: 1.8;
 color: #eee;
}

/* ボタン */
.news-btn {
 margin-top: 60px;
 text-align: center;
}

.news-more {
 display: inline-block;
 background-color: #d27a00;
 color: #000;
 padding: 14px 80px;
 border-radius: 8px;
 font-family: "Noto Sans JP", sans-serif;
 font-weight: bold;
 font-size: 1.1rem;
 text-decoration: none;
 transition: background-color 0.3s ease;
}

.news-more:hover {
 background-color: #f7a800;
}

/* ===============================
 スマホ対応（1カラム）
=============================== */
@media screen and (max-width: 767px) {
 .news-section {
  padding: 60px 0px;
 }

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

 .news-item {
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-top: 30px;
 }

 .news-thumb {
  flex: 1 1 55%;
  width: 100%;
 }

 .news-info {
  flex: 1 1 100%;
 }

 .news-text {
  font-size: 0.95rem;
 }

 .news-more {
  padding: 12px 50px;
  font-size: 0.95rem;
 }
}

/* ===============================
 Gallery セクション
=============================== */
.gallery-section {
 background-color: #000;
 color: #fff;
 padding: 100px 0;
 text-align: center;
}

.gallery-section .wrap-l {
 max-width: 1200px;
 margin: 0 auto;
}

.gallery-title {
 text-align: center;
 font-family: "Montserrat Alternates", sans-serif;
 font-weight: 700;
 font-size: 2.6rem;
 color: #d27a00;
 margin-bottom: 60px;
}

.gallery-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 50px 40px;
 justify-items: center;
}

.gallery-item {
 text-align: left;
 width: 100%;
 max-width: 330px;
}

.gallery-item img {
 width: 100%;
 height: auto;
 border-radius: 10px;
 display: block;
 margin-bottom: 10px;
}

.gallery-place {
 font-family: "Noto Sans JP", sans-serif;
 font-size: 0.9rem;
 color: #ccc;
 margin-bottom: 4px;
}

.gallery-name {
 font-family: "Poppins", sans-serif;
 font-size: 1rem;
 font-weight: 600;
 color: #fff;
}

/* ボタン */
.gallery-btn {
 text-align: center;
 margin-top: 60px;
}

.gallery-more {
 display: inline-block;
 background-color: #d27a00;
 color: #000;
 padding: 14px 80px;
 border-radius: 8px;
 font-family: "Noto Sans JP", sans-serif;
 font-weight: bold;
 font-size: 1.1rem;
 text-decoration: none;
 transition: background-color 0.3s ease;
}

.gallery-more:hover {
 background-color: #f7a800;
}

/* ===============================
 スマホ対応（1カラム→2カラム）
=============================== */
/* ===============================
 Gallery セクション（スマホ2列対応）
=============================== */
.gallery-section {
 background-color: #000;
 color: #fff;
 padding: 100px 0;
 text-align: center;
}

.gallery-section .wrap-l {
 max-width: 1200px;
 margin: 0 auto;
}

.gallery-title {
 text-align: center;
 font-family: "Montserrat Alternates", sans-serif;
 font-weight: 700;
 font-size: 2.6rem;
 color: #d27a00;
 margin-bottom: 60px;
}

.gallery-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 50px 40px;
 justify-items: center;
}

.gallery-item {
 text-align: left;
 width: 100%;
 max-width: 330px;
}

.gallery-item img {
 width: 100%;
 height: auto;
 border-radius: 10px;
 display: block;
 margin-bottom: 10px;
}

.gallery-place {
 font-family: "Noto Sans JP", sans-serif;
 font-size: 0.9rem;
 color: #ccc;
 margin-bottom: 4px;
}

.gallery-name {
 font-family: "Poppins", sans-serif;
 font-size: 1rem;
 font-weight: 600;
 color: #fff;
}

/* ボタン */
.gallery-btn {
 text-align: center;
 margin-top: 60px;
}

.gallery-more {
 display: inline-block;
 background-color: #d27a00;
 color: #000;
 padding: 14px 80px;
 border-radius: 8px;
 font-family: "Noto Sans JP", sans-serif;
 font-weight: bold;
 font-size: 1.1rem;
 text-decoration: none;
 transition: background-color 0.3s ease;
}

.gallery-more:hover {
 background-color: #f7a800;
}

/* ===============================
 レスポンシブ設定
=============================== */

/* タブレット */
@media screen and (max-width: 1023px) {
 .gallery-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 25px;
 }
}

/* スマホ：横2 × 縦3 */
@media screen and (max-width: 767px) {
 .gallery-section {
  padding: 60px 0px;
 }

 .gallery-title {
  font-size: 2rem;
  margin-bottom: 40px;
 }

 .gallery-grid {
  grid-template-columns: repeat(2, 1fr); /* ← 2列表示 */
  gap: 30px 20px; /* ← 画像間の余白 */
 }

 .gallery-item {
  max-width: 100%;
  text-align: center;
 }

 .gallery-place {
  font-size: 0.85rem;
 }

 .gallery-name {
  font-size: 0.95rem;
 }

 .gallery-more {
  padding: 12px 50px;
  font-size: 0.95rem;
 }
}

/* ===============================
 SNS セクション
=============================== */
.sns-section {
 background-color: #000;
 color: #fff;
 padding: 100px 0;
 text-align: center;
}

.sns-section .wrap-l {
 max-width: 1200px;
 margin: 0 auto;
}

.sns-title {
 text-align: center;
 font-family: "Montserrat Alternates", sans-serif;
 font-weight: 700;
 font-size: 2.6rem;
 color: #d27a00;
 margin-bottom: 60px;
}

.sns-icons {
 display: flex;
 justify-content: center;
 align-items: center;
 gap: 60px;
}

.sns-link {
 display: inline-block;
 transition: transform 0.3s ease, opacity 0.3s ease;
}

.sns-link img {
 width: 100px;
 height: 100px;
 display: block;
 border-radius: 20px;
}

.sns-link:hover {
 transform: scale(1.1);
 opacity: 0.8;
}

/* ===============================
 スマホ対応
=============================== */
@media screen and (max-width: 767px) {
 .sns-section {
  padding: 60px 0px;
 }

 .sns-title {
  font-size: 2rem;
  margin-bottom: 40px;
 }

 .sns-icons {
  flex-direction: row;
  gap: 30px;
 }

 .sns-link img {
  width: 70px;
  height: 70px;
  border-radius: 15px;
 }
}
/* ===============================
 Contact セクション（CF7対応）
=============================== */
.contact-section {
 background-color: #000;
 color: #fff;
 padding: 100px 0;
 text-align: center;
}

.contact-section .wrap-l {
 max-width: 800px;
 margin: 0 auto;
}

.contact-title {
 text-align: center;
 font-family: "Montserrat Alternates", sans-serif;
 font-weight: 700;
 font-size: 2.6rem;
 color: #d27a00;
 margin-bottom: 20px;
}

.contact-lead {
 text-align: center;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 1rem;
 color: #ccc;
 line-height: 1.8;
 margin-bottom: 50px;
}

/* -------------------------------
フォーム全体
-------------------------------- */
.contact-form {
 display: flex;
 flex-direction: column;
 gap: 25px;
 border-top: 1px solid #333;
 border-bottom: 1px solid #333;
 padding: 50px 0;
}

/* Contact Form 7 wrapper対応 */
.wpcf7 form {
 width: 100%;
}
.wpcf7-form .contact-form {
 display: flex;
 flex-direction: column;
 gap: 25px;
}

/* 各項目 */
.form-item {
 display: flex;
 align-items: center;
 gap: 20px;
 flex-direction: row;
}

.form-item label {
 width: 30%;
 text-align: left;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 1rem;
 color: #fff;
}

/* CF7自動生成inputやtextarea */
.form-item input[type="text"],
.form-item input[type="email"],
.form-item input[type="tel"],
.form-item input[type="url"],
.form-item textarea {
 width: 100%;
 padding: 10px;
 border: none;
 border-radius: 5px;
 background-color: #555;
 color: #fff;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 1rem;
 box-sizing: border-box;
}

.form-item input:focus,
.form-item textarea:focus {
 outline: 2px solid #d27a00;
}

/* -------------------------------
送信ボタン
-------------------------------- */
.form-submit {
 text-align: center;
 margin-top: 40px;
}

/* CF7ボタンにも同デザインを適用 */
.form-submit input[type="submit"],
.form-submit button,
.wpcf7-submit {
 background-color: #d27a00;
 color: #000;
 font-family: "Noto Sans JP", sans-serif;
 font-weight: bold;
 font-size: 1.1rem;
 padding: 12px 80px;
 border: none;
 border-radius: 8px;
 cursor: pointer;
 transition: background-color 0.3s ease;
}

.form-submit input[type="submit"]:hover,
.wpcf7-submit:hover {
 background-color: #f7a800;
}

/* -------------------------------
エラーメッセージ & 送信完了
-------------------------------- */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
 margin-top: 30px;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 0.9rem;
 color: #d27a00;
 text-align: center;
}

.wpcf7-not-valid-tip {
 color: #ff9999;
 font-size: 0.85rem;
 margin-top: 4px;
 display: block;
}

/* ===============================
 スマホ対応
=============================== */
@media screen and (max-width: 767px) {
 .contact-section {
  padding: 60px 0px;
 }

 .contact-title {
  font-size: 2rem;
 }

 .contact-lead {
  font-size: 0.95rem;
  margin-bottom: 40px;
 }

 .form-item {
  flex-direction: column;
  align-items: flex-start;
 }

 .form-item label {
  width: 100%;
  margin-bottom: 5px;
 }

 .form-item input[type="text"],
 .form-item input[type="email"],
 .form-item input[type="tel"],
 .form-item input[type="url"],
 .form-item textarea {
  width: 100%;
 }

 .form-submit input[type="submit"],
 .wpcf7-submit {
  padding: 12px 50px;
  font-size: 0.95rem;
 }
}
/* ===============================
 Q&A セクション
=============================== */
.qa-section {
 background-color: #000;
 color: #fff;
 padding: 80px 0 100px;
 text-align: center;
}

.qa-section .wrap-l {
 max-width: 1000px;
 margin: 0 auto;
}

.qa-title {
 text-align: center;
 font-family: "Montserrat Alternates", sans-serif;
 font-weight: 700;
 font-size: 2.6rem;
 color: #d27a00;
 margin-bottom: 60px;
}

.qa-list {
 display: flex;
 flex-direction: column;
 gap: 40px;
 text-align: left;
}

.qa-item {
 background-color: #111;
 border: 1px solid #333;
 border-radius: 10px;
 padding: 30px;
 transition: background-color 0.3s ease, transform 0.3s ease;
}

.qa-item:hover {
 background-color: #1a1a1a;
 transform: translateY(-3px);
}

.qa-question {
 font-family: "Noto Sans JP", sans-serif;
 font-size: 1.1rem;
 color: #f7a800;
 margin-bottom: 12px;
 position: relative;
 padding-left: 25px;
}

.qa-question::before {
 content: "Q.";
 position: absolute;
 left: 0;
 top: 0;
 color: #f7a800;
 font-family: "Poppins", sans-serif;
 font-weight: bold;
}

.qa-answer {
 font-family: "Noto Sans JP", sans-serif;
 font-size: 1rem;
 color: #ddd;
 line-height: 1.8;
 position: relative;
 padding-left: 25px;
}

.qa-answer::before {
 content: "A.";
 position: absolute;
 left: 0;
 top: 0;
 color: #d27a00;
 font-family: "Poppins", sans-serif;
 font-weight: bold;
}

/* ===============================
 スマホ対応
=============================== */
@media screen and (max-width: 767px) {
 .qa-section {
  padding: 60px 0px;
 }

 .qa-title {
  font-size: 2rem;
  margin-bottom: 40px;
 }

 .qa-item {
  padding: 20px;
 }

 .qa-question {
  font-size: 1rem;
 }

 .qa-answer {
  font-size: 0.95rem;
 }
}
