@charset "utf-8";

html, body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, p, form, table, th, td, a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #F8F5EF;
  color: #4A433D;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.8;
}

#wrapper {
  width: 100%;
  padding: 32px 20px;
}

#main {
  max-width: 1180px;
  margin: 0 auto;
}

form {
  background: #fff;
  border-radius: 22px;
  padding: 42px 72px 34px;
  box-shadow: 0 16px 40px rgba(74, 67, 61, .08);
}

.section__ttl {
  text-align: center;
  color: #4A433D;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: .08em;
  margin-bottom: 28px;
}

.section__ttl::after {
  content: "";
  display: block;
  width: 90px;
  height: 2px;
  background: #CBBBA8;
  margin: 12px auto 0;
}

#txt_explain {
  max-width: 960px;
  margin: 0 auto 24px;
  color: #4A433D;
}

#txt_explain p {
  margin-bottom: 4px;
}

/* 説明文 */
#txt_explain {
  max-width: 720px;
  margin: 0 auto 28px;
  color: #4A433D;
}

.sample_lead {
  border-left: 3px solid #B85C4A;
  padding-left: 18px;
}

.sample_lead p {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 0;
}

.sample-highlight{
  color:#4A433D;
  font-weight:700;
}

.sample_limit {
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 500;
  color: #4A433D;
}

.sample_limit strong {
  color: #B85C4A;
  font-weight: 700;
}

.sample_spec {
  margin-bottom: 34px;
}

.sample_spec p {
  font-size: 14px;
  color: #6F665F;
  line-height: 1.8;
  margin-bottom: 2px;
}

.sample_spec p {
  color: #6F665F;
  font-size: 14px;
  line-height: 1.9;
}

.sample_spec p::before {
  content: "✓";
  color: #B85C4A;
  font-weight: 700;
  margin-right: 6px;
}

.sample_note {
  margin-top: 28px;
}

.sample_note p {
  font-size: 13px;
  color: #8C847D;
}


.red_txt {
  max-width: 960px;
  margin: 0 auto 16px;
  color: #b64b3b;
}

.table {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0 12px;
}

.table th,
.table td {
  border: none;
  vertical-align: middle;
}

.table th {
  width: 240px;
  padding: 0 24px 0 0;
  text-align: left;
  color: #4A433D;
  font-weight: 600;
  white-space: nowrap;
}

.table td {
  width: auto;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: 11px 16px;
  border: 1px solid #D8CEC3;
  border-radius: 9px;
  background: #fff;
  color: #4A433D;
  font-size: 15px;
  box-sizing: border-box;
}

textarea {
  min-height: 96px;
  resize: vertical;
}

select {
  appearance: auto;
}

/* 姓名・郵便番号など短い欄 */
input[size="5"],
input[size="6"],
input[size="7"],
input[size="8"],
input[size="10"] {
  width: 200px;
}

input[size="15"],
input[size="20"] {
  width: 300px;
}

/* メール・住所・電話などは広め */
input[size="30"],
input[size="40"],
input[size="50"],
input[size="60"],
input[size="70"] {
  width: 100%;
}

input::placeholder,
textarea::placeholder {
  color: #B8ADA3;
}

.table input[name="item_address_2"]{
    margin-top: 12px;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #A98F72;
  box-shadow: 0 0 0 3px rgba(169, 143, 114, .18);
}

.button_box {
  text-align: center;
  margin-top: 28px;
}

input[type="submit"] {
  width: 320px;
  height: 54px;
  border: none;
  border-radius: 999px;
  background: #4A433D;
  color: #fff;
  font-weight: 600;
  letter-spacing: .08em;
  cursor: pointer;
  transition: .25s ease;
}

input[type="submit"]:hover {
  background: #A98F72;
}

.back_link {
  max-width: 1180px;
  margin: 18px auto 0;
  text-align: left;
}

.back_link a {
  color: #4A433D;
  text-decoration: underline;
}

/* 必須マークをラベル風に */
.table th {
  position: relative;
}

.table th {
  font-weight: 600;
}

.table th:has(.red),
.table th:has(.red_txt) {
  color: #4A433D;
}

/* 必須マーク */
.table th span.red {
  background: none;
  padding: 0;
  margin-left: 3px;
  color: #B85C4A;
  font-size: 15px;
  font-weight: 700;
  margin-left: 4px;
}

/* フォーカス時をブランドカラー寄りに */
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #4A433D;
  box-shadow: 0 0 0 3px rgba(74, 67, 61, .14);
}

/* 送信ボタンの高級感 */
input[type="submit"] {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(74, 67, 61, .18);
}

input[type="submit"]:hover {
  background: #6B625B;
  transform: translateY(-2px);
}

/* 住所2行目の余白 */
.table input[name="item_address_2"] {
  margin-top: 12px;
}

/* お名前・ふりがな */
input[name="item_name_1"],
input[name="item_name_2"],
input[name="item_kana_1"],
input[name="item_kana_2"] {
  width: 180px !important;
}

/* 郵便番号 */
.table input[name="item_poscode_1"] {
  width: 70px !important;
}

.table input[name="item_poscode_2"] {
  width: 100px !important;
}

/* カラー選択欄は通常の1列表示 */
.table tr:has(select[name="item_sselect02"]),
.table tr:has(select[name="item_sselect03"]),
.table tr:has(select[name="item_sselect04"]),
.table tr:has(select[name="item_sselect05"]) {
  display: table-row;
  width: 100%;
}

.table select[name="item_sselect02"],
.table select[name="item_sselect03"],
.table select[name="item_sselect04"],
.table select[name="item_sselect05"] {
  width: 100%;
}

/* 完了画面 */
.thanks_box {
  background: #fff;
  border-radius: 22px;
  padding: 42px 72px 46px;
  box-shadow: 0 16px 40px rgba(74, 67, 61, .08);
}

.thanks_message {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: #4A433D;
  line-height: 2;
}

.thanks_lead {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
}

.back_button {
  width: 320px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #4A433D;
  color: #fff;
  font-weight: 600;
  letter-spacing: .08em;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(74, 67, 61, .18);
  transition: .25s ease;
}

.back_button:hover {
  background: #6B625B;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  #wrapper {
    padding: 20px 14px;
  }

  form {
    padding: 30px 18px;
    border-radius: 18px;
  }

  .section__ttl {
    font-size: 21px;
  }

  .table,
  .table tbody,
  .table tr,
  .table th,
  .table td {
    display: block;
    width: 100%;
  }

  .table {
    border-spacing: 0;
  }

  .table tr {
    margin-bottom: 16px;
  }

  .table th {
    padding: 0 0 6px;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea,
  select,
  input[size] {
    width: 100%;
  }

  input[type="submit"] {
    width: 100%;
  }
}

/* お名前・ふりがな */
input[name="item_name_1"],
input[name="item_name_2"],
input[name="item_kana_1"],
input[name="item_kana_2"] {
  width: 180px !important;
}

/* 郵便番号 */
input[name="item_poscode_1"]{
    width:70px !important;
}

input[name="item_poscode_2"]{
    width:100px !important;
}

/* 確認画面 */
.confirm-page .table {
  border-spacing: 0;
}

.confirm-page .table th {
  width: 220px;
  padding: 16px 24px 16px 0;
  font-weight: 600;
  color: #4A433D;
  border-bottom: 1px solid #EEE6DD;
}

.confirm-page .table td {
  padding: 16px 0;
  color: #4A433D;
  border-bottom: 1px solid #EEE6DD;
}

.confirm-page .button_box {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.confirm-page input[type="submit"]{
  width: 220px;
  height: 54px;
  border:none;
  border-radius:999px;
  background:#4A433D;
  color:#fff;
  font-weight:600;
}

/* 確認画面ボタンエリア */
.button_box {
  text-align: center;
  margin-top: 40px;
}

/* 送信ボタン */
input[type="button"][value="送信"] {
  width: 220px;
  height: 54px;
  border: none;
  border-radius: 999px;
  background: #4A433D;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .08em;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(74,67,61,.18);
  transition: .25s ease;
}

input[type="button"][value="送信"]:hover {
  background: #6B625B;
  transform: translateY(-2px);
}

/* 戻るボタン */
input[type="button"][value="戻る"] {
  width: 220px;
  height: 54px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #D8CEC3;
  color: #4A433D;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .08em;
  cursor: pointer;
  margin-left: 12px;
  transition: .25s ease;
}

input[type="button"][value="戻る"]:hover {
  background: #F8F5EF;
}

.confirm-page .table th,
.confirm-page .table td {
  padding-top: 13px;
  padding-bottom: 13px;
}

.sample_image {
  margin: 22px auto 24px;
  text-align: center;
}

.sample_image img {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
  margin: 0 auto;
  border-radius: 18px;
}

.sample-color-guide {
  margin: 28px auto 32px;
  padding: 28px 24px;
  background: #F8F5EF;
  border-radius: 22px;
  color: #4A433D;
}

.sample-color-guide__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.sample-color-guide__head h3 {
  margin: 0;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: .06em;
}

.sample-color-guide__head p {
  margin: 0;
  padding: 10px 28px;
  background: #E4007F;
  color: #fff;
  border-radius: 999px;
  font-size: 24px;
  font-weight: 800;
}

.sample-color-guide__shape {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
  margin-bottom: 24px;
  background: #fff;
  border: 1px solid #E8E3DD;
  border-radius: 18px;
}

.sample-color-guide__shape strong {
  font-size: 22px;
  line-height: 1.6;
}

.sample-color-guide__shape-item {
  text-align: center;
}

.sample-color-guide__shape-item img {
  width: 120px;
  max-width: 100%;
  height: auto;
  margin-bottom: 8px;
}

.sample-color-guide__shape-item span {
  display: block;
  font-weight: 700;
}

.sample-color-guide__title {
  margin: 0 0 18px;
  text-align: center;
  font-size: 22px;
  letter-spacing: .12em;
}

.sample-color-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px 18px;
}

.sample-color-item {
  text-align: center;
}

.sample-color-item img {
  display: block;
  width: 100%;
  aspect-ratio: 1.9 / 1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 8px;
}

.sample-color-item span {
  font-size: 13px;
  font-weight: 700;
}

.sample-color-guide__note {
  margin: 22px 0 0;
  text-align: center;
  font-size: 12px;
  color: #6F6258;
}

@media screen and (max-width: 768px) {
  .sample-color-guide {
    padding: 22px 14px;
    border-radius: 18px;
  }

  .sample-color-guide__head {
    display: block;
    text-align: center;
  }

  .sample-color-guide__head h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .sample-color-guide__head p {
    display: inline-block;
    font-size: 20px;
    padding: 8px 24px;
  }

  .sample-color-guide__shape {
    grid-template-columns: 1fr 1fr;
  }

  .sample-color-guide__shape > div:first-child {
    grid-column: 1 / -1;
    text-align: center;
  }

  .sample-color-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 12px;
  }
}

.sample-color-guide{

    background:#F8F5EF;

    border-radius:22px;

    padding:32px;

    margin:40px auto;

    border:1px solid #ECE4DA;

}

.sample-color-guide__head{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    margin-bottom:28px;

}

.sample-color-guide__title{

    display:flex;

    align-items:center;

    gap:12px;

}

.sample-color-guide__title img{

    width:34px;

}

.sample-color-guide__title h3{

    margin:0;

    font-size:30px;

    color:#4A433D;

}

.sample-badge{

    background:#DC948C;

    color:#fff;

    padding:12px 24px;

    border-radius:999px;

    font-weight:700;

    font-size:20px;

}

.sample-color-guide__shape{

    background:#fff;

    border:1px solid #ECE4DA;

    border-radius:18px;

    display:grid;

    grid-template-columns:220px 1fr 1fr;

    gap:24px;

    align-items:center;

    padding:24px;

    margin-bottom:24px;

}

.sample-color-guide__shape-title{

    font-weight:700;

    font-size:22px;

    line-height:1.6;

}

.sample-color-guide__shape-item{

    text-align:center;

}

.sample-color-guide__shape-item img{

    width:120px;

    margin-bottom:10px;

}

.sample-color-guide__shape-item span{

    display:block;

    font-weight:700;

}

.sample-spec{

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;

    margin-bottom:28px;

    color:#6D6257;

    font-size:15px;

}

.sample-color-heading{

    text-align:center;

    font-size:22px;

    margin-bottom:24px;

    color:#4A433D;

}

.sample-color-list{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:22px;

}

.sample-color-item{

    text-align:center;

}

.sample-color-item img{

    width:100%;

    border-radius:14px;

    transition:.25s;

}

.sample-color-item img:hover{

    transform:translateY(-4px);

    box-shadow:0 12px 24px rgba(0,0,0,.12);

}

.sample-color-item span{

    display:block;

    margin-top:10px;

    font-size:13px;

    font-weight:700;

    color:#4A433D;

}

@media(max-width:768px){

.sample-color-guide{

padding:20px;

}

.sample-color-guide__head{

display:block;

text-align:center;

}

.sample-color-guide__title{

justify-content:center;

margin-bottom:16px;

}

.sample-color-guide__title h3{

font-size:24px;

}

.sample-badge{

display:inline-block;

}

.sample-color-guide__shape{

grid-template-columns:1fr 1fr;

}

.sample-color-guide__shape-title{

grid-column:1/-1;

text-align:center;

font-size:18px;

}

.sample-color-list{

grid-template-columns:repeat(2,1fr);

gap:18px 14px;

}

.sample-spec{

display:block;

text-align:center;

}

.sample-spec div{

margin-bottom:8px;

}

}

.sample-color-heading{
    margin-top:30px;
    padding-top:30px;
    border-top:2px dashed #E6D8CC;
}

.sample-badge{
    background:#DC948C;
}

.sample-color-guide__shape{
    grid-template-columns:180px 1fr 1fr 260px;
}

.sample-color-guide__shape-title span{
    color:#DC948C;
    font-size:1.35em;
}

.sample-spec{
    display:block;
    border-left:1px solid #E6D8CC;
    padding-left:28px;
    margin:0;
    color:#4A433D;
    font-size:15px;
    font-weight:700;
    line-height:1.9;
}

.sample-spec div{
    margin:0 0 8px;
}

.sample-spec div:last-child{
    margin-bottom:0;
}

@media(max-width:768px){
    .sample-color-guide__shape{
        grid-template-columns:1fr 1fr;
    }

    .sample-spec{
        grid-column:1/-1;
        border-left:0;
        border-top:1px solid #E6D8CC;
        padding:16px 0 0;
        text-align:center;
    }
}

.sample-color-guide {
  background: #F8F5EF;
  border: 1px solid #E8DDD2;
  border-radius: 20px;
  padding: 28px 24px;
  margin: 30px auto;
}

.sample-color-guide__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.sample-color-guide__title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sample-color-guide__title img {
  width: 32px;
}

.sample-color-guide__title h3 {
  margin: 0;
  font-size: 24px;
  color: #4A433D;
}

.sample-badge {
  background: #DC948C;
  color: #fff;
  border-radius: 999px;
  padding: 10px 24px;
  font-weight: 700;
  font-size: 18px;
  white-space: nowrap;
}

.sample-color-guide__shape {
  background: #fff;
  border: 1px solid #E8DDD2;
  border-radius: 16px;
  padding: 22px;
  display: grid;
  grid-template-columns: 150px 1fr 1fr 240px;
  gap: 22px;
  align-items: center;
}

.sample-color-guide__shape-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  color: #4A433D;
}

.sample-color-guide__shape-title span {
  color: #DC948C;
  font-size: 1.4em;
}

.sample-color-guide__shape-item {
  text-align: center;
}

.sample-color-guide__shape-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.sample-color-guide__shape-item span {
  display: block;
  margin-top: 8px;
  font-weight: 700;
  font-size: 13px;
}

.sample-spec {
  border-left: 1px solid #E8DDD2;
  padding-left: 24px;
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
  color: #4A433D;
}

.sample-color-heading {
  margin: 28px 0 18px;
  font-size: 20px;
  color: #4A433D;
}

.sample-color-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px 18px;
}

.sample-color-item {
  text-align: center;
}

.sample-color-item img {
  width: 100%;
  aspect-ratio: 1.6 / 1;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.sample-color-item span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #4A433D;
}

.sample-color-guide__note {
  margin: 24px 0 0;
  text-align: center;
  font-size: 12px;
  color: #6F6258;
}

@media screen and (max-width: 768px) {
  .sample-color-guide {
    padding: 22px 14px;
  }

  .sample-color-guide__head {
    display: block;
    text-align: center;
  }

  .sample-color-guide__title {
    justify-content: center;
    margin-bottom: 14px;
  }

  .sample-color-guide__title h3 {
    font-size: 22px;
  }

  .sample-badge {
    display: inline-block;
    font-size: 16px;
  }

  .sample-color-guide__shape {
    grid-template-columns: 1fr 1fr;
    gap: 18px 14px;
  }

  .sample-color-guide__shape-title {
    grid-column: 1 / -1;
    text-align: center;
  }

  .sample-spec {
    grid-column: 1 / -1;
    border-left: 0;
    border-top: 1px solid #E8DDD2;
    padding: 16px 0 0;
    text-align: center;
  }

  .sample-color-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 12px;
  }
}