@charset "UTF-8";

/* 全体 */
body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  color: #333;
  line-height: 1.8;
}
a {
    text-decoration: none;
}
.center{
  text-align: center;
}
.en__txt,.heading_h2{
  margin: 0;
}
/* ヒーロー */
/* ヒーロー改良 */
.hero {
  background: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836") no-repeat center/cover;
  color: #fff;
  text-align: center;
  padding: 160px 0px;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4); /* オーバーレイ */
}
.hero-inner {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}
.sp{
  display: none;
}
/* スマホ対応 */
@media (max-width: 560px) {
.hero h1 {
  font-size: 34px;
}
.sp{
  display:block;
}
}

.hero p {
  font-size: 20px;
  letter-spacing: 2px;
}
/* サービスにアイコン追加 */
.service-item h3::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 8px;
  color: #e67e22;
}
/* セクション見出し共通 */
section h2 {
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}
section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #e67e22;
  margin: 15px auto 0;
  border-radius: 2px;
}
/* リストのアイコン化 */
.problems ul li::before,
.target ul li::before,
.future ul li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  color: #e67e22;
}
.problems ul li::before { content: "\f071"; } /* ! */
.target ul li::before { content: "\f0a4"; }   /* ➡ */
.future ul li::before { content: "\f058"; }   /* ✔ */

/* サービスカード */
.service-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 25px;
  text-align: left;
  transition: all 0.3s ease;
}
.service-item:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transform: translateY(-5px);
}
.service-item h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #e67e22;
}
.service-item h3::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 8px;
}
.service-item:nth-child(1) h3::before { content: "\f5d1"; } /* 食器 */
.service-item:nth-child(2) h3::before { content: "\f07a"; } /* カート */
.service-item:nth-child(3) h3::before {
  content: "\f16d";
  font-family: "Font Awesome 5 Brands"; /* ← brands に変更 */
  font-weight: 400; /* brands は400 */
}
.service-item:nth-child(4) h3::before { content: "\f121"; } /* コード */

/* 実践サイクル step */
.step {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  transition: all 0.3s ease;
}
.step:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transform: translateY(-5px);
}
.step h3 {
  font-size: 18px;
  color: #e67e22;
  margin-bottom: 12px;
}


/* 強みセクション */
.strength {
  padding: 80px 10%;
  background: #fff;
}
@media (max-width: 650px) {
.strength {
  padding: 80px 6%;
}
}
.strength.alt {
  background: #f7f7f7;
}
.strength-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}
.strength-image img {
  max-width: 100%;
  border-radius: 8px;
}
.strength-text {
  flex: 1;
}
.strength-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
}
.strength-text p {
  font-size: 16px;
}
@media (max-width: 650px) {
.strength-text h2{
  font-size: 26px;
}
  .strength.second .strength-inner {
    flex-direction: column;
  }
  .strength.second .strength-image {
    order: -1;
  }
  .strength.second .strength-image img {
    width: 100%;
    height: auto;
  }
}
/* フッター */
.footer {
  text-align: center;
  padding: 20px;
  background: #333;
  color: #fff;
}

.en__txt {
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25rem;
    letter-spacing: 0.1rem;
}
/* セクション共通 */
section {
  padding: 80px 10%;
}
section h2 {
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}
section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #e67e22;
  margin: 15px auto 0;
  border-radius: 2px;
}
@media (max-width: 650px) {
section h2 {
  font-size: 26px;
}
}
/* 悩みリスト */
.problems ul,
.target ul,
.future ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px;
  max-width: 700px;
  text-align: left;
}
.problems ul li,
.target ul li,
.future ul li {
  background: #f9f9f9;
  margin: 10px 0;
  padding: 12px 18px;
  border-left: 4px solid #e67e22;
  border-radius: 4px;
  font-size: 16px;
}

/* サービス一覧 */
.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.service-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 25px;
  text-align: left;
  transition: all 0.3s ease;
}
.service-item:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.service-item h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #e67e22;
}

/* future セクション */
.future ul li {
  background: #eef9f3;
  border-left: 4px solid #27ae60;
}

/* closing セクション */
.strength.closing {
  background: #333;
  color: #fff;
  padding: 100px 10%;
}
.strength.closing h2::after {
  background: #fff;
}
.strength.closing p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
}
.method {
  padding: 80px 10%;
  background: #f9f9f9;
}
@media (max-width: 650px) {
.method {
  padding: 80px 6%;
}
}
.method p {
  max-width: 720px;
  margin: 0 auto 50px;
  font-size: 16px;
  line-height: 1.8;
}
.cycle {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.step {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  transition: all 0.3s ease;
}
.step:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.step h3 {
  font-size: 18px;
  color: #e67e22;
  margin-bottom: 12px;
}
.step p {
  font-size: 15px;
}
.learning {
  background: #fafafa;
  padding: 100px 10%;
  text-align: center;
}
.learning h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 650px) {
.learning h2 {
  font-size: 26px;
}
}
.learning p {
  font-size: 16px;
  color: #555;
  max-width: 780px;
  margin: 0 auto 60px;
  line-height: 1.8;
}
.learning-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}
.learning-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.03);
}
.learning-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.learning-item h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
  border-left: 4px solid #e0b46a;
  padding-left: 10px;
}
.learning-item p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .learning-list {
    grid-template-columns: 1fr;
  }
}

.marketing-start {
  background: #fafafa;
  padding: 100px 10%;
  text-align: center;
}
@media (max-width: 650px) {
  .marketing-start {
    padding: 100px 6%;
  }
}
.marketing-start h2 {
  font-size: 32px;
  margin-bottom: 25px;
}
.marketing-start p {
  font-size: 16px;
  color: #444;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.9;
}
.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}
.step-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 30px 25px;
  flex: 1 1 260px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.step-num {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: #e0b46a;
  margin-bottom: 8px;
  border-bottom: 2px solid #e0b46a;
  padding-bottom: 4px;
}
.step-card h3 {
  font-size: 18px;
  margin: 12px 0;
  color: #333;
}
.step-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .step-card {
    flex: 1 1 100%;
  }
}

.contact {
  background: #f7f7f7;
  padding: 100px 10%;
}
.contact h2 {
  font-size: 32px;
  margin-bottom: 30px;
}
.contact p {
  font-size: 15.5px;
  line-height: 1.9;
  color: #444;
  max-width: 780px;
  margin: 0 auto 50px;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #e0b46a;
  outline: none;
}
.btn-submit {
  display: inline-block;
  background: #e0b46a;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 14px 40px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-submit:hover {
  background: #d9a956;
  transform: translateY(-2px);
}

/* スマホ対応 */
@media (max-width: 768px) {
  .contact {
    padding: 80px 6%;
  }
  .btn-submit {
    width: 100%;
  }
}
.consultation-flow {
  background: #fff;
  padding: 100px 10%;
  text-align: center;
}
.consultation-flow h2 {
  font-size: 32px;
  margin-bottom: 20px;
}
.consultation-flow p {
  font-size: 15.5px;
  color: #555;
  max-width: 780px;
  margin: 0 auto 60px;
  line-height: 1.8;
}
.flow-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.flow-step {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 30px 25px;
  width: 300px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.flow-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.step-number {
  display: inline-block;
  background: #e0b46a;
  color: #fff;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 12px;
  font-size: 14px;
  letter-spacing: 1px;
}
.flow-step h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}
.flow-step p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .flow-steps {
    flex-direction: column;
    align-items: center;
  }
  .flow-step {
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
  }
}
/* 規約周り */
.terms-wrapper {
  margin: 30px 0 10px;
}
.terms-title {
  font-size: 18px;
  margin: 0 0 10px;
  text-align: left;
}
.terms-box {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px 18px;
  max-height: 200px;          /* スクロール領域 */
  overflow: auto;
  line-height: 1.7;
  color: #444;
  box-shadow: inset 0 1px 0 rgba(0,0,0,0.02);
}
.terms-box p {
  margin: 0 0 14px;
  font-size: 14px;
}
.terms-consent {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 0;
  font-size: 14.5px;
  color: #333;
  user-select: none;
}
.terms-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #e0b46a; /* 対応ブラウザで色反映 */
}
form{
    width: 100%;
    max-width: 800px;
    margin: auto;
}

/* 同意前はボタンを半透明＋クリック不可に */
.contact-form .btn-submit[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

    .wrap{max-width:760px;margin:40px auto;padding:24px;background:#fff;border:1px solid #eee;border-radius:12px}
    p.lead{margin:0 0 20px;color:#555}
    .field{margin:14px 0}
    label{display:block;font-weight:600;margin-bottom:6px}
    input[type="text"],input[type="tel"],input[type="email"],textarea{
      width:100%;padding:12px 14px;border:1px solid #ccc;border-radius:6px;font-size:15px;box-sizing:border-box;background:#fff
    }
    textarea{min-height:140px}
    .req{color:#e74c3c;margin-left:.25em;font-weight:700}
    .terms{border:1px solid #ddd;background:#fff;border-radius:8px;padding:12px;max-height:180px;overflow:auto;font-size:13px;line-height:1.7;margin-top:8px}
    .consent{display:flex;align-items:center;gap:8px;margin-top:10px}
    .action{margin-top:20px;}
    .btn{appearance:none;border:none;border-radius:8px;padding:12px 18px;font-size:15px;cursor:pointer}
    .btn-primary{background:#222;color:#fff;margin: 20px auto; display: block;}
    .note{font-size:13px;color:#666;margin-top:6px;text-align: center;}
    .hp{display:none} /* honeypot */


    /* ===============================
   メンバー紹介セクション
=================================*/
.members {
  background: #fafafa;
  padding: 80px 20px;
  text-align: center;
}
.members h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.members .intro {
  color: #555;
  font-size: 1rem;
  margin-bottom: 50px;
  line-height: 1.8;
}
.member-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1600px;
  margin: 0 auto;
}
.member-item {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px 40px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.member-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.member-photo {
  width: auto;
  height: auto;
  margin: 0 auto 20px;
  overflow: hidden;
}
.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.member-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #222;
}
.member-item p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: left;
}
.btn-profile {
  display: inline-block;
  padding: 10px 24px;
  background: #222;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}
.btn-profile:hover {
  background: #444;
}
@media (max-width: 768px) {
  .members {
    padding: 60px 15px;
  }
  .member-item {
    padding: 25px 15px 35px;
  }
  .member-photo {
    width: 120px;
    height: 120px;
  }
}

/************モーダルウィンドウ*****************/
.member-item:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
/* --- Modal Base --- */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 9999;
}

.modal-content {
  background: #fff;
  max-width: 700px;
  width: 100%;
  border-radius: 16px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: fadeIn .25s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: translateY(0); }
}

.modal-close {
  position: sticky;
  top: 0;
  margin-left: auto;
  display: block;
  width: 36px;
  height: 36px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  text-align: center;
  line-height: 34px;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
}
.modal-inner {
  display: flex;
  gap: 20px;
  padding: 20px;
}

.modal-photo {
  width: 45%;
  border-radius: 12px;
  object-fit: cover;
}

.modal-text {
  flex: 1;
}

.modal-text h2 {
  margin-top: 0;
  font-size: 22px;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

/* === スマホ調整 === */
@media(max-width: 600px) {
  .modal-inner {
    flex-direction: column;
    text-align: center;
  }

  .modal-photo {
    width: 70%;
    margin: 0 auto;
  }

  .modal-close {
    width: 32px;
    height: 32px;
    font-size: 18px;
    line-height: 30px;
  }
}

/* =========================
   実績セクション（ツール紹介）
   ========================= */
.tools {
  padding: 80px 10%;
  background: #f9fafb;
}

.tools-inner {
  max-width: 1100px;
  margin: 0 auto;
}

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

.tools h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #e67e22;
  margin: 16px auto 0;
  border-radius: 2px;
}

.tools-lead {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
  font-size: 15px;
  line-height: 1.8;
}

.tools-lead span {
  font-weight: 600;
}

/* カードレイアウト */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

.tool-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 24px 24px 22px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tool-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.tool-icon i {
  color: #fff;
  font-size: 18px;
}

.tool-card h3 {
  font-size: 20px;
  line-height: 1.5;
  margin: 0;
}

.tool-card h3 span {
  display: block;
  font-size: 13px;
  color: #6b7280;
  margin-top: 4px;
}

.tool-desc {
  font-size: 14px;
  line-height: 1.9;
  margin: 0;
  color: #4b5563;
}

.tool-desc strong {
  font-weight: 600;
}

/* 箇条書きポイント */
.tool-points {
  list-style: none;
  padding: 0;
  margin: 4px 0 10px;
  font-size: 14px;
}

.tool-points li {
  position: relative;
  padding-left: 18px;
  margin: 4px 0;
  line-height: 1.7;
}

.tool-points li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0.1em;
  font-size: 9px;
  color: #e67e22;
}

/* タグ・メモ部分 */
.tool-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.tool-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  background: #fef3c7;
  color: #92400e;
}

.tool-tag-green {
  background: #dcfce7;
  color: #166534;
}

.tool-note {
  font-size: 11px;
  color: #6b7280;
}

/* 下部：メッセージ＋疑似スクリーン */
.tools-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.tools-note p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.9;
}

.tools-small {
  font-size: 12px;
  color: #6b7280;
}

/* 擬似スクリーンのダミー */
.tools-screen {
  justify-self: center;
  width: 100%;
  max-width: 560px;
}
.tools-screen img{
  display: block;
  width: 100%;
}
.tools-screen-dummy {
  background: #111827;
  border-radius: 18px;
  padding: 14px 16px 16px;
  color: #e5e7eb;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.45);
}

.tools-screen-title {
  font-size: 12px;
  opacity: 0.85;
}

.tools-screen-row {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f97316, #facc15);
  opacity: 0.9;
  margin-top: 10px;
}

/* SP対応 */
@media (max-width: 900px) {
  .tools {
    padding: 60px 6%;
  }

  .tools-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .tool-card {
    padding: 20px 18px 18px;
  }

  .tools-bottom {
    grid-template-columns: minmax(0, 1fr);
  }

  .tools-screen {
    max-width: 320px;
  }
}

@media (max-width: 599px) {
  .tools h2 {
    font-size: 24px;
  }

  .tools-lead {
    font-size: 14px;
  }

  .tool-card h3 {
    font-size: 18px;
  }

  .tool-desc,
  .tool-points li {
    font-size: 13px;
  }
}

