@charset "utf-8";

:root{
  --mint:#dff2ea;
  --mint-weak:#e7f9f3;
  --green:#11b08f;
  --text:#333;
  --max:1120px;
}

html, body{ overflow-x:hidden; }

section{
  max-width:1200px;
  margin:0 auto;
  font-family:"Zen Kaku Gothic New",sans-serif;
  line-height:1.8;
  color:#333;
}

.section-title{ text-align: -webkit-center; margin-top:80px; }
.section-title h2{
  text-align:center;
  font-size:28px;
  font-weight:bold;
  color:#fff;
  background:#00a58c;
  display:inline-block;
  padding:10px 30px;
  border-radius:4px;
  margin-bottom:40px;
}
.welcome{ max-width:100%; height:auto; display:block; margin:0 auto; }

.highlight{ color:#00a58c; font-weight:bold; }
.note{ font-size:14px; color:#666; margin:10px 0; }

/* ページタイトル（ヒーロー） */
.page_ttl_wrap{
  --hero:url("../img/self_back.jpg");
  --tint:rgba(17,176,143,.35);
  position:relative;
  isolation:isolate;
  display:grid;
  place-items:center;
  min-height:clamp(220px,28vw,360px);
  width:100vw; max-width:100vw;
  margin-left:calc(50% - 50vw); margin-right:calc(50% - 50vw);
  background-image:var(--hero);
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
}
.page_ttl_wrap::before{
  content:"";
  position:absolute; inset:0;
  background:var(--tint);
  z-index:-1;
}
.page_ttl{
  margin:0; color:#fff; font-weight:800;
  font-size:clamp(28px,5.2vw,56px);
  letter-spacing:.25em;
  -webkit-text-stroke:1px rgba(6,172,132,.9);
  text-shadow:0 0 17px #fff, 0 0 10px #fff;
}

/* 器 */
.aesthetic{
  max-width: 1120px;
  margin: 70px auto 90px;
  padding: 0 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #333;
  line-height: 1.9;
}

/* 見出しリボン */
.aesthetic__heading{
  width: min(1120px, 92vw);
  margin: 0 auto 46px;
  background: #11b08f;
  color: #fff;
  text-align: center;
  padding: 16px 12px;
  font-weight: 800;
  letter-spacing: .22em;
  font-size: clamp(20px, 2.6vw, 34px);
  position: relative;
  border-radius: 2px;
  /* リボン中央のクローバー（装飾画像） */
  background-image: url("img/ribbon-clover.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 80%;
}
.aesthetic__heading::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-6px;
  height:6px;
  background:#fff;                /* リボン下の白い線 */
  box-shadow: 0 2px 0 rgba(0,0,0,.08);
}
.aesthetic__heading > span{ position: relative; z-index: 1; }

/* 2カラム */
.aesthetic__grid{
  display: grid;
  grid-template-columns: 1.1fr 520px; /* 左テキスト広め／右写真固定 */
  gap: 48px;
  align-items: start;
  margin-top: 50px;
}
.aesthetic__photo img{
  width: 100%;
  height: auto;
  display: block;
}

/* レスポンシブ */
@media (max-width: 1100px){
  .aesthetic__grid{ grid-template-columns: 1fr 460px; gap: 40px; }
}
@media (max-width: 960px){
  .aesthetic__grid{ grid-template-columns: 1fr; gap: 22px; }
  .aesthetic__photo{ order: 2; } /* 画像を右→下へ */
}
@media (max-width: 560px){
  .aesthetic{ margin: 50px auto 70px; }
  .aesthetic__heading{ margin-bottom: 36px; }
}




/* ====== container ====== */
.consult{
  max-width: 1120px;
  margin: 70px auto;
  padding: clamp(28px, 5vw, 56px);
  background: #e6faf4;            /* ミント */
  border-radius: 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #333;
  line-height: 1.9;
}

/* ====== title ====== */
.consult__title{
  margin: 0 0 clamp(28px, 4vw, 42px);
  text-align: center;
  font-weight: 800;
  font-size: clamp(20px, 2.6vw, 32px);
  letter-spacing: .18em;
  color: #12b090;                  /* 緑文字 */
}

/* ====== grid ====== */
.consult__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.6vw, 28px);
}

/* ====== card ====== */
.consult__card{
  background: #fff;
  border: 2px solid #16c1ad;
  border-radius: 18px;
  min-height: 150px;
  display: flex;
  align-items: center;
  padding: clamp(18px, 2.8vw, 28px);
  justify-content: center;
}
.consult__card p{
  margin: 0;
  font-size: clamp(15px, 1.5vw, 17px);
  color: #585858;
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
}

/* チェック（□＋✔） */
.check{
  position: relative;
  display: inline-block;
  width: 20px; height: 20px;
  border: 2px solid #11b08f;
  border-radius: 4px;
  flex: 0 0 auto;
  top: 4px;
}
.check::after{
  content: "";
  position: absolute;
  left: 2px; top: 1px;
  width: 10px; height: 6px;
  border-left: 3px solid #11b08f;
  border-bottom: 3px solid #11b08f;
  transform: rotate(-45deg);
}

/* ====== responsive ====== */
@media (max-width: 992px){
  .consult__grid{ grid-template-columns: repeat(2, 1fr); }
  .consult__card{ min-height: 140px; }
}
@media (max-width: 560px){
  .consult{ margin: 40px auto; padding: 24px; }
  .consult__grid{ grid-template-columns: 1fr; }
  .consult__card{ min-height: 120px; }
}


/* 器 */
.ceramics{
  max-width: 1080px;
  margin: 80px auto;
  padding: 0 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color:#333;
  line-height: 1.9;
}

/* タイトル */
.ceramics__title{
  display:flex; align-items:center; justify-content:center; gap:12px;
  margin: 0 0 22px;
  text-align:center;
}
.ceramics__ic{ width:28px; height:auto; }
.ceramics__title h2{
  margin:0;
  font-weight:800;
  font-size: clamp(22px, 2.8vw, 36px);
  letter-spacing:.12em;
}

/* リード文 */
.ceramics__lead{
  max-width: 900px;
  margin: 0 auto 36px;
  color:#555;
}

/* 2カラム */
.ceramics__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}

/* 各ブロック */
.ceramics__subtitle{
  margin: 0 0 14px;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 700;
  color:#333;
}
.ceramics__figure{ margin:0 0 16px; }
.ceramics__figure img{ width:100%; height:auto; display:block; }
.ceramics__text{ color:#555; }

/* SP */
@media (max-width: 840px){
  .ceramics__grid{ grid-template-columns: 1fr; gap:28px; }
  .ceramics{ margin: 60px auto; }
}


:root{
  --green:#11b08f;
  --mint:#dff2ea;
  --mint-weak:#e7f9f3;
  --text:#333;
  --max:1120px;
}

.material-price{
  max-width: var(--max);
  margin: 60px auto 90px;
  padding: 0 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: var(--text);
  line-height: 1.9;
}

/* 横スクロール用ラッパー */
.mt-wrap{
  width: min(1080px, 92vw);
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* テーブル */
.mt{
  width: 100%;
  min-width: 900px;                  /* SPで横スクロール */
  border: 4px solid var(--green);
  border-collapse: collapse;
  table-layout: fixed;
  border-radius: 8px;
}

/* ヘッダー */
.mt th.mt-head{
  background: var(--mint);
  color: #333;
  font-weight: 700;
  text-align: center;
  padding: 14px 16px;
  font-size: 16px;
  letter-spacing: .06em;
  border-right: 1px solid var(--green);
}
.mt th.mt-head.-left{ width: 160px; }
.mt th.mt-head.-price{ width: 200px; border-right: 0; }

/* データ行 */
.mt th.mt-name{
  background: var(--mint-weak);
  font-weight: 700;
  padding: 16px;
  border-top: 1px solid var(--green);
  border-right: 1px solid var(--green);
}
.mt td{
  padding: 16px 18px;
  border-top: 1px solid var(--green);
  vertical-align: top;
}
.mt .mt-desc{ color:#555; }
.mt .mt-price{
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  border-left: 1px solid var(--green);
  font-weight: 700;
  background-color: #fff8e1;
}

/* 備考 */
.mt-note{
  max-width: min(1080px, 92vw);
  margin: 10px auto 0;
  padding: 0 2px;
  font-size: 13px;
  color: #666;
}

/* レスポンシブ微調整 */
@media (max-width: 720px){
  .mt th.mt-head{ font-size: 15px; padding: 12px 14px; }
  .mt td, .mt th.mt-name{ padding: 14px; font-size: 15px; }
}


/* 器 */
.whiten{
  max-width: 1120px;
  margin: 70px auto 90px;
  padding: 0 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color:#333;
  line-height: 1.9;
}

/* リボン見出し */
.whiten__heading{
  width: min(1120px, 92vw);
  margin: 0 auto 40px;
  background:#11b08f;
  color:#fff;
  text-align:center;
  padding:16px 12px;
  font-weight:800;
  letter-spacing:.22em;
  font-size:clamp(20px, 2.8vw, 36px);
  position:relative;
  border-radius:2px;
  background-image:url("img/ribbon-clover.png"); /* 中央のクローバー装飾 */
  background-repeat:no-repeat;
  background-position:center;
  background-size:auto 80%;
}
.whiten__heading::after{
  content:"";
  position:absolute; left:0; right:0; bottom:-6px;
  height:6px; background:#fff; box-shadow:0 2px 0 rgba(0,0,0,.08);
}
.whiten__heading > span{ position:relative; z-index:1; }

/* リード文 */
.whiten__lead{
  max-width: 900px;
  margin: 80px auto 40px;
  color:#555;
}

/* 小見出し */
.whiten__sub{
  display:flex; align-items:center; justify-content:center; gap:10px;
  font-weight:700; letter-spacing:.12em;
  font-size:clamp(18px, 2.6vw, 28px);
  margin: 0 0 22px;
  color:#2d2d2d;
}
.whiten__sub .ic{ width:28px; height:auto; }

/* 2カラム */
.whiten__grid{
  display:grid;
  grid-template-columns: 1.05fr 1fr; /* 画像やや広め */
  gap: 46px;
  align-items:start;
}
.whiten__photo img{ width:100%; height:auto; display:block; border-radius:4px; }
.whiten__text p{ margin:0 0 12px; color:#555; }

/* 価格ボックス */
.whiten__price{
  display:inline-block;
  margin-top: 18px;
  padding: 12px 18px;
  background: #fff8e1;
  border:2px solid #11b08f;
  color:#2b2b2b;
}

/* レスポンシブ */
@media (max-width: 960px){
  .whiten__grid{ grid-template-columns: 1fr; gap:22px; }
  .whiten__photo{ order:-1; max-width:520px; margin:0 auto; }
  .whiten__price{ display:block; text-align:center; }
}
@media (max-width: 560px){
  .whiten{ margin: 50px auto 70px; }
  .whiten__lead{ margin-bottom: 50px; margin-top: 30px;}
}


/* 器 */
.recommend{
  max-width: 1120px;
  margin: 70px auto 90px;
  padding: 0 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color:#333;
  line-height: 1.9;
}

/* 見出し */
.recommend__title{
  display:flex; align-items:center; justify-content:center; gap:12px;
  margin: 0 0 28px;
  text-align:center;
}
.recommend__icon{ width:28px; height:auto; }
.recommend__title h2{
  margin:0; font-weight:800;
  font-size: clamp(22px, 2.8vw, 28px);
  letter-spacing:.12em; color:#3b3b3b;
}

/* グリッド */
.recommend__grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 3vw, 32px) clamp(24px, 4vw, 46px);
}

/* カード */
.rec-card{
  background:#e6faf4;
  border-radius: 26px;
  padding: clamp(18px, 2.6vw, 28px);
  display:grid;
  grid-template-columns: 88px 1fr;   /* 数字／本文 */
  min-height: 150px;
}

/* 大きな番号 */
.rec-card__num{
  font-weight: 800;
  font-size: clamp(44px, 6vw, 68px);
  line-height: 1;
  color:#4a4a4a;
  text-align: center;
  padding-top: 20px;
}

/* 本文 */
.rec-card__body h3{
  font-size: clamp(16px, 2vw, 20px);
}
.rec-card__body p{
  margin: 0;
  color:#545454;
  font-size: clamp(14px, 1.6vw, 16px);
}

/* レスポンシブ */
@media (max-width: 900px){
  .recommend__grid{ grid-template-columns: 1fr; }
  .rec-card{ grid-template-columns: 72px 1fr; }
}
@media (max-width: 560px){
  .recommend{ margin: 50px auto 70px; }
  .rec-card{ min-height: 130px; }
}

/* ========= container ========= */
.tarclean{
  max-width: 1120px;
  margin: 70px auto 90px;
  padding: 0 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color:#333;
  line-height:1.9;
}

/* ========= ribbon heading ========= */
.tarclean__heading{
  width: min(1120px, 92vw);
  margin: 0 auto 42px;
  background:#11b08f;
  color:#fff;
  text-align:center;
  padding:16px 12px;
  font-weight:800;
  letter-spacing:.22em;
  font-size:clamp(20px, 2.8vw, 36px);
  position:relative;
  border-radius:2px;
  /* 中央のクローバー装飾（白抜き） */
  background-image:url("img/ribbon-clover.png");
  background-repeat:no-repeat;
  background-position:center;
  background-size:auto 80%;
}
.tarclean__heading::after{
  content:"";
  position:absolute; left:0; right:0; bottom:-6px;
  height:6px; background:#fff; box-shadow:0 2px 0 rgba(0,0,0,.08);
}
.tarclean__heading > span{ position:relative; z-index:1; }

/* ========= two-column ========= */
.tarclean__grid{
  display:grid;
  grid-template-columns: 1.05fr 1fr; /* 右写真やや大きめ */
  gap: 48px;
  align-items:start;
  margin-top: 80px;
}
.tarclean__text p{ margin:0 0 16px; color:#505050; }
.tarclean__photo img{ width:100%; height:auto; display:block; }

/* ========= responsive ========= */
@media (max-width: 980px){
  .tarclean__grid{ grid-template-columns: 1fr; gap: 24px; margin-top: 30px;}
  .tarclean__photo{ order: 2; max-width: 640px; margin: 0 auto; }
}
@media (max-width: 560px){
  .tarclean{ margin: 50px auto 70px; }
  .tarclean__heading{ margin-bottom: 32px; }
}
