@charset "utf-8";
/*cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("theme.css");
@import url("parts.css");
@import url("inview.css");
@import url("util.css");
/*animation11のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes animation1 {
	0% {right: -200px;}
	100% {right: 0px;}
}
/*opa1のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}
html {
	font-size: clamp(12px, 0.293vw + 10.9px, 15px);
	overflow-x: visible;
}
body {
	margin: 0;padding:0;
	font-family: var(--base-font);
	-webkit-text-size-adjust: none;
	color: var(--color-text);
	line-height: 2;		/*行間*/
	overflow-x: hidden;
  background-color: #fbfbf7;
  background-image:
    linear-gradient(rgba(255,255,255,0.64), rgba(255,255,255,0.64)),
    repeating-linear-gradient(
      45deg,
      rgba(47, 93, 28, 0.085) 0px,
      rgba(47, 93, 28, 0.085) 1px,
      transparent 1px,
      transparent 20px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(47, 93, 28, 0.055) 0px,
      rgba(47, 93, 28, 0.055) 1px,
      transparent 1px,
      transparent 20px
    ),
    linear-gradient(#fcfcf8, #f4f7ed);
  background-blend-mode: normal, normal, normal, normal;
}
/*リセット*/
p {
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 2;
  letter-spacing: 0.05em;
	color: var(--color-text);
}
figure {margin: 0;}
dd {margin: 0;}
nav,ul,li,ol {margin: 0;padding: 0;}
nav ul {list-style: none;}
ul li {
	list-style: none;
}
/*table全般の設定*/
table {border-collapse:collapse;}
/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
/*videoタグ*/
video {max-width: 100%;}
/*iframeタグ*/
iframe {width: 100%;}
/*他*/
input {font-size: 1rem;}
/*section
---------------------------------------------------------------------------*/
section,.news-article {
	padding-bottom: clamp(56px, 8vw, 120px);
	position: relative;
}
.section {
	/* padding-top: 5rem; */
	padding-top: clamp(56px, 8vw, 120px);
}
.section-btn-none {
	padding-bottom: 0;
}
.page-section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
@media screen and (max-width:650px) { 
	.section {
	padding-top: 3rem;
}
section,.news-article {
	padding-bottom: 3rem;
}
}
/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: inherit;
	transition: 0.5s;
	text-decoration: none;
}
/*マウスオン時*/
a:hover {
	text-decoration: none;
}
/*コンテナー（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	animation: opa1 0.2s 0.2s both;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	width: 100%;
	max-width: 100%;
}
/*header
---------------------------------------------------------------------------*/
header {
  display: flex;
	justify-content: space-between;
	align-items: center;
	height: 135px;
	padding: 20px 20px 0px 20px;
}
header .logo {margin: 0;flex-shrink: 0;
z-index: 101;
}
header .logo img {
		display: block;	
		width: 220px;
    position: relative;
		top: 00px;
}

/*メニューブロック共通
---------------------------------------------------------------------------*/
.small-screen #menubar {
	animation: menuFadeIn 0.45s ease both;
	position: fixed;
	overflow: auto;
	z-index: 100;
	right: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	padding: 100px var(--content-space-l) 50px;	
	background: var(--color-bg);
	color: var(--color-text);
}
@keyframes menuFadeIn {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.small-screen #menubar {
	display: none;
}
/* 中身のレイアウト */
.menu-panel {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  gap: clamp(40px, 6vw, 90px);
  padding: clamp(50px, 14vw, 150px) clamp(50px, 7vw, 100px)  clamp(50px, 2vw, 50px)  clamp(50px, 7vw, 100px);
}

/* 左側：店舗情報 */
.menu-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(43, 43, 38, 0.35);
  padding-right: clamp(40px, 5vw, 80px);
}
 .menu-shop-block {
	display: grid;
  grid-template-columns: 1fr 1fr;
	gap: clamp(35px, 2vw, 50px);
 }
/* 店舗名 */
.menu-shop h2 {
  margin: 0 0 2rem;
  font-size: clamp(25px, 2vw, 40px);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--color-text);
}
/* 住所 */
.menu-shop .address {
  margin: 0 0 2.3rem;
  font-size: clamp(15px, 1.1vw, 22px);
  line-height: 2;
  letter-spacing: 0.08em;
}
/* 電話番号 */
.menu-shop .tel {
  display: inline-block;
  margin: 0 0 2rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(43, 43, 38, 0.6);
  font-size: clamp(18px, 1.4vw, 32px);
  line-height: 1.4;
  letter-spacing: 0.08em;
  font-family: serif;
}
/* 営業時間 */
.menu-shop .time {
  margin: 0;
  font-size: clamp(13px, 1vw, 18px);
  line-height: 2;
  letter-spacing: 0.08em;
}
/* 左下リンク */
.menu-link-small {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(43, 43, 38, 0.45);
}
.menu-link-small a {
  color: var(--color-text);
  text-decoration: none;
  font-size: clamp(16px, 1vw, 15px);
  letter-spacing: 0.08em;
}
.menu-link-small a::before {
  content: "-";
  margin-right: 0.7em;
}
/* 右側：メニュー */
.menu-nav {
  display: flex;
  align-items: center;
}
.menu-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu-nav li {
  margin-bottom: clamp(22px, 2.6vw, 42px);
}
/* メニュー文字 */
.menu-nav a {
  display: inline-block;
  color: var(--color-text);
  text-decoration: none;
  font-size: clamp(22px, 1.5vw, 30px);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.4;
}
/* hoverでふんわり */
.menu-nav a,
.menu-link-small a {
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.4s ease;
}
.menu-nav a:hover,
.menu-link-small a:hover {
  opacity: 0.65;
  transform: translateX(8px);
  color: var(--color-main);
}
.menubar_space {
	position: fixed;
	top: 0;
	right: 5px;
	height: 97vh;
	z-index: 1001;
}
#menubar_hdr {
	display: none;
  animation: opa1 0s 0.2s both;
  cursor: pointer;
  position: relative;
  z-index: 1002;
  width: 70px;
  height: 70px;
 	top: 23px;
}
.menubar-text {
  position: absolute;
	position: relative;
  left: 0;
  right: 0;
  bottom: 0px;	
  display: block;
  font-style: normal;
	font-size: clamp(15px, 1.2vw, 19px);
	writing-mode: vertical-rl;
  text-orientation: upright;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.08em;
  color: var(--color-main);
	  height: 180px;
    width: 45px;
}
#menubar_hdr.ham .menubar-text {
  color: var(--color-text);
}
#menubar_hdr span {
	display: block;
	transition: 0.3s;
	position: absolute;
	left: 20px;
  width: 35px;
	height: 1px;	
	background: var(--color-main);
}
#menubar_hdr.ham span {
	background: var(--color-text);
}
#menubar_hdr span:nth-of-type(1) {
	top: 24px;
}
#menubar_hdr span:nth-of-type(2) {
	top: 34px;
}
#menubar_hdr.ham span:nth-of-type(1) {
	transform: translateY(10px) rotate(-45deg);
	top: 22px;
}
#menubar_hdr.ham span:nth-of-type(2) {
	transform: translateY(-10px) rotate(45deg);
  top: 42px;
}
.small-screen #menubar_hdr {
	display: block;
}
.menubar-space-link {
	writing-mode: vertical-rl;
  text-orientation: upright;
}
.menubar-space-link li {
	margin: 10px;
	color: var(--color-main);
	letter-spacing: 4px;
	transition: opacity 0.4s ease, transform 0.4s ease;
}

/*メイン画像
---------------------------------------------------------------------------*/
.mainimg * {margin: 0;padding: 0;}
.mainimg picture,.mainimg img {display: block;width: 100%;}
.mainimg {
	display: flex;
	position: relative;
	height: 95vh;
	width: calc(100% - 80px);
}
.mainimg .text {
	flex: 1;
	position: relative;z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0 20px;
	position: relative;
  top: -2rem;
}
.fv-buttons {
  gap: 14px;
  margin-top: 30px;
}
.fv-buttons a {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid var(--color-main);
  color: var(--color-main);
  background: rgba(255,255,255,0.55);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-align: center;
  transition: background 0.4s ease, color 0.4s ease, opacity 0.4s ease;
}
.fv-buttons a.price {
  background: var(--color-main);
  color: #fff;
}

.fv-buttons a:hover {
  background: #2f5d1c;
  color: #fff;
}
.fv-buttons a.price:hover {
  background: #fff;
  color: #2f5d1c;
}



/*見出し*/
.mainimg .text h1 {
	font-family: var(--accent-font), var(--base-font);	/*英語の場合は冒頭のaccent-fontに指定したフォントを読み込む。日本語はbase-fontで指定したフォントを読み込む。*/
	font-weight: 300;	/*太さ*/
	/* font-size: max(24px, 3.5vw); */
	font-size: clamp(37px, 3.3vw, 64px);
	line-height: 1.7;	/*行間を狭く*/
	letter-spacing: 15px;
	color: var(--color-main);
	 writing-mode: vertical-rl;
  text-orientation: upright;
	padding-bottom: 10px;
	animation-delay: 0.3s;
}
.mainimg .text h1,
.mainimg .text p {
	opacity: 0;
  filter: blur(10px);
  animation: fvSoftAppear 1.0s ease forwards;
}

.mainimg .text p {
	color: var(--accent-color);	
	font-size: clamp(13px, 1vw, 16px);
	animation-delay: 1s;
}
@keyframes fvSoftAppear {
  from {
    opacity: 0;
    filter: blur(10px);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}
/*画像ブロック*/
.mainimg .image {
	width: 60%;
	aspect-ratio: 3 / 2;	/*画像のアスペクト比。お好みで。*/
	filter: drop-shadow(-3vw 2vw var(--light-color));	/*影。右へ3%（マイナスがついているので左になる）、下へ2%、影の色はtheme.cssのlight-colorを読み込みます。*/
	position: relative;
  overflow: hidden;
	/* position: relative;
  top: -5rem; */
}
.mainimg .image .slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
	opacity: 0;
  filter: blur(8px);
  animation: mainVisualFade 15s infinite ease-in-out;
}
/* 1枚目 */
.mainimg .image .slide-img01 {
  animation-delay: 0s;
}
/* 2枚目 */
.mainimg .image .slide-img02 {
  animation-delay: 5s;
}
/* 3枚目 */
.mainimg .image .slide-img03 {
  animation-delay: 10s;
}
@keyframes mainVisualFade {
  0% {
    opacity: 0;
    filter: blur(8px);
  }

  10% {
    opacity: 1;
    filter: blur(0);
  }

  33% {
    opacity: 1;
    filter: blur(0);
  }

  45% {
    opacity: 0;
    filter: blur(8px);
  }

  100% {
    opacity: 0;
    filter: blur(8px);
  }
}

/*画像*/
.mainimg .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* clip-path: url(#mainimgClip); */
	/* border-radius: 90px 0 0 0 ; */
}
/*画像右下の「Nice to meet you」のテキストブロック*/
.mainimg .overlay {
	position: absolute;
	right: 0px;		/*右からの配置場所*/
	bottom: -2vw;	/*下からの配置場所。マイナスがついているので、下に向かっての指示になる。*/
	background: var(--primary-color);	/*背景色。theme.cssのprimary-colorを読み込みます。*/
	font-size: 0.8rem;	/*文字サイズ80%*/
	width: max(150px, 18vw);	/*ブロック幅。18%。150pxより小さくしない。*/
	min-height: 15vw;	/*ブロックの最低の高さ。15%*/
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1rem 2rem;	/*上下に1文字分、左右に2文字分の余白*/
	text-align: center;
}
/*アクセントライン*/
.mainimg .overlay > div::before {
	content: "";
	width: 20px;	/*アクセントラインの幅*/
	display: block;
	margin: 0 auto 1rem;	/*1remは、アクセントラインの下に空けるスペース。*/
	border-top: 1px solid var(--accent-color);	/*上の線の幅、線種、var以降は色の指定でtheme.cssのaccent-colorを読み込みます*/
}
/*contents
---------------------------------------------------------------------------*/
#contents {
	flex: 1;
	min-height: 0;
	width: calc(100% - 80px);
}
/*main
---------------------------------------------------------------------------*/
main {
	container-type: inline-size;
}
/*main内で使用するul,ol要素（リストタグ）*/
main ul,main ol {
	margin-left: 2rem;
	margin-right: 2rem;
}
/*メニューオーバーレイ（メニュー領域外クリックで閉じる用）
---------------------------------------------------------------------------*/
#menubar-overlay {
	display: none;
	position: fixed;
	z-index: 99;	/*#menubar(100)の下、ページの上*/
	top: 0;left: 0;
	width: 100%;height: 100%;
	background: rgba(0,0,0,0.3);	/*半透明の黒。お好みで濃さを調整。*/
}

/*noscroll（メニュー表示中のスクロール禁止用）*/
body.noscroll {
	overflow: hidden;
}


/*著作部分（※意図的に見えなくしたりしないで下さい。規約違反になります。）
---------------------------------------------------------------------------*/
.pr a {
	text-decoration: none;display: block;
	background: rgba(0,0,0,0.5);
	color: #ccc;
	text-align: right;
	padding: 0.5rem 1rem;
	font-size: 0.8rem;
}
.pr a::before {
	font-family: "Font Awesome 6 Free";
	content: "\e2ca";
	font-weight: 900;
	margin-right: 0.5em;
}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	animation: opa1 1s 0.4s both;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;		/*右からの配置場所指定*/
	bottom: 20px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	font-size: 1.5rem;	/*文字サイズ*/
	background: rgba(0,0,0,0.2);	/*背景色。0,0,0は黒の事で0.2は色が20%出た状態。*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*円形にする*/
}


/*bg1-parts
---------------------------------------------------------------------------*/
.bg1-parts {
	background: var(--bg-inverse-color);	/*文字色。theme.cssのbg-inverse-colorを読み込みます。*/
	color: var(--bg-color);		/*背景色。theme.cssのbg-colorを読み込みます。*/
}

/*bg1-primary
---------------------------------------------------------------------------*/
.bg1-primary-parts {
	background: var(--primary-color);		/*背景色。theme.cssのprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。theme.cssのprimary-inverse-colorを読み込みます。*/
}


/*bg1-light
---------------------------------------------------------------------------*/
.bg1-light-parts {
	background: var(--light-color);		/*背景色。theme.cssのlight-colorを読み込みます。*/
	color: var(--light-inverse-color);	/*背景色。theme.cssのlight-inverse-colorを読み込みます。*/
}


/*bg1-accent
---------------------------------------------------------------------------*/
.bg1-accent-parts {
	background: var(--accent-color);		/*背景色。theme.cssのaccent-colorを読み込みます。*/
	color: var(--accent-inverse-color);	/*背景色。theme.cssのaccent-inverse-colorを読み込みます。*/
}


/*bg-parts（bg1-primary-parts、bg1-light-parts、bg1-accent-partsとセットで使います）
---------------------------------------------------------------------------*/
.bg-parts {
	padding-top: var(--content-space-l);		/*ボックス内の上に空ける余白。theme.cssのcontent-space-lを読み込みます。*/
	padding-bottom: var(--content-space-l);	/*ボックス内の下に空ける余白。theme.cssのcontent-space-lを読み込みます。*/
}

/*背景色が続く場合に隙間を空けない*/
.bg-parts + .bg-parts {
	margin-top: calc(-1 * var(--content-space-l)) !important;
}


/*section内で画面両サイドいっぱいまで広げる場合（marginのみでもいいが安定版に）
---------------------------------------------------------------------------*/
.bleed-x-parts {
	--bleed-x: var(--content-space-l);	/*エイリアスに*/
	width: calc(100% + (var(--bleed-x) * 2));	/*section内容の幅＋両サイドpadding（対象要素の幅）*/
	margin-left: calc(var(--bleed-x) * -1);
	margin-right: calc(var(--bleed-x) * -1);
	max-width: none;
}


/*左右によせる専用
---------------------------------------------------------------------------*/
.bleed-left-parts {
	width: calc(100% + var(--content-space-l));
	margin-left: calc(-1 * var(--content-space-l));
}
.bleed-right-parts {
	width: calc(100% + var(--content-space-l));
	margin-right: calc(-1 * var(--content-space-l));
}


/*その他
---------------------------------------------------------------------------*/
.color-check, .color-check a {color: #c3547b !important;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 100%;display: block;}
.wl {width: 100%;display: block;}
.padding-x {padding: 0 var(--content-space-l);}
.mt0 {margin-top: 0px !important;}
.mt1rem {margin-top: 1rem !important;}
.mt3rem {margin-top: 3rem !important;}
.mb0 {margin-bottom: 0px !important;}
.mb1rem {margin-bottom: 1rem !important;}
.mb3rem {margin-bottom: 3rem !important;}
.mb30 {margin-bottom: 30px !important;}
.look {display: inline-block;padding: 0px 10px;background: rgba(0,0,0,0.4);color: #fff; border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}
.is-clip {overflow: hidden;}

/*大きな画面の場合*/
.large-screen .ws {width: 50%;}
.large-screen .sh {display: none;}
.large-screen .pc {display: block;}

.news-section {
  padding: clamp(80px, 10vw, 160px) 20px;
}
.news-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px 1fr;
  column-gap: clamp(50px, 7vw, 100px);
  align-items: center;	
}
/* 左の縦書きタイトル */
.news-title {
  display: flex;
  justify-content: center;
  border-right: 1px solid var(--color-main);
  /* padding-right: clamp(10px, 2vw, 50px); */	
}
.news-title h2 {
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 400;
  letter-spacing: 0.18em;
	color: var(--color-main);
}
/* お知らせ一覧 */
.news-list {
  display: grid;
  gap: clamp(20px, 2vw, 40px);
}
.news-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  column-gap: clamp(30px, 4vw, 70px);
  color: var(--color-main);
  text-decoration: none;
  font-size: clamp(16px, 1.2vw, 20px);
  letter-spacing: 0.08em;
  line-height: 1.6;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.news-item time {
  font-family: serif;
  white-space: nowrap;
}
.news-item span {
  display: block;
}
.news-item:hover {
  opacity: 0.65;
  transform: translateX(8px);
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 14px;
  background-color: #2f5d1c;
  background-image:
    /* 斜めのヘリ模様 */
    repeating-linear-gradient(
      45deg,
      transparent 0px,
      transparent 10px,
      rgba(20, 63, 38, 0.85) 10px,
      rgba(20, 63, 38, 0.85) 15px,
      rgba(213, 198, 126, 0.45) 15px,
      rgba(213, 198, 126, 0.45) 17px,
      transparent 17px,
      transparent 28px
    ),
    /* 逆斜めの細い織り */
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.06) 0px,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px,
      transparent 6px
    ),
    /* 縦の織り目 */
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.08) 0px,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px,
      transparent 4px
    ),
    /* 横の織り目 */
    repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.16) 0px,
      rgba(0, 0, 0, 0.16) 1px,
      transparent 1px,
      transparent 5px
    );
  background-size:
    46px 46px,
    18px 18px,
    4px 4px,
    5px 5px;
}

/* 背景にうっすら家紋・ロゴ風の飾りを入れる場合 */
/* .vertical-about-section::before {
  content: "◇";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: rgba(47, 93, 28, 0.055);
  font-size: clamp(180px, 20vw, 320px);
  line-height: 1;
  pointer-events: none;
} */

.vertical-about-section {
  position: relative;
}

.vertical-about-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(180px, 22vw, 400px);
  height: clamp(180px, 22vw, 400px);
  background-image: url("../images/logo-back.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.08; 
  pointer-events: none;
}

.vertical-about-inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  min-height: 420px;
  gap: clamp(50px, 7vw, 110px);
}
/* 本文 */
.vertical-text {
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.vertical-text p {
  margin: 0;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 2.4;
  letter-spacing: 0.12em;
}
/* 見出し */
.vertical-title {
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: flex;
  align-items: center;
  gap: 18px;
}
.vertical-title span {
  display: block;
  width: 1px;
  height: 54px;
  background: #2f5d1c;
  margin-bottom: 18px;
}
.vertical-title h2 {
  margin: 0;
  font-size: clamp(26px, 2.2vw, 38px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.14em;
  color: var(--color-main);
}
/* もっと見る */
.vertical-more {
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--color-main);
  font-size: clamp(15px, 1vw, 17px);
  letter-spacing: 0.12em;
  text-decoration: none;
	margin-left: 2rem;
  transition: transform 0.3s ease;
}
.vertical-more span {
  display: block;
  width: 1px;
  height: 50px;
  background: #2f5d1c;
}
.vertical-more:hover {
  transform: translateY(6px);
}
.top-photo-slider {
  width: 100%;
  overflow: hidden;
}
.photo-slider-track {
  display: flex;
  width: max-content;
  animation: photoSlide 45s linear infinite;
}
.photo-slider-list {
  display: flex;
  gap: clamp(16px, 2vw, 32px);
  padding-right: clamp(16px, 2vw, 32px);
}
.photo-slide {
  width: clamp(220px, 28vw, 430px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.photo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ゆっくり左へ流す */
@keyframes photoSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* hover時だけ止める */
.top-photo-slider:hover .photo-slider-track {
  animation-play-state: paused;
}
.top-about .list-parts {
	display: grid;
	grid-template-columns: 4fr 6fr;
	gap: 0vw; 
	margin-bottom: 5vw;
}
.top-about .list-parts.reverse {
	grid-template-columns: 6fr 4fr;
	padding-top: clamp(30px, 8vw, 120px);
}
.top-about .list-parts:last-child {
  margin-bottom: 0;	
}
.top-about h2 {
	margin: 0;
	font-size: clamp(20px, 3vw, 35px);
	writing-mode: vertical-rl;
  text-orientation: upright;
	font-weight: 300;
	color: var(--color-main);
	margin-bottom: 2rem;
}
.top-about img.vertical-sub-img {
	width: clamp(280px, 45.8vw, 810px);
  height: clamp(160px, 30.8vw, 360px);
  object-fit: cover;
	margin-top: clamp(25px, 3.5vw, 50px);;
}
.top-about img {
	width: 100%;
	height: clamp(320px, 38vw, 800px);
	object-fit: cover;
	display: block;
}
.top-about .image-parts {
	top: 5rem;
}
.top-tatami-type {
  position: relative;
  overflow: hidden;
}
.top-tatami-type-inner {
  width: min(1180px, calc(100% - 120px));
  margin: 0 auto;
  display: grid;
	grid-template-columns:0.1fr 0.5fr 0.94fr;
  gap: clamp(40px, 5vw, 90px);
}
.tatami-type-title {
  writing-mode: vertical-rl;
  text-orientation: upright;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 22px;
}
.tatami-type-title span {
  display: block;
  width: 1px;
  height: 70px;
  background: #2f5d1c;
}
.tatami-type-title h2 {
  margin: 0;
  color: #2f5d1c;
  font-size: clamp(30px, 2.4vw, 46px);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.14em;
}

.tatami-type-text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  justify-self: center;
  display: flex;
  align-items: flex-start;
  gap: clamp(32px, 4vw, 60px);
}

.tatami-type-text p {
  margin: 0;
  color: #222;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 2.4;
  letter-spacing: 0.12em;
}

/* もっと見る */
.tatami-type-more {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #2f5d1c;
  font-size: clamp(14px, 1vw, 16px);
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.tatami-type-more span {
  display: block;
  width: 1px;
  height: 52px;
  background: #2f5d1c;
}

.tatami-type-more:hover {
  transform: translateY(6px);
}

/* 畳の種類カード */
.tatami-type-list {
  display: grid;
  /* gap: 18px; */
}

.tatami-type-card {
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
	grid-template-columns: clamp(130px, 12vw, 190px) 1fr;
  column-gap: 18px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(47, 93, 28, 0.22);
  color: inherit;
  text-decoration: none;
}

.tatami-type-card:first-child {
  border-top: 1px solid rgba(47, 93, 28, 0.22);
}
.tatami-type-img {
	aspect-ratio: 4 / 3;
  overflow: hidden;
}

.tatami-type-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tatami-type-card:hover .tatami-type-img img {
  transform: scale(1.08);
}

.tatami-type-card h3 {
  margin: 0 0 8px;
  color: #2f5d1c;
  font-size: clamp(18px, 1.4vw, 21px);
  font-weight: 400;
  letter-spacing: 0.12em;
}

.tatami-type-card p {
  margin: 0;
  color: #222;
  font-size: clamp(14px, 0.9vw, 15px);
  line-height: 1.8;
  letter-spacing: 0.05em;
  padding-bottom: 20px;
}

/* .tatami-type-card:hover {
  opacity: 0.75;
} */
.top-works-section {
  position: relative;
  overflow: hidden;
}
.top-works-inner {
  width: min(1180px, calc(100% - 120px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.45fr 0.8fr 1.2fr;
	grid-template-columns: 1.2fr 0.8fr 0.45fr;
  gap: clamp(40px, 5vw, 90px);
  align-items: center;
	grid-template-areas: "list text title";
}
.top-works-title {
  grid-area: title;
}

.top-works-text {
  grid-area: text;
}

.top-works-list {
  grid-area: list;
}

/* 見出し */
.top-works-title {
  writing-mode: vertical-rl;
  text-orientation: upright;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 22px;
}

.top-works-title span {
  display: block;
  width: 1px;
  height: 70px;
  background: #2f5d1c;
}

.top-works-title h2 {
  margin: 0;
  color: #2f5d1c;
  font-size: clamp(30px, 2.4vw, 46px);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.14em;
}

/* 説明文 */
.top-works-text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  justify-self: center;
  display: flex;
  align-items: flex-start;
  gap: clamp(32px, 4vw, 60px);
}

.top-works-text p {
  margin: 0;
  color: #222;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 2.25;
  letter-spacing: 0.12em;
}

/* もっと見る */
.top-works-more {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #2f5d1c;
  font-size: clamp(14px, 1vw, 16px);
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.top-works-more span {
  display: block;
  width: 1px;
  height: 52px;
  background: #2f5d1c;
}

.top-works-more:hover {
  transform: translateY(6px);
}

/* 施工事例カード */
.top-works-list {
  display: grid;
  gap: 20px;
}

.top-works-card {
  display: grid;
  grid-template-columns: clamp(130px, 12vw, 190px) 1fr;
  gap: clamp(18px, 2vw, 28px);
  align-items: center;
  color: inherit;
  text-decoration: none;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(47, 93, 28, 0.22);
}

.top-works-card:first-child {
  border-top: 1px solid rgba(47, 93, 28, 0.22);
  padding-top: 20px;
}

.top-works-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.top-works-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.top-works-card:hover .top-works-img img {
  transform: scale(1.06);
}

.top-works-body h3 {
  margin: 0 0 8px;
  color: #2f5d1c;
  font-size: clamp(17px, 1.25vw, 22px);
  font-weight: 400;
  letter-spacing: 0.12em;
}

.top-works-body p {
  margin: 0;
  color: #222;
  font-size: clamp(14px, 0.9vw, 15px);
  line-height: 1.9;
  letter-spacing: 0.05em;
}
.top-news-section {
  position: relative;
}
.top-news-inner {
  width: min(980px, calc(100% - 120px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 120px 1fr 80px;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
/* 左の縦書きタイトル */
.top-news-title {
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: flex;
  align-items: center;
  gap: 24px;
  color: #2f5d1c;
}
.top-news-title h2 {
  margin: 0;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.18em;
}
.top-news-title span {
  display: block;
  width: 1px;
  height: 70px;
  background: #2f5d1c;
}
/* お知らせ一覧 */
.top-news-list {
  display: grid;
  gap: clamp(28px, 3vw, 46px);
}
.top-news-item {
  display: grid;
  grid-template-columns: 140px 110px 1fr;
  align-items: center;
  column-gap: 24px;
  color: #222;
  text-decoration: none;
  letter-spacing: 0.12em;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.top-news-item time {
  font-family: serif;
  font-size: clamp(15px, 1vw, 18px);
  white-space: nowrap;
}

.news-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: 4px 12px;
  background: rgba(47, 93, 28, 0.08);
  color: #2f5d1c;
  font-size: clamp(12px, 0.9vw, 14px);
  letter-spacing: 0.12em;
}

.news-label.important {
  background: #2f5d1c;
  color: #fff;
}

.news-text {
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.8;
}

.top-news-item:hover {
  opacity: 0.65;
  transform: translateX(8px);
}

/* もっと見る */
.top-news-more {
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #2f5d1c;
  font-size: clamp(14px, 1vw, 16px);
  letter-spacing: 0.12em;
  text-decoration: none;
  justify-self: center;
  transition: transform 0.3s ease;
}

.top-news-more span {
  display: block;
  width: 1px;
  height: 52px;
  background: #2f5d1c;
}

.top-news-more:hover {
  transform: translateY(6px);
}
.top-contact-section {
  position: relative;
  overflow: hidden;
}

.top-contact-inner {
  width: min(1100px, calc(100% - 120px));
  margin: 0 auto;
  display: grid;
  /* grid-template-columns: 2fr 0.75fr 0.45fr ; */
	grid-template-columns: 1.2fr 0.8fr 0.45fr;
	grid-template-areas: "box text title";
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

/* 見出し */
.top-contact-title {
  writing-mode: vertical-rl;
  text-orientation: upright;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 22px;
	grid-area: title;
}

.top-contact-title span {
  display: block;
  width: 1px;
  height: 70px;
  background: #2f5d1c;
}

.top-contact-title h2 {
  margin: 0;
  color: #2f5d1c;
  font-size: clamp(30px, 2.4vw, 46px);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.14em;
}

/* 説明文 */
.top-contact-text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  justify-self: center;
	grid-area: text;
}

.top-contact-text p {
  margin: 0;
  color: #222;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 2.25;
  letter-spacing: 0.12em;
}

/* 右側ボックス */
.top-contact-box {
  padding: clamp(32px, 4vw, 56px);
  border-top: 1px solid rgba(47, 93, 28, 0.35);
  border-bottom: 1px solid rgba(47, 93, 28, 0.35);
  background: rgba(255, 255, 255, 0.35);
	grid-area: box;
}


.top-contact-lead {
  margin: 0 0 28px;
  color: #222;
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: 2;
  letter-spacing: 0.08em;
}

.top-contact-buttons {
  display: grid;
  gap: 16px;
}

.top-contact-btn {
 display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
  padding: 18px 22px 18px 50px;
  border: 1px solid #2f5d1c;
  color: #2f5d1c;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.4s ease, color 0.4s ease, opacity 0.4s ease;
}
/* アイコン共通 */
.top-contact-btn::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  background-color: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

/* 電話アイコン */
.top-contact-btn.tel::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
}

/* メールアイコン */
.top-contact-btn.mail::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.top-contact-btn span {
  font-size: clamp(13px, 0.95vw, 15px);
  letter-spacing: 0.08em;
}

.top-contact-btn strong {
  font-size: clamp(17px, 1.3vw, 24px);
  font-weight: 400;
  letter-spacing: 0.08em;
  font-family: serif;
}

.top-contact-btn.tel {
  background: #2f5d1c;
  color: #fff;
}

.top-contact-btn.mail {
  background: rgba(255, 255, 255, 0.65);
}

.top-contact-btn.tel:hover {
  background: #fff;
  color: #2f5d1c;
}

.top-contact-btn.mail:hover {
  background: #2f5d1c;
  color: #fff;
}

.top-contact-note {
  margin: 24px 0 0;
  color: #222;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.9;
  letter-spacing: 0.08em;
}
.site-footer {
  position: relative;
  padding: clamp(70px, 9vw, 140px) 0 24px;
  color: #2f5d1c;
  overflow: hidden;
}

/* .site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.72), rgba(255,255,255,0.72)),
    repeating-linear-gradient(
      45deg,
      rgba(47, 93, 28, 0.055) 0px,
      rgba(47, 93, 28, 0.055) 1px,
      transparent 1px,
      transparent 20px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(47, 93, 28, 0.035) 0px,
      rgba(47, 93, 28, 0.035) 1px,
      transparent 1px,
      transparent 20px
    ),
    linear-gradient(#fcfcf8, #f4f7ed);
  z-index: -1;
} */

.site-footer-inner {
  width: min(1180px, calc(100% - 120px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.5fr 1.8fr 0.6fr 0.5fr;
  gap: clamp(20px, 3vw, 50px);
  align-items: start;
  padding: 0 28px;
}

.footer-logo {
  margin: 0 0 28px;
}

.footer-logo img {
  width: clamp(150px, 13vw, 220px);
  height: auto;
}

.footer-copy {
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1.9;
  letter-spacing: 0.16em;
  color: #2f5d1c;
}

.footer-shop-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 3vw, 60px);
}

.footer-shop h3 {
  margin: 0 0 24px;
  color: #2f5d1c;
  font-size: clamp(20px, 1.40vw, 24px);
  font-weight: 400;
  letter-spacing: 0.12em;
}

.footer-shop p {
  margin: 0 0 18px;
  color: #222;
  font-size: clamp(14px, 0.95vw, 15px);
  line-height: 1.9;
  letter-spacing: 0.07em;
}

.footer-shop a {
  color: inherit;
  text-decoration: none;
}

.footer-nav {
  padding-left: clamp(26px, 3vw, 50px);
  border-left: 1px solid rgba(47, 93, 28, 0.35);
}

.footer-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav li {
  margin-bottom: 14px;
}

.footer-nav a {
  color: #2f5d1c;
  font-size: clamp(14px, 1.1vw, 16px);
  letter-spacing: 0.12em;
  text-decoration: none;
}

.footer-contact-title {
  margin: 0;
  color: #2f5d1c;
  font-size: clamp(19px, 1.55vw, 28px);
  line-height: 1.9;
  letter-spacing: 0.16em;
}

.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 1px solid #2f5d1c;
  color: #2f5d1c;
  background: rgba(255, 255, 255, 0.45);
  font-size: clamp(14px, 1vw, 16px);
  letter-spacing: 0.12em;
  text-decoration: none;
  width: 160px;
  margin-bottom: 15px;
  transition: background 0.4s ease, color 0.4s ease, opacity 0.4s ease;
}
.footer-contact-btn:hover {
  background: #2f5d1c;
  color: #fff;
}

.footer-instagram,.footer-facebook {
	margin-right: 8px;  
}

.footer-bottom {
  width: min(1180px, calc(100% - 120px));
  margin: clamp(50px, 6vw, 90px) auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(47, 93, 28, 0.22);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-small-links {
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-small-links a {
  color: #2f5d1c;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.footer-small-links a::before {
  content: "-";
  margin-right: 0.65em;
}

.footer-bottom small {
  color: #2f5d1c;
  font-size: 12px;
  letter-spacing: 0.06em;
}

/* =========================
  ページタイトル
========================= */
.page-title {
  position: relative;
  padding: 50px 20px 70px;
  /* background: #fff; */
  overflow: hidden;
}

.page-title__inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 薄い家紋画像 */
.page-title__inner::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(90px, 6vw, 140px);
  height: clamp(90px, 6vw, 140px);
  transform: translate(-50%, -50%);
  background-image: url("../images/logo-back.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.3;
  pointer-events: none;
}

/* 縦書きタイトル */
.page-title__heading {
  position: relative;
  z-index: 1;
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: clamp(24px, 2.2vw, 40px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.3em;
  color: var(--color-text);
}
.page-title__heading.yoko {
  writing-mode: initial;
  padding: 3rem 0;
}
/* =========================
  パンくず
========================= */
.breadcrumb {
  /* background: rgba(245, 245, 245, 0.9); */
  padding: 17px 20px;
}

.breadcrumb__list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: #999;
	flex-wrap: wrap;
}

.breadcrumb__list li {
  display: flex;
  align-items: center;
}

.breadcrumb__list li + li::before {
  content: "・";
  margin-right: 14px;
  color: #aaa;
}

.breadcrumb__list a {
  color: #333;
  text-decoration: none;
}

.breadcrumb__list a:hover {
  opacity: 0.65;
}

/* =========================
  メイン画像
========================= */
.page-visual {
  width: 100%;
  height: clamp(280px, 42vw, 620px);
	height: clamp(260px, 25vw, 360px);
  overflow: hidden;
}

.page-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center ;
}

.page-visual.bottom img {
  object-position: center bottom;
}
/* =========================
  リード
========================= */
.intro {
  position: relative;
  text-align: center;
}

.section-sub {
  margin: 0 0 14px;
  color: #2f5d1c;
  font-size: 13px;
  letter-spacing: 0.22em;
  font-family: serif;
}

.section-title {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.6;
}

.intro__text {
  margin: 28px 0 0;
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: 0.08em;
}

/* =========================
  カテゴリー
========================= */
.works-category {
  padding: 20px 0 55px;
}

.works-category__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.works-filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 169px;
  padding: 14px 27px;
  border: 1px solid #2f5d1c;
  color: #2f5d1c;
  background: rgba(255, 255, 255, 0.65);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", serif;
  font-size: clamp(15px, 0.5vw, 24px);
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background 0.4s ease, color 0.4s ease, opacity 0.4s ease;
}

.works-filter-btn.is-active,
.works-filter-btn:hover {
  background: #2f5d1c;
  color: #fff;
}

.works-category__list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  padding: 12px 18px;
  border: 1px solid #2f5d1c;
  color: #2f5d1c;
  background: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.08em;
  transition: background 0.4s ease, color 0.4s ease, opacity 0.4s ease;
}

.works-category__list a.is-active,
.works-category__list a:hover {
  background: #2f5d1c;
  color: #fff;
}

/* =========================
  施工事例一覧
========================= */
.works-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* gap: 52px 42px; */
	padding-left: clamp(20px, 3vw, 50px);
	gap: clamp(20px, 3vw, 50px);
}

.works-card {
  background: #fff;
  border: 1px solid rgba(47, 93, 28, 0.16);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.works-card a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.works-card.is-hide {
  display: none;
}

.works-card__img {
  aspect-ratio: 4 / 2.7;
  overflow: hidden;
}

.works-card__img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.works-card:hover .works-card__img img {
  transform: scale(1.06);
}

.works-card__body {
  position: relative;
  padding: 28px 30px 32px;
}

.works-card__cat {
  display: inline-block;
  margin: 0 0 15px;
  padding: 5px 13px;
  background: rgba(47, 93, 28, 0.08);
  color: #2f5d1c;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.works-card__title {
  margin: 0;
  font-size: clamp(16px, 1.4vw, 23px);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.works-card__info {
  margin: 0;
  border-top: 1px solid rgba(47, 93, 28, 0.16);
}

.works-card__info div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(47, 93, 28, 0.16);
}

.works-card__info dt {
  color: #2f5d1c;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.works-card__info dd {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.06em;
}

.works-card__text {
  margin: 20px 0 0;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.06em;
  color: #555;
}


/* =========================
  施工事例詳細
========================= */
.works-detail {
  padding: 90px 0 100px;
}

.works-detail__head {
  text-align: center;
  margin-bottom: 45px;
}

.works-detail__cat {
  display: inline-block;
  margin: 0 0 18px;
  padding: 6px 16px;
  background: rgba(47, 93, 28, 0.08);
  color: #2f5d1c;
  font-size: 13px;
  letter-spacing: 0.14em;
}

.works-detail__title {
  margin: 0;
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.12em;
}

.works-detail__main-img {
  width: 100%;
  height: clamp(260px, 42vw, 560px);
  overflow: hidden;
  margin-bottom: clamp(56px, 8vw, 120px);
}

.works-detail__main-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.works-detail__content {
  max-width: 920px;
  margin: 0 auto;
}

.works-detail__section-title {
  position: relative;
  margin: 0 0 30px;
  padding-bottom: 18px;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.6;
  text-align: center;
}

.works-detail__section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 42px;
  height: 1px;
  background: #2f5d1c;
  transform: translateX(-50%);
}

.works-detail__text p {
  margin: 0;
  font-size: 15px;
  line-height: 2.25;
  letter-spacing: 0.08em;
}

.works-detail__text p + p {
  margin-top: 22px;
}

/* =========================
  施工概要
========================= */
.works-detail__info {
  margin: 0;
  background: rgba(255, 255, 255, 0.76);
  border-top: 1px solid rgba(47, 93, 28, 0.18);
}

.works-detail__info div {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1px solid rgba(47, 93, 28, 0.18);
}

.works-detail__info dt,
.works-detail__info dd {
  padding: 18px 22px;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.works-detail__info dt {
  color: #2f5d1c;
  background: rgba(47, 93, 28, 0.06);
}

.works-detail__info dd {
  margin: 0;
}

/* =========================
  施工ポイント
========================= */
.works-detail__point-list {
  display: grid;
  gap: 18px;
}

.works-detail__point {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  background: #fff;
  border: 1px solid rgba(47, 93, 28, 0.15);
}

.works-detail__point span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #2f5d1c;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

.works-detail__point p {
  margin: 0;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.08em;
}

/* =========================
  Before After
========================= */
.before-after {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.before-after__item {
  position: relative;
}

.before-after__label {
  display: inline-block;
  margin: 0 0 12px;
  color: #2f5d1c;
  font-size: 14px;
  letter-spacing: 0.16em;
  font-family: serif;
}

.before-after__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eee;
}

.before-after__img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* =========================
  戻るボタン
========================= */
.works-detail__nav {
  text-align: center;
  margin-top: 70px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 16px 30px;
  border: 1px solid #2f5d1c;
  color: #2f5d1c;
  background: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.12em;
  transition: background 0.4s ease, color 0.4s ease, opacity 0.4s ease;
}

.back-btn:hover {
  background: #2f5d1c;
  color: #fff;
}

/* =========================
  関連施工事例
========================= */
.related-works {
  padding: 90px 0 110px;
  background: #fff;
}

.related-works .section-sub,
.related-works .section-title {
  text-align: center;
}
.related-works__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 48px;
}

.related-card {
  border: 1px solid rgba(47, 93, 28, 0.16);
  background: #fbfaf6;
}

.related-card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.related-card__img {
  aspect-ratio: 4 / 2.8;
  overflow: hidden;
}

.related-card__img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.related-card:hover .related-card__img img {
  transform: scale(1.06);
}

.related-card__body {
  padding: 22px 24px 26px;
}

.related-card__body p {
  display: inline-block;
  margin: 0 0 12px;
  padding: 4px 12px;
  background: rgba(47, 93, 28, 0.08);
  color: #2f5d1c;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.related-card__body h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.08em;
}
/* =========================
  畳の種類紹介ページ
========================= */
.inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
/* =========================
  リード
========================= */
.tatami-type-intro {
  position: relative;
  padding: 100px 0 80px;
  background-image:
    linear-gradient(45deg, rgba(47, 93, 28, 0.035) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(47, 93, 28, 0.035) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(47, 93, 28, 0.035) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(47, 93, 28, 0.035) 75%);
  background-size: 44px 44px;
  background-position: 0 0, 0 22px, 22px -22px, -22px 0;
}

.tatami-type-intro__text {
  margin: 42px auto 0;
  max-width: 920px;
  font-size: clamp(16px, 1.3vw, 22px);
  line-height: 2.25;
  letter-spacing: 0.12em;
  text-align: center;
}

/* =========================
  畳の種類カード
========================= */
.tatami-type-list-section {
  padding: 30px 0 100px;
}

.tatami-type-list {
  display: grid;
  /* gap: 82px; */
}

.tatami-type-card {
  display: grid;
  grid-template-columns: 48% 1fr;
  align-items: center;
  gap: 52px;
}

.tatami-type-card.reverse {
  grid-template-columns: 1fr 48%;
}

.tatami-type-card.reverse .tatami-type-card__img {
  order: 2;
}

.tatami-type-card.reverse .tatami-type-card__body {
  order: 1;
}

.tatami-type-card__img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.tatami-type-card__img::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  z-index: 1;
  pointer-events: none;
}

.tatami-type-card__img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.tatami-type-card__body {
  position: relative;
  padding: 36px 0;
}
.tatami-type-card__en {
  margin: 0 0 12px;
  color: #2f5d1c;
  font-size: 12px;
  letter-spacing: 0.22em;
  font-family: serif;
}

.tatami-type-card__title {
  position: relative;
  margin: 0 0 24px;
  padding-bottom: 14px;
  font-size: clamp(20px, 2vw, 38px);
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1.5;
}

.tatami-type-card__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 1px;
  background: #2f5d1c;
}

.tatami-type-card__text {
  margin: 0 0 26px;
  font-size: 15px;
  line-height: 2.15;
  letter-spacing: 0.08em;
}

.tatami-type-card__info {
  margin: 0;
  border-top: 1px solid rgba(47, 93, 28, 0.18);
}

.tatami-type-card__info div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(47, 93, 28, 0.18);
}

.tatami-type-card__info dt {
  color: #2f5d1c;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.tatami-type-card__info dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

/* =========================
  畳選びの目安
========================= */
.tatami-choice__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.tatami-choice__item {
  position: relative;
  padding: 34px 30px 36px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(47, 93, 28, 0.16);
}

.tatami-choice__item::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  width: 1px;
  height: 23px;
  background: #2f5d1c;
}

.tatami-choice__item span {
  display: block;
  margin-bottom: 18px;
  color: #2f5d1c;
  font-size: clamp(18px, 1.5vw, 20px);
  line-height: 1.7;
  letter-spacing: 0.1em;
}

.tatami-choice__item p {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.06em;
}

/* =========================
  比較表
========================= */
.tatami-compare__table-wrap {
  margin-top: 50px;
  overflow-x: auto;
}

.tatami-compare__table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(47, 93, 28, 0.22);
}

.tatami-compare__table th,
.tatami-compare__table td {
  padding: 20px 22px;
  border-bottom: 1px solid rgba(47, 93, 28, 0.18);
  border-right: 1px solid rgba(47, 93, 28, 0.12);
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.06em;
  text-align: left;
}

.tatami-compare__table th:last-child,
.tatami-compare__table td:last-child {
  border-right: none;
}

.tatami-compare__table thead th {
  background: #2f5d1c;
  color: #fff;
  font-weight: 400;
  text-align: center;
}

.tatami-compare__table tbody th {
  width: 150px;
  color: #2f5d1c;
  background: rgba(47, 93, 28, 0.06);
  font-weight: 400;
}
.sp-compare-list {
  display: none;
}



/* =========================
  リード
========================= */
.faq-intro {
  position: relative;
  padding: 100px 0 72px;
  background-image:
    linear-gradient(45deg, rgba(47, 93, 28, 0.035) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(47, 93, 28, 0.035) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(47, 93, 28, 0.035) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(47, 93, 28, 0.035) 75%);
  background-size: 44px 44px;
  background-position: 0 0, 0 22px, 22px -22px, -22px 0;
}

.faq-intro__text {
  margin: 42px auto 0;
  max-width: 860px;
  font-size: clamp(16px, 1.3vw, 22px);
  line-height: 2.25;
  letter-spacing: 0.12em;
  text-align: center;
}

/* =========================
  カテゴリー
========================= */
.faq-category__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-category__list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 18px 24px;
  border: 1px solid #2f5d1c;
  color: #2f5d1c;
  background: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.12em;
  transition: background 0.4s ease, color 0.4s ease, opacity 0.4s ease;
}

.faq-category__list a:hover {
  background: #2f5d1c;
  color: #fff;
}
/* =========================
  FAQ一覧
========================= */
.faq-list-section {
  padding: 90px 0 100px;
}
.faq-group + .faq-group {
  margin-top: 90px;
}
.faq-group__head {
  text-align: center;
  margin-bottom: 34px;
}
.faq-group__en {
  margin: 0 0 10px;
  color: #2f5d1c;
  font-size: 12px;
  letter-spacing: 0.22em;
  font-family: serif;
}
.faq-group__title {
  position: relative;
  margin: 0;
  padding-bottom: 18px;
  font-size: clamp(20px, 2.2vw, 36px);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.6;
}
.faq-group__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 42px;
  height: 1px;
  background: #2f5d1c;
  transform: translateX(-50%);
}
.faq-list {
  max-width: 920px;
  margin: 0 auto;
}
.faq-item {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(47, 93, 28, 0.18);
}
.faq-item + .faq-item {
  margin-top: 16px;
}
.faq-item summary {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr 24px;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item__q,
.faq-item__a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-family: serif;
  font-size: 18px;
  line-height: 1;
}
.faq-item__q {
  background: #2f5d1c;
  color: #fff;
}
.faq-item__question {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.8;
  letter-spacing: 0.08em;
}
.faq-item summary::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 1px solid #2f5d1c;
  border-bottom: 1px solid #2f5d1c;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
  transform: rotate(225deg);
}
.faq-item__answer {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 0 28px 28px;
}
.faq-item__a {
  background: rgba(47, 93, 28, 0.08);
  color: #2f5d1c;
}
.faq-item__answer p {
  margin: 6px 0 0;
  font-size: 15px;
  line-height: 2.1;
  letter-spacing: 0.08em;
  color: #444;
}

/* =========================
  会社情報ページ
========================= */
.section-sub--left {
  text-align: left;
}

/* =========================
  ご挨拶
========================= */
.company-message {
  padding: 40px 0 105px;
}

.company-message__wrap {
  display: grid;
  grid-template-columns: 48% 1fr;
  align-items: center;
  gap: 60px;
}

.company-message__img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.company-message__img::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  z-index: 1;
  pointer-events: none;
}

.company-message__img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.company-message__body {
  position: relative;
}

.company-message__title {
  position: relative;
  margin: 0 0 28px;
  padding-bottom: 22px;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.12em;
}

.company-message__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 1px;
  background: #2f5d1c;
}

.company-message__text {
  position: relative;
}

.company-message__text p {
  margin: 0;
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: 0.08em;
}

.company-message__text p + p {
  margin-top: 22px;
}

/* =========================
  代表挨拶
========================= */
.company-greeting__wrap {
  display: grid;
  grid-template-columns: 1fr 38%;
  align-items: center;
  gap: 64px;
}

.company-greeting__wrap.staff {
    grid-template-columns: 33% 1fr;
    padding-top: clamp(56px, 8vw, 120px);
}

.company-greeting__title {
  position: relative;
  margin: 0 0 30px;
  padding-bottom: 22px;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.12em;
}

.company-greeting__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 1px;
  background: #2f5d1c;
}

.company-greeting__text {
  position: relative;
}

.company-greeting__text p {
  margin: 0;
  font-size: 15px;
  line-height: 2.25;
  letter-spacing: 0.08em;
}

.company-greeting__text p + p {
  margin-top: 22px;
}

.company-greeting__name {
  margin: 36px 0 0;
  text-align: right;
  font-size: 15px;
  letter-spacing: 0.12em;
}

.company-greeting__name span {
  display: inline-block;
  margin-left: 14px;
  font-size: clamp(20px, 1.6vw, 26px);
  letter-spacing: 0.16em;
}

.company-greeting__img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.company-greeting__img::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  z-index: 1;
  pointer-events: none;
}

.company-greeting__img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* =========================
  会社概要
========================= */
.company-profile__table {
  margin: 52px 0 0 0;
  background: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(47, 93, 28, 0.2);
}

.company-profile__table div {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1px solid rgba(47, 93, 28, 0.2);
}

.company-profile__table dt,
.company-profile__table dd {
  padding: 20px 24px;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.08em;
}

.company-profile__table dt {
  color: #2f5d1c;
  background: rgba(47, 93, 28, 0.06);
}

.company-profile__table dd {
  margin: 0;
}

.company-profile__table a {
  color: inherit;
  text-decoration: none;
}

.company-profile__table a:hover {
  opacity: 0.65;
}

/* =========================
  大切にしていること
========================= */

.company-policy__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.company-policy__item {
  position: relative;
  padding: 30px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(47, 93, 28, 0.16);
}

.company-policy__item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: #2f5d1c;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

.company-policy__item h3 {
  margin: 0 0 18px;
  color: #2f5d1c;
  font-size: clamp(18px, 1.4vw, 23px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.company-policy__item p {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.06em;
}

/* =========================
  アクセス
========================= */
.company-access__wrap {
  display: grid;
  grid-template-columns: 58% 1fr;
  gap: 42px;
  margin-top: 52px;
  align-items: stretch;
}

.company-access__map {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(47, 93, 28, 0.16);
}

.company-access__map iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(0.15);
}

.company-access__body {
  padding: 38px 34px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(47, 93, 28, 0.16);
}

.company-access__body h3 {
  margin: 0 0 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(47, 93, 28, 0.18);
  color: #2f5d1c;
  font-size: clamp(20px, 1.8vw, 30px);
  font-weight: 400;
  letter-spacing: 0.12em;
}

.company-access__body p {
  margin: 0 0 26px;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.08em;
}

.company-access__body dl {
  margin: 0;
}

.company-access__body dl div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid rgba(47, 93, 28, 0.14);
}

.company-access__body dt {
  color: #2f5d1c;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.company-access__body dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

.company-access__body a {
  color: inherit;
  text-decoration: none;
}

/* =========================
  料金表
========================= */

.price-head {
  text-align: center;
  margin-bottom: 44px;
}

.price-head__en {
  margin: 0 0 10px;
  color: #2f5d1c;
  font-size: 12px;
  letter-spacing: 0.22em;
  font-family: serif;
}

.price-head__title {
  position: relative;
  margin: 0;
  padding-bottom: 18px;
  font-size: clamp(23px, 2.2vw, 36px);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.6;
}

.price-head__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 42px;
  height: 1px;
  background: #2f5d1c;
  transform: translateX(-50%);
}

.price-table-wrap {
  overflow-x: auto;
}

.price-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(47, 93, 28, 0.22);
}

.price-table th,
.price-table td {
  padding: 22px 24px;
  border-bottom: 1px solid rgba(47, 93, 28, 0.18);
  border-right: 1px solid rgba(47, 93, 28, 0.12);
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.06em;
  text-align: left;
}

.price-table th:last-child,
.price-table td:last-child {
  border-right: none;
}

.price-table thead th {
  background: #2f5d1c;
  color: #fff;
  font-weight: 400;
  text-align: center;
}

.price-table tbody th {
  width: 160px;
  color: #2f5d1c;
  background: rgba(47, 93, 28, 0.06);
  font-weight: 400;
}

.price-table td:last-child {
  width: 210px;
  white-space: nowrap;
}

.price-table td span {
  color: #2f5d1c;
  font-size: clamp(20px, 1.8vw, 20px);
  font-family: serif;
}

/* =========================
  オプション料金
========================= */
.price-option__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.price-option__item {
  padding: 34px 30px 36px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(47, 93, 28, 0.16);
  text-align: center;
}

.price-option__item h3 {
  margin: 0 0 18px;
  color: #2f5d1c;
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 400;
  letter-spacing: 0.12em;
}

.price-option__item p {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.06em;
  text-align: left;
}

.price-option__item span {
  display: block;
  padding-top: 18px;
  border-top: 1px solid rgba(47, 93, 28, 0.18);
  color: #2f5d1c;
  font-size: clamp(18px, 1.4vw, 24px);
  letter-spacing: 0.08em;
  font-family: serif;
}

/* =========================
  お見積もりの流れ
========================= */
.price-flow__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 52px;
}

.price-flow__item {
  position: relative;
  padding: 30px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(47, 93, 28, 0.16);
}

.price-flow__item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #2f5d1c;
  color: #fff;
  font-size: 16px;
  line-height: 1;
}

.price-flow__item h3 {
  margin: 0 0 16px;
  color: #2f5d1c;
  font-size: clamp(18px, 1.4vw, 23px);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

.price-flow__item p {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.06em;
}

/* =======================
   料金表 スマホ切り替え
======================= */

.sp-price-list {
  display: none;
}
/* =========================
  プライバシーポリシー
========================= */
.privacy-page .inner {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
}
.privacy-content {
  padding: clamp(32px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(47, 93, 28, 0.18);
}

.privacy-content > p:first-child {
  margin-top: 0;
}

.privacy-space {
   margin-top: 40px;
}

.privacy-content h2 {
  margin: 0 0 22px;
  color: #2f5d1c;
  font-size: clamp(17px, 1.6vw, 26px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.privacy-content p {
  margin: 0;
  font-size: 15px;
  line-height: 2.15;
  letter-spacing: 0.07em;
}

.privacy-content p + p {
  margin-top: 16px;
}

.privacy-content ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.privacy-content li {
  position: relative;
  padding-left: 1.4em;
  font-size: 15px;
  line-height: 2.1;
  letter-spacing: 0.07em;
}

.privacy-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9em;
  width: 6px;
  height: 6px;
  background: #2f5d1c;
  border-radius: 50%;
}

.privacy-contact {
  margin-top: 20px;
  padding: 24px 28px;
  background: #fbfaf6;
  border: 1px solid rgba(47, 93, 28, 0.16);
}

.privacy-contact p {
  margin: 0;
}

.privacy-contact p + p {
  margin-top: 6px;
}

.privacy-date {
  margin-top: 52px !important;
  text-align: right;
}

/* =========================
  LINE受付メイン
========================= */

.line-contact-box {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 44px;
  align-items: center;
  padding: clamp(34px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(47, 93, 28, 0.18);
}

.line-contact-box__body {
  position: relative;
}

.line-contact-box__label {
  margin: 0 0 14px;
  color: #2f5d1c;
  font-size: 12px;
  letter-spacing: 0.22em;
  font-family: serif;
}

.line-contact-box__title {
  position: relative;
  margin: 0 0 28px;
  padding-bottom: 22px;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.12em;
}

.line-contact-box__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 1px;
  background: #2f5d1c;
}

.line-contact-box__text {
  position: relative;
  max-width: 680px;
  margin: 0 0 26px;
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: 0.08em;
}

.line-contact-box__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.line-contact-box__list li {
  position: relative;
  padding-left: 1.4em;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

.line-contact-box__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  background: #2f5d1c;
  border-radius: 50%;
}

.line-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  padding: 18px 34px;
  background: #06c755;
  color: #fff;
  border: 1px solid #06c755;
  text-decoration: none;
  font-size: 17px;
  letter-spacing: 0.12em;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.line-contact-btn::before {
  content: "";
  width: 22px;
  height: 22px;
  margin-right: 12px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 3C9.7 3 3 8.6 3 15.5c0 6.2 5.5 11.4 12.9 12.3.5.1 1.1.4 1.2.9.1.4.1 1 .1 1.4 0 0-.2 1.2.9.7 1.1-.5 6-3.5 8.2-6 4.2-2.3 6.7-5.7 6.7-9.3C33 8.6 26.3 3 18 3zM13.1 19.4h-3.2c-.4 0-.7-.3-.7-.7v-6.4c0-.4.3-.7.7-.7s.7.3.7.7V18h2.5c.4 0 .7.3.7.7s-.3.7-.7.7zm3.1-.7c0 .4-.3.7-.7.7s-.7-.3-.7-.7v-6.4c0-.4.3-.7.7-.7s.7.3.7.7v6.4zm7.1 0c0 .3-.2.6-.5.7-.1 0-.2.1-.3.1-.2 0-.4-.1-.6-.3l-3.2-4.3v3.8c0 .4-.3.7-.7.7s-.7-.3-.7-.7v-6.4c0-.3.2-.6.5-.7.3-.1.6 0 .8.2l3.2 4.3v-3.8c0-.4.3-.7.7-.7s.7.3.7.7v6.4zm4.9-3.9c.4 0 .7.3.7.7s-.3.7-.7.7h-2.5V18h2.5c.4 0 .7.3.7.7s-.3.7-.7.7H25c-.4 0-.7-.3-.7-.7v-6.4c0-.4.3-.7.7-.7h3.2c.4 0 .7.3.7.7s-.3.7-.7.7h-2.5v1.8h2.5z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 36 36' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 3C9.7 3 3 8.6 3 15.5c0 6.2 5.5 11.4 12.9 12.3.5.1 1.1.4 1.2.9.1.4.1 1 .1 1.4 0 0-.2 1.2.9.7 1.1-.5 6-3.5 8.2-6 4.2-2.3 6.7-5.7 6.7-9.3C33 8.6 26.3 3 18 3zM13.1 19.4h-3.2c-.4 0-.7-.3-.7-.7v-6.4c0-.4.3-.7.7-.7s.7.3.7.7V18h2.5c.4 0 .7.3.7.7s-.3.7-.7.7zm3.1-.7c0 .4-.3.7-.7.7s-.7-.3-.7-.7v-6.4c0-.4.3-.7.7-.7s.7.3.7.7v6.4zm7.1 0c0 .3-.2.6-.5.7-.1 0-.2.1-.3.1-.2 0-.4-.1-.6-.3l-3.2-4.3v3.8c0 .4-.3.7-.7.7s-.7-.3-.7-.7v-6.4c0-.3.2-.6.5-.7.3-.1.6 0 .8.2l3.2 4.3v-3.8c0-.4.3-.7.7-.7s.7.3.7.7v6.4zm4.9-3.9c.4 0 .7.3.7.7s-.3.7-.7.7h-2.5V18h2.5c.4 0 .7.3.7.7s-.3.7-.7.7H25c-.4 0-.7-.3-.7-.7v-6.4c0-.4.3-.7.7-.7h3.2c.4 0 .7.3.7.7s-.3.7-.7.7h-2.5v1.8h2.5z'/%3E%3C/svg%3E") no-repeat center / contain;
}

.line-contact-btn:hover {
  opacity: 0.78;
  transform: translateY(-2px);
}

.line-contact-box__note {
  margin: 18px 0 0;
  color: #666;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

.line-contact-box__qr {
  text-align: center;
}

.line-contact-box__qr-inner {
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(47, 93, 28, 0.16);
}

.line-contact-box__qr img {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.line-contact-box__qr p {
  margin: 18px 0 0;
  color: #2f5d1c;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

/* =========================
  送ってほしい内容
========================= */


.line-contact-guide__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 52px;
}

.line-contact-guide__item {
  padding: 30px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(47, 93, 28, 0.16);
}

.line-contact-guide__item span,
.line-contact-flow__item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #2f5d1c;
  color: #fff;
  font-size: 16px;
  line-height: 1;
}

.line-contact-guide__item h3,
.line-contact-flow__item h3 {
  margin: 0 0 16px;
  color: #2f5d1c;
  font-size: clamp(18px, 1.4vw, 23px);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

.line-contact-guide__item p,
.line-contact-flow__item p {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.06em;
}

/* =========================
  流れ
========================= */

.line-contact-flow__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 52px;
}

.line-contact-flow__item {
  padding: 30px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(47, 93, 28, 0.16);
}

/* =========================
  電話案内
========================= */

.line-contact-tel__box {
  max-width: 840px;
  margin: 0 auto;
  padding: 58px 60px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(47, 93, 28, 0.2);
  text-align: center;
}

.line-contact-tel__title {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 36px);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.12em;
}

.line-contact-tel__number {
  display: inline-block;
  margin: 26px 0 22px;
  color: #2f5d1c;
  font-size: clamp(25px, 3vw, 48px);
  font-family: serif;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.line-contact-tel__number:hover {
  opacity: 0.65;
}

.line-contact-tel__text {
  max-width: 620px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.08em;
}

/* =========================
  お知らせ一覧ページ
========================= */
.news-page {
  background-color: #fbfaf6;
  color: #2b2b2b;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", serif;
}

/* =========================
  一覧
========================= */
/* .news-list-section {
  padding: 20px 0 115px;
  background-image:
    linear-gradient(45deg, rgba(47, 93, 28, 0.035) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(47, 93, 28, 0.035) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(47, 93, 28, 0.035) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(47, 93, 28, 0.035) 75%);
  background-size: 44px 44px;
  background-position: 0 0, 0 22px, 22px -22px, -22px 0;
} */

/* .news-layout {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: clamp(60px, 8vw, 130px);
  align-items: start;
}

/* 左の縦書きタイトル */
.news-side-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #2f5d1c;
}

.news-side-title h2 {
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: clamp(34px, 3.2vw, 52px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.14em;
}

.news-side-title span {
  display: block;
  width: 1px;
  height: 84px;
  margin: 34px 0 26px;
  background: #2f5d1c;
}

.news-side-title p {
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 18px;
  letter-spacing: 0.18em;
} */

/* お知らせリスト */
.news-list {
  padding-top: 8px;
}

.news-item-page {
  border-bottom: 1px solid rgba(47, 93, 28, 0.18);
}

.news-item-page:first-child {
  border-top: 1px solid rgba(47, 93, 28, 0.18);
}

.news-item-page a {
  display: grid;
  grid-template-columns: 180px 150px 1fr;
  align-items: center;
  gap: 34px;
  padding: 28px 0;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.4s ease;
}

.news-item-page a:hover {
  opacity: 0.65;
}

.news-item-page time {
  font-size: clamp(15px, 1vw, 20px);
  letter-spacing: 0.12em;
  font-family: serif;
}

.news-item__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  padding: 10px 18px;
  background: rgba(47, 93, 28, 0.08);
  color: #2f5d1c;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.12em;
}

.news-item-page h3 {
  margin: 0;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.12em;
}

/* =========================
  ページネーション
========================= */
.news-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 70px;
}

.news-pagination a,
.news-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #2f5d1c;
  color: #2f5d1c;
  background: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.news-pagination .is-current,
.news-pagination a:hover {
  background: #2f5d1c;
  color: #fff;
}

.news-pagination .next {
  min-width: 78px;
}

/* =========================
  お知らせ詳細ページ
========================= */
.news-detail-page {
  background-color: #fbfaf6;
  color: #2b2b2b;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", serif;
}

.news-detail-page .inner {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
}
/* =========================
  詳細見出し
========================= */
.news-detail__head {
  margin-bottom: 58px;
  text-align: center;
  justify-content: center;
}

.news-detail__meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  margin-right: 30px;
}

.news-detail__meta time {
  font-size: clamp(14px, 1.6vw, 18px);
  letter-spacing: 0.12em;
  font-family: serif;
}

.news-detail__meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  padding: 10px 18px;
  background: rgba(47, 93, 28, 0.08);
  color: #2f5d1c;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.12em;
}

.news-detail__title {
  margin: 0;
  font-size: clamp(18px, 3vw, 25px);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.12em;
}

/* =========================
  詳細本文
========================= */
.news-detail__content {
  padding: clamp(34px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(47, 93, 28, 0.18);
}

.news-detail__content p {
  margin: 0;
  font-size: 15px;
  line-height: 2.25;
  letter-spacing: 0.08em;
}

.news-detail__content p + p {
  margin-top: 24px;
}

/* =========================
  一覧へ戻る
========================= */
.news-detail__nav {
  margin-top: 58px;
  text-align: center;
}

.news-detail__nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 16px 30px;
  border: 1px solid #2f5d1c;
  color: #2f5d1c;
  background: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.12em;
  transition: background 0.4s ease, color 0.4s ease, opacity 0.4s ease;
}

.news-detail__nav a:hover {
  background: #2f5d1c;
  color: #fff;
}

/* =========================
  前後の記事
========================= */
.news-detail-pager {
  padding: 0 0 110px;
  background-image:
    linear-gradient(45deg, rgba(47, 93, 28, 0.035) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(47, 93, 28, 0.035) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(47, 93, 28, 0.035) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(47, 93, 28, 0.035) 75%);
  background-size: 44px 44px;
  background-position: 0 0, 0 22px, 22px -22px, -22px 0;
}

.news-detail-pager__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.news-detail-pager__list a {
  display: block;
  padding: 24px 26px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(47, 93, 28, 0.18);
  color: inherit;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  transition: opacity 0.4s ease;
}

.news-detail-pager__list a:hover {
  opacity: 0.65;
}

.news-detail-pager__list span {
  display: block;
  margin-bottom: 8px;
  color: #2f5d1c;
  font-size: 13px;
  letter-spacing: 0.14em;
}

.news-detail-pager__list .next {
  text-align: right;
}




@media (max-width: 899px) {
	.br-899 {
		display: none;
	}
  .menu-panel {
    padding: 130px 50px 50px;
		display: flex;
		flex-direction: column;
  }
  .menu-info {
    border-right: none;
    border-bottom: 1px solid rgba(43, 43, 38, 0.35);
    padding-right: 0;
    padding-bottom: 4rem;
    margin-bottom: 2.5rem;
		order: 2;
  }
  .menu-shop h2 {
    margin-bottom: 1.5rem;
    font-size: 20px;
  }
  .menu-shop .tel {
    margin-right: 15px;
    font-size: 16px;
  }
  .menu-nav li {
    margin-bottom: 1.6rem;
  }
  .menu-nav a {
    font-size: 16px;
  }
  .menu-link-small {
    gap: 0.8rem 1.2rem;
		flex-direction: column;
		border-bottom: 1px solid rgba(43, 43, 38, 0.45);
		padding: 4rem 0;
  }
		.menu-nav {
		order: 1;
	}
	.menu-shop-block {
		order: 2;
		display: flex;
    flex-direction: column;
	}
	.menu-shop {
    margin-top: 4rem;
}
.menubar_space {
	right: 0px;
}
.mainimg .image {
    width: 52%;
}
.small-screen #menubar {
		width: 100%;
	}
	 .news-section {
    padding: 70px 24px;
  }
  .news-inner {
    display: block;
  }
  .news-title {
    justify-content: flex-start;
    border-right: none;
    border-bottom: 1px solid rgba(43, 43, 38, 0.35);
    padding-right: 0;
    padding-bottom: 24px;
    margin-bottom: 32px;
  }
  .news-title h2 {
    writing-mode: horizontal-tb;
    font-size: 24px;
    letter-spacing: 0.12em;
  }
  .news-list {
    gap: 24px;
  }
  .news-item {
    display: block;
    font-size: 16px;
  }
  .news-item time {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    opacity: 0.75;
  }
	  .top-tatami-type-inner {
    /* width: min(100% - 40px, 560px); */
		width: min(100%, 760px);
    margin-left: auto;
    padding-left: 40px;
    padding-right: 0;
    display: block;
  }
	.tatami-type-title {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    margin-bottom: 60px;
    justify-self:flex-start;
    padding: 0 20px;
  }
  .tatami-type-title span {
    width: 50px;
    height: 1px;
  }
  .tatami-type-title h2 {
    font-size: 26px;
    line-height: 1.7;
  }
  .tatami-type-text {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    display: block;
    margin-bottom: 36px;
  }
  .tatami-type-text p {
    margin-bottom: 60px;
    padding: 0 20px;
  }
  .tatami-type-more {
    margin-top: 24px;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    margin-bottom: 40px;
    justify-content: center;
  }
  .tatami-type-more span {
    width: 42px;
    height: 1px;
  }
  .tatami-type-list {
    gap: 0;
  }
  .tatami-type-card {
    grid-template-columns: 86px 1fr;
    column-gap: 16px;
    padding: 16px 0;
  }
  .tatami-type-img {
    width: 100%;
  }
	.top-about .list-parts {
		display: flex;
		flex-direction: column;
		margin-bottom: 0;
	}
	.top-about .image-parts {
    top: 0;
	}
	.top-about img.vertical-sub-img {
			display: none;
	}
	.top-about .list-parts.reverse {
		padding-top: 5vw;
	}
	.order-1 {
		order: 1;
	}
	.order-2 {
		order: 2;
	}
  .top-works-inner {
		width: min(100%, 760px);
        margin-left: auto;
        padding-left: 40px;
        padding-right: 0;
        display: block;
  }

  .top-works-title {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    margin-bottom: 60px;
    justify-self: flex-start;
    padding: 0 20px;
  }

  .top-works-title span {
    width: 50px;
    height: 1px;
  }

  .top-works-title h2 {
    font-size: 26px;
    line-height: 1.7;
  }

  .top-works-text {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    display: block;
    margin-bottom: 38px;
  }

  .top-works-text p {
    font-size: 14px;
    line-height: 2;
    padding: 0 20px;
    margin-bottom: 60px;
  }

  .top-works-more {
    margin-top: 24px;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    justify-content: center;
  }

  .top-works-more span {
    width: 42px;
    height: 1px;
  }

  .top-works-list {
    gap: 0;
  }

  .top-works-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 0;
  }

  .top-works-img {
    aspect-ratio: 4 / 3;
  }

  .top-news-inner {
		width: min(100%, 760px);
    margin-left: auto;
    padding-left: 40px;
    padding-right: 0;
    display: block;
  }

  .top-news-title {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    justify-content: flex-start;
    margin-bottom: 50px;
		align-items: flex-end;
  }

  .top-news-title h2 {
    font-size: 24px;
    line-height: 1.6;
  }

  .top-news-title span {
    width: 50px;
    height: 1px;
  }

  .top-news-list {
    gap: 0;
  }

  .top-news-item {
    display: block;
    padding: 18px 0;
    border-bottom: 1px solid rgba(47, 93, 28, 0.22);
  }

  .top-news-item time {
    display: inline-block;
    margin-right: 10px;
    font-size: 14px;
  }

  .news-label {
    min-width: 78px;
    padding: 3px 10px;
    font-size: 12px;
  }

  .news-text {
    display: block;
    margin-top: 8px;
    font-size: 15px;
  }

  .top-news-more {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    margin-top: 28px;
    justify-content: flex-start;
  }

  .top-news-more span {
    width: 42px;
    height: 1px;
  }


  .top-contact-inner {
    width: min(100%, 760px);
    margin-left: auto;
    padding-left: 40px;
    padding-right: 0;
    display: block;
  }

  .top-contact-title {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    justify-content: flex-start;
    justify-self: flex-start;
    padding: 0 20px;
    margin-bottom: 50px;
  }

  .top-contact-title span {
    width: 50px;
    height: 1px;
  }

  .top-contact-title h2 {
    font-size: 26px;
    line-height: 1.7;
  }

  .top-contact-text {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    margin-bottom: 34px;
  }

  .top-contact-text p {
    font-size: 14px;
    line-height: 2;
    padding: 0 20px;
  }

  .top-contact-box {
    padding: 28px 0;
  }

  .top-contact-buttons {
    gap: 12px;
		flex-direction: column;
  }

  .top-contact-btn {
    display: block;
    padding: 16px 18px;
		text-align: center;		
  }

  .top-contact-btn span {
    display: block;
    margin-bottom: 4px;
  }

  .top-contact-btn strong {
    display: block;
    font-size: 20px;
  }
	 .site-footer {
    padding: 20px 0 20px;
  }

  .site-footer-inner {
    width: min(100% - 40px, 899px);
    display: block;
    margin: 0;
  }

  .footer-shop h3 {
    margin: 0 0 15px;
  }

  .footer-brand {
    margin-bottom: 25px;
  }

  .footer-logo {
    margin-bottom: 20px;
  }

  .footer-logo img {
    width: 130px;
  }

  .footer-copy {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    font-size: 18px;
  }

  .footer-shop-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 42px;
  }

  .footer-shop {
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(47, 93, 28, 0.22);
  }

  .footer-nav {
    padding-left: 0;
    border-left: none;
    margin-bottom: 42px;
  }

  .footer-nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
  }

  .footer-nav li {
    margin-bottom: 0;
  }

  .footer-contact {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    justify-self: auto;
    display: block;
  }
  .footer-contact img {
    width: 100%;
  }

  .footer-contact-title {
    font-size: 22px;
    margin-bottom: 22px;
  }

  .footer-contact-btn {
    min-height: auto;
    width: 100%;
    padding: 15px 18px;
    writing-mode: horizontal-tb;
  }

  .footer-bottom {
    width: min(100% - 40px, 860px);
    display: block;
    margin-top: 42px;
    border-top: 0;
  }

  .footer-small-links {
    display: block;
    margin-bottom: 18px;
  }

  .footer-small-links li {
    margin-bottom: 8px;
  }
	.page-title {
    padding: 50px 20px 55px;
  }

  .breadcrumb {
    padding: 14px 20px;
  }
 
  .breadcrumb__list {
    font-size: 12px;
    gap: 10px;
  }

  .breadcrumb__list li + li::before {
    margin-right: 10px;
  }

  .page-visual {
    width: calc(100% - 24px);
    height: clamp(200px, 46vw, 260px);
  }

  .works-intro {
    padding: 65px 0 35px;
  }

  .intro__text {
    font-size: 14px;
  }

  .works-category {
    padding-bottom: 40px;
  }

  .works-category__list a {
    min-width: auto;
    padding: 10px 14px;
    font-size: 13px;
  }

  .works-list-section {
    padding-bottom: 70px;
  }

  .works-card__body {
    padding: 24px 22px 24px;
  }

  .works-card__info div {
    grid-template-columns: 80px 1fr;
  }

  /* .works-contact__box {
    padding: 42px 22px;
  } */
	 .works-list {
    grid-template-columns: 1fr;
    gap: 36px;
  }
 .works-category__list {
    gap: 12px;
  }

  .works-filter-btn {
    min-width: calc(50% - 6px);
    padding: 12px 15px;
    font-size: 15px;
  }
	.works-detail {
    padding: 70px 0 80px;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .related-works__list {
    grid-template-columns: 1fr;
    gap: 28px;
  }
	.works-detail__head {
    margin-bottom: 34px;
  }

  .works-detail__main-img {
    height: clamp(220px, 58vw, 320px);
    margin-bottom: 52px;
  }

  .works-detail__section {
    margin-bottom: 58px;
  }

  .works-detail__info div {
    grid-template-columns: 1fr;
  }

  .works-detail__info dt,
  .works-detail__info dd {
    padding: 14px 18px;
    font-size: 14px;
  }

  .works-detail__point {
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .works-detail__point span {
    width: 42px;
    height: 42px;
    font-size: 15px;
  }

  .works-detail__point p,
  .works-detail__text p {
    font-size: 14px;
  }

  .related-works {
    padding: 70px 0 80px;
  }
	.tatami-type-card,
  .tatami-type-card.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .tatami-type-card.reverse .tatami-type-card__img,
  .tatami-type-card.reverse .tatami-type-card__body {
    order: initial;
  }

  .tatami-choice__list {
    grid-template-columns: 1fr;
  }
  .inner {
    width: min(100% - 32px, 1120px);
  }

  .tatami-type-intro {
    padding: 72px 0 58px;
    background-size: 34px 34px;
    background-position: 0 0, 0 17px, 17px -17px, -17px 0;
  }

  /* .section-title {
    font-size: clamp(20px, 7vw, 30px);
  } */

  .tatami-type-intro__text {
    margin-top: 30px;
    font-size: 15px;
    line-height: 2.1;
    text-align: left;
  }

  .tatami-type-list-section {
    padding: 20px 0 72px;
  }

  /* .tatami-type-list {
    gap: 62px;
  } */

  .tatami-type-card__body {
    padding: 8px 0 0;
  }

  .tatami-type-card__info div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .tatami-choice,
  .tatami-compare {
    padding: 72px 0 78px;
  }

  .tatami-choice__list,
  .tatami-compare__table-wrap {
    margin-top: 38px;
  }

  .tatami-choice__item {
    padding: 30px 22px 32px;
  }

  .tatami-compare__table th,
  .tatami-compare__table td {
    padding: 16px 18px;
    font-size: 13px;
  }



  .faq-intro {
    padding: 72px 0 48px;
    background-size: 34px 34px;
    background-position: 0 0, 0 17px, 17px -17px, -17px 0;
  }

  .faq-intro__text {
    margin-top: 30px;
    font-size: 15px;
    line-height: 2.1;
    text-align: left;
  }
  .faq-category {
    padding: 0 0 54px;
    background-size: 34px 34px;
    background-position: 0 0, 0 17px, 17px -17px, -17px 0;
  }
  .faq-category__list {
    gap: 12px;
  }
  .faq-category__list li {
    width: calc(50% - 6px);
  }
  .faq-category__list a {
    width: 100%;
    min-width: 0;
    padding: 15px 10px;
    font-size: 13px;
  }
  .faq-list-section {
    padding: 72px 0 78px;
  }
  .faq-group + .faq-group {
    margin-top: 70px;
  }
  .faq-item summary {
    grid-template-columns: 38px 1fr 18px;
    gap: 12px;
    padding: 20px 18px;
  }
  .faq-item__q,
  .faq-item__a {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }
  .faq-item__question {
    font-size: 15px;
  }
  .faq-item__answer {
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 0 18px 24px;
  }
  .faq-item__answer p {
    font-size: 14px;
    line-height: 2;
  }
	 .company-message__wrap,
  .company-access__wrap {
    grid-template-columns: 1fr;
  }
  .company-policy__list {
    grid-template-columns: 1fr;
  }
  .company-access__map {
    height: 360px;
    min-height: auto;
  }
  .company-intro {
    padding: 72px 0 58px;
    background-size: 34px 34px;
    background-position: 0 0, 0 17px, 17px -17px, -17px 0;
  }
  .company-intro__text {
    margin-top: 30px;
    font-size: 15px;
    line-height: 2.1;
    text-align: left;
  }
  .company-message {
    padding: 25px 0 72px;
  }
  .section-sub--left {
    text-align: center;
  }
  .company-message__title {
    text-align: center;
  }
  .company-message__title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .company-message__text p {
    font-size: 14px;
  }
  .company-profile,
  .company-policy {
    padding: 72px 0 78px;
  }
  .company-profile__table {
    margin-top: 38px;
  }
  .company-profile__table div {
    grid-template-columns: 1fr;
  }
  .company-profile__table dt,
  .company-profile__table dd {
    padding: 14px 18px;
    font-size: 14px;
  }
  .company-policy__list {
    margin-top: 38px;
  }
  .company-access__wrap {
    margin-top: 38px;
    gap: 28px;
  }
  .company-access__map {
    height: 300px;
  }
  .company-access__body {
    padding: 30px 22px;
  }
  .company-access__body dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
	/* =========================
  代表挨拶
========================= */
.company-greeting {
  padding: 95px 0 105px;
  background: #fff;
}

.company-greeting__wrap,.company-greeting__wrap.staff {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 64px;
}
.company-greeting__body {
  order: 2;
}

.company-greeting__title {
  position: relative;
  margin: 0 0 30px;
  padding-bottom: 22px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.12em;
}

.company-greeting__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 1px;
  background: #2f5d1c;
}

.company-greeting__text {
  position: relative;
}

.company-greeting__text p {
  margin: 0;
  font-size: 15px;
  line-height: 2.25;
  letter-spacing: 0.08em;
}

.company-greeting__text p + p {
  margin-top: 22px;
}

.company-greeting__name {
  margin: 36px 0 0;
  text-align: right;
  font-size: 15px;
  letter-spacing: 0.12em;
}

.company-greeting__name span {
  display: inline-block;
  margin-left: 14px;
  font-size: clamp(20px, 1.6vw, 26px);
  letter-spacing: 0.16em;
}

.company-greeting__img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.company-greeting__img::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  z-index: 1;
  pointer-events: none;
}

.company-greeting__img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
 .company-greeting {
    padding: 72px 0 78px;
  }

  .company-greeting__title {
    text-align: center;
  }

  .company-greeting__title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .company-greeting__text p {
    font-size: 14px;
  }

  .company-greeting__name {
    text-align: center;
  }
	 .price-option__list,
  .price-flow__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-intro {
    padding: 72px 0 48px;
    background-size: 34px 34px;
    background-position: 0 0, 0 17px, 17px -17px, -17px 0;
  }

  .price-intro__text {
    margin-top: 30px;
    font-size: 15px;
    line-height: 2.1;
    text-align: left;
  }

  .price-note {
    padding-bottom: 54px;
    background-size: 34px 34px;
    background-position: 0 0, 0 17px, 17px -17px, -17px 0;
  }

  .price-note__box {
    padding: 20px;
  }

  .price-table th,
  .price-table td {
    padding: 16px 18px;
    font-size: 13px;
  }

  .price-option,
  .price-flow {
    padding: 72px 0 78px;
  }

  .price-option__list,
  .price-flow__list {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .price-contact {
    padding: 72px 0 82px;
  }

  .privacy-page .inner {
    width: min(100% - 32px, 960px);
  }

  .privacy-content {
    padding: 28px 20px;
  }

  .privacy-content h2 {
    padding-left: 14px;
    font-size: 18px;
  }

  .privacy-content p,
  .privacy-content li {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.05em;
  }

  .privacy-contact {
    padding: 20px;
  }

  .privacy-date {
    text-align: left;
  }
   .line-contact-box {
    grid-template-columns: 1fr;
  }

  .line-contact-box__qr {
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
  }

  .line-contact-guide__list,
  .line-contact-flow__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .line-contact-box {
    padding: 32px 22px;
  }

  .line-contact-box__body::before {
    font-size: 100px;
    top: -20px;
  }

  .line-contact-box__title {
    text-align: center;
  }

  .line-contact-box__title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .line-contact-box__label {
    text-align: center;
  }

  .line-contact-box__text {
    font-size: 14px;
  }

  .line-contact-box__list {
    grid-template-columns: 1fr;
  }

  .line-contact-btn {
    width: 100%;
    min-width: 0;
    padding: 17px 20px;
  }

  .line-contact-guide__list,
  .line-contact-flow__list {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .line-contact-tel__box {
    padding: 42px 22px;
  }

  .line-contact-tel__text {
    text-align: left;
  }
   /* .news-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  } */

  .news-side-title {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .news-side-title h2,
  .news-side-title p {
    writing-mode: horizontal-tb;
  }

  .news-side-title span {
    width: 60px;
    height: 1px;
    margin: 0;
  }

  .news-item a {
    grid-template-columns: 150px 130px 1fr;
    gap: 20px;
  }

  .news-list-section {
    padding: 0 0 82px;
    background-size: 34px 34px;
    background-position: 0 0, 0 17px, 17px -17px, -17px 0;
  }

  .news-side-title h2 {
    font-size: 30px;
  }

  .news-side-title p {
    font-size: 14px;
  }

  .news-item-page a {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
  }

  .news-item-page time {
    font-size: 18px;
  }

  .news-item__cat {
    width: fit-content;
    min-width: 110px;
    padding: 8px 14px;
    font-size: 13px;
  }

  .news-pagination {
    margin-top: 48px;
  }
  .news-detail-page .inner {
    width: min(100% - 32px, 920px);
  }


  .news-detail__head {
    margin-bottom: 38px;
    flex-direction: column;
  }

  .news-detail__meta {
    gap: 14px;
    margin-right: 0;
    margin-bottom: 18px;
  }

  .news-detail__content {
    padding: 30px 22px;
  }

  .news-detail__content p {
    font-size: 14px;
    line-height: 2.1;
  }

  .news-detail__nav {
    margin-top: 44px;
  }

  .news-detail__nav a {
    width: 100%;
  }

  .news-detail-pager {
    padding-bottom: 82px;
    background-size: 34px 34px;
    background-position: 0 0, 0 17px, 17px -17px, -17px 0;
  }

  .news-detail-pager__list {
    grid-template-columns: 1fr;
  }

  .news-detail-pager__list .next {
    text-align: left;
  }
  .pc-price-table {
    display: none;
  }

  .sp-price-list {
    display: block;
    margin-left: clamp(20px, 3vw, 50px);
  }

  .sp-price-card {
    background: #fff;
    border: 1px solid #d7e1d2;
    padding: 8px 20px;
    margin-bottom: 18px;
  }

  .sp-price-card h3 {
    color: #2f5d1c;
    font-size: 2rem;
    margin-bottom: 10px;
    line-height: 1.5;
    margin-top: 12px;
    font-weight: normal;
  }

  .sp-price-desc {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .sp-price-card dl {
    margin: 0;
  }

  .sp-price-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid #e4eadf;
    padding: 12px 0;
  }

  .sp-price-card dt {
    color: #2f5d1c;
    font-weight: 700;
    white-space: nowrap;
  }

  .sp-price-card dd {
    margin: 0;
    text-align: right;
  }

  .sp-price-card dd span {
    font-size: 18px;

  }
   .pc-compare-table {
    display: none;
  }

  .sp-compare-list {
    display: block;
    margin-top: 38px;
  }

  .sp-compare-card {
    background: #fff;
    border: 1px solid rgba(47, 93, 28, 0.22);
    padding: 22px 20px;
    margin-bottom: 18px;
  }

  .sp-compare-card h3 {
    color: #2f5d1c;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.12em;
    margin: 0 0 14px;
  }

  .sp-compare-card dl {
    margin: 0;
  }

  .sp-compare-card dl div {
    border-top: 1px solid rgba(47, 93, 28, 0.16);
    padding: 15px 0;
  }

  .sp-compare-card dl div:last-child {
    padding-bottom: 0;
  }

  .sp-compare-card dt {
    color: #2f5d1c;
    font-size: 14px;
    margin-bottom: 7px;
  }

  .sp-compare-card dd {
    margin: 0;
    color: #222;
    font-size: 14px;
    line-height: 1.8;
  }
  .br-899 {
    display: none;
  }
  .vertical-more {
      margin-left: 0;
  }
  .vertical-about-inner {
        margin: 40px auto;
  }
}
@media (min-width: 700px) {
  .br-700 {
    display: none;
  }
}


@media (max-width: 699px) {
	p {
    font-size: clamp(14px, 3.8vw, 16px);
    line-height: 2;
  }
	.mainimg {
		/* flex-direction: column;
		width: 100%;
		height: initial;
		padding-top: 80px;  */
		 position: relative;
    width: 100%;
    height: 91svh;
    padding-top: 0;
    overflow: hidden;
	}
	.mainimg .text {
		/* margin: 0;
		align-items: center;
		text-align: center;
		order: 2; */
		position: relative;
    z-index: 2;
    height: 53svh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* text-align: center; */
    padding-top: 90px;
	}
	.mainimg .image {
		/* width: 100%;
		aspect-ratio: 2 / 2;
		height: 70vh;
		position: relative;
		top: -280px; */
		position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 63svh;
    aspect-ratio: auto;
    top: auto;
	}
	.mainimg .image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
      to bottom,
      rgba(248, 246, 241, 0.95) 0%,
      rgba(248, 246, 241, 0.65) 18%,
      rgba(248, 246, 241, 0) 38%
    );
    pointer-events: none;
  }
	.mainimg .image img {
		/* border-radius: 0; */
		width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
	}
	.mainimg .text h1 {
		text-shadow: 0 1px 8px rgba(248, 246, 241, 0.9);
		font-size: clamp(25px, 10vw, 35px);
    line-height: 1.65;
	}
	.mainimg .text p {
		font-size: 15px;
		display: none;
	}
	header .logo img {
	  width: 160px;
		top: 0px;
	}
	.fv-buttons {
		flex-direction: column;
		margin-top: 0;
    display: none;
	}
	 .vertical-about-inner {
    min-height: auto;
    gap: 60px;
		margin: 50px auto 17px;
		flex-direction: column-reverse;
  }
	.vertical-more span {
    width: 50px;
    height: 1px;
	}
  .vertical-text p, .tatami-type-text p  {
    font-size: 14px;
    line-height: 2.4;
  }
  .vertical-title h2 {
    font-size: 24px;
  }
  .vertical-more {
    font-size: 13px;
		writing-mode: initial;
  }
	.menubar-space-link {
		display: none;
	}
	#contents {
	width: 100%;
	}	
	.top-tatami-type-inner ,.top-works-inner,.top-news-inner,.top-contact-inner {
		padding-left: 20px;
		padding-right: 20px;
	}
	.page-visual {
    width: 100%;
	}
	.works-list {
    padding-right: clamp(20px, 3vw, 50px);
	}
  .works-intro {
    text-align: left;
  }
    .sp-price-list {
    margin: clamp(20px, 3vw, 50px);
  }
  .news-detail__head {
      align-items: flex-start;
    }
  .news-detail__title {
    text-align: left;
}
  .line-contact-guide__item,
  .line-contact-flow__item,
  .price-option__item,
  .price-flow__item,
  .company-policy__item {
    padding: 20px ;
  }
  header {
    height: 100px;
  }
  .top-contact-title h2 {
    font-size: 20px;
    white-space: nowrap;
    }
  .top-contact-title span {
    width: 30px;
    }
  .photo-slide {
     aspect-ratio: 4 / 4;
    }
    .top-about h2 {
      /* writing-mode: initial; */
      font-size: 20px;
      margin-bottom: 0;
    }
    /* .top-works-title span ,.tatami-type-title span {
        width: 30px;
        height: 1px;
    } */
    .vertical-title.sp-yoko {
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        justify-content: flex-start;
        margin-bottom:0;
    }
    .sp-top-btn-space {
      margin-bottom: 40px;
    }
    .vertical-text.sp-yoko {
        writing-mode: initial;
        margin: 0 40px;
    }
    .br-600 {
    display: none;
  }
    .tatami-type-title h2,.top-works-title h2 {
    font-size: 20px;
    line-height: 1.8;
  }
  .menubar-text {
    display: none;
  }
  .intro__text {
    text-align: left;
  }
  .sp-price-card h3 {
    font-size: 18px;
  }
.top-about img {
    height:250px ;
  }
  .tatami-type-img ,.top-works-img {
    aspect-ratio: 4 / 2;
  }
  .top-news-title h2 {
        font-size: 20px;
  }
  .news-text {
      font-size: 14px;
  }
  .top-news-item time {
      font-size: 13px;
  }
  .news-item-page time {
        font-size: 14px;
    }
    .news-item-page h3 {
      font-size: 15px;
    }
    .news-detail__head {
      padding: 0;
    }
  .footer-bottom {
    border-top: 1px solid rgba(47, 93, 28, 0.22);
  }
  .menu-panel {
    padding: 130px 30px 50px;
  }
  .site-footer-inner {
    width: 100%; 
  }
  }


