@charset "UTF-8";

/* ===============================
   BASE
=============================== */

.seo-h3 {
position:absolute;
width:1px;
height:1px;
overflow:hidden;
clip:rect(1px,1px,1px,1px);
}

/* ===============================
   共通
=============================== */

.main-contents {
  position: relative;
  z-index: 2;
}

p {
  font-size: 1.2vw;
  line-height: 2;
}
a {
    letter-spacing: .2vw;
    color: #fff;
}
/* ===============================
   HERO（h1強化）
=============================== */

.title-h1 {
  width: 90vw;
  margin: 3vw auto 1vw;
  font-size: 2.2vw;
  text-align: center;
  letter-spacing: .5vw;
  font-weight: 300;
}

/* ===============================
   見出し（最重要）
=============================== */
.title-h2 br {
  display: none;
}
.title-h2 {
  width: 80vw;
  margin: 3vw auto 3vw;
  font-size: 2vw;
  text-align: center;
  letter-spacing: .4vw;
  font-weight: 400;
  position: relative;
}

.title-h2::after {
  content: "";
  display: block;
  width: 6vw;
  height: 0.2vw;
  background: #4aa289;
  margin: .2vw auto 0;
  border-radius: 1vw;
}

/* ===============================
   CONCEPT
=============================== */

.concept {
  width: 80vw;
  margin: 3vw auto 12vw;
  padding: 5vw;
  border-radius: 2vw;

  background: linear-gradient(
    180deg,
    #1c1c1c,
    #161616
  );

  box-shadow: 0 2vw 4vw rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.05);
}

.concept h2 {
  font-size: 2vw;
  margin-bottom: 2vw;
  letter-spacing: .4vw;
}

.concept p {
  font-size: 1.2vw;
}

/* ===============================
   REASON（カード）
=============================== */

.reason {
  width: 85vw;
  margin: 0 auto 12vw;
}

.reason-list {
  display: flex;
  justify-content: center;
  gap: 2.5vw;
}

.reason-item {
  flex: 1;           /* ←これに変更 */
  min-width: 0;      /* ←超重要（崩れ防止） */
  padding: 3vw;
  border-radius: 2vw;

  background: linear-gradient(135deg, #668278, #737c79);
  box-shadow: 0 1vw 2vw rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);

  transition: transform .3s ease;
}
.reason-list li {
    list-style: none;
}



.reason-item:nth-child(2){
  background: linear-gradient(135deg, #988f9b, #676170);
}
.reason-item:nth-child(3){
  background: linear-gradient(135deg, #887575, #b18a8c);
}

.reason-item:hover {
  transform: translateY(-0.6vw);
}

.reason-item h3 {
  font-size: 1.6vw;
  margin-bottom: 1vw;
    font-weight: 100;
}

.reason-item p {
  font-size: 1.1vw;
}

/* ===============================
   TEXTブロック
=============================== */

.area-content {
  width: 70vw;
  margin: 0 auto 12vw;
  padding: 3vw;
  border-radius: 2vw;

  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

/* ===============================
   導線リンク
=============================== */
/* ===============================
   LINK BLOCK（共通）
=============================== */

.link-block {
  display: flex;
  justify-content: center;
  gap: 2vw;
  width: 80vw;
  margin: 0 auto 12vw;
}

.link-block a {
  flex: 1;
  min-width: 0; /* ←はみ出し防止（共通で入れる） */
  padding: 2vw;
  text-align: center;
  border-radius: 2vw;

  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 1vw 2vw rgba(0,0,0,0.5);

  font-size: 1.2vw;
  color: #fff;
  text-decoration: none;
  transition: .3s;
}

/* ===============================
   エリア内だけ上書き（最小限）
=============================== */

.area-content .link-block {
  width: 100%;
  margin: 4vw auto 0;
  gap: 1.5vw;
}

.area-content .link-block a {
  padding: 1.8vw;
  font-size: 1.1vw;
}

.link-block a:hover {
  transform: translateY(-0.4vw);
}
/* ブログ用：縦並び */
.link-block-column {
  width: 100%; /* ←これ追加 */
  flex-direction: column;
  align-items: center;
}

.link-block-column a {
  width: 100%;
  max-width: 50vw;
}
/* ===============================
   CTA（シンプル版）
=============================== */

.area-cta {
  width: 60vw;
  margin: 4vw auto 2vw; /* ←上余白もここで管理 */
  text-align: center;

  position: relative;
  padding-top: 3vw;
}

.area-cta br:first-child {
  display: none;
}

.area-cta p {
  font-size: 1.2vw;
  line-height: 2;
  color: #424242;
  letter-spacing: 0.1vw;
}

/* CTAの上に線 */
.area-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  height: 1px;
  background: rgba(0,0,0,0.2);
}


/* ===============================
   安心テキスト
=============================== */

.contact-intro {
  width: 60vw;
  margin: 0 auto 4vw;   /* ←中央揃えに修正 */
  text-align: center;

  position: relative;
  padding-bottom: 3vw;
  margin-bottom: 10vw;
}

.contact-intro ul {
  display: flex;
  justify-content: center;
  gap: 2vw;

  padding: 0;
  margin: 0;
  width: 100%;           /* ←ズレ防止 */
}

.contact-intro ul li {
  list-style: disc;
  list-style-position: inside;

  padding: 0;
  margin: 0;

  font-size: 1.05vw;
  color: #373737;
  white-space: nowrap;
}

/* 安心テキストの下に線 */
.contact-intro::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  height: 1px;
  background: rgba(0,0,0,0.2);
}



/* =========================
  CONTACT SECTION
========================= */

.contact-section {
  background: #e0e0e0;
  color: #141414;
  padding: 8vw 5vw 6vw 5vw;
}

.contact-wrapper {
  max-width: 60vw;
  margin: 0 auto;
}

.contact-title {
  font-size: 3vw;
  letter-spacing: 1vw;
     font-family: 'M PLUS 1p', sans-serif;
  font-weight: 600;
  margin-bottom: 3vw;
  text-align: center;
}

/* =========================
  FORM BASE
========================= */

.contact-form {
  width: 100%;
}

/* 共通ラベル（縦並び用） */
.contact-form label {
  display: block;
  margin-bottom: 2vw;
  text-align: left;
  font-size: 1.2vw;
  color: #1d1d1d;
}

/* =========================
  横並び：問い合わせ種別
========================= */

.contact-row {
  display: flex;
  align-items: flex-start; /* 上揃え */
  gap: 1.5vw;
  width: 100%;
  margin-bottom: 1.5vw;
  box-sizing: border-box;
}

.contact-label-horizontal {
  flex: 0 0 180px;
  font-size: 1.2vw;
  color: #eaeaea;
  text-align: right;
  margin-top: 0.6vw; /* selectと視覚的に揃える */
}

/* =========================
  INPUT / TEXTAREA / SELECT
========================= */

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 1.5vw;
  margin-top: 0.5vw;
  background: #cbcbcb;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  color: #252525;
  font-size: 1.1vw;
  box-sizing: border-box;
  outline: none;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

/* 横並びselectだけ margin-topを消す */
.contact-row select {
  margin-top: 0;
}

/* select 矢印カスタム */
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 1.2vw center;
  background-size: 1.2vw;
  padding-right: 3vw;
}

/* =========================
  HOVER / FOCUS
========================= */

.contact-form input:hover,
.contact-form textarea:hover,
.contact-form select:hover,
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  transform: translateY(-3px);
  border-color: #4aa289;
}

/* =========================
  DIVIDER
========================= */

.contact-divider {
  width: 100%;
  height: 1px;
  border: none;
  background: rgba(33, 33, 33, 0.427);
  margin: 1.5vw 0 2.5vw;
  box-sizing: border-box;
}

/* =========================
  SUBMIT BUTTON
========================= */

.contact-form button {
  display: block;
  margin: 3vw auto 0;
  padding: 1vw 3vw;
  background: #4aa289;
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 1.2vw;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-3px);
  background: #369173;
}


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

@media (max-width: 600px){

.title-h1 {
  font-size: 5vw;
  margin-bottom: 2vw;
}
.title-h2 br {
  display: block;
}
.title-h2 {
  font-size: 4vw;
}

.title-h2::after {
  width: 12vw;
  height: 0.5vw;
}

p {
  font-size: 3vw;
}

.concept {
  padding: 6vw;
}

.concept h2 {
  font-size: 5vw;
}

.concept p {
  font-size: 3vw;
}

  .reason {
    width: 90vw;
  }
.reason-list {
  flex-direction: column;
  align-items: center;   /* ←これが重要 */
  padding: 0;
}

.reason-item {
  width: 80vw;
  max-width: 85vw;       /* ←はみ出し防止 */
  margin: 0 auto;
  padding: 5vw;
}
.reason-item h3 {
  font-size: 4vw;
}

.reason-item p {
  font-size: 3vw;
}

.area-content {
  width: 85vw;
  padding: 5vw;
  font-size: 3vw;
}

.link-block, .area-content .link-block {
  width: 70vw;
  flex-direction: column;
}

.link-block a, .area-content .link-block a {
  font-size: 2.7vw;
  padding: 3vw 0;
}
.link-block-column a {
  width: 80vw;
  max-width: 80vw;
  padding: 3vw 3vw;
}

  .area-cta {
    width: 85vw;
    margin-bottom: 4vw;
  }
.area-cta br:first-child {
  display: block;
}
  .area-cta p {
    font-size: 3vw;
    line-height: 1.8;
  }

  .area-cta::before {
    width: 85vw;
  }
  .contact-intro {
    width: 85vw;
    margin-bottom: 13vw;
  }

  .contact-intro ul {
    flex-direction: column;   /* ←縦並びに変更 */
    align-items: center;      /* ←中央揃え */
    gap: 2vw;
  }

  .contact-intro ul li {
    font-size: 3vw;
    white-space: normal;      /* ←改行OKに戻す */
    text-align: center;
  }
    .contact-intro::after {
    width: 85vw;
  }
   /* SECTION */
  .contact-section {
    width: 97vw;
    padding: 20vw 0vw;
    margin: 0 auto;
  }
.contact-wrapper {
  max-width: 90vw;
  margin: 0 auto;
}
  /* TITLE */
  .contact-title {
    font-size: 6vw;
    letter-spacing: 0.4em;
    margin-bottom: 6vw;
  }

  /* 横並び → 縦 */
  .contact-row {
    flex-direction: column;
    gap: 0vw;
    margin-bottom: 0vw;
  }

  .contact-label-horizontal {
    flex: none;
    text-align: left;
    margin-top: 0;
    font-size: 4vw;
    color: #1d1d1d;
  }

  /* INPUT */
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    padding: 3.5vw;
    font-size: 3vw;
    font-weight: 300;
    letter-spacing: .3vw;
  }

  /* SELECT 矢印 */
  .contact-form select {
    background-position: right 3vw center;
    background-size: 4vw;
    padding-right: 10vw;
  }
.contact-form label {
  font-size: 3.4vw;
  font-weight: 200;
  letter-spacing: .2vw;
}
  /* DIVIDER */
  .contact-divider {
    margin: 5vw 0;
  }

  /* BUTTON */
  .contact-form button {
    width: 100%;
    padding: 4vw;
    font-size: 4.5vw;
    margin-top: 6vw;
    letter-spacing: .2vw;
    font-weight: 100;
  }

}