.works-photo {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 10px;
}

.works-photo-head {
  margin-bottom: 28px;
}

.works-photo-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1f1f1f;
  background: rgba(255, 255, 255, 0.55);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.works-photo-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.works-photo-text {
  font-size: 0.98rem;
  line-height: 1.9;
  color: #1f1f1f;
  max-width: 680px;
}

.works-photo-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 22px;
  align-items: start;
}

.photo-item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
  transition: transform .35s ease, box-shadow .35s ease;
}

.photo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.16);
}

.photo-item img {
  display: block;
  width: 100%;
  height: auto;
}

.photo-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 20px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.68), rgba(0,0,0,0));
  color: #fff;
}

.photo-caption h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.photo-caption p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0;
  opacity: 0.95;
}

.works-photo-sub {
  display: grid;
  gap: 22px;
}

.photo-note {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 22px 20px;
  color: #111;
}

.photo-note h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.photo-note p {
  font-size: 0.92rem;
  line-height: 1.9;
  margin: 0;
}

.photo-mini {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

.photo-mini img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .4s ease;
}

.photo-mini:hover img {
  transform: scale(1.03);
}

@media screen and (max-width: 900px) {
  .works-photo-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 600px) {
  .works-photo {
    margin-top: 10px;
  }

  .works-photo-title {
    font-size: 1.3rem;
  }

  .works-photo-text {
    font-size: 0.94rem;
  }

  .photo-item,
  .photo-note,
  .photo-mini {
    border-radius: 14px;
  }

  .photo-caption {
    padding: 14px 16px 14px;
  }

  .photo-caption h4 {
    font-size: 0.95rem;
  }

  .photo-caption p {
    font-size: 0.82rem;
  }
}


.faq{
  padding:80px 20px;
}

.faq-container{
  text-align: center;
}
.faq h2{
 position: relative;
  display: inline-block;
  padding: 0 45px;
  font-size:32px;
  font-weight:700;
  margin-bottom:50px;
  letter-spacing:0.08em;
}
.faq h2:before, .faq h2:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 44px;
  height: 2px;
  background-color: black;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
.faq h2:before {
  left:0;
}
.faq h2:after {
  right: 0;
}


 /* =========================
   FAQ
========================= */

.faq {
  padding: 90px 20px;
  background: #fff;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}

.faq-container h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.4;
  color: #222;
  letter-spacing: 0.02em;
}

.container7 {
  max-width: 900px;
  margin: 0 auto;
}

.question-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.question-item {
  background: #faf8f2;
  border: 1px solid #ece6d7;
  border-radius: 18px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.question-item:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.question-item.is-open {
  background: #fffdf7;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

/* 質問ボタン */
.faq-q {
  position: relative;
  display: block;
  width: 100%;
  padding: 24px 56px 24px 64px;
  background: transparent;
  border: none;
  text-align: left;
  font: inherit;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.8;
  color: #222;
  cursor: pointer;
  user-select: none;
}

/* 左のQ */
.faq-q::before {
  content: "Q";
  position: absolute;
  top: 24px;
  left: 24px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f0bc2d;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 右の＋ / ー */
.faq-q::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  color: #b68200;
  transition: transform 0.25s ease;
}

.question-item.is-open .faq-q::after {
  content: "−";
}

/* 回答 */
.faq-a {
  display: none;
  padding: 0 24px 24px 64px;
}

.question-item.is-open .faq-a {
  display: block;
}

.faq-a p {
  position: relative;
  margin: 0;
  font-size: 15px;
  line-height: 1.95;
  color: #555;
}

/* 左のA */
.faq-a p::before {
  content: "A";
  position: absolute;
  top: 2px;
  left: -40px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #222;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   スマホ
========================= */

@media (max-width: 768px) {
  .faq {
    padding: 70px 16px;
  }

  .faq-container {
    margin-bottom: 30px;
  }

  .faq-container h2 {
    font-size: 24px;
  }

  .question-list {
    gap: 14px;
  }

  .question-item {
    border-radius: 16px;
  }

  .faq-q {
    padding: 18px 46px 18px 52px;
    font-size: 15px;
    line-height: 1.75;
  }

  .faq-q::before {
    top: 18px;
    left: 16px;
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .faq-q::after {
    right: 16px;
    font-size: 22px;
  }

  .faq-a {
    padding: 0 16px 18px 52px;
  }

  .faq-a p {
    font-size: 14px;
    line-height: 1.9;
  }

  .faq-a p::before {
    left: -36px;
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
}
/* ===============================
   Comparison Section
=================================*/

.comparison h2{
    text-align: left;
  color: #3c3c3c;
  font-size: 1.3rem;
  padding: 10px;
  margin-top: 40px;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
}
.comparison{
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
}

.comparison h2{
  font-size: 2rem;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}

.comparison h4{
  font-size: 1.05rem;
  font-weight: 700;
  color: #444;
  margin-bottom: 14px;
}

.comparison-lead{
  color: #666;
  line-height: 1.9;
  margin-bottom: 32px;
}


/* ===============================
   Table Container
=================================*/

.comparison-table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(255,255,255,0.85);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 
    0 30px 60px rgba(0,0,0,0.08),
    0 10px 20px rgba(0,0,0,0.04);
}


/* ===============================
   Header Row
=================================*/

.comparison-table th{
  text-align: center;
  font-weight: 800;
  padding: 24px 18px;
  font-size: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.9);
}


/* ===============================
   Cells
=================================*/

.comparison-table td{
  padding: 18px 18px;
  line-height: 1.9;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  vertical-align: top;
  font-size: 0.95rem;
}


/* ===============================
   1列目（項目ラベル）
=================================*/

.comparison-table th:first-child,
.comparison-table td:first-child{
  width: 20%;
  background: rgba(0,0,0,0.02);
  font-weight: 800;
  color: #333;
  white-space: nowrap;
}


/* ===============================
   当サービス列（主役）
=================================*/

.comparison-table th.is-service,
.comparison-table td.is-service{
  width: 40%;
  position: relative;
  background: rgba(230,126,34,0.03);
}

/* 左アクセントライン */
.comparison-table th.is-service::before,
.comparison-table td.is-service::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #e67e22;
  opacity: 0.6;
}

/* ヘッダー色 */
.comparison-table th.is-service{
  color: #e67e22;
  font-size: 1.05rem;
}


/* ===============================
   右列
=================================*/

.comparison-table th:nth-child(3),
.comparison-table td:nth-child(3){
  width: 40%;
  color: #555;
}


/* ===============================
   行ホバー（静かに）
=================================*/

.comparison-table tr:hover td{
  background: rgba(0,0,0,0.015);
  transition: 0.2s ease;
}

.comparison-table tr:hover td.is-service{
  background: rgba(230,126,34,0.06);
}


/* ===============================
   最終行（向いている方）
=================================*/

.comparison-table tr:last-child td{
  border-bottom: none;
  padding-top: 26px;
  padding-bottom: 26px;
}

.comparison-table tr:last-child td.is-service{
  background: rgba(230,126,34,0.07);
  font-weight: 700;
}


/* ===============================
   注釈
=================================*/

.comparison small{
  display: block;
  margin-top: 12px;
  color: #777;
  font-size: 0.8rem;
}
.voice{
  max-width:900px;
  margin:80px auto;
}

.voice h2{
  text-align:center;
  margin-bottom:40px;
}

.voice-item{
  background:#fff;
  padding:28px;
  border-radius:12px;
  box-shadow:0 8px 24px rgba(0,0,0,0.06);
  margin-bottom:24px;
}

.voice-text{
  line-height:1.9;
  font-size:15px;
  margin-bottom:12px;
}

.voice-name{
  font-size:13px;
  color:#666;
}
.catchphrase2 {
  text-align: center;
  padding: 100px 20px 40px;
  background-color: #f8f8f8;
}

.catchphrase2 h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.catchphrase2 h4 {
  font-weight: normal;
  color: #555;
  line-height: 1.8;
}

/* ===============================
   Responsive
=================================*/

@media (max-width: 768px){

  .comparison{
    padding: 56px 14px;
  }

  .comparison-table th,
  .comparison-table td{
    padding: 14px 12px;
    font-size: 0.9rem;
  }

  .comparison-table td:first-child{
    width: 28%;
    white-space: normal;
  }
}

