@charset "UTF-8";

/* =====================
Profile
===================== */

.profile{
  padding:100px 0;
}
.profile__inner{
  display:grid;
  grid-template-columns:360px 1fr;
  gap:70px;
  align-items:center;
}
.profile__image img{
  border-radius:220px;
  box-shadow:var(--shadow-soft);
}
.section-title--left{
  text-align:left;
}
.profile__content p{
  margin-top:24px;
}

/* =====================
Message
===================== */

.message{
  padding:100px 0;
}
.message__text{
  margin-top:24px;
}

/* =====================
CTA
===================== */

.page-cta{
  padding:100px 0;
}
.page-cta__text{
  margin-bottom:36px;
}

/* =========================
  Trouble
========================= */

/* .trouble-list {
  max-width: 520px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.trouble-list li {
  padding: 18px 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  text-align: center;
} */
.trouble-list {
  max-width: 560px;
  margin: 48px auto;
}
/* .trouble-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
} */
.trouble-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #ece6e1;
}
.trouble-list li:last-child {
  border-bottom: none;
}
.trouble-list img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.trouble-list span {
  line-height: 1.8;
}

/* =========================
  Service Detail
========================= */

.service-detail {
  padding: 40px 0;
  border-bottom: 1px solid var(--color-border);
}
.service-detail:first-of-type {
  padding-top: 0;
}
.service-detail:last-of-type {
  border-bottom: none;
}
.service-detail h3 {
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--color-heading);
  text-align: center;
}
.service-detail p {
  margin-top: 16px;
  line-height: 2;
}
.coming-soon {
  display: inline-block;
  margin-bottom: 16px;
  padding: 4px 12px;
  background: var(--color-lavender-light);
  border-radius: 999px;
  font-size: 13px;
}

/* =========================
  Flow
========================= */

.flow {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.flow-item {
  min-width: 120px;
  padding: 18px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
}

/* =========================
  Price
========================= */

.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table th,
.price-table td {
  padding: 18px;
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}
.price-table th {
  background: var(--color-white);
}
.price-note {
  margin-top: 24px;
  text-align: center;
}

/* =========================
  Works
========================= */

.works-list {
  width: 50%;
  margin: 0 auto;
}
.works-item {
  text-align: center;
}
.works-item img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  display: block;
  box-shadow: var(--shadow-soft);
}
.works-item figcaption {
  margin-top: 8px;
  color: var(--color-text-light);
}
.works-item--portrait img {
  width: 78%;
  margin: 0 auto;
}

/* =========================
  Contact
========================= */

.required {
  color: darkred;
  font-size: 16px;
  margin-left: 4px;
}
.input-text, .input-textarea {
    border: 1px solid #9B9995;
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.6;
    font-family: var(--font-body);
}
.contact-form {
    text-align: left;
}
.contact-form a {
    text-decoration: underline;
    transition: opacity 0.3s ease;
}
.contact-form a:hover {
    opacity: 0.7;
}
.wpcf7-submit {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  cursor: pointer;
}

.wpcf7-submit:focus-visible {
  outline: 2px solid #8f7ba8;
  outline-offset: 3px;
}


/* =========================
  Privacy Policy
========================= */

.privacy-policy__lead {
  margin: 0 0 64px;
  line-height: 2;
}
.privacy-policy__item {
  margin-top: 56px;
}
.privacy-policy__item:first-of-type {
  margin-top: 0;
}
.privacy-policy__item h2 {
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
}
.privacy-policy__item p {
  margin: 0;
  line-height: 2;
}
.privacy-policy__item p + p {
  margin-top: 16px;
}
.privacy-policy__item ul {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-left: 1.4em;
}
.privacy-policy__item li {
  list-style: disc;
  line-height: 1.8;
}
.privacy-policy__button {
  margin-top: 32px;
  text-align: center;
}
.privacy-policy__date {
  margin-top: 72px;
  color: var(--color-muted);
  font-size: 14px;
  text-align: right;
}

@media (max-width: 640px) {
  .privacy-policy__lead {
    margin-bottom: 48px;
  }
  .privacy-policy__item {
    margin-top: 44px;
  }
  .privacy-policy__item h2 {
    font-size: 18px;
  }
  .privacy-policy__date {
    margin-top: 56px;
    text-align: left;
  }
}


/* =====================
SP
===================== */

@media(max-width:768px){

.profile{
padding:70px 0;
}
.profile__inner{
grid-template-columns:1fr;
gap:40px;
}
.profile__image{
max-width:300px;
margin:0 auto;
}
.section-title--left{
text-align:center;
}
.profile__content{
text-align:center;
}
.flow{
    flex-direction:column;
  }
  .flow span{
    transform:rotate(90deg);
  }
  .works-list{
    width: 65%;
  }
.form-row--submit {
  text-align: center;
}
}