@charset "UTF-8";
/* SCSSの読み込み */
@import url(all.css);
/*===============================
  カラー変数
=================================*/
/*===============================
  フォント変数
=================================*/
/* font-family */
/* font-weight */
/* 行間削除 */
/*===============================
  Bootstrap icon変数
=================================*/
:root {
  /* カラー */
  --color-text: #4b2308;
  --color-white: #fff;
  --color-red: #921823;
  --color-bg: #faf7f0;
  --color-link: #1b4d72;
  /* font-family */
  --font-family-noto: "Noto Serif JP", serif;
  --font-family-body: "Shippori Mincho B1", serif;
  --font-family-icon: "bootstrap-icons";
  /* font-weight */
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semiBold: 600;
  --font-weight-bold: 700;
  --font-weight-black: 900;
  /* 背景パターン */
  --pattern-bg: url(../img/common/pt-bg.png);
  /* フォントサイズ */
  --font-size-h1: 5.6rem;
  --font-size-h2: 4.8rem;
  --font-size-h3: 4rem;
  --font-size-h4: 2.8rem;
  --font-size-h5: 2.2rem;
  --font-size-h6: 1.8rem;
  --font-size-base: 1.6rem;
  --font-size-sm: 1.4rem;
  --font-size-xs: 1.2rem;
  /* line-height */
  --line-height-h1: 1;
  --line-height-h2: 1.25;
  --line-height-h3: 1.5;
  --line-height-h4: 1.428572;
  --line-height-h5: 1.363637;
  --line-height-h6: 1.5;
  --line-height-base: 1.875;
  --line-height-sm: 1.714286;
  --line-height-xs: 1.6666667;
  /* letter-spacing */
  --letter-spacing-lg: 0.15em;
  --letter-spacing-base: 0.1em;
  --letter-spacing-min: 0.05em;
}
@media screen and (max-width: 767px) {
  :root {
    /* フォントサイズ */
    --font-size-h1: 4rem;
    --font-size-h2: 3rem;
    --font-size-h3: 2.8rem;
    --font-size-h4: 2.5rem;
    --font-size-h5: 2rem;
    /* line-height */
    --line-height-h4: 1.6;
    --line-height-h5: 1.5;
  }
}

/*===============================================
  切り替え用
===============================================*/
html {
  font-size: clamp(8px, 2.2222222222vw, 10px);
}

.sp-none {
  display: none !important;
}

.com-table:not(.com-table--noblok) table,
.com-table:not(.com-table--noblok) table tbody,
.com-table:not(.com-table--noblok) table th,
.com-table:not(.com-table--noblok) table tr,
.com-table:not(.com-table--noblok) table td {
  display: block !important;
  width: 100% !important;
}

/*===============================================
  wrapper
===============================================*/
#wrapper {
  min-width: 320px;
}

/*===============================================
  header
===============================================*/
#header .header__inner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 88%;
  height: 8rem;
  padding-top: 1.5rem;
}
#header .header__logo {
  width: max(56px, 6.3rem);
}

/*===============================================
  footer
===============================================*/
#footer {
  padding: 5rem 0 10rem;
}
#footer .footer__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 88%;
  row-gap: 4rem;
}
#footer .footer__logo {
  width: max(56px, 6.3rem);
}
#footer .footer__other {
  align-items: center;
  row-gap: 3rem;
}
#footer .footer__info {
  row-gap: 2rem;
}
#footer .footer__shop {
  width: 25.6rem;
  max-width: 100%;
  height: 6.4rem;
}

/*フッターナビ
-----------------------------*/
.footer-nav {
  width: 100%;
}
.footer-nav__item {
  border-bottom: solid 1px var(--color-red);
  margin-bottom: 1.5rem;
}
.footer-nav__item:last-of-type {
  margin-bottom: 0;
}
.footer-nav__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: var(--line-height-base);
  padding: 1.125em 1em;
}
.footer-nav__link::after {
  content: "\f135";
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(var(--line-height-base) * 1em);
  font-family: var(--font-family-icon);
  font-weight: var(--font-weight-medium);
  color: #fff;
  letter-spacing: 0;
  line-height: 1;
  background: var(--color-red);
  border-radius: 50%;
  aspect-ratio: 1;
}
.footer-nav__sub-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding-top: 2.4rem;
}
.footer-nav__sub-item {
  border-bottom: solid 1px var(--color-red);
}
.footer-nav__sub-link {
  text-align: center;
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  padding-block: 1.25em;
}

/*コピーライト
-----------------------------*/
.copy {
  padding-top: 4rem;
}

/*===============================================
  fixed固定
===============================================*/
/*ページトップ
-----------------------------*/
#pagetop {
  right: 8px;
  bottom: 8px;
}

/*サイドボタン
-----------------------------*/
#side {
  width: 100%;
  height: 7rem;
  font-size: var(--font-size-h6);
  left: 0;
  bottom: 0;
}

/*===============================================
  visual
===============================================*/
.visual::before {
  width: 50rem;
  right: 0;
}
.visual:has(.visual__main)::before {
  right: inherit;
  left: max(100% - 50rem, 20%);
  bottom: 32%;
}

/*メインビジュアル
-----------------------------*/
.visual__main {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  height: 70rem;
}
.visual__main::before {
  width: 80%;
  height: 32%;
  right: 0;
  bottom: 0;
}
.visual__main::after {
  width: 46.875%;
  max-height: 235px;
  aspect-ratio: 135/112;
  left: 0;
  bottom: 45%;
}
.visual__main-box {
  padding: 6rem min(7.25rem, 12.5%) 2.4rem;
  margin-right: max(50% - 290px, 0%);
  z-index: 3;
}
.visual__main-box::before {
  width: 18rem;
  top: -3rem;
  right: -8rem;
}
.visual__main-box::after {
  width: 30rem;
  left: -12rem;
  bottom: 0;
}
.visual__main-catch {
  text-align: right;
}
.visual__main-catch img {
  width: 10rem;
}
.visual__main-catch::before {
  content: "";
  width: calc(100% - 2rem);
  height: calc(100% - 1rem);
  background: url(../img/visual/mv_deco-lt.png) no-repeat left top/5rem, url(../img/common/deco-helmet.png) no-repeat right bottom/5.6rem;
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  z-index: 2;
}
.visual__main-catch::after {
  content: "";
  width: 9.6rem;
  aspect-ratio: 188/119;
  background: url(../img/common/deco-dool.png) no-repeat left bottom/contain;
  position: absolute;
  left: -2rem;
  bottom: -2.4rem;
  z-index: 2;
}

/*サブビジュアル
-----------------------------*/
.visual__sub::before {
  width: 80%;
  height: 18rem;
}
.visual__sub::after {
  width: 24rem;
  left: -3rem;
  bottom: 13.5rem;
}
.visual__sub-box {
  width: 88%;
  padding-block: 3.6rem;
  row-gap: 1.5rem;
}
.visual__sub-catch {
  font-size: var(--font-size-h2);
  line-height: 4rem;
  letter-spacing: var(--letter-spacing-base);
  white-space: nowrap;
}
.visual__sub--e404 .visual__sub-catch {
  font-size: var(--font-size-h3);
}

/*===============================================
  main#container
===============================================*/
#container {
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-base);
}

/*===============================================
  パンくずリスト
===============================================*/
.breadcrumb {
  padding-top: 0.5em;
}
.breadcrumb__list {
  width: 90%;
}
.breadcrumb__item {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
}
.breadcrumb + .section {
  padding-top: min(100px, 22.2222222222vw);
}

/*===============================================
  main共通
===============================================*/
.section {
  padding-block: 8rem;
}
.section--bottom {
  background-size: 80%, auto;
}
.section--left::after, .section--right::after, .section--lr::after {
  background-size: auto 32rem;
}

.inbox {
  width: 88%;
}

/*ボタン
-----------------------------*/
/*テーブル
-----------------------------*/
.com-table--noblok tr th {
  width: 8em;
}
.com-table:not(.com-table--noblok) tr td {
  padding-top: 0;
}

/*テキストボックス
-----------------------------*/
.com-text .mb {
  margin-bottom: 1em;
}
.com-text br:not(.pc-none) {
  display: none;
}

/*お知らせ
-----------------------------*/
.com-news__item--image .com-news__link {
  grid-template-columns: 12rem 1fr;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  padding-right: 0;
}
.com-news__item--image .com-news__link::after {
  display: none;
}

/*===============================================
  タイトル
===============================================*/
/*大タイトル
-----------------------------*/
/*中タイトル
-----------------------------*/
/*小タイトル
-----------------------------*/
/*===============================================
  共通セクション
===============================================*/
/*お問い合わせ
-----------------------------*/
.com-contact {
  padding-bottom: 0;
}
.com-contact::after {
  height: 50vw;
  margin-top: 6.4rem;
}
.com-contact__text span {
  display: inline-block;
}
.com-contact__items {
  max-width: 60rem;
  padding: 3rem;
  row-gap: 2rem;
  margin-inline: auto;
}
.com-contact__items::before {
  width: 36.6rem;
  left: -6rem;
  bottom: -2.4rem;
}
.com-contact__items::after {
  width: calc(100% + 5.7rem);
  height: calc(100% + 9rem);
  background-size: 8.6rem, 12rem;
  left: -3rem;
  top: -4rem;
}
.com-contact__item:not(.com-contact__item--tel) {
  width: 36rem;
  height: max(60px, 7rem);
  font-size: var(--font-size-h6);
}
.com-contact__item:not(.com-contact__item--tel)::before {
  font-size: var(--font-size-base);
}
.com-contact__item--tel {
  padding-bottom: 1rem;
}
.com-contact__item--line::before {
  width: 30px;
  margin-right: 16px;
}

/*セクション名
-----------------------------*/
/*===============================================
  トップページ
===============================================*/
/*お知らせ
-----------------------------*/
.top-news__btn {
  margin-top: 4rem;
  margin-left: auto;
}

/*百年余りの
歴史を持つ人形工房
-----------------------------*/
.top-about {
  padding-top: 0;
}
.top-about__images {
  width: 100vw;
  margin-left: -6vw;
}
.top-about__image {
  height: 20rem;
  margin-bottom: 6.4rem;
}
.top-about__title {
  row-gap: 2rem;
}
.top-about__btn {
  margin-top: 4rem;
  margin-left: auto;
}

/*節句文化と人形について
-----------------------------*/
.top-culture__title br {
  display: none;
}
.top-culture__btn {
  margin-top: 4rem;
  margin-left: auto;
}
.top-culture__image {
  text-align: right;
  margin-right: -6vw;
  margin-top: 4rem;
}

/*バナーリンクセクション
-----------------------------*/
.top-bnr__link {
  width: 100%;
  height: 24rem;
  outline-offset: -1.1rem;
}
.top-bnr__link::after {
  right: 2.4rem;
  bottom: 2.4rem;
}
.top-bnr__text {
  font-size: var(--font-size-h4);
  line-height: var(--line-height-h4);
  padding: 0.5em 1.5em;
}

/*人形の小話
-----------------------------*/
.top-column::before {
  height: 50%;
  max-height: 32rem;
}
.top-column__title {
  margin-bottom: 3rem;
  margin-bottom: 30px;
  order: 0;
}
.top-column__list {
  padding-top: 5rem;
}
.top-column__item {
  gap: 1.5rem 1rem;
  margin-bottom: 2.4rem;
}
.top-column__item:first-of-type {
  margin-bottom: 3rem;
}
.top-column__item:first-of-type .top-column__image img {
  aspect-ratio: 1.3888888889;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-column__item:first-of-type .top-column__image--none::after {
  border-width: 4rem;
}
.top-column__item:first-of-type .top-column__heading {
  font-size: var(--font-size-h6);
  line-height: 1.38889;
  margin-bottom: calc(1.5rem + (1em - 1lh) / 2);
}
.top-column__image {
  flex-shrink: 0;
  width: 15rem;
}
.top-column__image img {
  aspect-ratio: 1.3888888889;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-column__image--none::after {
  border-width: 1.6rem;
}
.top-column__inner {
  width: 100%;
  gap: 1rem;
}
.top-column__inner::before {
  margin-bottom: 0.5rem;
}
.top-column__heading {
  line-height: 1.375;
  margin-bottom: calc(1rem + (1em - 1lh) / 2);
}
.top-column__btn {
  margin-top: 5rem;
  margin-left: auto;
}

/*===============================================
  吉貞について
===============================================*/
/*伝統と技が息づく『人形工房 吉貞』
-----------------------------*/
/*人形工房 吉貞の特徴
-----------------------------*/
.about-feature__item {
  margin-bottom: 8rem;
}
.about-feature__image {
  margin-top: 4rem;
}

/*人形工房 吉貞でできること
-----------------------------*/
.about-service__item {
  padding-block: 3rem;
  margin-bottom: 2.4rem;
}
.about-service__item:last-of-type {
  margin-bottom: 0;
}
.about-service__body {
  padding-inline: 2.4rem;
}

/*会社情報
-----------------------------*/
.about-company::before {
  height: 50%;
  max-height: 32rem;
}
.about-company__inner::before {
  width: 24rem;
  top: -12rem;
  right: -10rem;
}
.about-company__map {
  height: 29.5rem;
  margin-top: 4rem;
}

/*===============================================
  製品紹介
===============================================*/
/*取扱製品　一覧
-----------------------------*/
.item-list__item {
  margin-bottom: 6.4rem;
}
.item-list__image {
  margin-bottom: 3rem;
}
.item-list__heading .br {
  display: inline-block;
}
.item-list__body .season {
  margin-top: 1em;
}

/*製造のこだわり
-----------------------------*/
.item-commitment__item {
  padding: 2.4rem 0 3rem;
  margin-bottom: 2rem;
}
.item-commitment__image {
  margin-inline: 2.4rem;
  margin-bottom: 3rem;
}
.item-commitment__body {
  padding-inline: 2.4rem;
}

/*パターンオーダーについて
-----------------------------*/
/*佐野人形協会の人形供養について
-----------------------------*/
.item-purification::before {
  height: 50%;
  max-height: 32rem;
}
.item-purification__inner::before {
  width: 24rem;
  top: -12rem;
  right: -10rem;
}
.item-purification__image {
  margin-top: 3rem;
}
.item-purification__heading .br {
  display: inline-block;
}
.item-purification__box {
  padding-top: 6.4rem;
}

/*修理について
-----------------------------*/
.item-repair__image {
  margin-top: 4rem;
}

/*===============================================
  節句文化と人形について
===============================================*/
/*節句文化とは？
-----------------------------*/
/*雛祭りと雛人形について
-----------------------------*/
.culture-hinamatsuri__title {
  row-gap: 2rem;
  padding-top: 2rem;
}
.culture-hinamatsuri__title::before {
  width: 10rem;
}
.culture-hinamatsuri__title > span {
  writing-mode: vertical-rl;
  max-height: auto;
  text-orientation: mixed;
}
.culture-hinamatsuri__title-wrap {
  align-items: stretch;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
.culture-hinamatsuri__image {
  width: calc(100% - 13rem);
}
.culture-hinamatsuri__image img {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.culture-hinamatsuri .inbox {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  row-gap: 8rem;
  padding-top: 8rem;
}
.culture-hinamatsuri .inbox > * {
  width: 100%;
}
.culture-hinamatsuri__cards {
  padding-top: 3rem;
}
.culture-hinamatsuri__card-title {
  align-items: center;
  text-align: center;
}
.culture-hinamatsuri__lead {
  text-align: left;
  font-size: var(--font-size-h6);
  line-height: var(--line-height-h6);
  padding: 3rem 2rem;
  margin-top: 3rem;
}
.culture-hinamatsuri__lead::before {
  width: calc(100% + 10rem);
  height: calc(100% + 10rem);
  background-size: 36rem, 18rem;
  top: -4rem;
}
.culture-hinamatsuri__item {
  margin-bottom: 5.6rem;
}
.culture-hinamatsuri__item-thumb {
  margin-bottom: 3rem;
}

/*端午の節句と五月人形について
-----------------------------*/
.culture-tango__title {
  row-gap: 2rem;
  padding-top: 2rem;
}
.culture-tango__title::before {
  width: 10rem;
}
.culture-tango__title > span {
  writing-mode: vertical-rl;
  max-height: auto;
  text-orientation: mixed;
}
.culture-tango__title-wrap {
  align-items: stretch;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
.culture-tango__image {
  width: calc(100% - 13rem);
}
.culture-tango__image img {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.culture-tango .inbox {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  row-gap: 8rem;
  padding-top: 8rem;
}
.culture-tango .inbox > * {
  width: 100%;
}
.culture-tango__text--bg {
  padding: calc(3rem + (1em - 1lh) / 2) 2.4rem;
}
.culture-tango__item {
  margin-bottom: 5.6rem;
}
.culture-tango__item-thumb {
  margin-bottom: 3rem;
}

/*人形工房 吉貞の想い
-----------------------------*/
.culture-thoughts::before {
  height: 50%;
  max-height: 32rem;
}
.culture-thoughts__inner::before {
  width: 24rem;
  top: -12rem;
  right: -10rem;
}
.culture-thoughts__image {
  text-align: right;
  margin-right: -6vw;
  margin-top: 4rem;
}

/*===============================================
  人形の小話
===============================================*/
/*人形の小話 一覧
-----------------------------*/
.column-archive__item {
  gap: 2rem 2.4rem;
  margin-bottom: 5rem;
}
.column-archive__image {
  flex-shrink: 0;
  width: 15rem;
}
.column-archive__image img {
  aspect-ratio: 1.404494382;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.column-archive__image--none::after {
  border-width: 1.2rem;
}
.column-archive__inner {
  width: 100%;
}
.column-archive__inner::before {
  margin-bottom: 1rem;
}
.column-archive__heading {
  font-size: var(--font-size-h5);
  line-height: var(--line-height-h5);
  margin-bottom: calc(2rem + (1em - 1lh) / 2) !important;
}
.column-archive__tags {
  margin-top: calc(1.6rem + (1em - 1lh) / 2) !important;
}
.column-archive__link {
  margin-top: 2rem;
}

/*人形の小話 詳細
-----------------------------*/
/*==================================================
 ニュース一覧
================================================== */
/*タグリスト
-----------------------------*/
.tag-select {
  margin-bottom: 2.5em;
}
.tag-select__box {
  min-width: 10em;
}
.tag-select__box::after {
  right: 0.75em;
}
.tag-select__dropdown {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  padding: 1em 2.5em 1em 1em;
}

/*==================================================
 ニュース詳細
================================================== */
.news-detail__post {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  margin-bottom: 1em;
}
/*==================================================
 お問い合わせ
================================================== */
.contact-form__table {
  margin-bottom: 2.5em;
}
.contact-form__table tr th .optional-mark,
.contact-form__table tr th .required-mark {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  padding: 0 0.5em;
  margin-top: 0.25em;
}
.contact-form__table tr td select,
.contact-form__table tr td textarea,
.contact-form__table tr td input[type=tel],
.contact-form__table tr td input[type=num],
.contact-form__table tr td input[type=text],
.contact-form__table tr td input[type=email],
.contact-form__table tr td input[type=url] {
  font-size: 1em;
  line-height: 1.5;
  padding: 0.5em 1em;
}
.contact-form .contact-submits-wrap {
  padding-top: 1em;
}
.contact-form .contact-submits-wrap > * {
  width: 32rem;
  max-width: 100%;
  height: 7rem;
  margin: 0 auto 1.25em;
}
.contact-form .contact-submits-wrap > *:last-child {
  margin-bottom: 0;
}

/*==================================================
 お問い合わせ完了
================================================== */
/*===============================================
  プライバシーポリシー
===============================================*/
/*==================================================
 サイトマップ
================================================== */
.sitemap-list__item {
  margin-bottom: 0.75em;
}
.sitemap-list__item:last-of-type {
  margin-bottom: 0;
}
.sitemap-list__link {
  padding: 1em;
}

/*===============================================
  404エラー
===============================================*/