@charset "UTF-8";
/* font-weight */
/* --------------------------------------------------------------------- */
/* フォントサイズ一括指定（font-size,line-height,letter-spacing）  */
/* ※フォントサイズ小さくなりすぎ対応 14px未満は、font-sizeのpx指定を確認する  */
/* --------------------------------------------------------------------- */
body {
  font-family: YakuHanJP, "Hiragino Kaku Gothic ProN", Arial, "Helvetica Neue", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 300;
  color: #333;
}

a[href^="tel:"] {
  pointer-events: auto;
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

a:focus-visible,
button:focus-visible {
  -webkit-focus-ring-color: auto 1px;
}

@media (any-hover: hover) {
  a:hover,
  button:hover {
    cursor: pointer;
  }
}
.grecaptcha-badge {
  visibility: hidden;
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
}

/* Inherit fonts for inputs and buttons */
/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
}

textarea {
  resize: vertical;
}

button {
  border: none;
  padding: 0;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-inner {
  width: 100%;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1150px;
    padding-right: 25px;
    padding-left: 25px;
    margin-right: auto;
    margin-left: auto;
  }
}

.l-sub-page {
  padding-bottom: 240px;
}
@media screen and (min-width: 768px) {
  .l-sub-page {
    padding-bottom: 400px;
  }
}

/* utility */
.u-mobile {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

.u-desktop {
  display: block;
}
@media screen and (min-width: 1280px) {
  .u-desktop {
    display: none;
  }
}

.u-tab {
  display: none;
}
@media screen and (min-width: 960px) {
  .u-tab {
    display: block;
  }
}

/* component */
@media (any-hover: hover) {
  .c-tags a:hover, .c-business__address a:hover {
    color: #AD3A21;
  }
}
.c-tags a:active, .c-business__address a:active {
  color: #AD3A21;
}

/* =============================================
common. 共通component. c-xxx
============================================= */
.wood-stove-background {
  background-image: url(../images/common/wood-body-bg.jpg);
  background-repeat: repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  background-attachment: fixed;
}

.hinoko_area {
  position: relative;
  padding-bottom: 300px;
}
@media screen and (min-width: 768px) {
  .hinoko_area {
    padding-bottom: 100px;
  }
}
.hinoko_area .hinoko {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 800px;
  max-height: 800px;
  z-index: 2;
}
.hinoko_area:not(#loading)::before {
  content: "";
  display: block;
  width: 400px;
  height: 266px;
  background-image: url(../images/common/footer-fire.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  -webkit-transform: translate(-20%, 0);
          transform: translate(-20%, 0);
  mix-blend-mode: lighten;
  -webkit-animation: blink 5s infinite;
          animation: blink 5s infinite;
}
@media screen and (min-width: 768px) {
  .hinoko_area:not(#loading)::before {
    width: 500px;
    height: 333px;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

/* コンテンツの幅管理 */
.content-wrapper {
  max-width: 430px;
  width: 100%;
  margin-inline: auto;
  position: relative;
  overflow-x: clip;
}
@media screen and (min-width: 768px) {
  .content-wrapper {
    max-width: none;
    width: 100%;
  }
}
@media screen and (min-width: 960px) {
  .content-wrapper {
    max-width: 960px;
  }
}
@media screen and (min-width: 1280px) {
  .content-wrapper {
    max-width: none;
    width: 100%;
  }
}
@media screen and (min-width: 1440px) {
  .content-wrapper {
    max-width: 1440px;
    width: 100%;
  }
}

/* =============================================
mainをwrap/コンテンツの背景色/()
============================================= */
.main-wrapper {
  min-height: 100%;
  position: relative;
  background-color: #F1F0E0;
}

/* 下層ページmainをwrap 赤帯部分を考慮 */
.main-wrapper.main-wrapper--sub {
  padding-top: 40px;
}
@media screen and (min-width: 1280px) {
  .main-wrapper.main-wrapper--sub {
    padding-top: 0;
  }
}

/* =============================================
\\\\\\セクションの上下の装飾\\\\\\\
============================================= */
/* mask-imageを使用すると、元のSVG画像の色は無視され、backgroundプロパティで指定された色が表示されます */
.c-decoration {
  position: relative;
}
.c-decoration::before, .c-decoration::after {
  z-index: 5;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  height: 29px;
  -webkit-mask-image: url(../images/common/firewood-decoration.svg);
          mask-image: url(../images/common/firewood-decoration.svg);
  -webkit-mask-repeat: repeat-x;
          mask-repeat: repeat-x;
  -webkit-mask-position: center left;
          mask-position: center left;
  background-color: #D1D0B2;
}
.c-decoration::before {
  bottom: 100.3%;
}
.c-decoration::after {
  top: 100.3%;
}

.c-decoration.c-decoration--color-secondary::before, .c-decoration.c-decoration--color-secondary::after {
  background-color: red;
}

/* =============================================
ショールーム詳細
============================================= */
.c-business {
  background-color: #fff;
}

.c-business__list {
  font-size: 1rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .c-business__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media screen and (min-width: 768px) {
  .c-business__list dt {
    width: 32%;
    min-width: 8em;
  }
}

.c-business__list dd {
  margin-top: 3px;
}
@media screen and (min-width: 768px) {
  .c-business__list dd {
    margin-top: 0;
  }
}

.c-business__list:nth-of-type(2) {
  margin-top: 24px;
}

.c-business__tel {
  margin-top: 25px;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-business__tel::before {
  content: "";
  display: inline-block;
  background: #333333;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url(../images/common/phone.svg);
          mask-image: url(../images/common/phone.svg);
  width: 30px;
  height: 30px;
  margin-right: 3px;
  position: relative;
  top: 1px;
}

.c-business__address {
  margin-top: 4px;
  color: #638866;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .c-business__address {
    font-size: 1rem;
  }
}
.c-business__address a {
  text-decoration: underline;
}

.c-business__text {
  margin-top: 7px;
  font-size: 0.875rem;
}

.c-business__list-access-wrap {
  margin-top: 50px;
}

.c-business__list-access {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}

.c-business__text-access {
  font-size: 14px;
}

/* =============================================
商品リスト（罫線あり）TOP products・detail・showroomページで使用
============================================= */
.c-product {
  position: relative;
}

/* これはJSで管理するから削除予定 */
.c-product__node--empty-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .c-product__node--empty-sp {
    display: none;
  }
}

.c-product__node--empty-md {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-product__node--empty-md {
    display: block;
  }
}

.c-product__node--empty-lg {
  display: none;
}
@media screen and (min-width: 1280px) {
  .c-product__node--empty-lg {
    display: block;
  }
}

.c-product__node.c-product__node--empty {
  background-color: transparent;
  pointer-events: none;
}

/* ここまで↑ */
.c-product__node {
  padding: 5px;
  background-color: #F1F0E0;
  position: relative;
  opacity: 1;
  -webkit-transition: background-color 0.5s, color 0.5s;
  transition: background-color 0.5s, color 0.5s;
}
@media (any-hover: hover) {
  .c-product__node:hover {
    background-color: #AD3A21;
    color: #fff;
  }
}
.c-product__node:active {
  background-color: #AD3A21;
  color: #fff;
}

.c-product__link:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.c-product__node.c-product__node--enpty {
  background-color: transparent;
  pointer-events: none;
}

.c-product__img {
  mix-blend-mode: multiply;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline: auto;
  aspect-ratio: 1/1;
  height: auto;
}

.c-product__brand {
  text-align: center;
  font-size: 14px;
  font-weight: 300;
}

/* =============================================
ニュース共通パーツ[c-news]
============================================= */
/* 共通メタデータ（カテゴリーと日付） */
.c-news-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-news-meta__date-wrap {
  color: #222;
  font-size: 0.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-news-meta__category-wrap {
  margin-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-news-meta__category {
  color: #FFF;
  font-size: 14px;
  padding: 0 5px;
  background: #638866;
}

.c-news-meta__category.c-news-meta__category--events {
  background: #C04125;
}

.c-news__node {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  -webkit-transition: -webkit-box-shadow 0.3s, -webkit-transform 0.3s;
  transition: -webkit-box-shadow 0.3s, -webkit-transform 0.3s;
  transition: box-shadow 0.3s, transform 0.3s;
  transition: box-shadow 0.3s, transform 0.3s, -webkit-box-shadow 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 1280px) {
  .c-news__node {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (any-hover: hover) {
  .c-news__node:hover {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
}
.c-news__node:active {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.c-news__body {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 1280px) {
  .c-news__body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    gap: 16px;
  }
}

.c-news__title {
  font-size: 18px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.c-news__content--head {
  font-weight: 600;
  font-size: 14px;
}

.c-news__content {
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.c-news__body {
  padding: 27px 20px 33px 20px;
}
@media screen and (min-width: 1280px) {
  .c-news__body {
    padding: 42px 34px;
  }
}

.c-news__node--top {
  margin-bottom: 25px;
}

.c-news__node--large .c-news__title {
  font-size: 22px;
}

@media screen and (min-width: 1280px) {
  .c-news__image--large {
    width: 37.5%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.c-news__image--large img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 1280px) {
  .c-news__body--secondary {
    aspect-ratio: 225/160;
    max-width: 225px;
  }
}
.c-news__body--secondary img {
  aspect-ratio: 320/200;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1280px) {
  .c-news__body--secondary img {
    aspect-ratio: unset;
    height: 100%;
  }
}

.c-news__node .c-news__image .c-news__img {
  padding: 0 75px;
  background-color: #666;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 1280px) {
  .c-news__node .c-news__image .c-news__img {
    padding: 0 45px;
  }
}

.c-news__node--small {
  margin: 0 20px;
}
@media screen and (min-width: 768px) {
  .c-news__node--small {
    margin: 0 10px;
  }
}
@media screen and (min-width: 1280px) {
  .c-news__node--small {
    margin: 0 75px;
  }
}

.c-news__body--small {
  padding: 21px 20px 30px 20px;
}
@media screen and (min-width: 1280px) {
  .c-news__body--small {
    padding: 20px 20px 15px 15px;
  }
}

.c-news__node:not(:first-child) {
  margin-top: 15px;
}

.c-news__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}

/* =============================================
施工事例の共通スタイル
============================================= */
@media screen and (min-width: 768px) {
  .c-works-case {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
    gap: 50px;
  }
}
@media screen and (min-width: 1280px) {
  .c-works-case {
    grid-template-columns: repeat(auto-fill, minmax(min(500px, 100%), 1fr));
    gap: 100px;
    max-width: 1100px;
    padding: 0;
    margin-inline: auto;
    row-gap: 73px;
  }
}

.c-works-case__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (any-hover: hover) {
  .c-works-case__item .c-works-case__link:hover img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.c-works-case__item .c-works-case__link:active img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.c-works-case__item:not(:first-child) {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .c-works-case__item:not(:first-child) {
    margin-top: 0;
  }
}

.c-works-case__image {
  aspect-ratio: 345/230;
  overflow: hidden;
}
@media screen and (min-width: 1280px) {
  .c-works-case__image {
    aspect-ratio: 500/333;
  }
}

.c-works-case__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.c-works-case__body {
  position: relative;
  padding-left: 20px;
  /* 擬似要素のための余白を追加 */
  margin-top: 11px;
  margin-bottom: 10px;
}

.c-works-case__body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 9px;
  height: 100%;
  background-color: #C04125;
}

.c-works-case__model {
  font-size: 16px;
  line-height: 18px;
  font-weight: 300;
}

.c-works-case__model-name {
  font-weight: 600;
}

.c-works-case__model span {
  line-height: 1.3125;
}

.c-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  row-gap: 0;
}
.c-tags a {
  text-decoration: underline;
}

.c-tags__node {
  color: #666;
  font-size: 14px;
  line-height: 28px;
  text-decoration-line: underline;
}

/* =============================================
詳細ページの説明リスト:works-detail/products-detail/company
============================================= */
.c-details {
  width: 100%;
}

.c-details__item {
  padding: 7.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  gap: 10px;
}

.c-details__item:first-child {
  border-top: 1px solid #ddd;
}

.c-details__item dt {
  -ms-flex-item-align: self-start;
      -ms-grid-row-align: self-start;
      align-self: self-start;
  width: 30%;
  min-width: 5em;
  /* ラベルの幅を調整 */
}
@media screen and (min-width: 768px) {
  .c-details__item dt {
    width: 24%;
    padding-left: 20px;
  }
}

.c-details__item dd {
  width: 70%;
}
@media screen and (min-width: 768px) {
  .c-details__item dd {
    width: 76%;
  }
}

/* =============================================
検索ボックス[c-search-box]:works・products
============================================= */
.c-search-box-wrap {
  text-align: right;
  padding-right: 7px;
}
@media screen and (min-width: 768px) {
  .c-search-box-wrap {
    padding-right: 9%;
  }
}

.c-search-box {
  border-radius: 100vmax;
  background: #F7F6EB;
  padding: 12px 21px 9px 15px;
  display: inline-block;
}

.c-modal-open-button {
  color: #333;
  font-size: 14px;
  text-decoration-line: underline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (any-hover: hover) {
  .c-modal-open-button:hover {
    color: #C04125;
  }
}
.c-modal-open-button:active {
  color: #C04125;
}

.c-modal-open-button::before {
  content: "";
  width: 30px;
  height: 32px;
  background-image: url(../images/common/search.svg);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* モーダル中身 */
.c-modal {
  visibility: hidden;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.5);
}

/* open */
.c-modal.-active {
  visibility: visible;
  opacity: 1;
}

.c-modal__body {
  position: relative;
  display: inline-block;
  overflow-y: auto;
  border-radius: 20px;
  background: #F7F6EB;
  color: #000;
  font-size: 1rem;
  padding: 10px 20px 20px;
  max-width: 345px;
  width: 96%;
  max-height: 90%;
}
@media screen and (min-width: 768px) {
  .c-modal__body {
    max-width: none;
    width: 90%;
    padding: 20px 30px 30px;
  }
}
@media screen and (min-width: 960px) {
  .c-modal__body {
    width: 100%;
    max-width: 800px;
  }
}
@media screen and (min-width: 1280px) {
  .c-modal__body {
    max-width: none;
    width: 90%;
    max-width: 1000px;
    padding: 30px 50px 50px;
  }
}

.c-modal__menu li a {
  font-weight: 300;
}
@media (any-hover: hover) {
  .c-modal__menu li a:hover {
    color: #C04125;
  }
}
.c-modal__menu li a:active {
  color: #C04125;
}

.c-modal__title {
  font-weight: 600;
}

.c-modal__title.c-modal__title--underline {
  display: block;
  margin-top: 10px;
}
.c-modal__title.c-modal__title--underline a {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .c-modal__title.c-modal__title--underline a:hover {
    color: #C04125;
  }
}
.c-modal__title.c-modal__title--underline a:active {
  color: #C04125;
}

.c-modal__tag-content,
.c-modal__brands-content {
  margin-top: 40px;
}

.c-modal__search-tags.c-modal__search-tags--features {
  margin-top: 20px;
  padding-left: 15px;
}

.c-modal__search-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  row-gap: 5px;
}

.c-modal__tag {
  font-size: 1rem;
  line-height: 32px;
  text-decoration-line: underline;
  font-weight: 300;
  display: block;
  height: inherit;
}

.c-modal__brand {
  margin-top: 20px;
  padding-left: 15px;
  padding-right: 15px;
}

.c-brand__name {
  text-decoration-line: underline;
  line-height: 2;
  font-weight: 600;
}

.c-brand__name a {
  display: inline-block;
  height: inherit;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .c-brand__name a:hover {
    color: #C04125;
  }
}
.c-brand__name a:active {
  color: #C04125;
}

.c-modal__close-button {
  color: #333;
  font-weight: 300;
  cursor: pointer;
  padding: 10px 0 10px 50px;
}
@media (any-hover: hover) {
  .c-modal__close-button:hover {
    color: #C04125;
  }
}
.c-modal__close-button:active {
  color: #C04125;
}

.c-modal__close-wrapper {
  position: relative;
  text-align: right;
}

.c-modal__close-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 60px;
  height: 1px;
  background: #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 35px;
}

.c-modal__close-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 60px;
  height: 1px;
  background: #000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 35px;
}

/* タブ */
.c-tab-wrap {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .c-tab-wrap {
    margin-top: 22px;
  }
}

.c-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  border-bottom: 5px solid #C04125;
  padding-left: 10px;
}
@media screen and (min-width: 768px) {
  .c-tab {
    padding-left: 30px;
  }
}
@media screen and (min-width: 1280px) {
  .c-tab {
    padding-left: 100px;
  }
}

.c-tab__item {
  display: -ms-grid;
  display: grid;
  place-content: center;
  width: 140px;
  height: 60px;
  background-color: #ccc;
  color: #666;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-tab__item {
    width: 200px;
  }
}
@media (any-hover: hover) {
  .c-tab__item:hover {
    background-color: #AD3A21;
    color: #fff;
  }
}
.c-tab__item:active {
  background-color: #AD3A21;
  color: #fff;
}

.c-tab__item.is-product-current {
  background-color: #AD3A21;
  color: #fff;
}

.c-tab__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}

/* =============================================
カテゴリー選択ボタン:accessoryページ/newsページ
============================================= */
.c-category-buttons {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  gap: 5px;
  padding: 0 10px;
}
@media screen and (min-width: 768px) {
  .c-category-buttons {
    gap: 10px;
    margin-top: 50px;
  }
}
@media screen and (min-width: 1280px) {
  .c-category-buttons {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.c-category-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 20px;
  height: 50px;
  background-color: #333;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (min-width: 768px) {
  .c-category-button {
    padding: 10px 40px;
    height: 70px;
  }
}
@media (any-hover: hover) {
  .c-category-button:hover {
    background-color: #AD3A21;
  }
}
.c-category-button:active {
  background-color: #AD3A21;
}

.c-category-button.c-category-button--all {
  width: 100px;
}
@media screen and (min-width: 768px) {
  .c-category-button.c-category-button--all {
    width: 127px;
  }
}

.c-category-button.is-category-current {
  background-color: #AD3A21;
}

/* =============================================
showroom情報/c-showroom-info:showroom/company
============================================= */
.c-showroom-info__inner.l-inner {
  max-width: 1300px;
}

.c-showroom-info__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .c-showroom-info__flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.c-showroom-info__business-wrap {
  padding: 20px 10px 20px 10px;
}
@media screen and (min-width: 768px) {
  .c-showroom-info__business-wrap {
    width: 55%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding: 30px;
    max-width: 450px;
  }
}
@media screen and (min-width: 1280px) {
  .c-showroom-info__business-wrap {
    padding: 40px 30px;
    width: 35%;
  }
}

/* map */
.c-showroom-info__map-wrap {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-showroom-info__map-wrap {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.c-showroom-info__map {
  position: relative;
  width: 100%;
  aspect-ratio: 345/345;
}
@media screen and (min-width: 768px) {
  .c-showroom-info__map {
    aspect-ratio: 800/600;
    height: 100%;
  }
}

.c-showroom-info__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* =============================================
アクセサリーツールカード:accessoryページ/c-tool
============================================= */
.c-tool__card {
  padding: 30px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  border-top: 1px solid #ccc;
}
@media screen and (min-width: 768px) {
  .c-tool__card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
    padding: 30px 40px;
  }
}

.c-tool__card:last-child {
  border-bottom: 1px solid #ccc;
}

/* ツール商品画像 */
.c-tool__image {
  mix-blend-mode: multiply;
  margin-inline: auto;
  max-width: 250px;
}
@media screen and (min-width: 768px) {
  .c-tool__image {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin: 0;
  }
}

.c-tool__image img {
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
  max-height: 250px;
}

@media screen and (min-width: 768px) {
  .c-tool__body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.c-tool__title {
  font-size: 18px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .c-tool__title {
    display: inline-block;
    margin-right: 10px;
  }
}

.c-tool__category {
  margin-top: 3px;
  display: block;
  width: auto;
  color: #FFF;
  font-size: 14px;
  background: #999;
  padding: 0 5px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  vertical-align: 1px;
}
@media screen and (min-width: 768px) {
  .c-tool__category {
    display: inline-block;
    margin-top: 0;
  }
}

.c-tool__description {
  margin-top: 10px;
  font-size: 14px;
}

.c-tool__price {
  font-size: 14px;
}

.c-tool__image-open {
  margin-top: 15px;
  max-width: 150px;
}
.c-tool__image-open img {
  height: auto;
}

/* =============================================
無料相談の予約 お問い合わせ/資料請求
============================================= */
/* 予約案内エリアボタン有り */
.c-consulting {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px 15px;
}
@media screen and (min-width: 768px) {
  .c-consulting {
    padding: 20px 41px 38px 48px;
  }
}

.c-consulting__flex > p {
  font-weight: 600;
  line-height: 28px;
}
@media screen and (min-width: 768px) {
  .c-consulting__flex > p {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}

@media screen and (min-width: 768px) {
  .c-consulting__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 21px;
  }
}

.c-consulting__owner-img {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .c-consulting__owner-img {
    margin-top: 0;
    width: 100px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    height: 100px;
  }
}

.c-consulting__owner-img img {
  margin-inline: auto;
}

.c-consulting__button {
  margin-top: 20px;
  text-align: center;
}

/* お問い合わせ時間電話 */
@media screen and (min-width: 768px) {
  .c-business-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.c-business-contact__tel {
  font-family: "Helvetica Neue";
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .c-business-contact__tel {
    padding-right: 30px;
    border-right: 1px solid #333;
  }
}
.c-business-contact__tel > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-business-contact__tel a::before {
  content: "";
  display: inline-block;
  background: #333333;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url(../images/common/phone.svg);
          mask-image: url(../images/common/phone.svg);
  width: 44px;
  height: 44px;
  position: relative;
}

.c-business-contact__list {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-business-contact__list {
    margin-top: 0;
  }
}

.c-business-contact__list:not(:first-child) {
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .c-business-contact__text {
    padding-left: 30px;
    width: 48%;
  }
}

.c-business-contact__text dt {
  min-width: 22%;
}

/* =============================================
リクルートページ/文字を隠す白い影のグラデーション
============================================= */
.c-gradient {
  height: 200px;
  /* 高さを増やす */
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0.8)), to(#fff));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8) 50%, #fff 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 50;
}
@media screen and (min-width: 768px) {
  .c-gradient {
    display: none;
  }
}

/* =============================================
薪ストーブ一覧などのグリッドライン
============================================= */
.js-grid-target {
  position: relative;
}
.js-grid-target .gridline {
  position: absolute;
}
.js-grid-target .gridline.tate {
  border-left: solid 0.5px #ccc;
  height: calc(100% + 40px);
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.js-grid-target .gridline.yoko {
  border-top: solid 0.5px #ccc;
  width: 100vw;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/* =============================================
サイトメニュー内ボタン（ドロワー・フッター）
============================================= */
.c-site-menu-btn {
  width: 100%;
  width: 280px;
  text-align: center;
  padding: 0.9375rem;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  background-color: #C04125;
  height: 70px;
  display: -ms-grid;
  display: grid;
  place-content: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media (any-hover: hover) {
  .c-site-menu-btn:hover {
    background-color: #333;
  }
}
.c-site-menu-btn:active {
  background-color: #333;
}

.c-site-menu-btn span {
  font-size: 14px;
}

@media screen and (min-width: 1280px) {
  .p-footer .c-site-menu-btn {
    padding: 1.1875rem;
    width: auto;
    min-width: 160px;
  }
}

/* =============================================
テキストボタン（詳しく見る/取扱商品）
============================================= */
.c-text-button {
  color: #000;
  font-size: 1rem;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .c-text-button:hover {
    color: #C04125;
  }
}
.c-text-button:active {
  color: #C04125;
}

/* =============================================
コンテンツ内ボタン/背景色＃333
幅はテキストの内容によってなりゆき/高さは70pxで共通/モディファイア背景色
============================================= */
.c-button {
  color: #fff;
  display: inline-block;
  background: #333;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  padding: 23px 40px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media screen and (min-width: 768px) {
  .c-button {
    max-width: 70%;
  }
}
@media (any-hover: hover) {
  .c-button:hover {
    background: #C04125 !important;
  }
}
.c-button:active {
  background: #C04125 !important;
}

.c-button.c-button--color-secondary {
  background-color: #4B481A;
}

.c-button.c-button--color-tertiary {
  background-color: #C04125;
}
@media (any-hover: hover) {
  .c-button.c-button--color-tertiary:hover {
    background: #333 !important;
  }
}
.c-button.c-button--color-tertiary:active {
  background: #333 !important;
}

.c-button.c-button--color-current {
  background-color: #AD3A21;
}

/* タイトル共通 */
/* =============================================
セクションタイトル(TOP)H2
============================================= */
.c-section-title {
  text-align: center;
  font-weight: 300;
  text-align: center;
  display: -ms-grid;
  display: grid;
}

.c-section-title.c-section-title--white {
  color: #fff;
  text-align: left;
}

.c-section-title__jp {
  font-size: 1rem;
  font-weight: 300;
}

.c-section-title__en {
  display: block;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-weight: 200;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .c-section-title__en {
    font-size: 48px;
  }
}

.c-section-title.c-section-title--white .c-section-title__en {
  font-size: 34px;
}
@media screen and (min-width: 768px) {
  .c-section-title.c-section-title--white .c-section-title__en {
    font-size: 40px;
  }
}

/* =============================================
ページタイトル（下層）H1緑枠
============================================= */
.c-page-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-page-title {
  color: #638866;
  text-align: right;
  font-size: 1rem;
  font-weight: 300;
  display: block;
}

.c-page-title span {
  padding-right: 7px;
}

.c-page-title__en {
  display: block;
  background-color: #638866;
  padding: 0 5px 5px 25px;
  color: #fff;
  font-family: "Noto Sans JP";
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-weight: 100;
  line-height: 35px;
  overflow: hidden;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .c-page-title__en {
    font-size: 80px;
    padding: 0 5px 5px 50px;
    line-height: 70px;
  }
}

.c-page-title__jp {
  display: block;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .c-page-title__jp {
    font-size: 18px;
  }
}

/* =============================================
コンテンツ部分タイトル/
============================================= */
.c-content-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-content-title {
  display: inline-block;
  border-bottom: 5px solid #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: 300;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-content-title {
    font-size: 36px;
  }
}

/* =============================================
フォーム部分c-form お問い合わせ/資料請求/リクルート
============================================= */
.c-form {
  background-color: #D1D0B2;
  padding: 20px 15px 43px 15px;
}
@media screen and (min-width: 768px) {
  .c-form {
    padding: 64px 80px 56px 80px;
  }
}

.c-form.c-form--bg-none {
  background-color: transparent;
  padding-bottom: 34px;
  padding-right: 0;
  padding-left: 0;
  padding-top: 0;
  margin-top: 63px;
}

/* dl/項目名と回答部分 */
.c-form__input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .c-form__input {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.c-form__input:not(:first-child) {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .c-form__input:not(:first-child) {
    margin-top: 20px;
  }
}

/* 項目名 */
.c-form__input dt {
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .c-form__input dt {
    min-width: 37%;
    padding-top: 0.5em;
  }
}

/* 入力部分 */
.c-form__input dd {
  margin-top: 5px;
  background: #fff;
  padding: 6px;
  border: 1px solid #333;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-form__input dd {
    margin-top: 0;
  }
}

.c-form__input.c-form__input--s dd {
  width: 200px;
}

.c-form__input dd input {
  width: 100%;
  font-size: 1rem;
}

.c-form__input dt span {
  color: #C04125;
  font-size: 12px;
  font-weight: 300;
  margin-left: 10px;
}

.c-form__text-area {
  margin-top: 33px;
  width: 100%;
}

.c-form__text-area .c-form__input dt {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.c-form__text-area dd {
  width: 100%;
}

/* 横方向のリサイズを禁止 */
textarea {
  resize: vertical;
  width: 100%;
  padding: 5px;
  height: 280px;
}

.c-form__br {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-form__br {
    display: block;
  }
}

/* ボタン「上」余白調整 */
.c-from__submit-button {
  margin-top: 33px;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*----------------------------------
 ラジオボタン
-----------------------------------*/
.c-form__input .c-radio__select,
.c-form__input .c-checkbox__select {
  background-color: transparent;
  border: none;
  padding: 0;
  margin-top: 0;
}

.c-radio .wpcf7-form-control.wpcf7-radio,
.c-checkbox .wpcf7-form-control.wpcf7-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-radio .wpcf7-form-control-wrap,
.c-checkbox .wpcf7-form-control-wrap {
  margin-top: 13px;
  display: block;
}
@media screen and (min-width: 768px) {
  .c-radio .wpcf7-form-control-wrap,
  .c-checkbox .wpcf7-form-control-wrap {
    margin-top: 0;
  }
}

/* 弊社を知ったきっかけのラジオボタンスタイル */
/* リスト間の余白(縦積み) */
.c-radio .wpcf7-list-item:not(:first-child),
.c-checkbox .wpcf7-list-item:not(:first-child) {
  margin-top: 10px;
}

input[type=radio],
input[type=checkbox] {
  opacity: 0;
  position: absolute;
}

/* 共通のラジオボタンスタイル */
.c-radio .wpcf7-list-item-label,
.c-checkbox .wpcf7-list-item-label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.wpcf7-list-item.first {
  margin-left: 0;
}

.c-radio.c-radio--02 .wpcf7-form-control.wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.c-radio.c-radio--02 .wpcf7-list-item:not(:first-child) {
  margin-top: 0;
  margin-left: 10px;
}

.c-radio .wpcf7-list-item-label::before {
  display: block;
  content: "";
  border-radius: 50%;
  border: 1px solid black;
  width: 24px;
  height: 24px;
  margin-right: 6px;
  background: #fff;
}

.c-radio .wpcf7-list-item-label::after {
  display: block;
  position: absolute;
  content: "";
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background-color: #333;
  left: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}

/* ラジオボタンのON/OFF */
.wpcf7-radio input[type=radio]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

/* ラジオボタンのバリデーション対策 */
.wpcf7-form.hide_error_message .wpcf7-not-valid-tip {
  display: none;
}

.wpcf7-form:not(.hide_error_message) .p-formValidation:has(.wpcf7-not-valid-tip) .p-formValidation__error {
  display: block;
}

.c-radio__other {
  border: 1px solid #333;
  max-width: 100%;
  padding: 6px;
  margin-top: 14px;
  background: #fff;
}
.c-radio__other[readonly] {
  background: #CCC;
}

.c-form__input.c-radio,
.c-form__input.c-radio--02 {
  margin-top: 25px;
}

@media screen and (min-width: 768px) {
  .c-form__input.c-radio dt {
    padding-top: 0;
  }
}

/*----------------------------------
 チェックボックス（資料請求）メーカー/同意ボタンチェックボックス
-----------------------------------*/
.c-checkbox .wpcf7-list-item-label::before {
  content: "";
  width: 30px;
  height: 30px;
  border: 1px solid #333;
  background-color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-right: 6px;
  display: block;
}

.c-checkbox .wpcf7-list-item-label::after {
  display: block;
  position: absolute;
  content: "";
  top: 52%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: transparent url(../images/common/contact-check.svg) no-repeat center center/contain;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  opacity: 0;
  left: 6px;
}

.wpcf7-form-control-wrap input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

/*----------------------------------
同意ボタンチェックのスタイルはチェックボックスと同じ
-----------------------------------*/
.c-form__privacy {
  margin-top: 54px;
}
@media screen and (min-width: 768px) {
  .c-form__privacy {
    margin-left: 36%;
  }
}
@media (any-hover: hover) {
  .c-form__privacy a:hover {
    color: #C04125;
  }
}
.c-form__privacy a:active {
  color: #C04125;
}

.c-form input[type=radio]:focus + span::before,
.c-form input[type=checkbox]:focus + span::before {
  -webkit-box-shadow: 0 0 4px #004AA1;
          box-shadow: 0 0 4px #004AA1;
}
.c-form input:focus,
.c-form select:focus,
.c-form textarea:focus,
.c-form button:focus {
  outline: none;
  /* アウトラインを削除しても、box-shadowによりフォーカスが視覚的に識別可能 */
}

.c-form__turnstile {
  margin-top: 35px;
}
@media screen and (min-width: 768px) {
  .c-form__turnstile {
    margin-left: 36%;
  }
}

/* フォーカスのスタイル設定ここまで */
.wpcf7-list-item {
  margin: 0;
}

.wpcf7-response-output {
  margin-top: 50px;
}

.recaptcha {
  margin-top: 5px;
  color: #999;
  font-size: 12px;
}
.recaptcha a {
  text-decoration: underline;
}

/* =============================================
レイアウトスタイル調整
=============================================*/
/* プレースホルダーのスタイル */
::-webkit-input-placeholder {
  color: #999;
  font-style: normal;
  font-weight: 300;
  /* Firefoxではデフォルトで少し透明になっているため */
}
::-moz-placeholder {
  color: #999;
  font-style: normal;
  font-weight: 300;
  /* Firefoxではデフォルトで少し透明になっているため */
}
:-ms-input-placeholder {
  color: #999;
  font-style: normal;
  font-weight: 300;
  /* Firefoxではデフォルトで少し透明になっているため */
}
::-ms-input-placeholder {
  color: #999;
  font-style: normal;
  font-weight: 300;
  /* Firefoxではデフォルトで少し透明になっているため */
}
::placeholder {
  color: #999;
  font-style: normal;
  font-weight: 300;
  /* Firefoxではデフォルトで少し透明になっているため */
}

/* Webkitブラウザ (Safari, Chrome) 用 */
::-webkit-input-placeholder {
  color: #999;
}

/* Firefox用 */
::-moz-placeholder {
  color: #999;
  opacity: 1;
}

/* Edge用 */
::-ms-input-placeholder {
  color: #999;
}

/* Firefoxには独自のスタイル設定が必要 */
@-moz-document url-prefix() {
  select {
    background-image: none;
  }
}
/*----------------------------------
  フォーム送信ボタン
-----------------------------------*/
.c-form-submit {
  color: #fff;
  text-align: center;
  font-size: 16px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  background: #333;
  opacity: 1;
  padding: 15px 50px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-form-submit[disabled] {
  opacity: 0.5;
}
@media (any-hover: hover) {
  .c-form-submit:not([disabled]):hover {
    background: #C04125;
  }
}
.c-form-submit:not([disabled]):active {
  background: #C04125;
}

.c-form-submit::-moz-focus-inner {
  padding: 0;
  border: none;
}

/* ホバー効果を持つアクティブなボタンスタイル */
.c-form-submit.submit--active:hover {
  background-color: #333;
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .c-form-submit.submit--active:hover {
    opacity: 1;
  }
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #638866;
  background: #638866;
  color: #fff;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #C04125;
  background: #C04125;
  color: #fff;
}

/* project */
/* =============================================
header
============================================= */
/*----------------------------------
header部分のcommon
-----------------------------------*/
.c-logo-wrap {
  position: absolute;
  top: 30px;
  left: 14px;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .c-logo-wrap {
    left: 2.375rem;
    top: 2.375rem;
  }
}
@media screen and (min-width: 1280px) {
  .c-logo-wrap {
    left: 3.75rem;
    top: 3.75rem;
  }
}

/* ロゴ */
.c-logo {
  display: block;
  width: 150px;
}
@media screen and (min-width: 768px) {
  .c-logo {
    width: 220px;
  }
}
@media screen and (min-width: 1280px) {
  .c-logo {
    width: 260px;
  }
}
body.home .c-logo {
  width: clamp(150px, 4.545px + 45.455vw, 200px);
}
@media screen and (min-width: 768px) {
  body.home .c-logo {
    width: 220px;
  }
}
@media screen and (min-width: 1280px) {
  body.home .c-logo {
    width: 260px;
  }
}

.c-logo img {
  height: auto;
  width: 100%;
}

/* 薪ストーブの販売・施工/黒背景 */
.p-header__site-title {
  background-color: #000;
  font-size: 14px;
  color: #FFF;
  padding: 0.5rem 0.8125rem;
  display: inline-block;
  position: absolute;
  z-index: 20;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-header__site-title {
    font-size: 16px;
  }
}
@media screen and (min-width: 1440px) {
  .p-header__site-title {
    font-size: 16px;
    padding: 0.4375rem 1.1875rem;
    top: 50%;
  }
}

/* 各ページ位置調整 */
.p-top-header .p-header__site-title {
  top: -7%;
}
@media screen and (min-width: 768px) {
  .p-top-header .p-header__site-title {
    top: -10%;
  }
}
@media screen and (min-width: 1280px) {
  .p-top-header .p-header__site-title {
    top: -20%;
  }
}

.p-sub-header .p-header__site-title {
  top: 75%;
}
@media screen and (min-width: 768px) {
  .p-sub-header .p-header__site-title {
    top: 86%;
  }
}
@media screen and (min-width: 1280px) {
  .p-sub-header .p-header__site-title {
    top: 50%;
  }
}

/* =============================================
赤背景/メインナビゲーション
about/product/works/flow/news
============================================= */
.p-main-nav {
  background-color: #C04125;
}

.p-main-nav__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0 1fr;
  grid-template-columns: repeat(2, 1fr);
  place-content: center;
  padding: 20px;
  /*itemの隣り合う間隔*/
  gap: 0;
}
@media screen and (min-width: 768px) {
  .p-main-nav__list {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    padding: 0;
    padding-left: clamp(60px, -100px + 20.833vw, 100px);
    padding-right: clamp(60px, -100px + 20.833vw, 100px);
  }
}
@media screen and (min-width: 1280px) {
  .p-main-nav__list {
    max-width: 1040px;
    margin-inline: auto;
    padding: 0;
    height: 120px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
  }
}

.p-main-nav__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 3;
  grid-row: span 3;
  text-align: center;
  gap: 0;
}
@media screen and (min-width: 1280px) {
  .p-main-nav__item {
    display: block;
    height: inherit;
  }
}

/* メインメニューcurrentカラー */
.p-main-nav__item.current-item .p-main-nav__link {
  background-color: #AD3A21;
}

.p-main-nav__link {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 3;
  grid-row: span 3;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  padding: 30px 0;
}
@media screen and (min-width: 768px) {
  .p-main-nav__link {
    padding: 50px 0;
  }
}
@media screen and (min-width: 1280px) {
  .p-main-nav__link {
    display: block;
    height: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 0 5px;
  }
}
@media (any-hover: hover) {
  .p-main-nav__link:hover {
    background-color: #AD3A21;
  }
}
.p-main-nav__link:active {
  background-color: #AD3A21;
}

.p-main-nav__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1280px) {
  .p-main-nav__icon {
    display: none;
  }
}

.p-main-nav__title {
  font-size: clamp(20px, 15.714px + 1.339vw, 26px);
  font-weight: 400;
  color: #FFF;
  font-family: YakuHanJP, "Helvetica Neue", sans-serif;
}

.p-main-nav__text {
  color: #FFF;
  text-align: center;
  font-size: clamp(0.75rem, 0.386rem + 1.82vw, 0.875rem);
  font-weight: 300;
  line-height: 18px;
}

/* TOPページnewsメニューアイコンは1280pxから表示 */
.p-main-nav__item:last-of-type {
  display: none;
}
@media screen and (min-width: 1280px) {
  .p-main-nav__item:last-of-type {
    display: block;
  }
}

/* =============================================
ハンバーガー🍔メニュー
============================================= */
.c-hamburger {
  position: fixed;
  z-index: 7000;
  top: 5px;
  right: 5px;
  width: 80px;
  height: 80px;
  cursor: pointer;
  background-color: #333;
  padding: 22px 20px 17px 20px;
  display: -ms-grid;
  display: grid;
  place-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: opacity 0.5s, background-color 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, background-color 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s, background-color 0.5s;
  transition: transform 0.5s, opacity 0.5s, background-color 0.5s, -webkit-transform 0.5s;
}
@media screen and (min-width: 430px) {
  .c-hamburger {
    right: calc(50% - 215px + 5px);
  }
}
@media screen and (min-width: 768px) {
  .c-hamburger {
    top: 10px;
    right: 10px;
    padding: 28px 25px 21px 25px;
  }
}
@media screen and (min-width: 960px) {
  .c-hamburger {
    right: calc(50% - 480px + 10px);
  }
}
@media screen and (min-width: 1280px) {
  .c-hamburger {
    width: 120px;
    height: 120px;
    top: 0;
    right: 0;
  }
}
@media screen and (min-width: 1440px) {
  .c-hamburger {
    right: calc(50% - 720px);
  }
}
.c-hamburger.notfixed {
  position: absolute;
  top: 45px;
  -webkit-transition: none;
  transition: none;
}
@media screen and (min-width: 768px) {
  .c-hamburger.notfixed {
    top: 100px;
  }
}
@media screen and (min-width: 1280px) {
  .c-hamburger.notfixed {
    top: 166px;
  }
}
body.home .c-hamburger.notfixed {
  top: -55px;
}
@media screen and (min-width: 1280px) {
  body.home .c-hamburger.notfixed {
    top: 0;
  }
}
.c-hamburger.-active {
  background-color: transparent;
}
.c-hamburger.-active .c-hamburger__line:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(-45deg);
          transform: translateY(8px) rotate(-45deg);
}
.c-hamburger.-active .c-hamburger__line:nth-child(2) {
  -webkit-transform: translateY(-7px) rotate(45deg);
          transform: translateY(-7px) rotate(45deg);
}
.c-hamburger.hide {
  -webkit-transform: translateY(-150%);
          transform: translateY(-150%);
}
@media (any-hover: hover) {
  .c-hamburger:hover {
    background-color: #261A1A;
  }
}
.c-hamburger:active {
  background-color: #261A1A;
}

#btnMenu.-active > * {
  opacity: 0;
}

#drawerBtn {
  background-color: transparent;
}
#drawerBtn > * {
  opacity: 0;
}
#drawerBtn.-active > * {
  opacity: 1;
}
#drawerBtn.rapid_disappear {
  -webkit-transition: none;
  transition: none;
}

.c-hamburger__line {
  background-color: #FFF;
  display: inline-block;
  height: 2px;
  width: 100%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.c-hamburger__line:nth-child(2) {
  margin-top: 13px;
}

/* menuのテキスト */
.c-hamburger .c-hamburger__text {
  margin-top: 5px;
  color: #FFF;
  font-size: 15px;
  font-weight: 400;
  font-family: YakuHanJP, "Helvetica Neue", sans-serif;
}
@media screen and (min-width: 1280px) {
  .c-hamburger .c-hamburger__text {
    font-size: 18px;
  }
}

/* =============================================
ドロワーメニュー/ハンバーガーボタンアクティブ時の表示
============================================= */
.p-drawer-menu {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0.3s, opacity 0.3s ease;
  transition: visibility 0.3s, opacity 0.3s ease;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  z-index: 8000;
  background-image: url(../images/common/wood-body-bg.jpg);
  background-repeat: repeat;
  background-position: center;
  background-size: contain;
}

.p-drawer-menu__inner {
  background-color: #261A1A;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-drawer-menu__inner {
    max-width: 960px;
  }
}
@media screen and (min-width: 1280px) {
  .p-drawer-menu__inner {
    max-width: 1440px;
  }
}

/* ドロワーメニューアクティブ時 */
.p-drawer-menu.-active {
  visibility: visible;
  opacity: 1;
}

/* =============================================
CVバー/TOP/CVバー位置調整
============================================= */
.c-cv-bar {
  max-width: 430px;
  margin-inline: auto;
  height: 65px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #F1F0E0;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 768px) {
  .c-cv-bar {
    max-width: 960px;
  }
}
@media screen and (min-width: 1280px) {
  .c-cv-bar {
    max-width: 655px;
    margin-left: 0;
    margin-right: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.c-cv-bar.hide {
  -webkit-transform: translateY(150%);
          transform: translateY(150%);
}
@media screen and (min-width: 1280px) {
  .c-cv-bar.hide {
    -webkit-transform: none;
            transform: none;
  }
}

.c-cv-bar__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .c-cv-bar__list {
    max-width: 680px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1280px) {
  .c-cv-bar__list {
    max-width: none;
    margin: 0;
  }
}
.c-cv-bar__list .c-cv-bar__item {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-cv-bar__list .c-cv-bar__item .c-cv-bar__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  width: 100%;
  font-weight: 300;
  text-align: center;
  font-size: clamp(0.688rem, 0.142rem + 2.73vw, 0.875rem);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .c-cv-bar__list .c-cv-bar__item .c-cv-bar__link:hover {
    background-color: #333;
    color: #fff;
  }
}
.c-cv-bar__list .c-cv-bar__item .c-cv-bar__link:active {
  background-color: #333;
  color: #fff;
}
@media screen and (min-width: 430px) {
  .c-cv-bar__list .c-cv-bar__item .c-cv-bar__link {
    font-size: 14px;
  }
}
@media screen and (min-width: 1280px) {
  .c-cv-bar__list .c-cv-bar__item .c-cv-bar__link {
    font-size: 16px;
    white-space: nowrap;
    padding: 25px;
  }
}
@media screen and (min-width: 1280px) and (any-hover: hover) {
  body:not(.home) .c-cv-bar__list .c-cv-bar__item .c-cv-bar__link:hover {
    background-color: transparent;
    color: #C04125;
    text-decoration: underline;
  }
}
@media screen and (min-width: 1280px) {
  body:not(.home) .c-cv-bar__list .c-cv-bar__item .c-cv-bar__link:active {
    background-color: transparent;
    color: #C04125;
    text-decoration: underline;
  }
}
.c-cv-bar__list * + *::before {
  content: "";
  display: block;
  width: 1px;
  height: 45px;
  background-color: #999;
  position: absolute;
  left: 0;
}

@media screen and (min-width: 1280px) {
  .p-top-header__cv-menu .c-cv-bar {
    position: absolute;
    bottom: 120%;
    margin-left: auto;
    right: 25px;
  }
}

@media screen and (min-width: 1280px) {
  .p-sub-header__cv-menu {
    position: absolute;
    top: 5px;
    right: 16px;
  }
}

@media screen and (min-width: 1280px) {
  .p-sub-header__cv-menu .c-cv-bar {
    position: static;
    top: -25%;
    position: relative;
  }
}

/* =============================================
サイトメニュー共通レイアウト/p-site-menu・余白管理担当
============================================= */
@media (any-hover: hover) {
  .c-footer__address a:hover, .c-site-nav-subnav__link:hover, .c-site-nav__head-link:hover, .p-site-menu__link:hover {
    color: #AD3A21;
  }
}
.c-footer__address a:active, .c-site-nav-subnav__link:active, .c-site-nav__head-link:active, .p-site-menu__link:active {
  color: #AD3A21;
}

/* homeへ戻るaタグ */
.p-site-menu__link {
  font-weight: 300;
  text-decoration-line: underline;
  color: #eee;
}

.p-site-menu__link.is-current {
  color: #C04125;
}

/* 企業情報とメニューのflex */
.p-site-menu__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
@media screen and (min-width: 1280px) {
  .p-site-menu__flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    position: relative;
    min-height: 100vh;
  }
}

/* PC火の粉画像 */
@media screen and (min-width: 1280px) {
  .p-site-menu__right {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    padding: 80px clamp(20px, -460px + 37.5vw, 80px);
  }
}

/* ドロワー/サイトナビの外側余白 */
.p-site-menu__nav-wrap {
  position: relative;
  padding: 50px 30px 65px 30px;
  margin: 0 auto;
  z-index: 3;
}
@media screen and (min-width: 375px) {
  .p-site-menu__nav-wrap {
    padding: 50px 50px 65px 50px;
    max-width: 400px;
  }
}
@media screen and (min-width: 768px) {
  .p-site-menu__nav-wrap {
    padding: 70px 100px;
    max-width: 800px;
  }
}
@media screen and (min-width: 1280px) {
  .p-site-menu__nav-wrap {
    padding: 0;
    margin: 0;
  }
}

/* PC用divバナーと補助金とボタンの囲み */
.p-site-menu__banner-column {
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 1280px) {
  .p-site-menu__banner-column {
    margin-top: 90px;
  }
}

/* バナー2ヶ所の余白管理 */
.p-site-menu__banner-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

/* ボタンの上余白/ドロワーメニュー内のボタン大きさ */
.p-site-menu__buttons {
  margin-top: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 4.0625rem;
}
@media screen and (min-width: 768px) {
  .p-site-menu__buttons {
    padding-bottom: 5.9375rem;
  }
}
@media screen and (min-width: 1280px) {
  .p-site-menu__buttons {
    padding-bottom: 0;
    margin-top: 45px;
  }
}

/* フッター余白 */
.p-site-menu__footer {
  padding: 64px 55px 42px 54px;
}

.p-site-menu__footer.p-drawer-menu__footer {
  background-color: #C04125;
  padding-bottom: 94px;
}
@media screen and (min-width: 1280px) {
  .p-site-menu__footer.p-drawer-menu__footer {
    display: -ms-grid;
    display: grid;
    padding: 0 75px;
  }
}
@media screen and (min-width: 1280px) {
  .p-site-menu__footer.p-drawer-menu__footer .p-site-menu__footer-wrap {
    max-height: 100vh;
    place-content: center;
  }
}

/* =============================================
ドロワー・フッターで使用するナビゲーションのコンポーネント
============================================= */
.c-site-nav a.is-current {
  color: #C04125;
}

.c-site-nav__lists {
  margin-top: 27px;
}
@media screen and (min-width: 768px) {
  .c-site-nav__lists {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 37px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: auto 23px auto;
        grid-template-areas: "node1 node2" ". node3";
    gap: 37px;
    row-gap: 23px;
  }
}
.c-site-nav__lists .node1 {
  grid-area: node1;
}
.c-site-nav__lists .node2 {
  grid-area: node2;
}
.c-site-nav__lists .node3 {
  grid-area: node3;
}
@media screen and (min-width: 768px){
  .c-site-nav__lists .node1 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .c-site-nav__lists .node2 {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .c-site-nav__lists .node3 {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
}

.c-site-nav__node:not(:first-child) {
  margin-top: 2.125rem;
}
@media screen and (min-width: 768px) {
  .c-site-nav__node:not(:first-child) {
    margin-top: 0;
  }
}

.c-site-nav__head-link {
  color: #EEE;
  font-size: 1rem;
  font-weight: 300;
  text-decoration-line: underline;
}

.c-site-nav-subnav__list {
  margin-top: 1.0625rem;
  padding: 10px 20px;
  width: 100%;
  border-radius: 10px;
  background: #312424;
}

.c-site-nav-subnav__item {
  color: #EEE;
  font-size: 0.8125rem;
  text-decoration-line: underline;
  width: 100%;
}

.c-site-nav-subnav__item:not(:first-child) {
  margin-top: 5px;
}

.c-site-nav-subnav__link {
  display: inline-block;
  width: 100%;
  padding: 10px 0;
  text-decoration: underline;
}

/* =============================================
ドロワーメニューhoverスタイル
============================================= */
/* =============================================
バナー/初めての薪ストーブ・薪ストーブ補助金まで
============================================= */
.c-banner {
  position: relative;
  max-width: 300px;
  margin-inline: auto;
  overflow: hidden;
}
@media (any-hover: hover) {
  .c-banner:hover .c-banner__img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .c-banner:hover .c-banner__txt.c-banner__txt--triangle {
    padding-right: 30px;
  }
  .c-banner:hover .c-banner__txt.c-banner__text-long {
    width: 90%;
  }
}
.c-banner:active .c-banner__img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.c-banner:active .c-banner__txt.c-banner__txt--triangle {
  padding-right: 30px;
}
.c-banner:active .c-banner__txt.c-banner__text-long {
  width: 90%;
}

.c-banner__img {
  aspect-ratio: 300/320;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-banner a {
  display: inline-block;
  height: inherit;
}

.c-banner__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.c-banner__sentence {
  position: absolute;
  top: 16px;
  left: 14px;
}

.c-banner__text-body {
  position: absolute;
  left: 14px;
  bottom: 20px;
}

/* 黄色帯テキスト */
.c-banner__txt {
  color: #000;
  font-size: 15px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 6px 20px 6px 10px;
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #FCDE00;
  position: relative;
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-banner__txt:not(:first-child) {
  margin-top: 3px;
}

.c-banner__txt.c-banner__text-long {
  width: 85%;
}

.c-banner__txt--triangle::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 26px solid transparent;
  border-right: 26px solid transparent;
  border-top: 30px solid #FCDE00;
  position: absolute;
  right: -40px;
  /* 擬似要素を右端に配置 */
  top: 51%;
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
  /* 縦中央に配置し90度回転 */
}

/* 薪ストーブ補助金バナー */
.c-hojokin {
  max-width: 300px;
  width: 100%;
  margin-inline: auto;
  background-color: #638866;
  padding: 20px;
  position: relative;
  overflow-x: hidden;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media (any-hover: hover) {
  .c-hojokin:hover {
    background-color: #333;
  }
}
.c-hojokin:active {
  background-color: #333;
}

.c-hojokin__body {
  color: #fff;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
}

.c-hojokin__body p:first-child {
  font-size: 22px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 2.2px;
}

.c-hojokin__body p:nth-of-type(2) {
  margin-top: 6px;
  font-size: 11px;
  line-height: 16px;
  font-weight: 300;
}

.c-hojokin::after {
  content: "";
  display: inline-block;
  background-image: url(../images/common/hojokin.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 110px;
  height: 86px;
  position: absolute;
  right: -28px;
  bottom: 0;
}

/* =============================================
ドロワー内フッター共通パーツ[c-footer]
============================================= */
.c-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.8125rem;
  color: #eee;
  font-size: 0.875rem;
}
@media screen and (min-width: 600px) {
  .c-footer {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.c-footer__logo-wrap {
  margin-inline: auto;
}

.c-footer__body {
  margin-top: 1.875rem;
}

.c-footer__name {
  font-weight: 600;
  font-style: normal;
}

.c-footer__tel {
  font-family: "Helvetica Neue";
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  font-style: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-footer__tel::before {
  content: "";
  display: inline-block;
  background: #EEEEEE;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-image: url(../images/common/phone.svg);
          mask-image: url(../images/common/phone.svg);
  width: 30px;
  height: 30px;
  margin-right: 3px;
  position: relative;
}

.c-footer__address {
  margin-top: 7px;
  font-weight: 600;
  font-style: normal;
}
.c-footer__address a {
  text-decoration: underline;
}

.c-footer__business-hours {
  margin-top: 5px;
  font-weight: 300;
}

.c-footer__sns {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.c-footer__sns a {
  -webkit-transition: scale 0.3s;
  transition: scale 0.3s;
}
@media (any-hover: hover) {
  .c-footer__sns a:hover {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.c-footer__sns a:active {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

/* =============================================
topのレイアウト
============================================= */
.p-top-header {
  position: relative;
}
@media screen and (min-width: 1280px) {
  .p-top-header {
    z-index: 10;
  }
}

/* =============================================
下層ページのレイアウト/スクロールするとメインメニューが出る/スマホはハンバーガーボタン
============================================= */
.p-sub-header {
  height: 100px;
  background-color: #F1F0E0;
  z-index: 1000;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-sub-header {
    height: 150px;
  }
}
@media screen and (min-width: 1280px) {
  .p-sub-header {
    height: 285px;
  }
}

.p-sub-header__inner {
  padding: 15px;
}
@media screen and (min-width: 768px) {
  .p-sub-header__inner {
    padding: 30px;
  }
}
@media screen and (min-width: 1280px) {
  .p-sub-header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 30px 15px 40px 50px;
  }
}

.p-sub-header::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: #C04125;
  top: 100%;
  z-index: 10;
}
@media screen and (min-width: 1280px) {
  .p-sub-header::after {
    display: none;
  }
}

/* メインメニューはSPからtabでは非表示 */
.p-sub-header__main-nav .p-main-nav {
  display: none;
}
@media screen and (min-width: 1280px) {
  .p-sub-header__main-nav .p-main-nav {
    display: block;
    width: 100%;
  }
}

/* =============================================
オープニング（ローディング）
============================================= */
#loading {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #261A1A;
  overflow: hidden;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 0;
}
#loading .logo {
  width: 200px;
  opacity: 0;
  visibility: hidden;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
#loading .hinoko {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/* =============================================
MV（TOP）
============================================= */
@media screen and (min-width: 768px) {
  .p-mv {
    height: 653px;
  }
}
@media screen and (min-width: 1280px) {
  .p-mv {
    height: 800px;
  }
}

.p-mv__sp {
  display: inline;
}
@media screen and (min-width: 1280px) {
  .p-mv__sp {
    display: none;
  }
}

.p-mv__sp img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-mv__pc {
  display: none;
}
@media screen and (min-width: 1280px) {
  .p-mv__pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: inherit;
  }
}

.p-mv__pc img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.p-mv__banner {
  aspect-ratio: 406/800;
  position: relative;
}

.p-mv__banner-sentence {
  position: absolute;
  top: 42px;
  left: 19px;
}

.p-mv__banner-text-body {
  position: absolute;
  bottom: 15%;
  left: 5px;
}

.p-mv__banner-txt {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 6px 20px 6px 10px;
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #FCDE00;
  position: relative;
  left: 14px;
  bottom: 11px;
  display: inline-block;
}

.p-mv__banner-txt:not(:first-child) {
  margin-top: 7px;
}

.p-mv__banner-txt.p-mv__banner-text-long {
  width: 85%;
}

.p-mv__banner__txt--triangle::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 28px solid transparent;
  border-right: 28px solid transparent;
  border-top: 40px solid #FCDE00;
  position: absolute;
  right: -40px;
  /* 擬似要素を右端に配置 */
  top: 51%;
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
  /* 縦中央に配置し90度回転 */
}

/* =============================================
TOPページ main(.p-top)
============================================= */
.p-top_mv {
  width: 100%;
  max-height: 800px;
  aspect-ratio: 375/510;
  position: relative;
}
@media screen and (min-width: 1280px) {
  .p-top_mv {
    width: calc(100% - 400px);
    z-index: 2;
  }
}
.p-top_mv .movie {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top_mv .movie.movie-1 {
  -o-object-position: 25% 0;
     object-position: 25% 0;
}
@media screen and (min-width: 768px) {
  .p-top_mv .movie.movie-1 {
    -o-object-position: 0;
       object-position: 0;
  }
}
.p-top_mv .movie.movie-2 {
  -o-object-position: 44% 0;
     object-position: 44% 0;
}

/* top/spバナー */
.p-top__banner-wrap {
  height: 330px;
  background-color: #638866;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top__banner-wrap {
    height: 355px;
  }
}
@media screen and (min-width: 1280px) {
  .p-top__banner-wrap {
    width: 400px;
    height: 800px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
  }
}

.p-top__banner.c-banner {
  max-width: 343px;
  position: relative;
  top: -20px;
  z-index: 50;
}
@media screen and (min-width: 768px) {
  .p-top__banner.c-banner {
    max-width: 380px;
  }
}
@media screen and (min-width: 1280px) {
  .p-top__banner.c-banner {
    max-width: none;
    overflow: visible;
  }
}

.p-top__banner .c-banner__img {
  aspect-ratio: 340/435;
}
@media screen and (min-width: 768px) {
  .p-top__banner .c-banner__img {
    aspect-ratio: 380/485;
  }
}
@media screen and (min-width: 1280px) {
  .p-top__banner .c-banner__img {
    aspect-ratio: 400/660;
    clip-path: polygon(0 0, 100% 0, 100% 87%, 0 100%);
  }
}
.p-top__banner .c-banner__img img {
  -o-object-position: top right;
     object-position: top right;
}

.p-top__banner .c-banner__sentence {
  top: 35px;
}
@media screen and (min-width: 1280px) {
  .p-top__banner .c-banner__sentence {
    top: 50px;
  }
}

.p-top__banner .c-banner__sentence img {
  max-width: 160px;
  aspect-ratio: 160/228;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-top__banner .c-banner__sentence img {
    max-width: 180px;
    aspect-ratio: 180/254;
  }
}

@media screen and (min-width: 1280px) {
  .p-top__banner .c-banner__text-body {
    bottom: -10px;
  }
}

.p-top__banner .c-banner__txt {
  font-weight: 600;
  padding: 2% 5% 2% 3%;
}
@media screen and (min-width: 768px) {
  .p-top__banner .c-banner__txt {
    font-size: 16px;
    padding: 2% 9% 2% 3%;
  }
}

/* =============================================
top/Showroom section(.p-topShowroom）
============================================= */
.p-topShowroom {
  position: relative;
  z-index: 1;
  padding-top: 145px;
}
@media screen and (min-width: 768px) {
  .p-topShowroom {
    padding-top: 183px;
  }
}
@media screen and (min-width: 1280px) {
  .p-topShowroom {
    padding-top: 100px;
  }
}

.p-topShowroom__inner-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  position: relative;
}
@media screen and (min-width: 1280px) {
  .p-topShowroom__inner-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    max-width: 1362px;
    padding: 0 25px;
    margin-inline: auto;
  }
}

.p-topShowroom::after {
  content: "";
  display: inline-block;
  background-image: url(../images/common/nenrin.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 286px;
  position: absolute;
  top: var(--nenrin-pos, -200px);
  right: -30%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-topShowroom::after {
    height: 300px;
  }
}
@media screen and (min-width: 1280px) {
  .p-topShowroom::after {
    height: 600px;
    right: -40%;
  }
}

.p-topShowroom__business {
  padding: 0 15px;
  position: relative;
  top: -12px;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-topShowroom__business {
    min-width: 450px;
    width: 450px;
    margin-inline: auto;
    padding: 0;
    top: -24px;
  }
}
@media screen and (min-width: 1280px) {
  .p-topShowroom__business {
    top: 0;
    margin-inline: initial;
  }
}

.p-topShowroom__title-wrap {
  height: 100px;
  padding: 15px 15px 19px 20px;
  background: #999;
}
@media screen and (min-width: 768px) {
  .p-topShowroom__title-wrap {
    padding: 46px 35px;
    height: 170px;
  }
}
.p-topShowroom__title-wrap .c-section-title {
  display: -ms-grid;
  display: grid;
}

.p-topShowroom__business-wrap {
  padding: 32px 18px 22px 12px;
}
@media screen and (min-width: 768px) {
  .p-topShowroom__business-wrap {
    padding: 32px 18px 18px 29px;
  }
}

.p-topShowroom__button {
  margin-top: 36px;
  text-align: right;
}

.p-topShowroom__img {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #000;
}
.p-topShowroom__img .photo {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  -webkit-transition: opacity 1.5s ease-in-out;
  transition: opacity 1.5s ease-in-out;
  top: 0;
  left: 0;
}
.p-topShowroom__img .photo.active {
  opacity: 1;
}

.p-topShowroom__img img,
.p-topShowroom__img picture {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* =============================================
top/Product取扱ブランド section(.p-topProduct
============================================= */
.p-topProduct {
  padding-top: 209px;
  padding-bottom: 160px;
}
@media screen and (min-width: 768px) {
  .p-topProduct {
    padding-top: 249px;
    padding-bottom: 170px;
  }
}

.p-topProduct__title {
  position: relative;
}

.p-topProduct__title::after {
  content: "";
  display: block;
  background-image: url(../images/woodstove/wood-stove-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 120px;
  height: 120px;
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/* ブランドのリスト */
.p-topProduct__list-wrap {
  padding: 0 10px;
}

.p-topProduct__list {
  margin-top: 37px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  max-width: 310px;
  margin-inline: auto;
}
@media screen and (min-width: 375px) {
  .p-topProduct__list {
    max-width: 356px;
  }
}
@media screen and (min-width: 430px) {
  .p-topProduct__list {
    max-width: 400px;
  }
}
@media screen and (min-width: 768px) {
  .p-topProduct__list {
    margin-top: 74px;
    max-width: 534px;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1280px) {
  .p-topProduct__list {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    max-width: 1000px;
  }
}

/* その他の取り扱いメーカー */
.p-topProduct__other {
  margin-top: 42px;
  padding: 0 5%;
}
@media screen and (min-width: 1280px) {
  .p-topProduct__other {
    margin-top: 53px;
    max-width: 1134px;
    margin-inline: auto;
    padding: 0;
  }
}

.p-topProduct__other-inner {
  background: #F7F6EB;
  padding: 30px 28px 37px 28px;
  border-radius: 40px;
}
@media screen and (min-width: 1280px) {
  .p-topProduct__other-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 15px 54px;
    border-radius: 45px;
    gap: 40px;
  }
}

.p-topProduct__notice {
  text-align: center;
  color: #000;
  font-size: 1rem;
}
@media screen and (min-width: 1280px) {
  .p-topProduct__notice {
    text-align: left;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}

.p-topProduct__notice span {
  color: #999;
  font-size: 0.875rem;
}

.p-topProduct__other-brands {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 13px;
  row-gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-topProduct__other-brands {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 1280px) {
  .p-topProduct__other-brands {
    margin-top: 0;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 27px;
  }
}

.p-topProduct__brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: flex;
}
@media screen and (min-width: 1280px) {
  .p-topProduct__brand {
    /*グリットアイテムを3グリット分の大きさにする*/
    -ms-grid-row-span: 2;
    grid-row: span 2;
    /*サブグリットの指定*/
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-topProduct__brand p {
  text-align: center;
  color: #666;
  font-size: 12px;
}

.p-topProduct__brand {
  max-width: 110px;
}

.p-topProduct__brand img {
  -o-object-fit: contain;
     object-fit: contain;
  mix-blend-mode: multiply;
}

.p-topNews__button {
  margin-top: 64px;
  text-align: center;
}

/* =============================================
top/news&blog お知らせとブログ section(.p-topNews)
============================================= */
.p-topNews {
  padding-top: 50px;
  padding-bottom: 62px;
  background-color: #D1D0B2;
}
@media screen and (min-width: 768px) {
  .p-topNews {
    padding-top: 88px;
    padding-bottom: 76px;
  }
}
@media screen and (min-width: 768px) {
  .p-topNews {
    padding-top: 117px;
    padding-bottom: 104px;
  }
}

.p-topNews__inner {
  padding: 0 10px;
}
@media screen and (min-width: 768px) {
  .p-topNews__inner {
    max-width: 355px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1280px) {
  .p-topNews__inner {
    max-width: 800px;
    padding: 0;
  }
}

.p-topNews__list {
  margin-top: 57px;
}
@media screen and (min-width: 768px) {
  .p-topNews__list {
    margin-top: 76px;
  }
}
@media screen and (min-width: 1280px) {
  .p-topNews__list {
    margin-top: 87px;
  }
}

/* =============================================
top/works 施工事例 section(.p-topWoks)
============================================= */
.p-topWoks {
  padding-top: 125px;
  padding-bottom: 222px;
}
@media screen and (min-width: 768px) {
  .p-topWoks {
    padding-top: 155px;
    padding-bottom: 175px;
  }
}
@media screen and (min-width: 1280px) {
  .p-topWoks {
    padding-top: 155px;
    padding-bottom: 350px;
  }
}

.p-topWoks__inner {
  padding: 0 3% 0 5%;
}
@media screen and (min-width: 768px) {
  .p-topWoks__inner {
    padding: 0 24px;
  }
}

.p-topWoks__list {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .p-topWoks__list {
    margin-top: 90px;
  }
}

.p-topWoks__button {
  margin-top: 74px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-topWoks__button {
    margin-top: 90px;
  }
}

/* =============================================
WP-PageNaviのコンテナスタイル
============================================= */
.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 33px;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi {
    gap: 20px;
  }
}

/* WP-PageNaviのリンクスタイル */
.wp-pagenavi a {
  color: #fff;
  font-size: 16px;
  width: 50px;
  height: 50px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media (any-hover: hover) {
  .wp-pagenavi a:hover {
    background-color: #AD3A21 !important;
  }
}
.wp-pagenavi a:active {
  background-color: #AD3A21 !important;
}

/* WP-PageNaviの現在のページスタイルcurrent */
.wp-pagenavi .current {
  background-color: #AD3A21;
  color: #fff;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* WP-PageNaviの非アクティブアイテムスタイル */
.wp-pagenavi a.page,
.wp-pagenavi span.pages {
  background-color: #333;
  color: #fff;
}

span.extend {
  color: #333;
}

/* 共通スタイル */
.wp-pagenavi a.previouspostslink,
.wp-pagenavi a.prev,
.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.next,
.wp-pagenavi a.first,
.wp-pagenavi a.last {
  text-indent: -9999px;
  overflow: hidden;
  display: block;
  background-color: #333;
  background-repeat: no-repeat;
  background-position: center;
  width: 50px;
  height: 50px;
  border: none;
  cursor: pointer;
  position: relative;
}

/* '前へ' ＜ボタンのスタイル */
.wp-pagenavi a.previouspostslink:before,
.wp-pagenavi a.prev:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  top: calc(50% - 4px);
  left: calc(50% - 2px);
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

/* '次へ' ＞ボタンのスタイル */
.wp-pagenavi a.nextpostslink:before,
.wp-pagenavi a.next:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  top: calc(50% - 4px);
  left: calc(50% - 8px);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* 'トップへ戻る'|<矢印のスタイル */
.wp-pagenavi a.first:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  top: calc(50% - 4px);
  left: calc(50% + 1px);
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.wp-pagenavi a.first:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 1px;
  height: 15px;
  background-color: #fff;
  top: calc(50% - 7px);
  left: calc(50% - 3px);
}

/* '最後へ' >|矢印のスタイル */
.wp-pagenavi a.last:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  top: calc(50% - 4px);
  left: calc(50% - 10px);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.wp-pagenavi a.last:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 1px;
  height: 15px;
  background-color: #fff;
  top: calc(50% - 6px);
  left: calc(50% + 3px);
}

/* =============================================
パンくず
============================================= */
.p-top {
  position: relative;
}

.c-page-breadcrumb {
  position: absolute;
  bottom: 16px;
  padding-left: 13px;
  padding-right: 13px;
}
@media screen and (min-width: 1280px) {
  .c-page-breadcrumb {
    padding-left: 117px;
  }
}

/* ここからプラグインのコード↓ */
.breadcrumb span:not(.current-item) a span {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .breadcrumb span:not(.current-item) a:hover {
    color: #C04125;
  }
}
.breadcrumb span:not(.current-item) a:active {
  color: #C04125;
}

.breadcrumb__between {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-image: url("../images/common/breadcrumb.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 7px 0 10px;
}

.breadcrumb span {
  font-size: 13px;
  line-height: 1.6;
}

.breadcrumb span[property=name] {
  display: inline-block;
  padding: 0;
  vertical-align: middle;
  max-width: 20em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* =============================================
footer
============================================= */
.p-footer {
  position: relative;
  background-color: #261A1A;
  z-index: 1;
  padding-bottom: 94px;
  /* PCレイアウト */
}
@media screen and (min-width: 1280px) {
  .p-footer {
    padding-bottom: 24px;
  }
}
.p-footer .p-footer__inner {
  position: relative;
  z-index: 3;
}
.p-footer .p-site-menu__footer {
  padding-top: 100px;
}
@media screen and (min-width: 1280px) {
  .p-footer .p-site-menu__footer {
    padding-top: 70px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 30px;
  }
}
.p-footer .p-site-menu__buttons {
  margin-top: 48px;
}
@media screen and (min-width: 1280px) {
  .p-footer .p-site-menu__buttons {
    margin-top: 0;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-footer .p-site-menu__nav-wrap {
    padding: 120px 145px 0px 145px;
  }
}
@media screen and (min-width: 1280px) {
  .p-footer .p-site-menu__nav-wrap {
    padding: 30px 80px 0;
    max-width: 960px;
    margin: 0 auto;
  }
}
.p-footer .p-site-menu__flex {
  min-height: auto;
}
@media screen and (min-width: 1280px) {
  .p-footer .p-site-menu__flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 1280px) {
  .p-footer .p-site-menu__right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 80px 0 30px;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
@media screen and (min-width: 1280px) {
  .p-footer .p-site-menu__banner-column {
    position: static;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-right: 30px;
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-footer .p-site-menu__buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-item-align: self-start;
        -ms-grid-row-align: self-start;
        align-self: self-start;
    width: 700px;
    margin: 40px auto 0;
  }
}
@media screen and (min-width: 1280px) {
  .p-footer .p-site-menu__buttons {
    width: auto;
    margin: 0;
  }
}
@media screen and (min-width: 1280px) {
  .p-footer .p-site-menu__banner-wrap {
    margin-top: -300px;
    z-index: 10;
  }
}
@media screen and (min-width: 1280px) {
  .p-footer .c-site-nav__lists {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-footer .c-footer {
  gap: 0;
}
@media screen and (min-width: 1280px) {
  .p-footer .c-footer {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-footer .c-footer__logo-wrap {
  max-width: 200px;
}
@media screen and (min-width: 768px) {
  .p-footer .c-footer__logo-wrap {
    margin-inline: 0;
  }
}

.p-footer__company-name {
  margin-top: 151px;
  color: #999;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  display: block;
}
@media screen and (min-width: 1280px) {
  .p-footer__company-name {
    margin-top: 17px;
    text-align: right;
    padding-right: 34px;
  }
}

.p-footer__company-name a {
  text-decoration-line: underline;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media (any-hover: hover) {
  .p-footer__company-name a:hover {
    color: #AD3A21;
  }
}
.p-footer__company-name a:active {
  color: #AD3A21;
}

/* =============================================
works-detail施工事例
============================================= */
/* =============================================\
施工事例セクション(p-works-section)
============================================= */
.p-works-section {
  margin-top: 35px;
  margin-bottom: 150px;
}
@media screen and (min-width: 768px) {
  .p-works-section {
    margin-top: 55px;
    margin-bottom: 200px;
  }
}

@media screen and (min-width: 768px) {
  .p-works-section__inner.l-inner {
    max-width: 1350px;
    margin-inline: auto;
  }
}

.p-works-section__list.c-works-case {
  display: block;
}

.p-works-section .c-works-case {
  max-width: none;
}

.p-works-section__case {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-works-section__image--full {
  /* ビューポート全体の幅に設定 */
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  /* ビューポート幅に基づいて中央に揃える */
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  /* 必要に応じて画像のアスペクト比を維持 */
}
@media screen and (min-width: 768px) {
  .p-works-section__image--full {
    height: auto;
    margin: 0;
    width: 100%;
  }
}

.p-works-section__image--full img {
  margin-inline: auto;
  max-width: 430px;
}
@media screen and (min-width: 768px) {
  .p-works-section__image--full img {
    max-width: none;
  }
}

.p-works-section .c-works-case__body {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.p-works-section .c-works-case__image {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.p-works-section .c-works-case__tags {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-top: 10px;
  padding-left: 10%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (min-width: 768px) {
  .p-works-section .c-works-case__tags {
    padding-left: 30%;
  }
}

.p-works-section .c-works-case__tags a {
  color: #333;
  font-size: 1rem;
  font-weight: 300;
  line-height: 28px;
  text-decoration-line: underline;
}
@media (any-hover: hover) {
  .p-works-section .c-works-case__tags a:hover {
    color: #C04125;
  }
}
.p-works-section .c-works-case__tags a:active {
  color: #C04125;
}

.p-works-section__description-wrap {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-works-section__description-wrap {
    margin-top: 80px;
    width: 75%;
    max-width: 800px;
    margin-inline: auto;
  }
}

.p-works-section__description {
  text-align: justify;
  font-size: 16px;
  line-height: 28px;
}

.p-works-section__description-list {
  margin-top: 40px;
}

.p-works-section__gallery {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.p-works-section__button {
  margin-top: 80px;
  text-align: center;
}

/* youtube */
.youtube {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* =============================================
voice/お客様の声(p-voice)
============================================= */
.p-voice {
  background-color: #D1D0B2;
  padding-top: 50px;
  padding-bottom: 67px;
}
@media screen and (min-width: 768px) {
  .p-voice {
    padding-top: 76px;
  }
}

.p-voice__inner.l-inner {
  margin-top: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-voice__inner.l-inner {
    width: 65%;
    max-width: 750px;
    margin-inline: auto;
  }
}

.p-voice__head {
  text-align: center;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .p-voice__head {
    font-size: 30px;
  }
}

.p-voice p {
  text-align: justify;
  font-size: 1rem;
  line-height: 28px;
}
.p-voice p a {
  text-decoration: underline;
}

.p-voice__image--full {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-voice__image--full {
    margin: 0;
  }
}

.p-voice__image--full img {
  margin-inline: auto;
  max-width: 430px;
}
@media screen and (min-width: 768px) {
  .p-voice__image--full img {
    max-width: none;
  }
}

.p-voice__image {
  height: 262px;
}
@media screen and (min-width: 768px) {
  .p-voice__image {
    height: 490px;
  }
}

.p-voice__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .p-voice__gallery {
    aspect-ratio: 700/1050;
  }
}

.p-voice__gallery img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* =============================================
その他の施工事例(p-otherWorks)
============================================= */
.p-otherWorks {
  margin-top: 150px;
}
@media screen and (min-width: 768px) {
  .p-otherWorks {
    margin-top: 200px;
  }
}

.p-otherWorks__list {
  margin-top: 80px;
}

/* =============================================
works(施工事例)
============================================= */
.p-works {
  padding-bottom: 267px;
}
@media screen and (min-width: 768px) {
  .p-works {
    padding-bottom: 397px;
  }
}

.p-works__search-wrap {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 7px;
}
@media screen and (min-width: 768px) {
  .p-works__search-wrap {
    margin-top: 70px;
    padding-right: 10%;
  }
}
@media screen and (min-width: 1280px) {
  .p-works__search-wrap {
    padding-right: 6%;
  }
}

.p-works__content-wrap {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .p-works__content-wrap {
    margin-top: 20px;
  }
}

.p-works__list {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .p-works__list {
    margin-top: 100px;
  }
}

.p-works__pagenavi-wrap {
  margin-top: 100px;
}
@media screen and (min-width: 768px) {
  .p-works__pagenavi-wrap {
    margin-top: 200px;
  }
}

/* =============================================
products(製品情報)
============================================= */
/* ブランドの一覧表示横一列 */
.p-product__brand-filter {
  width: 100%;
  overflow-x: auto;
  padding: 30px 10px;
}

.p-product__list-row {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-product__list-row .c-product__node {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 105px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5px 0;
  border-top: none;
}
@media screen and (min-width: 768px) {
  .p-product__list-row .c-product__node {
    width: 130px;
  }
}
.p-product__list-row .c-product__brand.c-product__brand--small {
  font-size: 12px;
}
.p-product__list-row .c-product__brand.c-product__brand--weight-bold {
  font-weight: 600;
}
.p-product__list-row .gridline.tate {
  height: calc(100% + 20px);
}
.p-product__list-row .gridline.yoko {
  width: calc(100% + 20px);
}
@media screen and (min-width: 1280px) {
  .p-product__list-row .gridline.yoko {
    width: 100vw;
    max-width: 1440px;
  }
}

.p-products__search-wrap {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 7px;
}
@media screen and (min-width: 768px) {
  .p-products__search-wrap {
    margin-top: 70px;
    padding-right: 10%;
  }
}
@media screen and (min-width: 1280px) {
  .p-products__search-wrap {
    padding-right: 6%;
  }
}

.c-modal.p-products__modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-modal.p-products__modal .c-modal__tag-content {
  margin-top: 0;
}

.c-modal__body.p-products__modal-body {
  max-height: 60%;
  /* モーダルの最小高さを設定 */
}

.p-products__content-wrap {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .p-products__content-wrap {
    margin-top: 20px;
  }
}

.p-products__brand-info {
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  border-radius: 10px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .p-products__brand-info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 800px;
    margin-inline: auto;
    padding: 20px 30px;
    gap: 30px;
  }
}

.p-products__brand-info p {
  color: #000;
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .p-products__brand-logo {
    width: 115px;
    height: 115px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.p-products__list {
  margin-top: 60px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 768px) {
  .p-products__list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    max-width: 960px;
    margin-inline: auto;
  }
}
.p-products__list .c-product__node {
  padding: 20px;
}
.p-products__list .c-product__brand {
  text-align: left;
  font-weight: 600;
  font-size: 16px;
}
.p-products__list .c-product__label {
  margin-top: 10px;
}

.p-products__pagenavi-wrap {
  margin-top: 100px;
}
@media screen and (min-width: 768px) {
  .p-products__pagenavi-wrap {
    margin-top: 200px;
  }
}

/* =============================================
products-detail(製品情報詳細)
============================================= */
.p-products-detail__inner {
  margin-top: 55px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-products-detail__inner {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.p-products-detail__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-products-detail__flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    max-width: 1125px;
    margin-inline: auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 40px;
  }
}

.p-products-detail__right {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-products-detail__right {
    display: block;
    max-width: 500px;
  }
}

.p-products-detail__header img {
  mix-blend-mode: multiply;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-products-detail__header {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.p-products-detail__body {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.p-products-detail__photo {
  mix-blend-mode: multiply;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-products-detail__photo {
    width: 50%;
    height: 60%;
    margin-top: 0;
  }
}
@media screen and (min-width: 1280px) {
  .p-products-detail__photo {
    width: 100%;
    max-width: 560px;
    height: 700px;
  }
}

.p-products-detail__photo img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
}

.p-products-detail__title {
  font-size: 32px;
  font-weight: 600;
  margin-top: 30px;
}

.p-products-detail__title span {
  font-size: 16px;
  display: block;
}

.p-products-detail__labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.p-products-detail__label {
  color: #FFF;
  text-align: center;
  font-size: 14px;
  padding: 2px 5px;
  background-color: #638866;
}

.p-products-detail__label--second {
  background-color: #C04125;
}

.p-products-detail__description {
  margin-top: 20px;
  color: #000;
  text-align: justify;
  font-size: 1rem;
  line-height: 28px;
}
@media screen and (min-width: 768px) {
  .p-products-detail__description {
    margin-top: 35px;
  }
}

.p-products-detail__tags {
  margin-top: 40px;
}

.p-products-detail__options {
  margin-top: 40px;
}

.p-products-detail__option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
}

.p-products-detail__option:not(:first-child) {
  margin-top: 15px;
}

.p-products-detail__color {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.p-products-detail__color.p-products-detail__color--01 {
  background-color: #000;
}

.p-products-detail__color.p-products-detail__color--02 {
  background-color: #fff;
}

.p-products-detail__selection {
  color: #000;
}

.p-products-detail__selection span {
  margin-left: 20px;
}

/* 商品設置イメージと製品情報リスト */
.p-products-detail__case {
  margin-top: 100px;
}
@media screen and (min-width: 768px) {
  .p-products-detail__case {
    width: 80%;
    max-width: 800px;
    margin-inline: auto;
  }
}

.p-products-detail__case-photo * {
  margin: 0 auto;
}
.p-products-detail__case-photo * + * {
  margin-top: 40px;
}

.p-products-detail__list {
  margin-top: 55px;
}
@media screen and (min-width: 768px) {
  .p-products-detail__list {
    margin-top: 100px;
  }
}

/* この製品の施工事例 */
.p-products-works {
  margin-top: 100px;
}
@media screen and (min-width: 768px) {
  .p-products-works {
    margin-top: 160px;
  }
}

.p-products-detail__works-list {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .p-products-detail__works-list {
    margin-top: 86px;
  }
}

/* 同じブランドの製品 */
.p-brand-products {
  margin-top: 120px;
}
@media screen and (min-width: 768px) {
  .p-brand-products {
    margin-top: 160px;
  }
}

.p-brand-products__inner {
  padding: 0 28px;
}

.p-brand-products__row-list {
  margin-top: 50px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 768px) {
  .p-brand-products__row-list {
    margin-top: 88px;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    max-width: 960px;
    margin-inline: auto;
  }
}
.p-brand-products__row-list .c-product__node {
  padding: 20px;
}
.p-brand-products__row-list .c-product__brand {
  text-align: left;
  font-weight: 600;
  font-size: 16px;
}
.p-brand-products__row-list .c-product__label {
  margin-top: 10px;
}

/* =============================================
アクセサリー（製品情報) products
============================================= */
.p-accessory {
  padding-bottom: 267px;
}
@media screen and (min-width: 768px) {
  .p-accessory {
    padding-bottom: 397px;
  }
}

.p-accessory__content {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .p-accessory__content {
    margin-top: 80px;
    max-width: 1000px;
    margin-inline: auto;
  }
}

.p-accessory__attention {
  margin-top: 50px;
  color: #C04125;
  text-align: right;
  font-size: 14px;
  line-height: 18px;
}

.p-accessory__cards {
  margin-top: 13px;
}
@media screen and (min-width: 768px) {
  .p-accessory__cards {
    margin-top: 25px;
  }
}

.p-accessory__pagenavi-wrap {
  margin-top: 100px;
}
@media screen and (min-width: 768px) {
  .p-accessory__pagenavi-wrap {
    margin-top: 200px;
  }
}

/* =============================================
showroomページ
============================================= */
.p-showroom__head {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-showroom__head {
    margin-top: 50px;
  }
}

.p-showroom__head > p {
  padding: 0 15px;
  font-size: 16px;
  line-height: 1.75;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .p-showroom__head > p {
    max-width: 800px;
    margin-inline: auto;
  }
}

.p-showroom__gallery {
  margin-top: 40px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 5px 1fr 5px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
@media screen and (min-width: 768px) {
  .p-showroom__gallery {
    padding: 0 20px;
    margin-top: 67px;
  }
}
.p-showroom__gallery a {
  display: block;
  overflow: hidden;
}
@media (any-hover: hover) {
  .p-showroom__gallery a:hover img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.p-showroom__gallery a:active img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.p-showroom__gallery li img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 768px) {
  .p-showroom__gallery li img {
    aspect-ratio: 3/2;
  }
}

.p-showroom__movie {
  margin: 40px 0 80px;
}
@media screen and (min-width: 768px) {
  .p-showroom__movie {
    margin: 80px 0;
  }
}
.p-showroom__movie .movie_btn {
  display: block;
  width: 90%;
  max-width: 340px;
  margin: 0 auto;
  background-color: #333;
  color: #fff;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 10, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 10, 0.5);
}
@media screen and (min-width: 768px) {
  .p-showroom__movie .movie_btn {
    width: 80%;
    max-width: 800px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .p-showroom__movie .movie_btn > * {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}
@media (any-hover: hover) {
  .p-showroom__movie .movie_btn:hover .photos::before {
    width: 80px;
    height: 80px;
  }
}
.p-showroom__movie .movie_btn:active .photos::before {
  width: 80px;
  height: 80px;
}
.p-showroom__movie .movie_btn .photos {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #000;
}
.p-showroom__movie .movie_btn .photos .photo {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  -webkit-transition: opacity 1.5s ease-in-out;
  transition: opacity 1.5s ease-in-out;
  top: 0;
  left: 0;
}
.p-showroom__movie .movie_btn .photos .photo.active {
  opacity: 0.5;
}
.p-showroom__movie .movie_btn .photos::before {
  content: "";
  display: block;
  width: 70px;
  height: 70px;
  position: absolute;
  border: solid 3px #fff;
  border-radius: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-showroom__movie .movie_btn .photos::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 17.5px;
  border-color: transparent transparent transparent #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-35%, -50%);
          transform: translate(-35%, -50%);
  z-index: 2;
}
.p-showroom__movie .movie_btn .txt {
  padding: 15px 0;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-showroom__movie .movie_btn .txt {
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-showroom__movie .movie_btn .txt .hosoku {
  display: block;
  font-size: 90%;
  font-weight: normal;
}

.p-showroom__info {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-showroom__info {
    margin-top: 110px;
  }
}

.p-showroom__figure-wrap {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-showroom__figure-wrap {
    margin-top: 160px;
  }
}
@media screen and (min-width: 1280px) {
  .p-showroom__figure-wrap {
    margin-inline: auto;
    padding: 0 100px;
  }
}

@media screen and (min-width: 768px) {
  .p-showroom__figure {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
  }
}
@media screen and (min-width: 1280px) {
  .p-showroom__figure {
    gap: 50px;
  }
}

@media screen and (min-width: 768px) {
  .p-showroom__figure-wrap .p-showroom__figure:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-showroom__figure:not(:first-child) {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-showroom__figure:not(:first-child) {
    margin-top: 65px;
  }
}

.p-showroom__figure figcaption {
  font-size: 16px;
  line-height: 28px;
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .p-showroom__figure figcaption {
    margin-top: 0;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}

.p-showroom__figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-showroom__figure img {
    width: 54%;
  }
}

.p-woodStove {
  margin-top: 100px;
}
@media screen and (min-width: 768px) {
  .p-woodStove {
    margin-top: 200px;
  }
}

.p-woodStove__head-text {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-woodStove__head-text {
    margin-top: 60px;
    text-align: center;
    margin-top: 50px;
  }
}

.p-woodStove__list {
  margin-top: 60px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 768px) {
  .p-woodStove__list {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}

.c-product__node {
  padding: 20px 10px;
  position: relative;
}

.c-product__label {
  text-align: left;
  margin-top: 5px;
  font-weight: normal;
}

.c-product__label span {
  font-weight: 600;
  display: block;
}

.c-product__demo-label {
  color: #FFF;
  font-size: 13px;
  font-weight: 600;
  line-height: 11.121px;
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: #AD3A21;
  border-radius: 50%;
  z-index: 10;
  display: -ms-grid;
  display: grid;
  place-content: center;
  top: 5px;
  left: 5px;
}
@media screen and (min-width: 768px) {
  .c-product__demo-label {
    width: 60px;
    height: 60px;
    top: 10px;
    left: 10px;
  }
}

/* =============================================
staffページ
============================================= */
@media screen and (min-width: 768px) {
  .l-inner.p-staff__inner {
    max-width: 600px;
  }
}
@media screen and (min-width: 1280px) {
  .l-inner.p-staff__inner {
    max-width: 1274px;
  }
}

.p-staff__content {
  margin-top: 40px;
}
@media screen and (min-width: 1280px) {
  .p-staff__content {
    margin-top: 80px;
  }
}

@media screen and (min-width: 1280px) {
  .p-staff__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 62px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media screen and (min-width: 1280px) {
  .p-staff__item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.p-staff__item:not(:first-child) {
  margin-top: 180px;
}
@media screen and (min-width: 1280px) {
  .p-staff__item:not(:first-child) {
    margin-top: 190px;
  }
}

@media screen and (min-width: 768px) {
  .p-staff__details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-staff__profile-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 1280px) {
  .p-staff__profile-img {
    padding-bottom: 20px;
  }
}

.p-staff__profile-img img {
  margin-inline: auto;
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
}

@media screen and (min-width: 768px) {
  .p-staff__body {
    padding-top: 45px;
  }
}
@media screen and (min-width: 1280px) {
  .p-staff__body {
    padding-top: 70px;
  }
}

.p-staff__info {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 1280px) {
  .p-staff__info {
    margin-top: 0;
  }
}

.p-staff__title {
  font-size: 16px;
  font-weight: 300;
  display: block;
}

.p-staff__name {
  margin-top: 5px;
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 1280px) {
  .p-staff__name {
    margin-top: 0;
  }
}

.p-staff__name-english {
  color: #999;
  font-family: "Helvetica Neue";
  font-weight: 400;
  margin-left: 20px;
  font-size: 16px;
}

.p-staff__qualification {
  margin-top: 25px;
  color: #C04125;
  font-weight: 300;
}

.p-staff__description {
  margin-top: 18px;
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  padding: 15px;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .p-staff__description {
    padding: 30px;
    margin-top: 30px;
  }
}

.p-staff__image-extra {
  margin-top: 15px;
}
@media screen and (min-width: 1280px) {
  .p-staff__image-extra {
    margin-top: 0;
    width: 55%;
    max-width: 600px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-top: 70px;
  }
}

.p-staff__image-extra img {
  width: 100%;
  height: auto;
}

.p-staff__item:first-child .p-staff__image-extra {
  position: relative;
}

.p-staff__item:first-child .p-staff__image-extra::after {
  content: "";
  display: inline-block;
  background-image: url(../images/staff/staff-deco.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 100px;
  height: 115px;
  position: absolute;
  top: var(--moyou_staff1-pos, 96%);
  right: -30px;
}
@media screen and (min-width: 768px) {
  .p-staff__item:first-child .p-staff__image-extra::after {
    width: 160px;
    height: 185px;
    right: -50px;
  }
}

.p-staff__item:nth-child(2) .p-staff__image-extra {
  position: relative;
}

.p-staff__item:nth-child(2) .p-staff__image-extra::after {
  content: "";
  display: inline-block;
  background-image: url(../images/common/nenrin-single.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 135px;
  height: 182px;
  position: absolute;
  top: var(--moyou_staff2-pos, 86%);
  left: -75px;
  -webkit-transform: rotate(-34deg);
          transform: rotate(-34deg);
}
@media screen and (min-width: 768px) {
  .p-staff__item:nth-child(2) .p-staff__image-extra::after {
    width: 285px;
    height: 385px;
    left: -50%;
  }
}

/* =============================================
flowページ/ご購入の流れ
============================================= */
.p-flow__content {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-flow__content {
    margin-top: 60px;
  }
}

.p-flow__step-list {
  margin: 0;
}

.p-flow__step-inner {
  padding: 50px 15px 30px 15px;
}
@media screen and (min-width: 768px) {
  .p-flow__step-inner {
    padding: 50px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1080px;
    margin-inline: auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 30px;
  }
}
@media screen and (min-width: 1280px) {
  .p-flow__step-inner {
    padding: 50px 0;
  }
}

.p-flow__step:nth-child(even) {
  background-color: #D1D0B2;
}

@media screen and (min-width: 768px) {
  .p-flow__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 600px;
  }
}

.p-flow__step-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.p-flow__step-number {
  display: -ms-grid;
  display: grid;
  place-content: center;
  width: 60px;
  height: 60px;
  background-color: #C04125;
  color: #fff;
  color: #FFF;
  font-size: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-flow__step-number {
    width: 76px;
    height: 76px;
  }
}

.p-flow__step-number span {
  font-family: "Helvetica Neue";
  font-size: 24px;
  font-weight: 400;
  display: block;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-flow__step-number span {
    font-size: 30px;
  }
}

.p-flow__step-title {
  font-size: 24px;
  font-weight: 300;
  margin-left: 16px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
@media screen and (min-width: 768px) {
  .p-flow__step-title {
    font-size: 32px;
  }
}

.p-flow__description {
  margin-top: 15px;
  font-size: 1rem;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .p-flow__description {
    margin-left: 100px;
    margin-top: 0;
  }
}

.p-flow__description a {
  color: #638866;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .p-flow__description a:hover {
    color: #C04125;
  }
}
.p-flow__description a:active {
  color: #C04125;
}

.p-flow__image {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-flow__image {
    margin-top: 0;
    height: auto;
    width: 40%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (min-width: 1280px) {
  .p-flow__image {
    width: 100%;
    max-width: 400px;
  }
}

.p-flow__image img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-flow__image img {
    height: 100%;
  }
}

/* =============================================
fapページ/よくある質問
============================================= */
.p-faq__content-wrap {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-faq__content-wrap {
    margin-top: 60px;
  }
}

@media screen and (min-width: 768px) {
  .p-faq__content .l-inner {
    max-width: 926px;
    margin-inline: auto;
  }
}

.p-faq__content:not(:first-child) {
  margin-top: 150px;
}
@media screen and (min-width: 768px) {
  .p-faq__content:not(:first-child) {
    margin-top: 200px;
  }
}

.p-faq__container {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-faq__container {
    margin-top: 86px;
  }
}

.p-faq__item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-faq__item-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-faq__item-wrap:not(:first-child) {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-faq__item-wrap:not(:first-child) {
    margin-top: 67px;
  }
}

.p-faq__letter-q {
  display: block;
  background-color: #C04125;
  width: 60px;
  height: 60px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -ms-grid;
  display: grid;
  place-content: center;
  color: #fff;
  font-family: "Helvetica Neue";
  font-size: 40px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-faq__letter-q {
    width: 76px;
    height: 76px;
  }
}

.p-faq__item {
  background: #fff;
  padding: 15px;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-faq__item {
    padding: 17px 30px;
  }
}

summary h3 {
  color: #C04125;
  font-size: 20px;
  font-weight: 700;
  text-decoration-line: underline;
  padding-right: 45px;
}
@media screen and (min-width: 768px) {
  summary h3 {
    font-size: 24px;
    padding-right: 60px;
  }
}

.p-faq__answer {
  margin-top: 26px;
  color: #000;
  -webkit-transition: height 0.3s ease-out;
  transition: height 0.3s ease-out;
  overflow: hidden;
  height: 0;
}
@media screen and (min-width: 768px) {
  .p-faq__answer {
    margin-top: 30px;
  }
}

.p-faq__answer span {
  color: #C04125;
}

.p-faq__answer p + p {
  margin-top: 1em;
}

.p-faq__answer img {
  margin-inline: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* デフォルトのアイコンを非表示 */
summary {
  position: relative;
  display: block;
  /* 矢印を消す */
  cursor: pointer;
}
@media (any-hover: hover) {
  summary:hover h3 {
    color: #333;
  }
}
summary:active h3 {
  color: #333;
}

summary::-webkit-details-marker {
  display: none;
  /* 矢印を消す */
}

/* 疑似要素でアイコンを表示 */
summary::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-bottom: 1px solid #E60012;
  /* 下向きの線 */
  border-right: 1px solid #E60012;
  /* 右向きの線 */
  position: absolute;
  right: 10px;
  top: 12px;
  -webkit-transform: translateY(-50%) rotateZ(45deg);
          transform: translateY(-50%) rotateZ(45deg);
  -webkit-transition: top 0.5s ease, -webkit-transform 0.3s ease;
  transition: top 0.5s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, top 0.5s ease;
  transition: transform 0.3s ease, top 0.5s ease, -webkit-transform 0.3s ease;
}
details[open] summary::after {
  -webkit-transform: rotateX(180deg) translateY(-50%) rotateZ(45deg);
          transform: rotateX(180deg) translateY(-50%) rotateZ(45deg);
  top: 8px;
}

/* =============================================
News&Blogページ
============================================= */
@media screen and (min-width: 768px) {
  .l-inner.p-news__inner {
    width: 50%;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1280px) {
  .l-inner.p-news__inner {
    width: 100%;
    max-width: 850px;
  }
}

.p-news__content {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .p-news__content {
    margin-top: 80px;
  }
}

.p-news__list {
  margin-top: 50px;
}
@media screen and (min-width: 1280px) {
  .p-news__list {
    margin-top: 80px;
  }
}

.p-news .c-news__title {
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .p-news .c-news__title {
    font-size: 24px;
  }
}
.p-news .c-news__node:not(:first-child) {
  margin-top: 25px;
}
.p-news .c-news__body {
  padding: 20px 15px;
}
@media screen and (min-width: 1280px) {
  .p-news .c-news__body {
    padding: 30px;
  }
}
@media screen and (min-width: 1280px) {
  .p-news .c-news__body--secondary {
    max-height: none;
    aspect-ratio: 300/200;
    min-width: 300px;
  }
}

/* =============================================
メンテナンスページ
============================================= */
.p-maintenance__inner.l-inner {
  max-width: 1090px;
}
@media screen and (min-width: 768px) {
  .p-maintenance__inner.l-inner {
    padding-right: 50px;
    padding-left: 50px;
  }
}

.p-maintenance__heading {
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .p-maintenance__heading {
    max-width: 800px;
    margin-inline: auto;
  }
}

.p-maintenance .c-content-title {
  text-align: left;
}

.p-maintenance__content {
  margin-top: 40px;
}

.p-maintenance__text-body p + p {
  margin-top: 2em;
}

.p-maintenance__button {
  margin-top: 40px;
  text-align: center;
  margin-bottom: 100px;
}

.p-maintenance__button--second {
  margin-top: 100px;
  text-align: center;
}

.p-maintenance__list {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-maintenance__list {
    margin-top: 100px;
  }
}

.p-maintenance__list li:not(:first-child) {
  margin-top: 100px;
}

.p-maintenance__flex {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .p-maintenance__flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 45px;
    margin-top: 63px;
  }
}

@media screen and (min-width: 768px) {
  .p-maintenance__list li:nth-child(even) .p-maintenance__flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media screen and (min-width: 768px) {
  .p-maintenance__img {
    width: calc(50% - 20px);
    max-width: 500px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (min-width: 1280px) {
  .p-maintenance__img {
    width: calc(50% - 40px);
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .p-maintenance__img.p-maintenance__img-large {
    max-width: 600px;
  }
}

.p-maintenance__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-maintenance__img img {
    height: auto;
  }
}

.p-maintenance__img--fix img {
  mix-blend-mode: multiply;
}

/* =============================================
404エラー
============================================= */
.p-container-404 {
  width: 100%;
  margin: 0 auto;
  padding: 150px 30px 200px;
  background-color: #F1F0E0;
}
@media screen and (min-width: 768px) {
  .p-container-404 {
    padding: 100px 30px 50px;
  }
}

.p-container-404 .section-title__header {
  margin-top: 50px;
  font-size: 50px;
}

.p-container-404__inner {
  max-width: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  margin: auto;
}

.p-container-404__body {
  text-align: center;
}

.p-container-404 .section-title__header {
  font-size: 80px;
}

.p-container-404 .p-container-404__sub-title {
  color: #333;
  display: block;
  margin-top: 20px;
  font-size: 25px;
}
@media screen and (min-width: 430px) {
  .p-container-404 .p-container-404__sub-title {
    font-size: 40px;
  }
}

.p-container-404__text {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-container-404__text {
    line-height: 2.1428571429;
  }
}

.p-container-404__button {
  text-align: center;
  margin-top: 60px;
  margin-inline: auto;
}

.p-container-404__btn.c-site-menu-btn {
  margin-inline: auto;
  width: 80%;
  max-width: 280px;
}

.p-single__article > * {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .l-inner.p-single__inner {
    max-width: 850px;
    margin-inline: auto;
  }
}

.p-single__article-wrap {
  margin-top: 40px;
  background-color: #fff;
}

.p-single__article {
  padding: 20px 15px 100px 15px;
}
@media screen and (min-width: 768px) {
  .p-single__article {
    padding: 40px 40px 80px 40px;
  }
}

.p-single__title-wrap {
  margin-top: 15px;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .p-single__title-wrap {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.p-single .c-content-title-wrap .c-content-title {
  border-bottom: none;
  margin-top: 0;
}

.p-single .c-content-title-wrap {
  position: relative;
  padding-bottom: 15px;
}

.p-single .c-content-title-wrap:after {
  content: "";
  text-underline-offset: 10px;
  width: 100px;
  height: 5px;
  position: absolute;
  bottom: 0;
  background-color: #333;
}

.p-single__attention {
  display: block;
  color: #C04125;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  margin-top: 0;
}

.p-single__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-single__author {
  margin-top: 0;
  font-size: 14px;
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: right;
}

.p-single__author span {
  font-size: 16px;
  font-weight: 600;
}

.p-single__author-image {
  width: 75px;
  height: 75px;
  margin-left: 10px;
  border-radius: 100%;
  overflow: hidden;
}

.p-single__back-button {
  margin-top: 80px;
  text-align: center;
}

.p-single__article .c-news-meta__category {
  color: #fff;
}
.p-single__article .c-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
}
.p-single__article .c-news-meta {
  margin-top: 0;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.p-single__article h2 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .p-single__article h2 {
    font-size: 32px;
  }
}
.p-single__article h3,
.p-single__article h4,
.p-single__article h5,
.p-single__article h6 {
  font-size: 20px;
  margin-top: 0;
  margin-top: 80px;
}
.p-single__article table {
  line-height: 1.5;
  border-collapse: collapse;
}
.p-single__article th {
  background-color: #333;
  color: #fff;
  font-weight: 600;
  min-width: 7em;
}
.p-single__article th,
.p-single__article td {
  padding: 0.5em;
  border: 1px solid #333;
  border-collapse: collapse;
  text-align: left;
  vertical-align: baseline;
}
.p-single__article p {
  color: #333;
  line-height: 28px;
  font-weight: 300;
  line-height: 28px;
}
.p-single__article hr {
  border: dashed 1px #333;
}
.p-single__article .hojokin table th {
  width: 7em;
}
.p-single__article .hojokin table .hosoku {
  font-size: 90%;
  color: #666;
}

.p-single__article > .alignleft {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  float: left;
  margin-left: 0;
  margin-right: 1em;
}

.p-single__article > .alignright {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  float: right;
  margin-left: 1em;
  margin-right: 0;
}

.p-single__article > .aligncenter {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.p-single__article figure figcaption {
  text-align: center;
}

.p-single__article figure {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}
@media screen and (min-width: 430px) {
  .p-single__article figure {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-single__article figure {
    max-width: 100%;
    height: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

.p-single__article ul ul,
.p-single__article ul ol,
.p-single__article ol ul,
.p-single__article ol ol {
  margin-top: 0;
}

.p-single__article ul li,
.p-single__article ol li {
  margin-left: 22px;
  letter-spacing: 1.6px;
}

.p-single__article ul li a,
.p-single__article ol li a,
.p-single__article p a,
.p-single__article span a {
  color: #638866;
  line-height: 28px;
  letter-spacing: 1.6px;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .p-single__article ul li a:hover,
  .p-single__article ol li a:hover,
  .p-single__article p a:hover,
  .p-single__article span a:hover {
    color: #C04125;
  }
}
.p-single__article ul li a:active,
.p-single__article ol li a:active,
.p-single__article p a:active,
.p-single__article span a:active {
  color: #C04125;
}

.p-single__article ul li {
  list-style: disc;
}

.p-single__article ul li::marker {
  font-size: 1.5em;
  /* サイズを調整 */
}

.p-single__article ol li {
  list-style-type: decimal;
}

.c-event__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 3px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-weight: 600;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .c-event__item {
    padding: 10px 30px;
  }
}

.c-event__item dt {
  width: 20%;
  min-width: 4em;
  display: inline;
}

.c-event__item dd {
  width: calc(80% - 1em);
}

/* 画像の中央寄せ */
.aligncenter {
  height: auto;
  margin: 0 auto;
  max-width: 100%;
}

/* figureタグで囲まれた画像の中央寄せ */
.aligncenter img {
  height: auto;
  max-width: 100%;
}

/* 画像右寄せ */
.alignright {
  height: auto;
  margin-left: auto;
  max-width: 100%;
}

/* figureタグで囲まれた画像右寄せ */
.alignright img {
  height: auto;
  max-width: 100%;
}

/* 位置指定のない画像 */
.alignnone {
  height: auto;
  max-width: 100%;
}

/* figureタグで囲まれた位置指定のない画像 */
.alignnone img {
  height: auto;
  max-width: 100%;
}

/* 自動折り返し有効化 */
pre {
  white-space: pre-wrap;
}

/* =============================================
資料請求お問い合わせ
============================================= */
@media screen and (min-width: 768px) {
  .l-inner.p-request__inner {
    max-width: 850px;
    margin-inline: auto;
  }
}

.p-request__content {
  margin-top: 40px;
}

.p-request__catalog {
  margin-top: 80px;
  display: -ms-grid;
  display: grid;
  place-content: center;
}
@media screen and (min-width: 768px) {
  .p-request__catalog {
    max-width: 500px;
    margin-inline: auto;
  }
}

.p-request__business-wrap {
  margin-top: 40px;
}

.p-request__business-wrap {
  margin-top: 40px;
}

.p-request__text {
  line-height: 28px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-request__text {
    text-align: center;
  }
}

.p-request__text span {
  display: block;
  color: #C04125;
}

.p-request__area {
  margin-top: 40px;
}

/* =============================================
会社案内ページ/company
============================================= */
/* 会社概要 */
.p-company__content {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .p-company-sec__heading-img {
    max-width: 1000px;
    aspect-ratio: 1000/500;
    margin-inline: auto;
  }
}

.p-company-sec__heading-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 300px;
}
@media screen and (min-width: 768px) {
  .p-company-sec__heading-img img {
    height: auto;
  }
}

.p-company-sec__info {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-company-sec__info {
    margin-top: 100px;
  }
}

@media screen and (min-width: 768px) {
  .l-inner.p-company-sec___info-inner {
    width: 80%;
    max-width: 850px;
    margin-inline: auto;
  }
}

.p-company-sec__detail-list {
  margin-top: 40px;
}

.p-company-sec__showroom-info {
  margin-top: 40px;
}

/* ファイヤーワールドグループ */
.p-group {
  margin-top: 100px;
}

@media screen and (min-width: 768px) {
  .l-inner.p-group__inner {
    max-width: 970px;
    margin-inline: auto;
  }
}

.p-group__text {
  margin-top: 40px;
  line-height: 28px;
}
@media screen and (min-width: 768px) {
  .p-group__text {
    padding: 0 60px;
  }
}

.p-group__list {
  margin-top: 48px;
}
@media screen and (min-width: 768px) {
  .p-group__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 38px;
  }
}

.p-group__node {
  border-radius: 20px;
  background: #fff;
  padding: 20px;
}

.p-group__node:not(:first-child) {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-group__node:not(:first-child) {
    margin-top: 0;
  }
}

.p-group__node h3 {
  color: #000;
  font-weight: 600;
}

.p-group__node a {
  color: #638866;
  font-weight: 600;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .p-group__node a:hover {
    color: #C04125;
  }
}
.p-group__node a:active {
  color: #C04125;
}

.p-group__node .p-group__tel {
  color: #000;
  text-decoration-line: none;
  font-size: 0.875rem;
  font-weight: 300;
}

.p-group__node address {
  color: #000;
  font-size: 0.875rem;
  font-style: normal;
}

/* =============================================
求人情報
============================================= */
@media screen and (min-width: 768px) {
  .l-inner.p-recruit__inner {
    max-width: 850px;
    margin-inline: auto;
  }
}

.p-recruit__content {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-recruit__content {
    margin-top: 50px;
  }
}

.p-recruit__heading-text {
  line-height: 28px;
}

.p-job {
  position: relative;
  background: #fff;
  padding-bottom: 63px;
}

@media screen and (min-width: 768px) {
  .p-job__type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.p-job__type img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-job__type img {
    max-width: 225px;
  }
}

.p-job:first-of-type {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-job:first-of-type {
    margin-top: 100px;
  }
}

.p-job + .p-job {
  margin-top: 80px;
}

.p-job h2 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 28px;
  padding: 16px 30px 16px 15px;
  background: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-job h2 {
    font-size: 1.5rem;
    width: 100%;
  }
}

.p-job__info {
  padding: 40px 15px 0px 15px;
  max-height: 26.5em;
  /* 最初に見える高さ */
  overflow: hidden;
  /* 溢れた部分を隠す */
}
@media screen and (min-width: 768px) {
  .p-job__info {
    max-height: none;
    padding: 45px 66px 0px 40px;
  }
}

.p-job__flex-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-job__flex-item {
    gap: 2.375rem;
  }
}

.p-job__flex-item {
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 8px;
  padding-bottom: 8px;
}

.p-job__flex-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.p-job__label {
  width: 23%;
  color: #000;
  line-height: 24px;
}
@media screen and (min-width: 768px) {
  .p-job__label {
    width: 20%;
    padding-left: 30px;
  }
}

.p-job__content {
  color: #000;
  text-align: justify;
  width: calc(77% - 31px);
}

.p-job__content p {
  line-height: 1.5;
}

.p-job__content ul + p {
  margin-top: 1em;
}

.p-job__content p + p {
  margin-top: 1em;
}

.p-job__content ul .p-job__list-style-none {
  list-style-type: none;
}

.p-recruit__more-read-btn {
  width: 100%;
  text-align: center;
  margin-top: 40px;
  position: absolute;
  bottom: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 200;
}
@media screen and (min-width: 768px) {
  .p-recruit__more-read-btn {
    display: none;
  }
}

.p-recruit__more-read-btn .c-button {
  display: inline-block;
  padding: 10px 40px;
  display: -ms-grid;
  display: grid;
  place-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #C04125;
  color: #EEE;
  font-size: 16px;
  font-weight: 700;
}

.p-recruit__contact-btn {
  margin-top: 40px;
  text-align: center;
  display: none;
}
@media screen and (min-width: 768px) {
  .p-recruit__contact-btn {
    display: block;
  }
}

.p-recruit__contact-btn .c-button {
  color: #EEE;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .p-recruit .p-recruit__area {
    padding: 0 60px;
  }
}

/* モーダルの設定 */
.p-recruit .c-modal .c-modal__body {
  width: 95%;
  max-width: 410px;
}
@media screen and (min-width: 768px) {
  .p-recruit .c-modal .c-modal__body {
    max-width: none;
    padding: 23px 20px 45px 20px;
  }
}
@media screen and (min-width: 960px) {
  .p-recruit .c-modal .c-modal__body {
    width: 100%;
    max-width: 800px;
  }
}

/* モーダル内のレイアウト */
.p-recruit__modal-content {
  margin-top: 20px;
}

.p-recruit__modal-text {
  margin-top: 42px;
}
@media screen and (min-width: 768px) {
  .p-recruit__modal-text {
    margin-top: 56px;
    text-align: center;
  }
}

.p-recruit__modal-business-wrap {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-recruit__modal-business-wrap {
    margin-top: 40px;
  }
}

.c-form__input .p-recruit__job-name {
  background-color: #ccc;
}

.p-recruit__age-field {
  padding-right: 30px;
  position: relative;
}

.p-recruit__age-field::after {
  content: "歳";
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
  color: #000;
}

.p-recruit__data-select {
  position: relative;
}

.p-recruit__gender {
  padding-right: 35px;
  width: 100%;
  color: #333;
}

.p-recruit__data-select::after {
  position: absolute;
  top: 46%;
  right: 15px;
  width: 10px;
  height: 10px;
  content: "";
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
  border-top: solid 1px #333;
  border-right: solid 1px #333;
}

/* =============================================
プライバシーポリシー
============================================= */
@media screen and (min-width: 768px) {
  .p-privacy__inner.l-inner {
    max-width: 850px;
    margin-inline: auto;
  }
}

.p-privacy__heading {
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .p-privacy__heading {
    max-width: 800px;
    margin-inline: auto;
  }
}

.p-privacy .c-content-title {
  text-align: left;
}

.p-privacy__content {
  margin-top: 40px;
}

.p-privacy__list {
  margin-top: 40px;
}

.p-privacy__item:not(:first-child) {
  margin-top: 80px;
}

.p-privacy__body {
  padding: 15px;
  background-color: #fff;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-privacy__body {
    padding: 40px;
  }
}

.p-privacy__content-list li {
  list-style: disc;
  margin-left: 22px;
  line-height: 1.75;
}

.p-privacy__content-list li::marker {
  font-size: 10px;
}

.p-privacy__body p {
  text-align: justify;
  font-weight: 300;
  line-height: 1.75;
}

.p-privacy__body p + p {
  margin-top: 1em;
}

.p-privacy__body p + ul {
  margin-top: 1em;
}

.p-privacy__body address {
  font-style: normal;
  margin-top: 2em;
  line-height: 1.75;
}

/* =============================================
aboutページ/ファイヤーワールド岡山とは
============================================= */
.content-wrapper {
  overflow-x: hidden;
}

@media screen and (min-width: 768px) {
  .l-inner.p-about__inner {
    max-width: 850px;
    margin-inline: auto;
  }
}

.p-about__content {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-about__content {
    margin-top: 75px;
  }
}

@media screen and (min-width: 768px) {
  .p-about__head {
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .p-about__wrap {
    padding-left: 20%;
    padding-right: 30px;
  }
}

@media screen and (min-width: 768px) {
  .p-about__head-image {
    max-width: 900px;
    aspect-ratio: 1042/643;
  }
}
@media screen and (min-width: 1280px) {
  .p-about__head-image {
    width: 100%;
    max-width: 1042px;
  }
}

.p-about__head-image picture img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-about__head-image picture img {
    height: 100%;
  }
}

@media screen and (min-width: 768px) {
  .p-about__main-sentence {
    position: absolute;
    top: 30%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 2%;
  }
}
@media screen and (min-width: 1280px) {
  .p-about__main-sentence {
    top: 36%;
    left: 4%;
  }
}

.p-about__main-sentence p {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 32px;
  line-height: 1;
  padding-bottom: 5px;
  padding-right: 0.5em;
  background: #fff;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-about__main-sentence p {
    font-size: 50px;
  }
}

.p-about__main-sentence p:not(:first-child) {
  margin-top: 10px;
}

.p-about__main-sentence p:nth-of-type(1) {
  margin-left: 12%;
  margin-top: -20px;
}

.p-about__main-sentence p:nth-of-type(2) {
  margin-left: 3%;
}
@media screen and (min-width: 768px) {
  .p-about__main-sentence p:nth-of-type(2) {
    margin-left: 0;
  }
}

.p-about__main-sentence p:nth-of-type(3) {
  margin-left: 26%;
}
@media screen and (min-width: 768px) {
  .p-about__main-sentence p:nth-of-type(3) {
    margin-left: 36%;
  }
}

.p-about__head-text-body {
  padding: 0 0.9375rem;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-about__head-text-body {
    padding: 0 1.875rem;
    max-width: 830px;
    margin-top: 100px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1280px) {
  .p-about__head-text-body {
    padding: 0;
  }
}

.p-about__head-text-body p:not(:first-child) {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-about__head-text-body p:not(:first-child) {
    margin-top: 20px;
  }
}

.p-about__head-text-body p {
  text-align: justify;
  line-height: 2;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-about__head-text-body p {
    font-size: 1.125rem;
    line-height: 2;
  }
}

/* 特徴 */
.p-features {
  margin-top: 180px;
}

.p-features__point-item:first-of-type {
  background-color: #333;
  color: #fff;
  padding-top: 120px;
  padding-bottom: 100px;
}
@media screen and (min-width: 768px) {
  .p-features__point-item:first-of-type {
    padding-bottom: 160px;
  }
}

.p-features__point-item:nth-of-type(2) {
  background-color: #D1D0B2;
  padding-top: 133px;
  padding-bottom: 113px;
}

.p-features__point-item:nth-of-type(3) {
  position: relative;
  padding-top: 145px;
  padding-bottom: 100px;
}

.p-features__point-item:nth-of-type(4) {
  background-color: #333;
  padding-top: 124px;
  padding-bottom: 101px;
}
@media screen and (min-width: 768px) {
  .p-features__point-item:nth-of-type(4) {
    padding-bottom: 130px;
  }
}

.p-features__point-inner {
  padding: 0 0.9375rem;
  max-width: 860px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-features__point-inner {
    padding: 0 1.875rem;
  }
}

.p-features__point-num {
  color: #fff;
  text-align: center;
  font-size: 13px;
  letter-spacing: 1.3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10;
  position: relative;
}

.p-features__point-num span {
  color: #fff;
  font-family: "Helvetica Neue";
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
  line-height: 1;
}

.p-features__point-num::before {
  content: "";
  position: absolute;
  top: 16%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 63px;
  height: 100px;
  background-image: url("../images/about/about-features-icon.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.p-features__point-title {
  text-align: center;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 32px;
  margin-top: 20px;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .p-features__point-title {
    font-size: 40px;
  }
}

.p-features__point-title.p-features__point-title--white {
  color: #fff;
}

.p-features__point-text {
  margin-top: 40px;
  text-align: justify;
  line-height: 2;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-features__point-text {
    font-size: 1.125rem;
    line-height: 2;
  }
}

.p-features__point-text.p-features__point-text--white {
  color: #fff;
}

.p-features__stove-image {
  margin-top: 40px;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-features__stove-image {
    margin-top: 80px;
  }
}
.p-features__stove-image .track {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 2100px;
  -webkit-animation: scroll 12s linear infinite;
          animation: scroll 12s linear infinite;
}
@media screen and (min-width: 768px) {
  .p-features__stove-image .track {
    width: 2800px;
    -webkit-animation-duration: 16s;
            animation-duration: 16s;
  }
}
@media screen and (min-width: 1280px) {
  .p-features__stove-image .track {
    width: 3920px;
    -webkit-animation-duration: 20s;
            animation-duration: 20s;
  }
}
.p-features__stove-image .track img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 150px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-features__stove-image .track img {
    width: 200px;
  }
}
@media screen and (min-width: 1280px) {
  .p-features__stove-image .track img {
    width: 280px;
  }
}
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.p-features__second-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-features__second-title {
  display: inline-block;
  border-bottom: 5px solid #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 300;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-features__second-title {
    font-size: 28px;
  }
}

.p-features__point-text-color {
  padding: 0.1em;
  color: #fff;
  background-color: #C04125;
}

@media screen and (min-width: 768px) {
  .p-features__images-flex {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
  }
}

@media screen and (min-width: 768px) {
  .p-features__images-flex .p-features__quality-image {
    width: 50%;
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-features__images-flex .p-features__quality-image img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.p-features__quality-points {
  margin-top: 60px;
}

.p-features__quality-points li:not(:first-child) {
  margin-top: 80px;
}

.p-features__quality-image {
  margin: 40px auto 0;
}
@media screen and (min-width: 768px) {
  .p-features__quality-image {
    max-width: 600px;
    margin-inline: auto;
  }
}
.p-features__quality-image.fig1 {
  max-width: 450px;
}
.p-features__quality-image.fig2 {
  max-width: 310px;
}

.p-features__quality-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-features__quality-image + .p-features__quality-image {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-features__quality-image + .p-features__quality-image {
    margin-top: 0;
  }
}

.p-features__quality-image figcaption {
  color: #000;
  text-align: center;
  font-size: 14px;
  line-height: 2.5714285714;
}

.p-features__point-image {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-features__point-image {
    max-width: 600px;
    height: 400px;
    margin-inline: auto;
  }
}

.p-features__point-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-features__point-image img {
    height: 100%;
  }
}

.p-features__point-text.p-features__point-text-bg {
  border-radius: 20px;
  background-color: #fff;
  padding: 15px;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-features__point-text.p-features__point-text-bg {
    padding: 40px 50px;
    margin-top: 40px;
  }
}

.p-features .p-features__point-item.c-decoration::before {
  display: none;
}
.p-features .p-features__point-item.c-decoration::after {
  background-color: #333;
}

.p-about__head::before, .p-about__head .p-about__head-image::before {
  content: "";
  display: inline-block;
  background-image: url(../images/staff/staff-deco.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 100px;
  height: 115px;
  position: absolute;
}
@media screen and (min-width: 960px) {
  .p-about__head::before, .p-about__head .p-about__head-image::before {
    width: 120px;
    height: 140px;
  }
}
@media screen and (min-width: 1280px) {
  .p-about__head::before, .p-about__head .p-about__head-image::before {
    width: 160px;
    height: 185px;
  }
}

.p-about__head {
  position: relative;
}
.p-about__head .p-about__head-image {
  position: relative;
}
.p-about__head .p-about__head-image::before {
  top: var(--moyou1-pos, 85%);
  right: -15px;
}
@media screen and (min-width: 768px) {
  .p-about__head .p-about__head-image::before {
    right: -40px;
  }
}
@media screen and (min-width: 1280px) {
  .p-about__head .p-about__head-image::before {
    right: -90px;
  }
}
.p-about__head::before {
  top: var(--moyou2-pos, 100%);
  left: -10px;
}
@media screen and (min-width: 1280px) {
  .p-about__head::before {
    left: -30px;
  }
}

.p-features__point-item:nth-child(3)::before {
  content: "";
  display: inline-block;
  background-image: url(../images/common/nenrin-single.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 135px;
  height: 182px;
  position: absolute;
  bottom: var(--moyou3-pos, 90%);
  left: -40px;
  -webkit-transform: rotate(-34deg);
          transform: rotate(-34deg);
}
@media screen and (min-width: 768px) {
  .p-features__point-item:nth-child(3)::before {
    width: 200px;
    height: 300px;
    left: -100px;
  }
}
@media screen and (min-width: 1280px) {
  .p-features__point-item:nth-child(3)::before {
    left: -60px;
    width: 285px;
    height: 385px;
  }
}

/* =============================================
お問い合わせ
============================================= */
@media screen and (min-width: 768px) {
  .l-inner.p-contact__inner {
    max-width: 850px;
    margin-inline: auto;
  }
}

.p-contact__content {
  margin-top: 40px;
}

.p-contact__business-wrap {
  margin-top: 40px;
}

.p-contact__text {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .p-contact__text {
    text-align: center;
  }
}

.p-contact__area {
  margin-top: 40px;
}

/* =============================================
初めての薪ストーブ共通パーツ
============================================= */
#loading_hajimete {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #F1F0E0;
  overflow: hidden;
  z-index: 9999;
}

/* main */
#p-my-first-wood-stove {
  background-color: #638866;
  position: relative;
  z-index: 10;
}

.l-column-inner {
  max-width: 530px;
  padding-left: 16px;
  padding-right: 15px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-column-inner {
    max-width: 1060px;
    padding-left: 34px;
    padding-right: 34px;
  }
}

.c-stove-logo {
  width: 100%;
}

/* （INDEX） /.c-index*/
.c-index {
  position: relative;
  z-index: 50;
}

.c-index__title {
  color: #000;
  font-family: "Helvetica Neue";
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
}

.c-index__list {
  margin-top: 4px;
}

.c-index__item {
  max-width: 300px;
  color: #000;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: #FCDE00;
}
@media screen and (min-width: 375px) {
  .c-index__item {
    max-width: none;
  }
}
@media screen and (min-width: 1280px) {
  .c-index__item {
    font-size: 1.125rem;
  }
}
.c-index__item a {
  display: block;
  padding: 5px 25px 5px 10px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media (any-hover: hover) {
  .c-index__item a:hover {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}
.c-index__item a:active {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

.c-index__item.c-index__item--current {
  color: #FFF;
  background-color: #C04125;
}

.c-index__item:not(:first-child) {
  margin-top: 3px;
}
@media screen and (min-width: 1280px) {
  .c-index__item:not(:first-child) {
    margin-top: 5px;
  }
}

/* ページセクションタイトル */
.c-index-headline-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  color: #fff;
  border-bottom: 5px solid #fff;
  padding: 0 10px;
}
@media screen and (min-width: 768px) {
  .c-index-headline-wrap {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-inline: auto;
    gap: 6px;
  }
}

.c-index-headline-wrap span {
  font-size: 28px;
}
@media screen and (min-width: 1280px) {
  .c-index-headline-wrap span {
    font-size: 36px;
  }
}

.c-index-headline {
  font-size: 28px;
  font-weight: 300;
}
@media screen and (min-width: 1280px) {
  .c-index-headline {
    font-size: 36px;
  }
}

/* =============================================
初めての薪ストーブヘッダー（TOPページ）
>============================================= */
.p-stove-header {
  background-color: #F1F0E0;
}

.p-stove-header__inner {
  padding-top: 50px;
}
@media screen and (min-width: 768px) {
  .p-stove-header__inner {
    position: relative;
  }
}
@media screen and (min-width: 1280px) {
  .p-stove-header__inner {
    max-width: 1360px;
    margin-inline: auto;
  }
}

.p-stove-header__wrap {
  position: absolute;
  top: 20px;
  right: 15px;
  z-index: 50;
  width: 100px;
}
@media screen and (min-width: 768px) {
  .p-stove-header__wrap {
    width: 150px;
  }
}
@media screen and (min-width: 1280px) {
  .p-stove-header__wrap {
    top: 35px;
  }
}

.p-stove-header__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  z-index: 50;
  width: clamp(180px, 111.429px + 21.429vw, 240px);
}
@media screen and (min-width: 768px) {
  .p-stove-header__title-wrap {
    position: absolute;
    margin-top: 0;
    top: 9%;
    left: 4%;
    width: clamp(240px, 80px + 20.833vw, 380px);
  }
}
@media screen and (min-width: 1280px) {
  .p-stove-header__title-wrap {
    left: 3%;
  }
}

.p-stove-header__page-title {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  vertical-align: top;
  color: #C04125;
  text-align: justify;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 7.143px + 2.143vw, 20px);
  line-height: 1;
  padding-left: 15px;
  letter-spacing: 0.2em;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .p-stove-header__page-title {
    font-size: clamp(20px, 6.286px + 1.786vw, 32px);
    padding-left: 0;
    margin-right: 1em;
  }
}
.p-stove-header__sentence {
  width: clamp(170px, 62.857px + 33.482vw, 320px);
}

.p-stove-header__sentence img {
  width: 100%;
}

.p-stove-header__banner-wrap {
  position: relative;
  margin-top: -50px;
  z-index: 30;
}
@media screen and (min-width: 768px) {
  .p-stove-header__banner-wrap {
    margin-top: 0;
  }
}

.p-stove-header__banner-wrap::before {
  content: "";
  position: absolute;
  mix-blend-mode: darken;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  right: 5px;
  bottom: 30px;
  background-image: url(../images/my-first-wood-stove/icon-stove.png);
  width: 125px;
  height: 116px;
  bottom: 96%;
  z-index: 2;
  opacity: var(--hajimete_home_illust-opacity, 0);
}
@media screen and (min-width: 430px) {
  .p-stove-header__banner-wrap::before {
    background-image: url(../images/my-first-wood-stove/header-top-icon.png);
    width: 220px;
    height: 200px;
    top: -150px;
    bottom: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-stove-header__banner-wrap::before {
    width: clamp(200px, 5.714px + 25.298vw, 370px);
    height: clamp(200px, 5.714px + 25.298vw, 370px);
    top: -6%;
    left: 35%;
    right: auto;
    bottom: auto;
  }
}

.p-stove-header__banner-wrap::after {
  content: "";
  position: absolute;
  mix-blend-mode: darken;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  left: 20px;
  bottom: 30px;
  background-image: url(../images/my-first-wood-stove/icon-chair.png);
  width: 116px;
  height: 130px;
  top: 15%;
  z-index: 2;
  opacity: var(--hajimete_home_illust-opacity, 0);
}
@media screen and (min-width: 430px) {
  .p-stove-header__banner-wrap::after {
    display: none;
  }
}

.p-stove-header__banner {
  aspect-ratio: 375/475;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-stove-header__banner {
    aspect-ratio: 585/741;
    margin-left: auto;
    width: 80%;
    padding-right: 35px;
  }
}
@media screen and (min-width: 1280px) {
  .p-stove-header__banner {
    aspect-ratio: 975/1235;
    max-width: 1010px;
    height: 1235px;
  }
}

.p-stove-header__banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.p-stove-header__face {
  margin-top: 20px;
  margin-left: auto;
  margin-right: 20px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  width: 200px;
  opacity: 0;
  position: relative;
  z-index: 40;
}
@media screen and (min-width: 430px) {
  .p-stove-header__face {
    margin-left: 30%;
  }
}
@media screen and (min-width: 768px) {
  .p-stove-header__face {
    margin-left: auto;
    position: absolute;
    z-index: 50;
    top: clamp(370px, 130px + 31.25vw, 580px);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 5%;
    width: clamp(200px, 142.857px + 7.44vw, 250px);
  }
}
.p-stove-header__face img {
  width: 100%;
}

.p-stove-header__title {
  position: absolute;
  top: 59%;
  left: 30px;
  /* もしくは具体的な幅を指定 */
}
@media screen and (min-width: 768px) {
  .p-stove-header__title {
    z-index: 50;
    top: 50px;
    left: auto;
    right: 55px;
  }
}
@media screen and (min-width: 1280px) {
  .p-stove-header__title {
    top: 85px;
    right: 75px;
  }
}

.p-stove-header__title p {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  background-color: #fff;
  padding-top: 8px;
  color: #000;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: clamp(24px, 14.857px + 2.857vw, 32px);
  font-weight: 500;
  line-height: 1.5;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  vertical-align: top;
  letter-spacing: 0.3em;
  display: inline-block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

_::-webkit-full-page-media,
_:future,
:root .p-stove-header__title p {
  width: 33px;
  line-height: 33px;
  /* Safari 向けに固定幅を指定 */
}
@media screen and (min-width: 1280px) {
  _::-webkit-full-page-media,
  _:future,
  :root .p-stove-header__title p {
    width: 42px;
    line-height: 42px;
  }
}

@media screen and (min-width: 768px) {
  .p-stove-header__index {
    position: absolute;
    top: 60%;
    left: 6%;
  }
}

@media screen and (min-width: 768px) {
  .c-index__inner.l-column-inner {
    padding: 0;
  }
}

/* =============================================
（TOPページ）コンテンツ
============================================= */
.p-column-head {
  padding-top: 176px;
  position: relative;
  margin-top: -129px;
}
@media screen and (min-width: 768px) {
  .p-column-head {
    padding-top: 112px;
    margin-top: -50px;
  }
}
@media screen and (min-width: 1280px) {
  .p-column-head {
    padding-top: 142px;
    margin-top: -82px;
  }
}

.p-column-head__text {
  color: #FFF;
  text-align: justify;
  font-weight: 600;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-column-head__text {
    max-width: 700px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1280px) {
  .p-column-head__text {
    max-width: 800px;
    font-size: 1.125rem;
  }
}

.p-column-head__title {
  margin-top: 60px;
  color: #fff;
  text-align: center;
  font-weight: 600;
  line-height: 2.25;
  border-bottom: 3px solid #FFF;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 10px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-column-head__title {
    margin-top: 100px;
  }
}
@media screen and (min-width: 1280px) {
  .p-column-head__title {
    margin-top: 83px;
  }
}

.p-column-head__characters-wrap {
  margin-top: 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-column-head__characters-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
    max-width: 715px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1280px) {
  .p-column-head__characters-wrap {
    max-width: 824px;
  }
}

.p-column-head__characters {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #333;
  background: #F7F6ED;
  width: 258px;
  height: 258px;
  border-radius: 50%;
  padding: 40px 30px 40px 35px;
  margin-inline: auto;
  text-align: center;
  gap: 20px;
}

@media screen and (min-width: 768px) {
  .p-column-head__characters:first-of-type {
    position: relative;
    margin-top: -88px;
  }
}
@media screen and (min-width: 1280px) {
  .p-column-head__characters:first-of-type {
    margin-top: -30px;
  }
}

@media screen and (min-width: 768px) {
  .p-column-head__characters:nth-of-type(2) {
    position: relative;
    margin-top: 55px;
    left: -30px;
  }
}
@media screen and (min-width: 1280px) {
  .p-column-head__characters:nth-of-type(2) {
    position: relative;
    margin-top: 18px;
    left: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-column-head__characters:nth-of-type(3) {
    position: relative;
    margin-top: -88px;
    left: -60px;
  }
}
@media screen and (min-width: 1280px) {
  .p-column-head__characters:nth-of-type(3) {
    margin-top: -30px;
    left: 0;
  }
}

.p-column-head__characters-name {
  font-size: 16px;
  font-weight: 600;
}

.p-column-head__characters-face {
  mix-blend-mode: multiply;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline: auto;
  margin-top: 10px;
  width: 80px;
}

.p-column-head__characters-text {
  font-size: 14px;
  margin-top: 15px;
}

.c-prologue,
.c-epilogue {
  margin-top: 100px;
  color: #FFF;
}
@media screen and (min-width: 768px) {
  .c-prologue,
  .c-epilogue {
    margin-top: 90px;
    max-width: 800px;
    margin-inline: auto;
  }
}

.c-prologue__title,
.c-epilogue__title {
  font-size: 1.125rem;
  line-height: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-prologue__title::before,
.c-prologue__title::after,
.c-epilogue__title::before,
.c-epilogue__title::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 1px;
  background-color: #FFF;
  margin-left: 20px;
  margin-right: 20px;
}

.c-epilogue p,
.c-prologue p {
  line-height: 2;
  text-align: justify;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1280px) {
  .c-epilogue p,
  .c-prologue p {
    max-width: 800px;
    margin-inline: auto;
    font-size: 1.125rem;
  }
}

.c-epilogue p:not(:first-of-type) {
  margin-top: 20px;
}

.c-final {
  margin-top: 100px;
  color: #FFF;
  text-align: justify;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .c-final {
    font-size: 1.125rem;
  }
}

.c-final__inner {
  padding: 0 15px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-final__inner {
    font-size: 1.125rem;
    max-width: 930px;
  }
}

@media screen and (min-width: 768px) {
  .c-final__text {
    max-width: 800px;
  }
}

.c-final__presentation {
  text-align: right;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .c-final__presentation {
    margin-top: 50px;
  }
}
.c-final__presentation a {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .c-final__presentation a:hover {
    color: #333;
  }
}
.c-final__presentation a:active {
  color: #333;
}

.p-index-sec {
  margin-top: 80px;
  padding-bottom: 260px;
}
@media screen and (min-width: 768px) {
  .p-index-sec {
    margin-top: 100px;
    padding-bottom: 120px;
  }
}

.p-index-page07.p-index-sec {
  padding-bottom: 155px;
}

/* =============================================
(はじめての薪ストーブ)
footer
============================================= */
.p-woodStove-footer {
  background-color: #333;
}

.p-woodStove-footer__inner {
  padding: 44px 20px;
}
@media screen and (min-width: 768px) {
  .p-woodStove-footer__inner {
    padding-left: 40px;
  }
}
@media screen and (min-width: 960px) {
  .p-woodStove-footer__inner {
    max-width: 1358px;
    margin-inline: auto;
    padding-right: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .p-woodStove-footer__inner {
    padding-top: 70px;
    padding-bottom: 38px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-woodStove-footer.c-decoration::before {
  background-color: #333;
  z-index: 30;
}
.p-woodStove-footer.c-decoration::after {
  display: none;
}

@media screen and (min-width: 768px) {
  .p-woodStove-footer__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 35px;
  }
}
@media screen and (min-width: 1280px) {
  .p-woodStove-footer__flex {
    gap: 60px;
  }
}

.p-woodStove-footer__index {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-woodStove-footer__index {
    margin-top: 0;
  }
}
@media screen and (min-width: 1280px) {
  .p-woodStove-footer__index {
    padding-bottom: 23px;
  }
}

.p-woodStove-footer .c-index .c-index__title {
  color: #FFF;
}

.p-woodStove-footer .c-index .l-column-inner {
  padding-left: 3px;
  padding-right: 0;
  margin: 0;
}
@media screen and (min-width: 375px) {
  .p-woodStove-footer .c-index .l-column-inner {
    padding-left: 20px;
  }
}

.p-woodStove-footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 80px;
}
@media screen and (min-width: 960px) {
  .p-woodStove-footer__wrap {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-top: 0;
  }
}
@media screen and (min-width: 1280px) {
  .p-woodStove-footer__wrap {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}
.p-woodStove-footer__wrap .p-woodStove-footer__logo a {
  display: block;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media (any-hover: hover) {
  .p-woodStove-footer__wrap .p-woodStove-footer__logo a:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.p-woodStove-footer__wrap .p-woodStove-footer__logo a:active {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@media screen and (min-width: 1280px) {
  .p-woodStove-footer__title-logo {
    max-width: 200px;
    height: 220px;
  }
}

@media screen and (min-width: 1280px) {
  .p-woodStove-footer__title-logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.p-woodStove-footer small {
  color: #999;
  font-size: 0.875rem;
  margin-top: 15px;
  text-align: center;
  display: block;
}
.p-woodStove-footer small a {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .p-woodStove-footer small a:hover {
    color: #C04125;
  }
}
.p-woodStove-footer small a:active {
  color: #C04125;
}

/* =============================================
(はじめての薪ストーブ)下層ヘッダー
============================================= */
.c-contents-head {
  padding-top: 190px;
  position: relative;
  margin-top: -110px;
}
@media screen and (min-width: 1280px) {
  .c-contents-head {
    margin-top: 0;
  }
}

.p-stove-sub {
  background-color: #F1F0E0;
}

.p-stove-sub__inner {
  position: relative;
  padding: 20px 15px 0;
}
@media screen and (min-width: 768px) {
  .p-stove-sub__inner {
    padding: 20px 25px 0 30px;
  }
}
@media screen and (min-width: 1280px) {
  .p-stove-sub__inner {
    padding: 30px 35px 24px 100px;
    max-width: 1435px;
    margin-inline: auto;
  }
}

.p-stove-sub__logo-wrap {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 100px;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-stove-sub__logo-wrap {
    width: 150px;
  }
}

@media screen and (min-width: 768px) {
  .p-stove-sub__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (min-width: 1280px) {
  .p-stove-sub__flex {
    position: relative;
    gap: clamp(50px, -350px + 31.25vw, 100px);
  }
}

@media screen and (min-width: 1280px) {
  .p-stove-sub__sentence {
    width: 168px;
  }
}

@media screen and (min-width: 1280px) {
  .p-stove-sub__sentence img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.p-stove-sub__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  z-index: 50;
  width: clamp(140px, 97.143px + 13.393vw, 200px);
}

.p-stove-sub__page-title {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  vertical-align: top;
  color: #C04125;
  font-weight: 700;
  text-align: justify;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: clamp(0.75rem, 0.571rem + 0.893vw, 1rem);
  line-height: 1;
  letter-spacing: 0.2em;
  margin-right: 12px;
}
@media screen and (min-width: 768px) {
  .p-stove-sub__page-title {
    font-size: 12px;
  }
}
@media screen and (min-width: 1280px) {
  .p-stove-sub__page-title {
    font-size: 16px;
  }
}

.p-stove-sub__sentence {
  width: clamp(120px, 84.286px + 11.161vw, 170px);
}
@media screen and (min-width: 768px) {
  .p-stove-sub__sentence {
    width: 120px;
  }
}
@media screen and (min-width: 1280px) {
  .p-stove-sub__sentence {
    width: 170px;
  }
}
.p-stove-sub__sentence img {
  width: 100%;
}

/* =============================================
チャット
============================================= */
.chat {
  margin-top: 60px;
  padding: 0 5px;
}
@media screen and (min-width: 600px) {
  .chat {
    padding: 0 30px;
  }
}
@media screen and (min-width: 768px) {
  .chat {
    padding: 0 35px;
  }
}

.chat__inner {
  position: relative;
  border-radius: 30px;
  background: #F7F6ED;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px 20px 240px;
}
@media screen and (min-width: 600px) {
  .chat__inner {
    padding: 30px 30px 240px;
  }
}
@media screen and (min-width: 768px) {
  .chat__inner {
    width: 90%;
    max-width: 1000px;
    margin-inline: auto;
    padding: 60px 60px 200px;
  }
}

/* 名前を視覚的に非表示にするためのクラス */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.right-side {
  text-align: right;
}
.right-side.item::before {
  margin-left: auto;
}

.item + .item {
  margin-top: 10px;
}

.right-side .chat__wrap {
  position: relative;
}
@media screen and (min-width: 768px) {
  .right-side .chat__wrap {
    margin-right: 70px;
    margin-top: -30px;
  }
}
@media screen and (min-width: 1280px) {
  .right-side .chat__wrap {
    margin-right: 90px;
    margin-top: -30px;
  }
}

.left-side .chat__wrap {
  position: relative;
}
@media screen and (min-width: 768px) {
  .left-side .chat__wrap {
    margin-left: 70px;
    margin-top: -30px;
  }
}
@media screen and (min-width: 1280px) {
  .left-side .chat__wrap {
    margin-left: 90px;
    margin-top: -30px;
  }
}

/* 名前の表示 */
.name {
  font-size: 14px;
  text-align: right;
  color: #333;
  font-size: 12px;
  font-weight: 600;
}

.right-side .name {
  display: block;
}
@media screen and (min-width: 1280px) {
  .right-side .name {
    position: absolute;
    right: 0;
    top: -20px;
  }
}

.left-side .name {
  display: block;
  text-align: left;
}
@media screen and (min-width: 1280px) {
  .left-side .name {
    position: absolute;
    left: 0;
    top: -20px;
  }
}

/* メッセージ部分の基本スタイル */
/* .left と .right の共通スタイル */
.left,
.right {
  padding: 10px;
  border-radius: 10px;
  text-align: justify;
  display: inline-block;
  max-width: 89%;
  letter-spacing: 0.1em;
  position: relative;
}
@media screen and (min-width: 768px) {
  .left,
  .right {
    max-width: 500px;
    font-size: 1.125rem;
    letter-spacing: 0;
  }
}

.left strong,
.right strong {
  color: #C04125;
  font-weight: 300;
}

/* 左側のスタイル */
.left {
  background-color: #fff;
}

/* 右側のスタイル */
.right {
  background-color: #ddd;
  margin-left: auto;
}

/* 吹き出しの共通スタイル */
.left::before,
.right::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 5%;
}

/* 左側の吹き出し */
.left::before {
  background-color: #fff;
  clip-path: polygon(99% 14%, 0 0, 100% 100%);
  left: -8px;
}

/* 右側の吹き出し */
.right::before {
  background-color: #ddd;
  clip-path: polygon(0% 14%, 100% 0, 0 100%);
  right: -8px;
}

.chat__subtitle {
  color: #638866;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.8;
  padding-bottom: 30px;
}

.chat-line::before {
  display: block;
  position: relative;
  content: "";
  left: 0;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, #638866 4px, transparent 6px);
  background-size: 10px 1px;
  /* 横の繰り返しサイズを指定 */
  background-repeat: repeat-x;
  margin: 60px 0;
}

/*----------------------------------
//チャット内の表
-----------------------------------*/
.chat__table {
  margin: 60px auto;
}
.chat__table caption {
  margin-bottom: 5px;
}
.chat__table th:not(.empty) {
  padding: 10px;
  background-color: #638866;
  color: #fff;
}
.chat__table td {
  padding: 10px;
  text-align: center;
  background-color: #fff;
}

/*----------------------------------
//チャット内の画像
-----------------------------------*/
.chat__scene-gallery {
  width: 90%;
  max-width: 360px;
  margin: 30px auto;
}
@media screen and (min-width: 600px) {
  .chat__scene-gallery {
    max-width: 700px;
  }
}
@media screen and (min-width: 1280px) {
  .chat__scene-gallery {
    margin: 60px auto;
  }
}
.chat__scene-gallery > * + * {
  margin-top: 30px;
}
.chat__scene-gallery.mini {
  max-width: 500px;
}
.chat__scene-gallery .chat__scene-img img {
  width: 100%;
  max-height: 600px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
.chat__scene-gallery .chat__scene-img figcaption {
  text-align: center;
  margin: 0.5em 0;
}
.chat__scene-gallery .chat__scene-img.chimny img {
  max-width: 400px;
}
.chat__scene-gallery .chat__scene-img.nijinensho img {
  max-width: 300px;
}
.chat__scene-gallery .chat__scene-img.kinkura img {
  margin: 0;
  max-width: 200px;
}
@media screen and (min-width: 600px) {
  .chat__scene-gallery.col_2, .chat__scene-gallery.col_3 {
    max-width: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
  }
  .chat__scene-gallery.col_2 > * + *, .chat__scene-gallery.col_3 > * + * {
    margin-top: 0;
  }
}
@media screen and (min-width: 600px) {
  .chat__scene-gallery.col_2 > * {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (min-width: 600px) {
  .chat__scene-gallery.col_3 > * {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (min-width: 1280px) {
  .chat__scene-gallery.col_3 > * {
    width: calc((100% - 20px) / 3);
  }
}

.c-epilogue__illust {
  margin-top: 14px;
  margin-bottom: 14px;
  width: 100%;
  max-width: 600px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  mix-blend-mode: darken;
  margin-inline: auto;
}

.c-epilogue__illust img {
  margin-inline: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 1280px) {
  .c-epilogue__illust img {
    width: 100%;
    height: 100%;
    margin-top: 9px;
    margin-bottom: 23px;
  }
}

/* まとめ */
.p-index-sec__summary.chat-line::before {
  margin-bottom: 55px;
}
@media screen and (min-width: 768px) {
  .p-index-sec__summary.chat-line::before {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 1280px) {
  .p-index-sec__summary.chat-line::before {
    margin-bottom: 50px;
  }
}

@media screen and (min-width: 768px) {
  .p-index-sec__summary-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 14px;
    padding-left: 22px;
    padding-right: 22px;
  }
}

.p-index-sec__summary-head {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  background: #C04125;
  padding: 5px;
  display: inline-block;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media screen and (min-width: 768px) {
  .p-index-sec__summary-head {
    font-size: 18px;
  }
}

.p-index-sec__summary-title {
  margin-top: 10px;
  color: #C04125;
  font-size: 16px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-index-sec__summary-title {
    margin-top: 5px;
  }
}
@media screen and (min-width: 1280px) {
  .p-index-sec__summary-title {
    font-size: 18px;
  }
}

.p-index-sec__summary-list {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-index-sec__summary-list {
    max-width: 400px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1280px) {
  .p-index-sec__summary-list {
    margin-top: 25px;
    max-width: 500px;
  }
}
.p-index-sec__summary-list li {
  list-style: disc;
  font-size: 16px;
  font-weight: 600;
  list-style-position: inside;
  padding-left: 1.5em;
  text-indent: -1em;
  margin-bottom: 0.5em;
}
.p-index-sec__summary-list li .items {
  font-weight: normal;
  display: block;
  text-indent: 0;
}

.p-index-sec__accessory-list {
  margin: 20px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  border-radius: 30px;
  padding: 20px;
  gap: 10px 20px;
  max-width: 800px;
  color: #C04125;
}

.p-index-sec__accessory-list li {
  text-align: justify;
  font-size: 16px;
  font-weight: 600;
  list-style: none;
}

.p-index-sec__summary-list li::marker,
.p-index-sec__accessory-list li::marker {
  font-size: 10px;
}

.p-index-sec__next-wrap {
  margin-top: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 45px;
}
@media screen and (min-width: 768px) {
  .p-index-sec__next-wrap {
    margin-inline: auto;
    padding-right: 65px;
  }
}
@media screen and (min-width: 1280px) {
  .p-index-sec__next-wrap {
    max-width: 1160px;
    padding-right: 0;
  }
}

.p-index-sec__next {
  padding: 7px 10px 7px 5px;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  background-color: #FCDE00;
  font-size: 13px;
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media (any-hover: hover) {
  .p-index-sec__next:hover {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}
.p-index-sec__next:active {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}
@media screen and (min-width: 375px) {
  .p-index-sec__next {
    padding: 7px 20px 7px 10px;
  }
}
@media screen and (min-width: 1280px) {
  .p-index-sec__next {
    font-size: 18px;
  }
}

.p-index-sec__next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 28px solid transparent;
  border-right: 28px solid transparent;
  border-top: 36px solid #FCDE00;
  position: absolute;
  right: -42px;
  top: 51%;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}

.chat__text-body {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .chat__text-body {
    max-width: 800px;
    margin-left: 25px;
    margin-right: 25px;
  }
}
@media screen and (min-width: 1280px) {
  .chat__text-body {
    margin-top: 70px;
    margin-bottom: 70px;
  }
}

.chat__text-body.chat__text-body--last {
  margin-bottom: 0;
}

.chat__text {
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .chat__text {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 1280px) {
  .chat__text {
    font-size: 1.125rem;
  }
}

.chat__text.chat__text--last {
  margin-top: 2em;
}

/* =============================================
画像関係/顔アイコン/ヘッダーと、まとめ横のポイント画像
============================================= */
/* 擬似要素で顔画像を表示 */
.burekki::before,
.hayashida::before,
.makino::before,
.bredda::before {
  display: block;
  content: "";
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  background-size: contain;
  background-position: center;
  mix-blend-mode: darken;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 430px) {
  .burekki::before,
  .hayashida::before,
  .makino::before,
  .bredda::before {
    width: 60px;
    height: 60px;
  }
}
@media screen and (min-width: 1280px) {
  .burekki::before,
  .hayashida::before,
  .makino::before,
  .bredda::before {
    width: 80px;
    height: 80px;
  }
}

.makino::before {
  position: relative;
  left: -10px;
}

/* ブレッキーの顔画像 */
.burekki::before {
  background-image: url("../images/my-first-wood-stove/burekki.jpg");
}

/* 自慢げ */
.burekki.jimange::before {
  background-image: url("../images/my-first-wood-stove/jimange.jpg");
}

/* 喜び */
.burekki.happy::before {
  background-image: url("../images/my-first-wood-stove/happy.jpg");
}

/* はやしだの顔画像 */
.hayashida::before {
  background-image: url("../images/my-first-wood-stove/hayashida.jpg");
}

/* 笑い */
.hayashida.warai-hayashida::before {
  background-image: url("../images/my-first-wood-stove/warai-hayashida.jpg");
}

/* 驚き */
.hayashida.odoroki::before {
  background-image: url("../images/my-first-wood-stove/odoroki.jpg");
}

/* 苦笑い */
.hayashida.nigawarai::before {
  background-image: url("../images/my-first-wood-stove/nigawarai.jpg");
}

/* 無表情 */
.hayashida.muhyojo::before {
  background-image: url("../images/my-first-wood-stove/muhyoujo.jpg");
}

/* 疑問 */
.hayashida.gimon::before {
  background-image: url("../images/my-first-wood-stove/gimon.jpg");
}

/* まきのの顔画像 */
.makino::before {
  background-image: url("../images/my-first-wood-stove/makino.jpg");
}

/* 笑い */
.makino.warai::before {
  background-image: url("../images/my-first-wood-stove/warai.jpg");
}

/* 不満 */
.makino.fuman::before {
  background-image: url("../images/my-first-wood-stove/fuman.jpg");
}

/* ブレッダの顔画像 */
.bredda::before {
  background-image: url("../images/my-first-wood-stove/bredda.jpg");
}

/* 喜び */
.bredda.yorokobi::before {
  background-image: url("../images/my-first-wood-stove/yorokobi.jpg");
}

/* 不満 */
.bredda.unhappy::before {
  background-image: url("../images/my-first-wood-stove/unhappy.jpg");
}

/* ヘッダーのイラスト */
.p-stove-sub__inner::after {
  content: "";
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: clamp(10rem, 8.214rem + 8.929vw, 12.5rem);
  height: clamp(10rem, 8.214rem + 8.929vw, 12.5rem);
  top: var(--hajimete_illust-pos, 70px);
  right: clamp(0rem, -0.67rem + 3.348vw, 0.938rem);
  z-index: 50;
  opacity: var(--hajimete_subhead_illust-opacity, 0);
}
@media screen and (min-width: 1280px) {
  .p-stove-sub__inner::after {
    width: 230px;
    height: 230px;
    right: clamp(1.25rem, -18.75rem + 25vw, 3.75rem);
  }
}

/* 下層ページによって異なるイラスト/bodyに付与されるのスラッグ（page-）を使用functions.phpに記載 */
.page-my-first-wood-stove2 .p-stove-sub__inner::after {
  background-image: url(../images/my-first-wood-stove/illust_pizza.png);
}

.page-my-first-wood-stove3 .p-stove-sub__inner::after {
  background-image: url(../images/my-first-wood-stove/illust_carrier.png);
}

.page-my-first-wood-stove4 .p-stove-sub__inner::after {
  background-image: url(../images/my-first-wood-stove/illust_ax.png);
}

.page-my-first-wood-stove5 .p-stove-sub__inner::after {
  background-image: url(../images/my-first-wood-stove/illust_kettle.png);
}

.page-my-first-wood-stove6 .p-stove-sub__inner::after {
  background-image: url(../images/my-first-wood-stove/illust_grobe.png);
}

.page-my-first-wood-stove7 .p-stove-sub__inner::after {
  background-image: url(../images/my-first-wood-stove/illust_chimny.png);
}

.p-stove-sub__index {
  margin-top: 60px;
  margin-left: clamp(0rem, -1.339rem + 6.696vw, 1.875rem);
}
@media screen and (min-width: 768px) {
  .p-stove-sub__index {
    margin-top: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 1280px) {
  .p-stove-sub__index {
    min-width: 678px;
  }
}

@media screen and (min-width: 1280px) {
  .p-stove-sub__index-list {
    display: none;
  }
}

.p-stove-sub__index-list--pc {
  display: none;
}
@media screen and (min-width: 1280px) {
  .p-stove-sub__index-list--pc {
    display: block;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 34px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
  }
}
@media screen and (min-width: 1280px) {
  .p-stove-sub__index-list--pc {
    gap: 43px;
  }
}

@media screen and (min-width: 1280px) {
  .p-stove-sub__index-list--pc .c-index__list {
    margin-top: 12px;
  }
}

/* チャットの下、まとめの横イラスト */
.p-index-sec .chat__inner::before {
  content: "";
  position: absolute;
  mix-blend-mode: multiply;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 200px;
  height: 200px;
  bottom: 30px;
  right: 10px;
  z-index: 50;
  opacity: var(--hajimete_matome_illust-opacity, 0);
}
@media screen and (min-width: 768px) {
  .p-index-sec .chat__inner::before {
    right: 30px;
  }
}
@media screen and (min-width: 1280px) {
  .p-index-sec .chat__inner::before {
    right: 50px;
  }
}

.p-index-sec.p-index-top .chat__inner::before {
  background-image: url(../images/my-first-wood-stove/icon-chair-stove.jpg);
  width: 270px;
  height: 200px;
}
@media screen and (min-width: 1280px) {
  .p-index-sec.p-index-top .chat__inner::before {
    width: 340px;
    height: 256px;
    right: 60px;
  }
}

.p-index-page02 .chat__inner::before {
  background-image: url(../images/my-first-wood-stove/illust_pizza.png);
}

.p-index-page03 .chat__inner::before {
  background-image: url(../images/my-first-wood-stove/illust_carrier.png);
}

.p-index-page04 .chat__inner::before {
  background-image: url(../images/my-first-wood-stove/illust_ax.png);
}

.p-index-page05 .chat__inner::before {
  background-image: url(../images/my-first-wood-stove/illust_kettle.png);
}

.p-index-page06 .chat__inner::before {
  background-image: url(../images/my-first-wood-stove/illust_grobe.png);
}

.p-index-page07 .chat__inner::before {
  background-image: url(../images/my-first-wood-stove/illust_chimny.png);
}

.chat.chat--last .chat__inner::before {
  background-image: url(../images/my-first-wood-stove/illust_pizza.png);
}