@charset "UTF-8";
@import url("variables.css");
/****************************************
1.HOME
*****************************************/
div.hero-bg {
  background-color: #FFF9F8;
}

section.hero-img-wrap {
  max-width: 1640px;
  min-width: 1180px;
  height: 352px;
  margin: 0 auto;
  background: url(../img/home/illust.png) no-repeat bottom right, url(../img/home/subtract-top.svg) no-repeat top center, url(../img/home/subtract-btm.svg) no-repeat bottom center;
  background-size: clamp(700px, 60vw, 784px), auto, auto;
}
section.hero-img-wrap div.hero-img {
  width: var(--width-common);
  margin: 0 auto;
}
section.hero-img-wrap div.hero-img h1 {
  font-size: 4.8rem;
  font-weight: 800;
  line-height: 1.25;
  padding-top: 48px;
}
section.hero-img-wrap div.hero-img h2 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 32px;
}

section.category-wrap {
  background-color: var(--cl-yew);
  padding: 24px 0;
}
section.category-wrap ul {
  max-width: 1640px;
  min-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  padding: 0 40px;
}
section.category-wrap ul li {
  margin-left: 32px;
}
section.category-wrap ul li a {
  background-color: #FFF000;
  font-size: 1.8rem;
  color: var(--cl-blk);
  font-weight: 600;
  border-radius: 8px;
  text-align: center;
  padding: 8px 16px;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08), 0 6px 12px rgba(0, 0, 0, 0.08);
}
section.category-wrap ul li:nth-of-type(1) {
  margin: 0 0 0 0;
  font-size: 1.8rem;
  font-size: 400;
}
section.category-wrap ul li.push-right {
  margin-left: auto;
}

section.index ul.index-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0 0 64px 0;
  border-top: 2px solid #000;
}
section.index ul.index-list li {
  width: 25%; /* デフォルト4列 */
  padding: 24px 16px;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  box-sizing: border-box;
  /* 最右列の線を消す */
}
section.index ul.index-list li:nth-child(4n) {
  border-right: none;
}
section.index ul.index-list li {
  /* テキスト系 */
}
section.index ul.index-list li p {
  font-size: 1.6rem;
  margin: 0;
}
section.index ul.index-list li p.tag {
  margin: 16px 0 8px 0;
}
section.index ul.index-list li p.name {
  font-size: 2rem;
  font-weight: 500;
}
section.index ul.index-list li p.border {
  border: 2px solid #000;
  padding: 2px 6px;
  border-radius: 8px;
  display: inline-block;
  text-align: center;
}
section.index ul.index-list li p.caption {
  font-size: 1.8rem;
  background-color: #FFFDE0;
  border: 2px solid #FEF048;
  border-radius: 8px;
  padding: 8px;
  margin-top: 16px;
}
section.index ul.index-list li {
  /* 画像エリア */
}
section.index ul.index-list li div.image {
  background: #fffac5;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  transition: background-color 0.4s ease, opacity 0.3s ease;
}
section.index ul.index-list li div.image img {
  width: auto;
  height: 180px;
  margin: 0 auto;
  display: block;
  transition: transform 0.4s ease, opacity 0.3s ease;
}
section.index ul.index-list li div.image:hover img {
  transform: scale(1.03);
}
section.index ul.index-list li div.image:hover {
  background-color: #F2ECAF;
}
section.index ul.index-list li div.image img:hover {
  opacity: 0.9;
}
section.index ul.index-list li {
  /* infoエリア */
}
section.index ul.index-list li div.info {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}
section.index ul.index-list li div.info > div {
  width: 50%;
  padding: 0;
  box-sizing: border-box;
}
section.index ul.index-list li div.info p.price {
  margin-top: 6px;
  margin-right: 16px;
}
section.index ul.index-list li div.info p.tel {
  background: url(../img/common/ico-tel.svg) no-repeat left 6px;
  padding-left: 36px;
  margin-top: 4px;
  font-size: 2.2rem;
  font-weight: 500;
}
section.index ul.index-list li div.info p.tel a {
  text-decoration: none;
  color: #000;
}
section.index ul.index-list li div.info p.web {
  background: url(../img/common/ico-web.svg) no-repeat 6px 4px;
  padding-left: 36px;
  margin-top: 2px;
}
section.index ul.index-list li div.info p.web a {
  text-decoration: underline;
  color: #000;
}
section.index ul.index-list li div.info p.mail {
  background: url(../img/common/ico-mail.svg) no-repeat 6px 4px;
  padding-left: 36px;
  margin-top: 2px;
}
section.index ul.index-list li div.info p.mail a {
  text-decoration: underline;
  color: #000;
}
section.index ul.index-list li {
  /* コメントエリア */
}
section.index ul.index-list li p.comment {
  font-size: 1.8rem;
  padding: 16px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  margin-top: 16px;
}
section.index ul.index-list li p.comment a {
  color: #000;
}
section.index ul.index-list li p.comment a:hover {
  text-decoration: none;
}
section.index ul.index-list li a.button-common {
  margin: 24px 0 8px 0;
}
section.index ul.index-list li a.button-common:hover {
  text-decoration: none;
}
section.index ul.index-list {
  /* ======== ブレークポイント ======== */
  /* 3列レイアウト */
}
@media (max-width: 1690px) and (min-width: 1181px) {
  section.index ul.index-list li {
    width: 33.3333%;
    border-right: 2px solid #000;
  }
  section.index ul.index-list li:nth-child(4n) {
    border-right: 2px solid #000;
  }
  section.index ul.index-list li:nth-child(3n) {
    border-right: none;
  }
}
section.index ul.index-list {
  /* 2列レイアウト */
}
@media (max-width: 1180px) {
  section.index ul.index-list li {
    width: 50%;
    border-right: 2px solid #000;
  }
  section.index ul.index-list li:nth-child(2n) {
    border-right: none;
  }
}

h1.page-title {
  padding: 24px;
  font-size: 2.4rem;
}
h1.page-title .count {
  font-size: 1.8rem;
  color: #333;
  margin-left: 8px;
}

p.no-result {
  height: 400px;
  padding: 24px;
}

/****************************************
1.BODY
*****************************************/
section.bredcrumb-wrap {
  max-width: 1800px;
  min-width: 1024px;
  margin: 64px auto 0 auto;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  background-color: #fefefe;
}
section.bredcrumb-wrap ul {
  display: flex;
  justify-content: flex-end;
  margin: 0 8%;
  padding: 12px 0;
}
section.bredcrumb-wrap ul li {
  margin-left: 8px;
}
section.bredcrumb-wrap ul li a {
  color: var(--cl-blk);
  text-decoration: none;
}

section.body {
  width: var(--width-min);
  margin: 0 auto;
}
section.body div.body-contents {
  padding-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2分割 */
  gap: 32px; /* カラム間の余白 */
}
section.body div.body-contents p.tag {
  margin: 16px 0 8px 0;
}
section.body div.body-contents p.name {
  font-size: 2rem;
  font-weight: 500;
}
section.body div.body-contents p.border {
  border: 2px solid #000;
  padding: 0 6px;
  border-radius: 8px;
  display: inline-block;
  text-align: center;
}
section.body div.body-contents p.caption {
  font-size: 1.8rem;
  background-color: #FFFDE0;
  border: 2px solid #FEF048;
  border-radius: 8px;
  padding: 8px;
  margin-top: 16px;
}
section.body div.body-contents {
  /* 画像エリア */
}
section.body div.body-contents div.image img {
  width: 100%;
  border-radius: 16px;
}
section.body div.body-contents {
  /* infoエリア */
}
section.body div.body-contents div.info {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}
section.body div.body-contents div.info > div {
  width: 50%;
  padding: 8px 0;
  box-sizing: border-box;
}
section.body div.body-contents div.info p.price {
  margin-top: 6px;
  margin-right: 16px;
}
section.body div.body-contents div.info p.tel {
  background: url(../img/common/ico-tel.svg) no-repeat left 6px;
  padding-left: 36px;
  margin-top: 4px;
  font-size: 2.2rem;
  font-weight: 500;
}
section.body div.body-contents div.info p.tel a {
  color: var(--cl-blk);
  text-decoration: none;
}
section.body div.body-contents div.info p.web {
  background: url(../img/common/ico-web.svg) no-repeat 6px 4px;
  padding-left: 36px;
  margin-top: 2px;
}
section.body div.body-contents div.info p.web a {
  color: var(--cl-blk);
}
section.body div.body-contents div.info p.mail {
  background: url(../img/common/ico-mail.svg) no-repeat 6px 4px;
  padding-left: 36px;
  margin-top: 2px;
}
section.body div.body-contents div.info p.mail a {
  text-decoration: underline;
  color: #000;
}
section.body div.body-contents a.button-common {
  margin: 24px 0 8px 0;
}
section.body div.body-contents a.button-common:hover {
  text-decoration: none;
}
section.body {
  /* コメントエリア */
}
section.body p.comment {
  font-size: 1.8rem;
  padding: 16px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  margin: 16px 0 40px 0;
}
section.body ul.photo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 48px 0 0 0;
}
section.body ul.photo:has(li:nth-child(odd):last-child) li:last-child {
  grid-column: 1/-1;
}
section.body {
  /* テーブル全体を左寄せ */
}
section.body .wp-block-table {
  display: flex;
  justify-content: flex-start;
  margin-left: 0 !important;
  margin-right: auto !important;
  overflow-x: auto; /* スマホで横スクロール保険 */
  padding: 24px 0;
}
section.body {
  /* テーブル本体の見た目 */
}
section.body .wp-block-table table {
  width: auto; /* 全体幅を固定しない */
  border-collapse: collapse;
  table-layout: auto; /* 文字量に応じてセル幅を調整 */
  margin: 0; /* デフォルト中央寄せを打ち消し */
}
section.body {
  /* セルの共通スタイル */
}
section.body .wp-block-table td {
  border: 1px solid #000;
  padding: 8px 12px;
  vertical-align: top;
  word-break: break-word;
  white-space: normal;
}
section.body {
  /* 左列（見出しセル）を強調 */
}
section.body .wp-block-table tr td:first-child {
  font-weight: bold;
  white-space: nowrap; /* 折り返し防止 */
}

/****************************************
2.ABOUT
*****************************************/
.about-wrap {
  width: var(--width-common);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 5fr;
  gap: 16px;
  padding: 80px 0;
}

.about-wrap02 {
  grid-template-columns: 4fr 6fr;
}

.about-wrap03 {
  grid-template-columns: 6fr 4fr;
}
.about-wrap03 a:hover {
  text-decoration: none;
}

section.about-01 h1 {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.4;
}
section.about-01 p {
  font-size: 1.8rem;
  line-height: 1.8;
  padding-top: 8px;
}

section.about-02, section.about-03 {
  background-color: #FFFEF6;
}
section.about-02 img, section.about-03 img {
  width: 420px;
  max-width: 100%;
}
section.about-02 h2, section.about-02 h3, section.about-03 h2, section.about-03 h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
}
section.about-02 p, section.about-03 p {
  font-size: 16px;
  line-height: 1.8;
}
section.about-02 p.tag, section.about-03 p.tag {
  color: #fff;
  font-weight: 700;
  background-color: #81CDDA;
  border-radius: 16px;
  padding: 8px 16px;
  margin-bottom: 16px;
  display: inline-block;
}
section.about-02 div.pos02, section.about-03 div.pos02 {
  display: flex;
  justify-content: flex-end;
  align-items: center; /* 縦方向の伸びを防ぐ */
}

section.bg-white {
  background-color: #fff;
}

section.contact-wrap {
  background-color: #FFFEF6;
}
section.contact-wrap div.contact {
  padding: 80px 0;
  width: var(--width-common);
  margin: 0 auto;
}
section.contact-wrap div.contact h4 {
  font-size: 2.4rem;
  font-weight: 800;
}
section.contact-wrap div.contact h4 span {
  font-weight: 400;
}
section.contact-wrap div.contact h4 {
  margin-bottom: 24px;
}
section.contact-wrap div.contact p {
  font-size: 28px;
  font-weight: 500;
  padding-left: 64px;
  margin-top: 8px;
}
section.contact-wrap div.contact p.tel {
  background: url(../img/about/tel.svg) no-repeat left center;
}
section.contact-wrap div.contact p.fax {
  background: url(../img/about/fax.svg) no-repeat left center;
}
section.contact-wrap div.contact p.mail {
  background: url(../img/about/mail.svg) no-repeat left 2px;
  padding-bottom: 8px;
}
section.contact-wrap div.contact p.mail a {
  color: var(--cl-blk);
  font-size: 24px;
}

section.terms {
  width: var(--width-min);
  margin: 0 auto;
  padding: 40px 0;
  line-height: 1.8;
  color: #333;
}
section.terms h1 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 8px;
}
section.terms h2 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 16px;
}
section.terms p {
  margin: 0 0 12px 0;
  font-size: 16px;
}
section.terms ul, section.terms ol {
  margin: 0 0 16px 20px;
  padding: 0;
  font-size: 16px;
  list-style: disc;
}
section.terms ul li, section.terms ol li {
  margin-bottom: 6px;
  line-height: 1.7;
}
section.terms {
  /* リンクや問い合わせ情報など */
}
section.terms a {
  color: #0055aa;
  text-decoration: underline;
}
section.terms a:hover {
  text-decoration: none;
}