@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;
  }
}

/*===============================================
  切り替え用
===============================================*/
.pc-none {
  display: none !important;
}

a[href^="tel:"] {
  pointer-events: none;
}

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

/*===============================================
  header
===============================================*/
#header {
  font-size: clamp(1.4rem, 1.0810810811vw, 1.6rem);
}
#header .header__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: 1920px;
  min-height: 110px;
  padding: 1.25em 1.875em 1.1875em;
}
#header .header__logo {
  font-size: 1em;
  width: clamp(63px, 4.6875vw, 90px);
  position: absolute;
  top: 1.875em;
  left: clamp(32px, 2.6041666667vw, 50px);
  z-index: 1;
}
#header .header__right {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
  row-gap: 0.9375em;
}
#header .header__other {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1.875em;
       column-gap: 1.875em;
}
#header .header__tel {
  row-gap: 0.625em;
}
#header .header__tel .com-tel-num::before {
  font-size: 1em;
}
#header .header__tel .com-tel-num > span {
  font-size: 1.75em;
}
#header .header__tel .com-replace {
  font-size: 0.75em;
}
#header .header__mail {
  font-size: 1em;
  width: 13.75em;
  height: 3.4375em;
}

/*===============================================
  footer
===============================================*/
#footer {
  padding: 80px 0 50px;
}
#footer .footer__inner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 1080px;
  -moz-column-gap: 90px;
       column-gap: 90px;
}
#footer .footer__other, #footer .footer__info {
  row-gap: 3rem;
}
#footer .footer__shop {
  width: 360px;
  height: 80px;
}

/*フッターナビ
-----------------------------*/
.footer-nav {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  -moz-column-gap: 50px;
       column-gap: 50px;
  margin-left: auto;
  letter-spacing: var(--letter-spacing-base);
  line-height: var(--line-height-base);
}
.footer-nav__list, .footer-nav__sub-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 44px;
}
.footer-nav__item, .footer-nav__sub-item {
  margin-block: calc((1em - 1lh) / 2);
}
.footer-nav__link, .footer-nav__sub-link {
  letter-spacing: var(--letter-spacing-base);
  margin-right: calc(var(--letter-spacing-base) * -1);
}

/*コピーライト
-----------------------------*/
.copy {
  padding-top: clamp(80px, 6.25vw, 100px);
}

/*===============================================
  fixed固定
===============================================*/
/*サイドボタン
-----------------------------*/
#side {
  flex-direction: column;
  width: 60px;
  height: 220px;
  border-radius: 0.8rem 0 0 0.8rem;
  bottom: 30px;
  right: 0;
}
#side > span {
  display: block;
  writing-mode: vertical-rl;
  max-height: auto;
  text-orientation: mixed;
}
@media screen and (max-width: 767px) {
  #side > span {
    writing-mode: horizontal-tb;
    max-height: inherit;
  }
}

/*===============================================
  visual
===============================================*/
.visual::before {
  width: clamp(752px, 58.6979166667vw, 1127px);
  right: 0;
}
.visual:has(.visual__main)::before {
  right: min(50% + 93px, 54.84375%);
}

/*メインビジュアル
-----------------------------*/
.visual__main {
  height: clamp(533px, 41.6145833333vw, 799px);
}
.visual__main::before {
  width: 56.25%;
  max-width: 1080px;
  height: 95.6196%;
  right: max(50% - 960px, 0%);
  bottom: 0;
  z-index: 1;
}
.visual__main::after {
  width: 29.4792%;
  max-width: 566px;
  aspect-ratio: 566/400;
  left: max(50% - 960px, 0%);
  bottom: 0;
  z-index: 1;
}
.visual__main-box {
  width: calc(50% + 5px);
  max-width: 965px;
  padding-top: clamp(116px, 9.0625vw, 174px);
  padding-right: clamp(140px, 10.9375vw, 210px);
  padding-bottom: clamp(76px, 5.9375vw, 114px);
  margin-left: max(50% - 960px, 0%);
}
.visual__main-box::before {
  width: clamp(226px, 17.65625vw, 339px);
  top: 0;
  right: 0;
}
.visual__main-box::after {
  width: clamp(524px, 40.9375vw, 786px);
  left: clamp(-106px, -5.5208333333vw, -71px);
  bottom: 0;
}
.visual__main-catch {
  width: clamp(305px, 23.8020833333vw, 457px);
  margin-left: auto;
}
.visual__main-catch::before {
  content: "";
  width: clamp(409px, 34.0625vw, 654px);
  aspect-ratio: 654/378;
  background: url(../img/visual/mv_deco-lt.png) no-repeat left top/15.7493%, url(../img/common/deco-helmet.png) no-repeat right bottom/18.808%;
  position: absolute;
  top: clamp(52px, 4.0104166667vw, 77px);
  right: 14.301%;
  z-index: 2;
}
.visual__main-catch::after {
  content: "";
  width: clamp(126px, 9.7916666667vw, 188px);
  aspect-ratio: 188/119;
  background: url(../img/common/deco-dool.png) no-repeat left bottom/contain;
  position: absolute;
  left: 12.436%;
  bottom: -2px;
  z-index: 2;
}
.visual__main-catch img {
  width: 100%;
  min-height: 100px;
  aspect-ratio: 457/148;
  position: relative;
  z-index: 5;
}

/*サブビジュアル
-----------------------------*/
.visual__sub::before {
  width: min(50% + 540px, 78.125%);
  height: clamp(235px, 18.2291666667vw, 350px);
}
.visual__sub::after {
  width: clamp(524px, 40.9375vw, 786px);
  left: max(50% - 960px, 0%);
  top: clamp(113px, 8.8020833333vw, 169px);
}
.visual__sub-box {
  width: 56.25%;
  max-width: 1080px;
  padding-block: 4rem;
}
.visual__sub-catch {
  font-size: clamp(3.2rem, 2.5vw, 4.8rem);
  letter-spacing: 0.3em;
  margin-block: calc((1em - 1lh) / 2);
}

/*===============================================
  グローバルナビ
===============================================*/
.gnav {
  letter-spacing: var(--letter-spacing-base);
  line-height: var(--line-height-base);
}
.gnav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-block: calc((1em - 1lh) / 2);
}
.gnav__item {
  margin-right: 2em;
}
.gnav__item:last-of-type {
  margin-right: calc(var(--letter-spacing-base) * -1);
}
.gnav__link {
  display: block;
  position: relative;
  z-index: 0;
}
.gnav__link::after {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--color-red);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: -1;
  opacity: 0;
}
.gnav__link:hover {
  color: var(--color-red);
}
.gnav__link.current::after {
  opacity: 1;
}

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

/*===============================================
  パンくずリスト
===============================================*/
.breadcrumb__item::after {
  margin: 0 1em;
}

/*===============================================
  main共通
===============================================*/
.section {
  padding-block: 100px;
}
.section--bottom {
  background-size: min(960px, 50%), auto;
}
.section--left::after, .section--right::after, .section--lr::after {
  background-size: auto clamp(482px, 37.65625vw, 723px);
}

.inbox {
  width: 1080px;
}

/*ボタン
-----------------------------*/
/*テーブル
-----------------------------*/
.com-table tr th {
  width: 180px;
}
/*テキストボックス
-----------------------------*/
.com-text p {
  margin-right: calc(var(--letter-spacing-base) * -1);
}
.com-text .mb {
  margin-bottom: 1lh;
}

/*お知らせ
-----------------------------*/
/*===============================================
  タイトル
===============================================*/
/*大タイトル
-----------------------------*/
/*中タイトル
-----------------------------*/
/*小タイトル
-----------------------------*/
/*===============================================
  共通セクション
===============================================*/
/*お問い合わせ
-----------------------------*/
.com-contact {
  padding: 80px 0 85px;
}
.com-contact::after {
  width: calc(50% - 60px);
  height: 100%;
  background-position: left clamp(-320px, 50vw - 960px, 0px) center;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 6;
}
.com-contact__inner {
  padding-left: 550px;
}
.com-contact__items {
  padding: 40px;
  row-gap: 20px;
}
.com-contact__items::before {
  left: -202px;
  bottom: -45px;
}
.com-contact__items::after {
  width: calc(100% + 57px);
  height: calc(100% + 110px);
  left: -30px;
  top: -40px;
}
.com-contact__item:not(.com-contact__item--tel) {
  width: 360px;
  height: 60px;
  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: 5px;
}
.com-contact__item--line::before {
  width: 30px;
  margin-right: 16px;
}

/*セクション名
-----------------------------*/
/*===============================================
  トップページ
===============================================*/
/*お知らせ
-----------------------------*/
.top-news__box {
  display: grid;
  grid-template-rows: auto auto 1fr;
  grid-template-columns: auto 750px;
  align-items: flex-start;
  row-gap: 40px;
}
.top-news__box::after {
  content: "";
  display: block;
  width: 182px;
  aspect-ratio: 182/167;
  background: url(../img/index/deco_news.png) no-repeat left bottom/contain;
  padding-top: 15px;
  margin-top: auto;
}
.top-news__title {
  margin-bottom: 0;
}
.top-news__list {
  grid-row: span 3;
}

/*百年余りの
歴史を持つ人形工房
-----------------------------*/
.top-about {
  padding-block: 50px;
}
.top-about__inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  gap: 80px;
  width: calc(100% - 80px);
  max-width: 1280px;
}
.top-about__images {
  width: 100%;
}
.top-about__image {
  height: 364px;
}
.top-about__title {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row-reverse;
  margin-bottom: 0;
}
.top-about__title > span {
  writing-mode: vertical-rl;
  max-height: auto;
  text-orientation: mixed;
}
@media screen and (max-width: 767px) {
  .top-about__title > span {
    writing-mode: horizontal-tb;
    max-height: inherit;
  }
}
.top-about__text {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row-reverse;
  letter-spacing: var(--letter-spacing-lg);
  margin: 0 calc((1em - 1lh) / 2);
}
.top-about__text p {
  writing-mode: vertical-rl;
  max-height: auto;
  text-orientation: mixed;
  margin-right: 0;
  margin-bottom: calc(var(--letter-spacing-lg) * -1);
}
@media screen and (max-width: 767px) {
  .top-about__text p {
    writing-mode: horizontal-tb;
    max-height: inherit;
  }
}
.top-about__text .mb {
  margin-bottom: 0;
  margin-left: 1lh;
}
.top-about__btn {
  flex-direction: column;
}
.top-about__btn > span {
  display: block;
  writing-mode: vertical-rl;
  max-height: auto;
  text-orientation: mixed;
}
@media screen and (max-width: 767px) {
  .top-about__btn > span {
    writing-mode: horizontal-tb;
    max-height: inherit;
  }
}
.top-about__btn::after {
  margin-left: 0;
  margin-top: 3rem;
}

/*節句文化と人形について
-----------------------------*/
.top-culture__inner {
  min-height: 522px;
  padding-right: 620px;
}
.top-culture__btn {
  margin-top: 50px;
}
.top-culture__image {
  position: absolute;
  top: 0;
  right: 0;
}

/*バナーリンクセクション
-----------------------------*/
.top-bnr__links {
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-bnr__link {
  width: 100%;
  height: clamp(320px, 25vw, 420px);
  outline-offset: -11px;
}
.top-bnr__link::after {
  right: clamp(16px, 1.25vw, 24px);
  bottom: clamp(16px, 1.25vw, 24px);
}
.top-bnr__text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.571429em;
  height: 11.785715em;
  font-size: clamp(2.2rem, 1.6666666667vw, 2.8rem);
  line-height: var(--line-height-h4);
}
.top-bnr__text > span {
  display: block;
  margin-bottom: calc(var(--letter-spacing-base) * -1);
  writing-mode: vertical-rl;
  max-height: auto;
  text-orientation: mixed;
}
@media screen and (max-width: 767px) {
  .top-bnr__text > span {
    writing-mode: horizontal-tb;
    max-height: inherit;
  }
}

/*人形の小話
-----------------------------*/
.top-column::before {
  height: 50%;
  max-height: 320px;
}
.top-column .inbox {
  display: grid;
  grid-template-columns: 460px auto;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
}
.top-column__title {
  margin-bottom: 30px;
  order: 0;
}
.top-column__list,
.top-column .com-empty {
  grid-column: span 2;
  order: 2;
}
.top-column__list {
  display: grid;
  grid-template-columns: 1fr 50%;
  gap: 19px 40px;
}
.top-column__item {
  gap: 2rem 0.8rem;
}
.top-column__item:first-of-type {
  grid-row: span 3;
}
.top-column__item:first-of-type .top-column__image img {
  aspect-ratio: 1.404494382;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-column__item:first-of-type .top-column__image--none::after {
  border-width: 40px;
}
.top-column__item:first-of-type .top-column__heading {
  font-size: var(--font-size-h6);
  line-height: 1.38889;
  margin-bottom: calc(2rem + (1em - 1lh) / 2);
}
.top-column__image {
  flex-shrink: 0;
  width: 200px;
}
.top-column__image img {
  aspect-ratio: 1.4027777778;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-column__image--none::after {
  border-width: 16px;
}
.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 {
  order: 1;
}

/*===============================================
  吉貞について
===============================================*/
/*伝統と技が息づく『人形工房 吉貞』
-----------------------------*/
.about-lead {
  min-height: 425px;
}
.about-lead__inner {
  display: grid;
  grid-template-columns: 1fr 50%;
  -moz-column-gap: 50px;
       column-gap: 50px;
  align-items: flex-start;
}
.about-lead__title {
  row-gap: 26px;
  margin-bottom: 0;
}
.about-lead__title .min {
  font-size: var(--font-size-h4);
}

/*人形工房 吉貞の特徴
-----------------------------*/
.about-feature__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  margin-bottom: 40px;
}
.about-feature__item:nth-of-type(2n + 1) {
  flex-direction: row-reverse;
}
.about-feature__inner {
  width: 100%;
}
.about-feature__text p {
  display: inline;
}
.about-feature__image {
  width: 480px;
  flex-shrink: 0;
}

/*人形工房 吉貞でできること
-----------------------------*/
.about-service__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}
.about-service__item {
  padding-block: 20px;
}
.about-service__body {
  padding-inline: 20px;
}
.about-service__body p {
  display: inline;
}

/*会社情報
-----------------------------*/
.about-company::before {
  height: 50%;
  max-height: 320px;
}
.about-company__inner::before {
  width: 339px;
  top: -100px;
  right: -100px;
}
.about-company__map {
  height: 297px;
  margin-top: 50px;
}

/*===============================================
  製品紹介
===============================================*/
/*取扱製品　一覧
-----------------------------*/
.item-list__item {
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: 480px 1fr;
  align-items: flex-start;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.item-list__image {
  grid-row: span 2;
}
.item-list__body p:not(.season) {
  display: inline;
}
.item-list__body .season {
  margin-top: 1lh;
}

/*製造のこだわり
-----------------------------*/
.item-commitment__list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 40px;
}
.item-commitment__item {
  width: 520px;
  padding-block: 30px;
}
.item-commitment__image {
  margin-inline: 20px;
  margin-bottom: 30px;
}
.item-commitment__body {
  padding-inline: 20px;
}
.item-commitment__body p {
  display: inline;
}

/*パターンオーダーについて
-----------------------------*/
.item-order {
  min-height: 395px;
}
.item-order__inner {
  display: grid;
  grid-template-columns: 1fr 50%;
  -moz-column-gap: 50px;
       column-gap: 50px;
  align-items: flex-start;
}
.item-order__title {
  margin-bottom: 0;
}

/*佐野人形協会の人形供養について
-----------------------------*/
.item-purification::before {
  height: 50%;
  max-height: 320px;
}
.item-purification__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row-reverse;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.item-purification__inner::before {
  width: 339px;
  top: -100px;
  right: -100px;
}
.item-purification__image {
  width: 480px;
  flex-shrink: 0;
}
.item-purification__text {
  width: 100%;
}

/*修理について
-----------------------------*/
.item-repair__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.item-repair__image {
  width: 480px;
  flex-shrink: 0;
}
.item-repair__text {
  width: 100%;
}

/*===============================================
  節句文化と人形について
===============================================*/
/*節句文化とは？
-----------------------------*/
.culture-lead__inner {
  display: grid;
  grid-template-columns: 1fr 50%;
  -moz-column-gap: 50px;
       column-gap: 50px;
  align-items: flex-start;
}
.culture-lead__title {
  margin-bottom: 0;
}

/*雛祭りと雛人形について
-----------------------------*/
.culture-hinamatsuri__title {
  max-width: 480px;
}
.culture-hinamatsuri__title::before {
  width: 253px;
}
.culture-hinamatsuri__title-wrap {
  -moz-column-gap: 70px;
       column-gap: 70px;
}
.culture-hinamatsuri__image {
  width: 50%;
}
.culture-hinamatsuri__image img {
  width: 100%;
  max-width: 960px;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: clamp(-273px, 10vw - 401px, -209px) center;
     object-position: clamp(-273px, 10vw - 401px, -209px) center;
}
.culture-hinamatsuri .inbox {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  row-gap: 60px;
  padding-top: 60px;
}
.culture-hinamatsuri .inbox > * {
  width: 100%;
}
.culture-hinamatsuri__box {
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: 1fr 730px;
  align-items: flex-start;
  gap: 30px 50px;
}
.culture-hinamatsuri__heading {
  margin-bottom: 0;
  order: 0;
}
.culture-hinamatsuri__text {
  order: 2;
}
.culture-hinamatsuri__cards {
  grid-row: span 2;
  order: 1;
}
.culture-hinamatsuri__card-title {
  align-items: center;
  flex-direction: row;
}
.culture-hinamatsuri__lead {
  font-size: var(--font-size-h5);
  line-height: var(--line-height-h5);
  padding: 35px 30px;
  margin-top: 20px;
  grid-column: span 2;
  order: 3;
}
.culture-hinamatsuri__lead::before {
  width: calc(100% + 200px);
  height: calc(100% + 140px);
  top: -90px;
}
.culture-hinamatsuri__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  margin-bottom: 40px;
}
.culture-hinamatsuri__item:nth-of-type(2n) {
  flex-direction: row-reverse;
}
.culture-hinamatsuri__item-thumb {
  width: 480px;
  flex-shrink: 0;
}

/*端午の節句と五月人形について
-----------------------------*/
.culture-tango__title {
  max-width: 480px;
}
.culture-tango__title::before {
  width: 242px;
}
.culture-tango__title-wrap {
  -moz-column-gap: 70px;
       column-gap: 70px;
}
.culture-tango__image {
  width: 50%;
}
.culture-tango__image img {
  width: 100%;
  max-width: 960px;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left center;
     object-position: left center;
}
.culture-tango .inbox {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  row-gap: 60px;
  padding-top: 60px;
}
.culture-tango .inbox > * {
  width: 100%;
}
.culture-tango__box {
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: 1fr 730px;
  align-items: flex-start;
  gap: 30px 50px;
}
.culture-tango__heading {
  margin-bottom: 0;
  order: 0;
}
.culture-tango__text {
  order: 2;
}
.culture-tango__text--bg {
  padding: calc(30px + (1em - 1lh) / 2) 30px;
}
.culture-tango__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  -moz-column-gap: 30px;
       column-gap: 30px;
  margin-bottom: 40px;
}
.culture-tango__item:nth-of-type(2n) {
  flex-direction: row-reverse;
}
.culture-tango__item-thumb {
  width: 480px;
  flex-shrink: 0;
}

/*人形工房 吉貞の想い
-----------------------------*/
.culture-thoughts::before {
  height: 50%;
  max-height: 320px;
}
.culture-thoughts__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row-reverse;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
.culture-thoughts__inner::before {
  width: 339px;
  top: -100px;
  right: -100px;
}
.culture-thoughts__image {
  width: 612px;
  margin-left: -32px;
  flex-shrink: 0;
}
.culture-thoughts__text {
  width: 100%;
}

/*===============================================
  人形の小話
===============================================*/
/*人形の小話 一覧
-----------------------------*/
.column-archive__item {
  gap: 2rem 4rem;
  margin-bottom: 5rem;
}
.column-archive__image {
  flex-shrink: 0;
  width: 500px;
}
.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: 40px;
}
.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(3rem + (1em - 1lh) / 2) !important;
}
.column-archive__tags {
  margin-top: calc(2rem + (1em - 1lh) / 2) !important;
}
.column-archive__link {
  margin-top: 3rem;
}

/*人形の小話 詳細
-----------------------------*/
/*===============================================
  お知らせ
===============================================*/
/* お知らせ 一覧
-----------------------------*/
/* お知らせ 詳細
-----------------------------*/
/*タグリスト
-----------------------------*/
.tag-select {
  margin-bottom: 50px;
}
.tag-select__box {
  min-width: 15em;
}
.tag-select__box::after {
  right: 1em;
}
.tag-select__dropdown {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  padding: 0.75em 3em 0.75em 0.75em;
}

/*==================================================
 お問い合わせ
================================================== */
.contact-form__table {
  margin-bottom: 56px;
}
.contact-form__table tr th {
  width: 350px;
  text-align: left;
  line-height: 2.375;
  padding-right: 3rem;
}
.contact-form__table tr th .optional-mark,
.contact-form__table tr th .required-mark {
  font-size: var(--font-size-sm);
  line-height: 2;
  padding: 0 0.5em;
  margin-top: 5px;
}
.contact-form__table tr td {
  vertical-align: middle;
  line-height: 2.375;
}
.contact-form .contact-submits-wrap {
  padding-top: 32px;
}
.contact-form .contact-submits-wrap > * {
  width: 320px;
  height: 60px;
  margin: 20px 15px 0;
}

/*==================================================
 お問い合わせ完了
================================================== */
/*==================================================
プライバシーポリシー
================================================== */
/*==================================================
 サイトマップ
================================================== */
.sitemap-list__items {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  grid-auto-flow: column;
  gap: 20px 80px;
}
.sitemap-list__link {
  font-size: var(--font-size-h6);
  line-height: var(--line-height-h6);
  padding: 15px 20px;
}

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