@charset "utf-8";

/* -------------------------
   ベース設定
------------------------- */
html {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: #333;
}

h1 { font-size: 2.6rem; font-weight: 900; }
h2 { font-size: 2.0rem; font-weight: 700; }
h3 { font-size: 1.4rem; font-weight: 700; }

p, li, td, th {
  font-size: 1.2rem;
  line-height: 1.6;
}

.price-note {
  font-size: 1.4rem;
  line-height: 1.6;
}

.small, .event-date {
  font-size: 1.1rem;
}

/* -------------------------
   イベント セクション
------------------------- */
.s01 {
  margin-top: 60px;
  text-align: center;
}

.s01 h2 {
  color: #fff;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(90deg, #71ff2f, #59f961);
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.s01 h2::after {
  content: "";
  display: block;
  width: 60%;
  height: 6px;
  margin: 12px auto 0;
  background: rgba(113, 255, 47, 0.5);
  border-radius: 3px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.event-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0 auto 50px;
  max-width: 1200px;
  text-align: left;
}

.event-list li {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.event-list li:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.event-list li img {
  width: 100%;
  object-fit: cover;
  height: 16.25rem; /* 260px */
  background: #fafafa;
  border-bottom: 2px solid #f0f0f0;
}

.event-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.event-date {
  color: #2ecc71;
  margin-bottom: 10px;
  font-weight: bold;
  text-transform: uppercase;
}

.event-content h3 {
  margin-bottom: 10px;
  color: #222;
  line-height: 1.4;
}

/* -------------------------
   cooperation セクション
------------------------- */
.cooperation-wrap {
  background: #f9f9f9;
  padding: 40px 20px;
}

.cooperation-card {
  max-width: 950px;
  margin: 0 auto;
  background: #fff;
  border: 4px solid #2ecc71;
  border-radius: 20px;
  padding: 2.2rem;
}

.cooperation-card h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #333;
}

.cooperation-card h2 .sp-br { display: none; }

.cooperation-card ul {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 25px;
}

.cooperation-card ul li {
  margin-bottom: 14px;
  font-weight: bold;
  color: #0073e6;
}

.cooperation-card .strong {
  font-weight: bold;
  text-align: center;
  margin-top: 25px;
}

.cooperation-card .price-note {
  font-weight: bold;
  color: #e60033;
  text-align: center;
  margin-top: 15px;
}

.sp { display: none; }

/* -------------------------
   eco セクション
------------------------- */
.eco-section {
  border: 3px solid #4ee37e;
  border-radius: 12px;
  padding: 20px 30px;
  max-width: 800px;
  margin: 60px auto;
  background: #fff;
  box-sizing: border-box;
}

.eco-header {
  text-align: center;
  background: #4ee37e;
  color: #fff;
  font-weight: bold;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.eco-header span {
  display: block;
  font-size: 1.5rem;
  margin-top: 5px;
}

.eco-points {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.eco-point {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.eco-icon img {
  width: 90px;
  height: auto;
  flex-shrink: 0;
}

.eco-text h3 {
  margin: 0 0 5px;
  color: #222;
}

.eco-text p {
  color: #333;
}

/* -------------------------
   レスポンシブ対応
------------------------- */
@media screen and (max-width: 750px) {
  .s01 h2 {
    font-size: 1.6rem;
    padding: 12px 25px;
    margin-bottom: 30px;
  }
  .event-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .event-list li img {
    height: 12.5rem; /* 200px */
  }
}

@media (max-width: 768px) {
  .cooperation-card {
    padding: 20px;
  }
  .cooperation-card h2 {
    font-size: 1.4rem;
    margin-bottom: 18px;
  }
  .sp { display: inline; }
}

@media (max-width: 600px) {
  .eco-section {
    padding: 15px 20px;
  }
  .eco-header {
    font-size: 1.1rem;
    padding: 12px;
  }
  .eco-header span {
    font-size: 1.3rem;
  }
  .eco-point {
    flex-direction: column;
    align-items: center;
  }
  .eco-icon img {
    width: 70px;
    margin-bottom: 10px;
  }
  .eco-text h3 {
    text-align: center;
  }
  .eco-text p {
    text-align: left;
    margin: 0 8px;
  }
}

@media (max-width: 480px) {
  .cooperation-card {
    padding: 15px;
  }
  .cooperation-card h2 {
    font-size: 1.2rem;
  }
  .cooperation-card h2 .sp-br {
    display: inline;
  }
}

/* -------------------------
   会社概要
------------------------- */
.company-box {
  display: flex;
  justify-content: center;
  margin: 50px auto;
  padding-bottom: 10px;
}

.company-box table {
  border-collapse: collapse;
  width: 90%;
  max-width: 900px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  min-width: 600px;
}

.company-box tr {
  border: 2px solid #000;
}

.company-box th {
  width: 30%;
  text-align: center;
  background-color: #59f961;
  color: black;
  padding: 10px 0;
}

.company-box td {
  width: 70%;
  text-align: left;
  background-color: #fff;
  padding: 10px 20px;
}

/* -------------------------
   スマホカード型表示
------------------------- */
@media (max-width: 800px) {
  .company-box {
    padding: 0 15px;
  }

  .company-box table {
    width: 100%;
    max-width: 500px;
    min-width: auto;
    margin: 0 auto;
  }

  .company-box tr,
  .company-box td,
  .company-box th {
    display: block;
    width: 100%;
  }

  .company-box thead {
    display: none;
  }

  .company-box tr {
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    background: #fff;
    border: none;
  }

  .company-box td {
    text-align: left;
    padding: 12px 15px 12px 12px;
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    min-height: 50px;
  }
}

/* 商品・提案内容 s03 */
.title_name_s00_all {
  text-align: center;
  font-size: 2rem;
}

@media only screen and (max-width: 740px) {
  .title_name_s00_all {
    font-size: 1.4rem;
  }
  .sp_small {
    width: 50%;
    margin: auto;
  }
}

/* 相談窓口 s02 */
.s02 {
  margin: 100px 0;
}

.sekou_img {
  margin: 30px 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 740px) {
  .s02 {
    margin: 50px 0;
  }
}

/* バナー全体 */
.banner {
  position: relative;
  background: linear-gradient(135deg, #7be27d, #c6f7c8);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  overflow: hidden;
}
.banner::before {
  content: "";
  position: absolute;
  top: -40px; left: -40px;
  width: 180%; height: 180%;
  background: radial-gradient(circle at top left,rgba(255,255,255,0.5),transparent 70%);
  transform: rotate(-10deg);
}

.banner-inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* 画像パネル */
.image-panel {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  position: relative;
}
.image-panel img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  object-fit: cover;
}

/* 文字パネル */
.text-panel {
  flex: 0 0 auto;
  position: relative;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 28px 32px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  margin-left: -120px;
  transform: rotate(-2deg);
  transition: transform 0.3s ease, margin-left 0.3s ease;
}
.text-panel:hover {
  transform: rotate(0deg);
}

.kicker {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: #333;
}
.lead {
  font-size: 1.3rem;
  line-height: 1.55;
  margin: 0 0 14px;
  color: #444;
}
.cta {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f8a34;
  text-decoration: none;
  margin-top: 6px;
}
.cta::after {
  content: "→";
  margin-left: 6px;
}

/* タブレット表示 (601px〜1000px) */
@media (max-width:1000px) and (min-width:601px){
  .banner { padding: 36px 20px }
  .banner-inner { gap: 16px }
  .text-panel {
    margin-left: -80px;
    max-width: 320px;
    padding: 22px 26px;
    transform: rotate(-1deg);
  }
  .kicker { font-size: 1.25rem }
  .lead { font-size: 1.1rem; line-height: 1.5 }
  .cta { font-size: 1rem }
  .image-panel img { max-width: 360px; }
}

/* スマホ表示 (<600px) */
@media(max-width:600px){
  .banner { padding: 24px 16px }
  .banner-inner { flex-direction: column; align-items: center; }
  .image-panel img { max-width: 80%; max-height: 180px; }
  .text-panel {
    position: relative;
    margin-left: 0;
    margin-top: -20px;
    max-width: 90%;
    padding: 18px 22px;
    transform: none;
  }
  .kicker { font-size: 1.1rem }
  .lead { font-size: 1rem; line-height: 1.5 }
  .cta { font-size: 1rem }
}

/* -------------------------
   バナー全体（banner1）
------------------------- */
.banner1 {
  background: linear-gradient(135deg, #e6f7e9, #f9fff7); /* 柔らかい緑〜クリーム */
  height: 450px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

/* 背景写真 */
.banner1::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("../images/soudan.png") no-repeat center / cover;
  opacity: 0.35; /* 柔らかく */
  pointer-events: none;
  filter: blur(2px); /* 背景を少し柔らかく */
}

/* テキストボックス */
.text-box {
  background: rgba(255, 255, 255, 0.85); /* 柔らかい白 */
  padding: 25px 40px;
  border-radius: 16px;
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12); /* 柔らかめの影 */
}

/* タイトル */
.banner1 h1 {
  margin: 0 0 12px;
  color: #2a2a1f; /* 落ち着いた濃いグレー */
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
}

/* サブコピー */
.banner1 p {
  font-weight: 600;
  color: #4b4b3e; /* 優しい濃グレー */
  font-size: 1.25rem;
  margin: 0;
  line-height: 1.4;
}

/* 商品リスト */
.items {
  display: flex;
  justify-content: center;
  gap: 45px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.item {
  text-align: center;
}

.item img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
  margin-bottom: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item img:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

.item span {
  display: block;
  font-weight: 600;
  font-size: 1.2rem;
  color: #555; /* ナチュラル系グレー */
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* 色分け（アクセント） */
.item.red span { color: #d9534f; }
.item.green span { color: #5cb85c; }
.item.orange span { color: #f0ad4e; }

/* -------------------------
   レスポンシブ
------------------------- */
@media (max-width: 768px) {
  .banner1 { height: auto; padding: 30px 20px; }
  .text-box { padding: 20px 25px; }
  .banner1 h1 { font-size: 1.9rem; }
  .banner1 p { font-size: 1.1rem; }
  .item img { width: 120px; height: 120px; }
  .item span { font-size: 1rem; }
  .items { gap: 25px; }
}

@media (max-width: 480px) {
  .banner1 h1 { font-size: 1.6rem; }
  .banner1 p { font-size: 1rem; }
  .item img { width: 100px; height: 100px; }
  .item span { font-size: 0.95rem; }
  .items { gap: 20px; }
}

/* ==========================
   メインタイトル
   ========================== */
.main-title {
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  font-weight: 600;
  color: #1e3a8a;
  text-align: center;
  margin: 1.6rem auto 2.0rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 0.8rem;
  max-width: 92%;
  background: linear-gradient(90deg, #1e3a8a 0%, #2563eb 50%, #1e3a8a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  animation: fadeInUp 0.9s ease-out forwards;
  animation-delay: 0.1s;
}

/* 下線アクセント */
.main-title::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 90px;
  height: 3px;
  background: linear-gradient(to right, #2563eb, #60a5fa);
  transform: translateX(-50%);
  border-radius: 3px;
  box-shadow: 0 0 6px rgba(37, 99, 235, 0.4);
}

/* ブランド部分 */
.main-title__brand {
  font-weight: 800;
  color: #1d4ed8;
  -webkit-text-fill-color: initial;
  -webkit-background-clip: initial;
}

/* 改行制御用 */
.sp-only {
  display: none;
}

/* --------------------------
   レスポンシブ
-------------------------- */
@media (max-width: 768px) {
  .main-title {
    font-size: 1.55rem;
    padding-bottom: 0.6rem;
    line-height: 1.55;
  }

  .main-title::after {
    width: 70px;
  }

  /* スマホで改行有効化 */
  .sp-only {
    display: inline;
  }

  /* モバイルで強調 */
  .main-title__brand {
    display: block;
    font-size: 1.6rem;
    color: #2563eb;
    font-weight: 800;
    background: none;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 1.4rem;
  }
  .main-title::after {
    width: 60px;
  }
}

/* フェードインアニメーション */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
