/* font
-----------------------------------------------------*/

/* sans-serif */

@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/NotoSansJP-Regular.woff2") format("woff2"),
    url("../fonts/NotoSansJP-Regular.woff") format("woff");
}

@font-face {
  font-family: 'Noto Sans JP';
  font-style: bold;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/NotoSansJP-Bold.woff2") format("woff2"),
    url("../fonts/NotoSansJP-Bold.woff") format("woff");
}

/* serif */

@font-face {
  font-family: "Noto Serif CJK JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/NotoSerifCJKjp-Regular.woff") format("woff")
}

@font-face {
  font-family: "Noto Serif CJK JP";
  font-style: bold;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/NotoSerifCJKjp-Bold.woff") format("woff")
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: rgba(0, 0, 0, 0)
}

article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
  display: block
}

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

option {
  color: #111;
}

select {
  -webkit-tap-highlight-color: transparent;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help
}

html {
  overflow: auto;
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  /* ヘッダーの高さに合わせる */
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #111;
  transition: .3s linear;
  box-sizing: border-box;
}

a:hover {
  opacity: .7;
  color: #111;
}

:root {
  --border-radius: 20px;
  --gap: 20px;
  --radius: 20px;

  /* Colors */
  --c-text: #111;
  --c-accent: #14607E;
  --c-accent-2: #466BB3;
  --c-danger: #E60719;
  --c-bg-blue: #F1F6FA;
  --c-bg-blue-2: #E8F0F6;
  --c-bg-gray: #ECECEC;

  /* Typography */
  --ff-deco: "Sorts Mill Goudy", serif;
}

img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  color: var(--c-text);
  font: 1.6rem / 2 'Noto Serif CJK JP', serif;
  overflow-wrap: break-word;
  word-break: break-word;
  overflow: hidden;
  line-height: 2;
  position: relative;
  background-color: #E7E2DB;
}

/* =================================== */
header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5000;
  background: #fff;
}

section {
  position: relative;
}

header .logo {
  font-size: 20px;
  font-weight: bold;
  width: 70%;
  max-width: 170px;
}

nav {
  display: flex;
  gap: var(--gap);
  justify-content: center;
  line-height: 1.2;
  text-align: center;
}

nav a {
  text-decoration: none;
  color: var(--c-text);
  font-size: 16px;
}

header nav a.onlineshop {
  background: #111 url(../images/common/ico_cart.svg) 8px center no-repeat;
  color: #fff;
  padding: 5px 10px 5px 30px;
  margin-top: -5px;
}

/* ▼251119追加 */
header nav a.onlineshop:hover {
  background: #B39742 url(../images/common/ico_cart.svg) 8px center no-repeat;
  opacity: 1;
}

/* ▲251119追加 */

/* ▼ 製品リンク（ドロップダウン親） */
.has-dropdown {
  position: relative;
}

nav .has-dropdown span {
  position: relative;
  z-index: 10;
  padding-right: 2rem;
  cursor: pointer;
}

nav .has-dropdown span::after {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 1px #111;
  border-right: solid 1px #111;
  transform: rotate(135deg);
  position: absolute;
  top: 0;
  right: 5px;
  bottom: 0;
  margin: auto;
}

nav .has-dropdown li a::after {
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 5px;
  bottom: 0;
}

/* ▼ ドロップダウンメニュー初期状態 */
nav .dropdown {
  display: block;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-5px);
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 180px;
  z-index: 5;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  border-radius: 5px;
  padding: 1rem;
}

/* ▼ ドロップダウン内リンク */
nav .dropdown li a {
  display: block;
  padding: 1.5rem 2.5rem 1.5rem 1rem;
  white-space: nowrap;
  transition: background 0.3s, color 0.3s;
  border-bottom: 1px dotted #BDBDBD;
  text-align: left;
}

nav .dropdown li:last-child a {
  border: none;
}

nav .dropdown li a:hover {
  background: #f5f5f5;
  color: #B39742;
  opacity: 1;
}

/* ▼ hover時に表示 */
nav .has-dropdown span:hover+.dropdown,
nav .dropdown:hover,
nav .has-dropdown span:has(+ .dropdown:hover)+.dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ▼ ドロップダウンのアニメーションを滑らかに */
@media (prefers-reduced-motion: no-preference) {
  nav .dropdown {
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }
}


.ttl01 {
  font-size: 42px;
  margin: 0 0 6rem;
  line-height: 1.2;
  position: relative;
}

.ttl01::before {
  content: '';
  width: 30px;
  height: 1px;
  position: absolute;
  left: -4rem;
  top: 3rem;
  background-color: #111;
}

.ttl01 span {
  font-size: clamp(18px, 2vw + 0.5rem, 28px);
  font-family: var(--ff-deco);
  font-style: normal;
  color: #B39742;
  letter-spacing: 0.3rem;
  display: block;
  margin-top: 1rem;
}

.ttl02 {
  font-size: 32px;
  line-height: 1.2;
}

.ttl02 span {
  font-family: var(--ff-deco);
  font-size: clamp(14px, 2vw + 0.5rem, 20px);
  position: relative;
  margin-left: 4rem;
}

.ttl02 span::after {
  content: '';
  width: 20px;
  height: 1px;
  position: absolute;
  left: -30px;
  top: 1.2rem;
  background-color: #111;
}

h2.ttl03 {
  font-size: clamp(21px, 2vw + 1rem, 37px);
  margin-bottom: 2rem;
  margin-top: -2rem;
}

/* ▼251119変更 */
.ttl04 {
  position: relative;
  font-size: 28px;
  letter-spacing: 0.1rem;
  line-height: 1.6;
}

.ttl04:after {
  content: '';
  width: 60px;
  background: #B39742;
  height: 1px;
  position: relative;
  display: block;
  margin: 1.4rem 0 3rem;
}

.ttl05 {
  font-size: clamp(18px, 3vw + 1rem, 26px);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.ttl06 {
  position: absolute;
  top: 0;
  left: 67%;
  top: 2rem;
}

/* .v-line {
  position: relative;
  margin: 1.5rem;
}

.v-line::after {
  content: "ー";
  position: absolute;
  transform: rotate(268deg) scaleX(-1);
  top: -7px;
  left: -16px;
}

.cak01,
.cak02 {
  position: relative;
  margin: 1.5rem;
}

.cak01::after {
  content: "「";
  position: absolute;
  transform: rotate(90deg);
  top: -5px;
  right: -20px;
}

.cak02::after {
  content: "」";
  position: absolute;
  transform: rotate(90deg);
  top: -5px;
  left: -5px;
} */

@media (min-width: 800px) {
  .ttl06 {
    left: 68%;
  }
}

@media (max-width: 768px) {
  /* .v-line {
    margin: 1rem;
  }

  .v-line::after {
    top: -4px;
    left: -11px;
  }

  .cak01,
  .cak02 {
    margin: 1rem;
  }

  .cak01::after {
    right: -18px;
  }

  .cak02::after {
    left: -4px;
  } */
}

/* ▲51116変更 */

.btn01 {
  text-align: right;
  position: relative;
}

.btn01 a,
.btn01 span {
  border-bottom: 1px dotted #111;
  padding: 1rem 3rem 1rem 1rem;
}

.btn01::after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #111;
  border-right: solid 2px #111;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 1rem;
  bottom: 0;
  margin: auto;
  transition: right .3s;
}

.btn01:hover::after {
  right: 0;
}

/* ページネーション====================== */
.pagination ul.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 8px;
  list-style-type: none;
  padding: 0;
  margin-top: 4rem;
}

.pagination ul.page-numbers a,
.pagination ul.page-numbers li {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  border-bottom: 2px solid #D0CBC3;
  color: #333;
  text-decoration: none;
}

.pagination ul.page-numbers .current {
  border-bottom: 2px solid #B39742;
  pointer-events: none;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  color: #333;
}

/* 製品情報====================== */
.item-name {
  font-size: 18px;
  margin: 1rem 0;
}

#product .flex2 li {
  margin-bottom: 4rem;
}

.product-img {
  max-width: 530px;
}

.product-img img {
  aspect-ratio: 530 / 299;
  object-fit: cover;
  width: 100%;
}

.inner-product {
  padding-top: 0 !important;
}


/* 事例紹介====================== */
.case-img {
  max-width: 350px;
}

.case-img img {
  aspect-ratio: 235 / 313;
  object-fit: cover;
  width: 100%;
}

/* お知らせ====================== */
.news::before {
  content: '';
  display: block;
  width: 300px;
  height: 300px;
  background: url(../images/common/bg_cloud01.svg) 0 0 no-repeat;
  position: absolute;
  right: 0;
  top: 5rem
}

.news::after {
  content: '';
  display: block;
  width: 380px;
  height: 300px;
  background: url(../images/common/bg_cloud02.svg) 0 0 no-repeat;
  position: absolute;
  left: -5rem;
  top: 25rem;
  z-index: -1;
}

.news-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.news-list {
  list-style: none outside;
  margin: 0;
  padding: 0;
  max-width: 750px;
  width: 100%;
}

.news-list li a {
  color: #111;
  border-bottom: 1px solid #D0CAC3;
  padding: 20px 20px;
  display: block;
}

.news-list li .date {
  margin: 0;
  font-size: 1.4rem;
  padding: 0 1rem 1rem 0;
}

.news-list li span {
  background-color: #A8996B;
  color: #fff;
  font-size: 1.2rem;
  /* width: 90px; */
  margin-left: 1rem;
  padding: 0 15px;
  line-height: 2;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
}

.news-list li .title {
  margin: 0;
  width: 100%;
}

.news-list li a:hover {
  background-color: #f3efe8;
}

.archive-ttl {
  font-size: 2rem;
  margin-bottom: 3rem;
}

.news-list-out {
  max-width: 750px;
  width: 100%;
}

@media screen and (max-width: 767px) {

  .archive-ttl {
    margin-bottom: 1rem;
  }

  .news-list-out {
    padding: 0 2rem;
  }

  .news-list li a {
    flex-wrap: wrap;
  }

  .news-list li .date {
    min-width: 100px;
  }

  .news-list li .title {
    margin-top: 10px;
  }
}

/* お知らせ(詳細)====================== */
.news-detail-flex {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.news-detail .date {
  margin: 0;
  font-size: 1.4rem;
}

.news-detail .cat li a {
  background-color: #A8996B;
  color: #fff;
  font-size: 1.2rem;
  /* width: 90px; */
  padding: 0 15px;
  line-height: 2;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
}

.news-detail .title {
  margin: 0 0 3rem 0;
  width: 100%;
}

@media screen and (max-width: 767px) {
  /* .news-detail .date {
    min-width: 100px;
  } */

  .news-detail .title {
    margin-top: 10px;
  }
}

/* TOP　松屋漆器について====================== */
.overview {
  background: url(../images/common/bg01.png) 0 0 repeat;
  background-size: 148px 150px;
  z-index: 1;
}

.overview::before {
  content: '';
  display: block;
  width: 300px;
  height: 300px;
  background: url(../images/common/bg_seigaiha.svg) 0 0 no-repeat;
  position: absolute;
  right: -5rem;
  top: 5rem
}

.overview::after {
  content: '';
  display: block;
  width: 300px;
  height: 300px;
  background: url(../images/common/bg_seigaiha.svg) 0 0 no-repeat;
  position: absolute;
  left: 38%;
  top: 50rem;
  z-index: -1;
}

.overview .inner {
  padding: 0 0 6rem;
}

.overview .flex2 {
  align-items: center;
}

.overview .flex2 li:first-child img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.overview .flex2 li:last-child {
  padding: 0 6rem;
}

.overview-list {
  padding: 6rem 3rem;
  display: flex;
}

.overview-list li {
  z-index: 1;
  flex: 1;
}

.overview-list li.txt {
  background: #E5DFD5;
  position: relative;
  top: 5rem;
  left: 4rem;
  padding: 6rem 10rem 6rem 0;
  margin-left: -4rem;
  flex: 1;
}

.overview-list li.txt::before {
  content: '';
  background: #E5DFD5;
  width: 100%;
  height: 100%;
  left: -50%;
  position: absolute;
  display: block;
  top: 0rem;
  z-index: -1;
}

.overview-list li.txt2 {
  left: 0rem;
  padding: 6rem 0 6rem 10rem;
  margin-left: -4rem;
  z-index: -1;
}

.overview-list li.txt2::after {
  content: '';
  background: #E5DFD5;
  width: 100%;
  height: 100%;
  right: -50%;
  position: absolute;
  display: block;
  top: 0rem;
  z-index: -1;
}

.overview-list li.txt2::before {
  content: none;
}

/* TOP　製品情報====================== */
section.product::before {
  content: '';
  position: absolute;
  background-color: #D2C8BC;
  display: block;
  width: 100%;
  height: 386px;
  z-index: -10;
}

section.product::after {
  content: '';
  display: block;
  width: 300px;
  height: 300px;
  background: url(../images/common/bg_asanoha.svg) 0 0 no-repeat;
  position: absolute;
  left: -5rem;
  top: 28rem;
  z-index: -1;
}

section.product .inner::before {
  content: '';
  display: block;
  width: 400px;
  height: 400px;
  background: url(../images/common/bg_asanoha.svg) 0 0 no-repeat;
  background-size: 400px auto;
  position: absolute;
  right: 0;
  top: -20rem;
  z-index: -1;
}

.ttl-shirakinuri {
  color: #fff;
  font-size: 100px;
  writing-mode: vertical-rl;
  position: absolute;
  right: -0;
  top: 7.2rem;
  letter-spacing: -33px;
}

.ttl-shirakinuri span {
  font-size: 24px;
  letter-spacing: 0.4rem;
  display: block;
  position: absolute;
  right: 0;
  top: 26px;
  font-family: var(--ff-deco);
}

section.product .flex2 li {
  margin-bottom: 6rem;
}

section.product .flex2 li img {
  margin-bottom: 1rem;
}

/* TOP　事例====================== */
.case {
  background: url(../images/common/bg_case.png) 0 0 repeat;
  background-size: 96px 96px;
}

.case-list {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.5;
  justify-content: space-between;
  position: relative;
}

.case-list li {
  width: calc(25% - 3rem);
  margin-bottom: 2rem;
  position: relative;
}

/* 親要素の疑似要素 */
.case-list::after {
  content: "";
  display: block;
  width: calc(25% - 4rem);
}

.case-list::before {
  content: "";
  display: block;
  width: calc(25% - 4rem);
  order: 1;
  /* アイテムの並び順 */
}

.case-list li img,
.case-list li .tag,
.case-list li .date,
.case-list li .title {
  margin-bottom: 1rem;
}

.tag a {
  text-decoration: underline;
  position: relative;
}

.tag a:hover {
  text-decoration: none;
}

.tag a::before {
  content: '#';
}

.case-list li .tag,
.case-list li .date {
  font-size: 14px;
}

.case-list li:nth-child(even) {
  margin-top: -5rem;
}

#case .case-list li:nth-child(even) {
  margin-top: -0;
}

#case .case-list li {
  margin-bottom: 4rem;
}

.inner-case {
  padding-top: 0 !important;
}

/* スマホ対応（画面幅が600px以下の場合） */
@media (max-width: 600px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    /* スマホでは2カラム */
  }

  .grid li {
    background: #fff;
    text-align: center;
    padding: 2rem 10px 10px;
  }
}


/* ハンバーガー */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 19px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 30px;
  z-index: 5000;
  /* ← 最前面に */
  transition: all 0.3s ease;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: all 0.4s ease;
}

/* ハンバーガー → × */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* フルスクリーンメニュー */
.mobile-nav {
  display: flex;
  flex-direction: column;
  text-align: left;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #E7E2DB;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 2000;
  /* ← ハンバーガーより下 */
  padding: 6rem 2rem 0;
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--c-text);
  font-size: 18px;
  transition: color 0.3s ease;
  padding: 1rem;
  width: 100%;
  border-bottom: 1px solid #d0d0d0;
  position: relative;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--c-text);
  font-size: 18px;
  transition: color 0.3s ease;
  padding: 1rem;
  width: 100%;
  border-bottom: 1px solid #d0d0d0;
  position: relative;
}

.mobile-nav a::after {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 1px #111;
  border-right: solid 1px #111;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 1rem;
  bottom: 0;
  margin: auto;
}

.mobile-nav a.onlineshop {
  background: #111 url(../images/common/ico_cart.svg) calc(50% - 8rem) center no-repeat;
  color: #fff;
  text-align: center;
  margin-top: 1rem;
  background-size: 15px;
  padding-left: 2.5rem;
}


@media (max-width: 950px) {
  header nav {
    display: none;
  }

  .hamburger {
    display: flex !important;
  }

  header {
    padding: 10px 10px;
  }
}

/* ヒーロー====================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero img.active {
  opacity: 1;
}

.overlay {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  width: 55%;
}

.overlay img {
  width: 638px;
  height: auto;
}

.overlay p {
  font-size: 20px;
  margin-top: 16px;
}

.inner {
  padding: 10rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

body:not(.home) main .inner {
  padding: 6rem 4rem;
}

.page-top--inner {
  padding: 10rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 6rem 4rem 0 4rem !important;
}

body.blog .inner.page-top--inner,
body.category .inner.page-top--inner {
  padding: 0 !important;
}

.flex2,
.flex3 {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.flex3 li {
  flex: 1;
  position: relative;
  margin: 0 auto;
}

.flex2 li {
  width: calc(50% - 3rem);
}

/* ft-contact====================== */
.ft-contact ul {
  display: flex;
  flex-wrap: nowrap;
  gap: 4rem;
  line-height: 1.5;
  align-items: stretch;
}

.ft-contact ul li {
  flex: 1;
}

.ft-contact ul li a {
  flex: 1;
  background-color: #ECE8E2;
  padding: 3rem 2rem;
  text-align: center;
  display: block;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 2rem;
}

.ft-contact h3 {
  font-size: 20px;
  padding-bottom: 3rem;
  line-height: 2;
}

.ft-contact h3 span {
  font-size: 16px;
  display: block;
  color: #B39742;
  font-family: var(--ff-deco);
  letter-spacing: 0.1rem;
}

.ft-contact ul li:first-child h3 {
  background: url(../images/common/ft-contact1.svg) center bottom no-repeat;
  background-size: 25px 25px;
}

.ft-contact ul li:nth-child(2) h3 {
  background: url(../images/common/ft-contact2.svg) center bottom no-repeat;
  background-size: 25px 25px;
}

.ft-contact ul li:last-child h3 {
  background: url(../images/common/ft-contact3.svg) center bottom no-repeat;
  background-size: 25px 25px;
}

.ft-contact .btn02 {
  display: block;
  border: 1px dotted;
  cursor: pointer;
  padding: 1rem 0;
  margin-top: auto;
  position: relative;
}

.ft-contact .btn02::after {
  content: '';
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 1px #111;
  border-right: solid 1px #111;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 2rem;
  bottom: 0;
  margin: auto;
}

.ft-contact a:hover {
  background-color: #fff;
}


/* footer====================== */
.footer {
  background-color: #2F2726;
  color: #fff;
}

.footer-address,
.footer-address a,
.footer-company {
  color: #ffffff54;
  margin-bottom: 1rem;
}

.footer-address {
  padding-bottom: 1rem;
  border-bottom: 1px solid;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: flex;
  justify-content: space-between;
}

.footer-inner div:first-child {
  width: 320px;
}

.footer-company {
  font-size: 28px;
}

.footer-company span {
  font-size: 18px;
  margin-right: 1rem;
}

nav.footer-nav {
  gap: 6rem;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s;
  display: block;
  padding-bottom: 2rem;
  text-align: left;
}

.footer-nav a:hover {
  opacity: 0.7;
}

.footer-copy {
  font-size: 14px;
  text-align: right;
  color: #ffffff54;
}

.ft-link {
  display: flex;
  flex-wrap: nowrap;
  margin-top: 2rem;
}

.ft-link li a {
  background: url(../images/common/ico_instagram.svg) top center no-repeat;
  background-size: 38px 38px;
  color: #ffffff54;
  font-size: 12px;
  text-align: center;
  padding-top: 4rem;
  width: 70px;
  display: block;
}

.ft-link li:last-child a {
  background: url(../images/common/ico_rakuten.svg) top center no-repeat;
  background-size: 38px 38px;
}

/* TO TOP ====================== */
#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--c-text);
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 1000;
  border: none;
}

#back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

#back-to-top::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 54%;
  left: 50%;
  translate: -50% -50%;
}

/* ぱんくず ====================== */
.breadcrumb {
  text-align: right;
  margin: 0 auto;
  padding: 10rem 4rem 0;
  width: 100%;
  max-width: 1200px;
  font-size: 14px;
  /* 251119変更 */
}

.content-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.content-wrap-min {
  width: 100%;
  max-width: 870px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ▼251119変更 */

/* 伝統と技のかたち====================== */
#tradition .flex2 {
  align-items: center;
}

#tradition .case,
#handling .case {
  padding: 8rem 0;
}

.bx01 dt {
  font-size: 20px;
  position: relative;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.bx01 dd {
  margin-bottom: 4rem;
}

.bx01 dd:last-child {
  margin-bottom: 0;
}

.bx01 dt::after {
  content: '/';
  margin-left: 1rem;
}

#tradition .bx01 {
  margin: 2rem 0;
}


@media (max-width: 900px) {
  #tradition .flex2 {
    gap: 1.5rem;
  }

  .flex2-re {
    flex-wrap: wrap-reverse;
    display: flex;
  }

  #tradition .flex2 li {
    margin-bottom: 0;
  }

  #tradition .case,
  #handling .case {
    padding: 5rem 0;
  }

  #tradition .bx01 {
    margin: 4rem 0 0;
  }
}

/* 製品の特性・取り扱いについて  ====================== */
.page-link {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 6rem;
  justify-content: center;
}

.page-link li {
  width: 30%;
  margin-bottom: 1rem;
}

.page-link li a {
  border: 1px dotted;
  display: block;
  padding: 1.5rem 2rem 1.5rem 1rem;
  position: relative;
  display: flex;
  height: 100%;
  line-height: 1.6;
  justify-content: center;
  align-items: center;
}

.page-link li a:hover {
  color: #B39742;
  opacity: 1;
  background-color: #ffffff9e;
}

.page-link li a::after {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 1px #111;
  border-right: solid 1px #111;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 2rem;
  bottom: 0;
  margin: auto;
  transition: right .3s;
}

.page-link li a:hover::after {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 1px #B39742;
  border-right: solid 1px #B39742;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 1rem;
  bottom: 0;
  margin: auto;
  transition: right .3s;
}

#handling .flex2 {
  align-items: center;
}

/* よくあるご質問 */
.qa {
  border-top: 1px dotted;
}

.qa:last-child {
  border-bottom: 1px dotted;
}

.qa summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1.5em 1em 1.5em 3em;
  cursor: pointer;
  line-height: 1.4;
  list-style: none;
  font-size: 18px;
}

summary::-webkit-details-marker {
  display: none;
}

.qa summary::before,
.qa p::before {
  position: absolute;
  left: 1rem;
  font-weight: normal;
  font-size: 1.1em;
  font-family: Arial, Helvetica, sans-serif;
  width: 30px;
  text-align: center;
  border-radius: 20px;
  line-height: 1.5;
}

.qa summary::before {
  color: #B39742;
  content: "Q";
  font-family: serif;
  font-size: 30px;
}

.qa summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-bottom: 1px solid #111;
  border-right: 1px solid #111;
  content: '';
  transition: transform .5s;
}

.qa[open] summary::after {
  transform: rotate(225deg);
}

.qa p {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: .3em 3.5em 1.5em;
  transition: transform .5s, opacity .5s;
  font-size: 16px;
}

.qa[open] p {
  transform: none;
  opacity: 1;
}

.qa p::before {
  color: #A49D94;
  width: 30px;
  content: "A";
  font-size: 30px;
  font-family: serif;
  top: -0.5rem;
}

#handling .flex2 li {
  position: relative;
}

#handling .flex2 img {
  width: 70%;
}

#handling .flex2-re img {
  float: right;
}

#handling .flex2-re .ttl06 {
  left: initial;
  right: 67%;
}

#handling .img-tate .ttl06 {
  left: 66.5%;
}

#handling .ttl06 img {
  width: 100%;
}

#handling .img-tate li:first-child {
  width: 35%;
}

#handling .img-tate li:last-child {
  width: 55%;
}

@media (max-width: 900px) {
  #handling .img-tate li:first-child {
    width: 100%;
  }

  #handling .img-tate li:last-child {
    width: 100%;
  }

  #handling .img-tate .ttl06 {
    left: 67.5%;
  }

  #handling .flex2-re .ttl06 {
    right: 68%;
  }
}

@media (max-width: 768px) {
  .qa p {
    padding: 0.3em 0 1.5em 3.5em;
  }

  .page-link {
    gap: 0;
    margin-bottom: 4rem;
  }

  .page-link li {
    width: 50%;
    margin-bottom: 1rem;
  }

  .page-link li a {
    justify-content: left;
  }

  .page-link li:nth-child(2n) a {
    border-left: none;
  }

  .page-link li a::after {
    right: 1rem;
  }
}

#handling .ttl06 .handling-text01 {
  min-width: 134px;
}

#handling .ttl06 .handling-text02 {
  max-width: 129px;
}

#handling .ttl06 .handling-text03 {
  max-width: 129px;
}

#handling .ttl06 .handling-text04 {
  max-width: 79px;
}

#handling .ttl06 .handling-text05 {
  max-width: 78px;
}

#handling .ttl06 .handling-text06 {
  max-width: 129px;
}

@media (max-width: 575px) {
  #handling .ttl06 .handling-text01 {
    max-width: 80px;
    min-width: initial;
  }

  #handling .ttl06 .handling-text02 {
    max-width: 80px;
    min-width: initial;
  }

  #handling .ttl06 .handling-text03 {
    max-width: 80px;
    min-width: initial;
  }

  #handling .ttl06 .handling-text04 {
    max-width: 52px;
  }

  #handling .ttl06 .handling-text05 {
    max-width: 52px;
  }

  #handling .ttl06 .handling-text06 {
    max-width: 80px;
    min-width: initial;
  }
}

/* プライバシーポリシー  ====================== */
#privacy ol {
  padding-left: 1em;
}

ol ol {
  list-style-type: lower-latin;
}

ol ol ol {
  list-style-type: disc;
}

/* ▲51116変更 */

/* 会社概要  ====================== */
.tbl02 {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
}

.tbl02 th,
.tbl02 td {
  padding: 10px;
  border: solid 1px #AEA0A0;
  font-weight: normal;
  vertical-align: middle;
}

.tbl02 th {
  width: 30%;
  max-width: 200px;
  min-width: 90px;
}

.tbl02 td {
  text-align: left;
  line-height: 1.6;
}

.bx-map {
  width: 100%;
  padding: 2rem;
  border: 1px solid #AEA0A0;
}

.bx-map iframe {
  width: 100%;
}

.inner-pt0 {
  padding-top: 0 !important;
}

/* お問い合わせ  ====================== */
.cf-turnstile div {
  text-align: center;
}

.tbl01 {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

.tbl01 th {
  width: 25rem;
  vertical-align: top;
  top: 7px;
}

.tbl01 th.required::after {
  content: '必須';
  color: #BD1212;
  font-size: 14px;
  border: 1px solid #BD1212;
  border-radius: 3px;
  margin-right: 2rem;
  padding: 1px 5px 2px 7px;
  letter-spacing: 2px;
  vertical-align: top;
  right: 0;
  position: absolute;
  line-height: 1.4;
  margin-top: 4px;
}

.tbl01 th,
.tbl01 td {
  box-sizing: border-box;
  padding: 1.5rem 0;
  text-align: left;
  font-weight: 400;
  position: relative;
}

.box_check {
  text-align: center;
  margin: 3rem 0 4rem;
}

.box_check span {
  top: 2px;
  position: relative;
}

.box_check input[type="checkbox"] {
  width: 30px;
  height: 20px;
}

input[type="submit"] {
  display: block;
  color: #fff;
  background-color: #111;
  border: none;
  font-size: 16px;
  width: 100%;
  padding: 20px 10px;
  margin: 2rem auto 0;
  font-family: serif;
}

input[type="submit"]:hover {
  background-color: #B39742;
}

p.btn-submit {
  max-width: 320px;
  width: 80%;
  position: relative;
  margin: 0 auto;
}

p.btn-submit::after {
  content: '';
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: -32px;
  right: 2rem;
  bottom: 0;
  margin: auto;
}

button,
input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
textarea {
  border: 1px solid #e5e5e5;
  padding: 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 1.8rem;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid #AEA0A0;
  width: 100%;
}

input[type="text"].zipcode {
  width: 180px;
}


/* .wpcf7-form-control-wrap {
        position: relative;
    }
    .wpcf7-form input {
        box-sizing: border-box;
    }
    .wpcf7-form input {
        box-sizing: border-box;
    } */
input[type="submit"],
input[type="submit"]::before,
input[type="submit"]::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
}

.hyphen {
  margin: 0 5px;
}

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

/* box ====================== */
/* ▼251119変更 */
.bx01 {
  border: 1px solid;
  padding: 4rem;
}

/* ▲251119変更 */

/* list */
.li01 li {
  border-bottom: solid 1px #AEA0A0;
  position: relative;
  padding: 2rem 0;
  display: flex;
  line-height: 1.6;
}

.li01 li span {
  width: 180px;
  text-align: center;
}

.li01 li::after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 1px #B39742;
  bottom: -1px;
  width: 100px;
}

/* flexbox */
.flex,
.flex-re {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.box-2 {
  flex: 3;
}

.box-8 {
  flex: 8;
}

.box-4 {
  flex: 4;
}

.box-6 {
  flex: 6;
}

/* スマホ対応：幅が768px以下なら縦並びに */
@media (max-width: 768px) {
  .flex {
    flex-direction: column;
  }

  .flex-re {
    flex-wrap: wrap-reverse;
  }

  .box-4,
  .box-6 {
    flex: none;
    width: 100%;
  }

}

.bg-blue {
  background: var(--c-bg-blue);
}

.bg-blue2 {
  background: var(--c-bg-blue-2);
}

.att01 {
  color: #952C2C;
}

.center {
  text-align: center;
}

.center-m {
  margin-right: auto;
  margin-left: auto;
  display: block;
}

.small {
  font-size: 80%;
}

.block {
  display: block;
}

.mb1 {
  margin-bottom: 1rem;
}

.mt2 {
  margin-top: 2rem;
}

.mt3 {
  margin-top: 3rem;
}

/*251119変更*/
.mb2 {
  margin-bottom: 2rem;
}

.mb3 {
  margin-bottom: 3rem;
}

.mb4 {
  margin-bottom: 4rem;
}

.mb6 {
  margin-bottom: 6rem;
}

.mb8 {
  margin-bottom: 8rem;
}

.mb10 {
  margin-bottom: 10rem;
}

.pt0 {
  padding-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.pl2 {
  padding-left: 2rem;
}

.pr2 {
  padding-right: 2rem;
}

.w70per {
  max-width: 70%;
}

a.link01 {
  text-decoration: underline;
}

a.link01:hover {
  text-decoration: none;
  color: #B39742;
}

@media (max-width: 1200px) {
  .pl2-md {
    padding-left: 2rem !important;
  }

  .pr2-md {
    padding-right: 2rem !important;
  }
}

/* PAD ====================== */
@media (max-width: 1024px) {

  .ft-contact ul {
    flex-direction: column;
  }
}

@media (max-width: 900px) {

  img,
  .flex2 li {
    width: 100%;
  }
}

/* PC ====================== */
@media (min-width: 768px) {
  .sp {
    display: none;
  }
}

/* SP ====================== */
@media (max-width: 768px) {

  .pl2-sp {
    padding-left: 2rem !important;
  }

  .pr2-sp {
    padding-right: 2rem !important;
  }


  .pc,
  nav.footer-nav {
    display: none;
  }

  header .logo {
    max-width: 140px;
    margin: 5px 0 -5px 0;
  }

  /* main .inner {
    padding: 2rem 0;
  } */

  body:not(.home) main .inner {
    padding: 2rem 0;
  }

  .page-top--inner {
    padding: 2rem 0 !important;
  }

  .content-wrap {
    padding: 0 2rem;
  }

  .footer-inner {
    flex-direction: column;
    padding: 2rem;
    text-align: center;
  }

  .footer-inner div:first-child {
    width: 100%;
  }

  .ft-link {
    justify-content: center;
  }

  .footer-copy {
    font-size: 12px;
    text-align: center;
    margin-top: 1rem;
  }

  #case .case-list li {
    margin-bottom: 2rem;
  }

  .li01 li span {
    min-width: 80px;
    width: 80px;
  }

  .overview {
    overflow: hidden;
  }

  section.product .inner::before {
    background: url(../images/common/bg_asanoha.svg) 0 0 no-repeat;
    background-size: 260px auto;
    right: -20rem;
  }

  section.product::after {
    content: none;
  }

  .bx01 {
    padding: 3rem 2rem;
  }

  /*251119追加*/

  .ttl-shirakinuri {
    font-size: 46px;
    right: 1rem;
    top: 3rem;
    letter-spacing: initial;
  }

  .ttl-shirakinuri span {
    font-size: 18px;
    letter-spacing: 0.4rem;
    right: -1rem;
    top: 10px;
  }

  .ft-contact h3 {
    font-size: 18px;
    padding-bottom: 2rem;
    line-height: 1.6;
  }

  .ft-contact ul {
    gap: 2rem;
  }

  .ft-contact ul li:first-child h3,
  .ft-contact ul li:nth-child(2) h3,
  .ft-contact ul li:nth-child(3) h3 {
    background-size: 20px 20px;
  }

  .ft-contact ul li a {
    gap: 1rem;
    font-size: 14px;
  }

  .ft-contact h3 span {
    font-size: 12px;
  }

  .case-list {
    gap: 2rem;
    justify-content: space-between;
  }

  .case-list li {
    width: calc(50% - 2rem);
    flex: initial;
  }

  .case-list li:nth-child(even) {
    margin-top: 0;
  }

  .overview .flex2 {
    flex-direction: column;
  }

  .overview-list {
    padding: 0;
    flex-direction: column-reverse;
  }

  .overview-list2 {
    flex-direction: column;
  }

  .overview-list li img {
    position: relative;
    right: -3rem;
  }

  .overview-list li:nth-child(2) img {
    right: initial;
    left: -3rem;
    margin-top: 2rem;
  }

  .overview-list li.txt {
    top: -3rem;
    width: calc(100% + 4rem);
    padding: 6rem 4rem 6rem 0rem;
  }

  .overview-list li.txt2 {
    margin-left: 0;
    padding: 6rem 0 6rem 4rem;
    left: -4rem;
  }

  .overview .inner {
    padding: 0 3rem;
  }

  .overview .flex2 li:first-child img {
    height: 240px;
    object-fit: cover;
  }

  .overview .flex2 li:last-child {
    padding: 2rem 2rem 0;
  }

  section.product::before {
    height: 180px;
  }

  section.product .flex2 li {
    margin-bottom: 1rem;
  }

  .news-list {
    margin: 0 2rem 1.5rem;
  }

  .news-list-out .news-list {
    margin: 0;
  }

  .news::after {
    height: 110px;
    top: initial;
    bottom: 0;
    z-index: -1;
    background-size: 270px;
  }

  .news::before {
    background-size: 230px;
    width: 230px;
    right: -5rem;
  }

  .tbl01 th,
  .tbl01 td {
    width: 100%;
    display: block;
    padding-top: 5px;
  }

  .tbl01 th {
    top: 12px;
  }

  .tbl01 td {
    border-bottom: 1px dotted;
    padding-bottom: 2.2rem;
  }

  .tbl01 th.required::after {
    right: initial;
    left: 1rem;
    position: relative;
    top: 7px;
  }

  .ttl01 {
    margin: 0 0 2rem 2rem;
    font-size: 32px;
  }

  .ttl02 {
    font-size: 24px;
  }

  /* ▼251119変更 */
  .ttl04 {
    font-size: 20px;
  }

  .ttl06 {
    font-size: 19px;
    top: 1rem;
    letter-spacing: initial;
  }

  /* ▲251119変更 */

  /* .overlay p { font-size: 16px; } */
  .flex3 {
    flex-direction: column;
  }

  .footer-address {
    font-size: 12px;
    border-bottom: 1px solid #727272;
    padding-bottom: 2rem;
    margin-bottom: 1rem;
  }

  .footer-nav ul {
    margin: 0 0 2rem;
    gap: 10px;
  }

  .footer-nav ul li {
    width: 40%;
  }

  .inner {
    padding: 5rem 2rem;
  }

  .overlay {
    position: absolute;
    top: 30%;
    left: 43%;
    width: 80%;
  }

  /* ▼251119変更 */
  .ttl04:after {
    margin: 1rem 0 2rem;
  }

  /* ▲251119変更 */

  .bx-gray {
    padding: 4rem 2rem;
  }

  .li-voice,
  .li-voice2 {
    margin: 0 2rem;
  }

  .breadcrumb {
    padding-right: 2rem;
    padding-top: 7rem;
    font-size: 12px;
  }

  .mb2 {
    margin-bottom: 1rem;
  }

  .mb3 {
    margin-bottom: 1.5rem;
  }

  .mb4 {
    margin-bottom: 2rem;
  }

  .mb6 {
    margin-bottom: 3rem;
  }

  .mb8 {
    margin-bottom: 4rem;
  }

  .mb10 {
    margin-bottom: 5rem;
  }
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* reveal base */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  /* 上からふわっと = 下から20px上がる */
  transition: opacity .8s ease, transform .8s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 子要素に段階的ディレイを配るときに使う（JSが変数を付与） */
.reveal-stagger>* {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-stagger.is-visible>* {
  opacity: 1;
  transform: translateY(0);
}

/* アニメを極力抑制（ユーザー設定尊重） */
@media (prefers-reduced-motion: reduce) {

  .reveal,
  .reveal-stagger>* {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}