/* ===== Variables ===== */
:root {
  --ink: #3E332C;
  --ink-soft: #57473E;
  --paper: #FFFFFF;
  --ivory: #FBF8F2;
  --peach: #E8A29A;
  --peach-deep: #DB847A;
  --gold: #B69D6A;
  --gray: #4b4b4b;
}

* { box-sizing: border-box; }
html, body { 
  margin:0;
  padding:0;
}

body {
  font-family: 'Noto Sans JP', system-ui, -apple-system, Segoe UI, Roboto, 'Hiragino Sans', 'Yu Gothic', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.75;
}

h1,h2,h3 {
  font-family: 'Noto Serif JP', serif;
  color: var(--ink);
  margin: 0 0 .6rem;
}
h1 {
  font-size: clamp(28px, 4vw, 40px);
}
h2 {
  font-size: clamp(24px, 3vw, 32px);
}
h3 {
  font-size: clamp(18px, 2vw, 22px);
}
p {
  margin:0 0 1rem;
}

a {
  text-decoration: none;
  color: var(--ink);
}

a:hover {
  color: var(--ink-soft);
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top:0;
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(6px);
  z-index: 10;
  border-bottom: 1px solid #eee;
}

.header-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: .5rem 0;
}

.logo {
  font-weight:700;
  letter-spacing: .02em;
  .logo-image {
    height: 50px;
  }
}

.nav a {
  color: var(--ink);
  text-decoration:none;
  margin-left: 1.2rem;
}

.nav a:hover {
  text-decoration: underline;
}


@media (max-width: 640px) {
  .header-inner {
    display: block;
    padding: .5rem 0;
  }
  .nav {
    display: flex;
    justify-content: space-between;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.hero .hero-inner {
  text-align:center;
  position: relative;
  z-index: 1;
}


.hero::after{
  content:"";
  position:absolute; inset:0;
  pointer-events:none;
  background:
    radial-gradient(60% 50% at 20% 15%, #CFE4EA33 0%, #CFE4EA00 70%),
    radial-gradient(55% 45% at 80% 25%, #EDD1CD33 0%, #EDD1CD00 75%),
    radial-gradient(70% 60% at 30% 85%, #D8E6D633 0%, #D8E6D600 80%);
  z-index:0;
}


a.btn {
  display:inline-block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	position: relative;
	/* width: 120px; */
	margin: .5rem auto;
	padding: .7rem 2rem;
	font-weight: bold;
	border-radius: 10px;
	color: var(--peach);
	border: 3px solid var(--peach);
	box-shadow: 5px 5px var(--peach);
	transition: 0.3s ease-in-out;
}
a.btn:hover {
	box-shadow: none;
	transform: translate(5px, 5px);
	color: var(--peach-deep);
}




/* Watercolor blobs (SVG backgrounds) */
.wc {
  position: absolute;
  opacity: .7;
  filter: blur(.2px);
  pointer-events: none;      /* クリックを邪魔しない */
  z-index: 0;                /* テキストの背面へ */
  aspect-ratio: 4 / 3;       /* ← これで高さが付く */
  width: min(60vw, 800px);   /* 幅に応じて高さも自動計算 */
  opacity: .95;                          /* ← 0.7 → 0.95 にUP */
  filter: saturate(1.2) brightness(1.05);/* 彩度&明るさUP */
  mix-blend-mode: multiply;              /* 背景と馴染ませつつ濃く */
}

.wc-1 {
  left:-5%;
  top:-8%;
  background: url('assets/wc-1.svg') no-repeat center/contain;
}

.wc-2 {
  right:-10%;
  top:-5%;
  background: url('assets/wc-2.svg') no-repeat center/contain;
}

.wc-3 {
  left:-8%;
  bottom:-10%;
  background: url('assets/wc-3.svg') no-repeat center/contain;
}

.wc-4 {
  right:-12%;
  bottom:-15%;
  background: url('assets/wc-4.svg') no-repeat center/contain;
}

.gold-dots {
  position:absolute;
  right:0;
  top:40px;
  width:min(420px, 40vw);
  opacity:.6; z-index: 0;
}

/* About */
.about {
  display: flex;
  justify-content: center;
  grid-template-columns: 160px 1fr;
  gap: 2rem;
  align-items:center;
  padding: 3rem 0;
}

.about-image img {
  width:160px;
  height:160px;
  object-fit:cover;
  border-radius:50%;
  box-shadow: 0 8px 30px rgba(0,0,0,.06);
}

.about-body {
  width: 650px;

  .bold {
    font-size: 1.1rem;
    font-weight: bold;
  }
}

@media (max-width: 640px) {
  .about {
    display: grid;
    grid-template-columns: 1fr;
    text-align:center;
  }

  .about-body {
    width: 100%;
    
    .bold {
    content:"\A";
    white-space:pre;
    }
  }

  .profile {
    margin: 0 auto;
  }
}

/* Service */
.service {
  background: var(--ivory);
  padding: 3rem 0;
}

.service-detail {
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.2rem;
  margin-top:1.6rem;
}

.card {
  background:white;
  border-radius: 14px;
  padding: 1.4rem;
  box-shadow: 0 8px 26px rgba(0,0,0,.04);
  border: 1px solid #F1EEE7;
}

.card .right {
  padding: 10px 0 0 30px;
  width: 90%;
  text-align: right;
  i {
    font-size: 4.2rem;
    color: var(--gray);
  }
}

.card h3 {
  font-size: 1.5rem;
  /* margin-top:1.2rem; */
}

.card-icon {
  width:80px;
  height:80px;
  display:grid;
  place-items:center;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .service-detail {
    grid-template-columns: 1fr;
  }
}

/* Works */
.works {
  padding: 3rem 0;
}

.work-grid {
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 1000px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .work-grid {
    grid-template-columns: 1fr;
  }
}

.work-card {
  background:white;
  border-radius: 14px;
  border: 1px solid #EFE8DA;
  overflow:hidden;
  text-decoration:none;
  color:var(--ink);
  box-shadow:0 8px 24px rgba(0,0,0,.035);
}

.thumb {
  aspect-ratio: 4/3;
  background:#F6F3EC;
}

.work-image {
  width: 100%;
  padding: 1.5rem .6rem 0;
  background-size: cover;
}

.wc-thumb.wc-1 {
  background: url('assets/wc-1.svg') no-repeat center/cover;
}

.wc-thumb.wc-2 {
  background: url('assets/wc-3.svg') no-repeat center/cover;
}

.wc-thumb.wc-3 {
  background: url('assets/wc-2.svg') no-repeat center/cover;
}

.wc-thumb.wc-4 {
  background: url('assets/wc-4.svg') no-repeat center/cover;
}

.work-meta {
  padding: .9rem 1rem 1.1rem;
  .small {
    font-size: 1rem;
  }
}


/* Testimonials */
.testimonials {
  background: var(--ivory);
  padding: 3rem 0;
}

.voice { 
  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
}

@media (max-width: 760px) {
  .voice { grid-template-columns: 1fr;
  }
}

.quote {
  background:white;
  border:1px solid #F0E9DA;
  border-radius: 14px;
  padding: 1.2rem 1.2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.035);
}

.quote blockquote {
  margin:0 0 .6rem;
}


/* Pricing */
.pricing {
  padding: 3rem 0;
}

.price-cards {
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
}

.catch {
  font-size: .8rem;
}

.note {
  font-size: 0.85em;
  color: #666;
  margin-top: 1.5em;
}

@media (max-width: 900px) {
  .price-cards { grid-template-columns: 1fr;
  }
}

.price {
  background:white;
  border:1px solid #EFE7D8;
  border-radius: 16px;
  padding: 1.6rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
}

.yen {
  font-size: 1.6rem;
  font-weight:700;
  color: var(--ink-soft);
}

.price ul {
  margin:.6rem 0 0;
  padding-left: 1.1rem;
}


/* Process */
.process { 
  background: var(--ivory);
  padding: 3rem 0;
}

.steps {
  margin: 1rem 0 0;
  display:grid;
  gap:.6rem;
  counter-reset: step;
}

.steps li::marker {
  color: var(--gold);
}


/* FAQ */
.faq { 
  padding: 3rem 0;
}

details {
  border:1px solid #EFE7D8;
  border-radius: 12px;
  padding: .8rem 1rem;
  margin:.6rem 0;
  background:white;
}

summary {
  cursor: pointer;
}


/* Contact */
.contact {
  padding: 3rem 0 4rem;
  text-align:center;
}

.contact .btn {
  margin-top:.5rem;
}


/* contact-form */
.formWrap {
  width: 700px;
  margin: 20px auto;
  /* color: #555; */
  line-height: 120%;
  /* font-size: 90%; */
  
}
.formWrap p {
  margin: 10px auto;
}

.Form-Item-Label-Required {
  border-radius: 6px;
  /* margin-right: 8px; */
  padding: .2rem 0 .2rem .2rem;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: var(--peach);
  color: var(--paper);
  font-size: 14px;
}

.formTable {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
  
}

.formTable td,
.formTable th {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}

.formTable th {
  width: 30%;
  font-weight: normal;
  background: #efefef;
}

form input[type=text],
form textarea {
  border: 1px solid;
}

form input[type=checkbox] {
  width: 10px;
  height: 10px;
  border: 1px solid;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}

form input[type=submit] {
  width: 200px;
  height: 60px;
  margin-top: 1rem;
  border: 2px solid;
  font-size: 1.5rem;
  color: var(--ink-soft);
  border-radius: 0.75rem;
  letter-spacing: 0.2rem;
  border: 2px solid var(--peach);
  background-color: var(--paper);
}

/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width: 572px) {
  .formWrap {
    width: 95%;
    margin: 0 auto;
  }
  table.formTable th,
table.formTable td {
    width: auto;
    display: block;
  }
  table.formTable th {
    margin-top: 5px;
    border-bottom: 0;
  }
  form input[type=text],
form textarea {
    width: 78%;
    padding: 5px 0 5px 5px;
    font-size: 110%;
    display: inline-block;
  }
  form input[type=submit] {
    display: inline-block;
    height: 40px;
    text-align: center;
    margin-left: 10px;
  }
}



/* Footer */
.site-footer {
  border-top:1px solid #EEE7D9;
  padding: 1.2rem 0;
  text-align:center;
  color:#7a6f63;
}