@charset "UTF-8";
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  margin: 0;
  border-top-width: 1px;
  overflow: visible;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

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

abbr[title] {
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

img {
  max-width: 100%;
  height: auto;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}

button,
input,
optgroup,
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  text-align: inherit;
  text-transform: inherit;
  vertical-align: middle;
  border-radius: 0;
  background: transparent;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, Osaka, "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 62.5%;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
}

/* ====================================================================

Utility Classes

==================================================================== */
/* Utility Classes（ユーティリティクラス集）
/* サイト全体で使える「簡易クラス」をまとめたファイル
/* margin や padding、text-align など、再利用される装飾をまとめています。
============================================ */
/* ▼ スクリーンリーダー読み上げ用
表示はしたくないが読み上げはしてほしいときに使用
============================================ */
.u-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ▼ 表示・非表示の制御（classで簡単に見せたり隠したりする用）
============================================ */
.u-hidden {
  display: none !important;
}

.u-visible {
  display: block !important;
}

/* ▼ マージン（余白）を付けたいときに便利なクラス
/* 例).u-mt-3 → 上に24px（3 × 8px）の外側に余白
============================================ */
.u-mt-0 {
  margin-top: 0px !important;
}

.u-mb-0 {
  margin-bottom: 0px !important;
}

.u-ml-0 {
  margin-left: 0px !important;
}

.u-mr-0 {
  margin-right: 0px !important;
}

.u-mx-0 {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

.u-my-0 {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.u-mt-1 {
  margin-top: 8px !important;
}

.u-mb-1 {
  margin-bottom: 8px !important;
}

.u-ml-1 {
  margin-left: 8px !important;
}

.u-mr-1 {
  margin-right: 8px !important;
}

.u-mx-1 {
  margin-left: 8px !important;
  margin-right: 8px !important;
}

.u-my-1 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.u-mt-2 {
  margin-top: 16px !important;
}

.u-mb-2 {
  margin-bottom: 16px !important;
}

.u-ml-2 {
  margin-left: 16px !important;
}

.u-mr-2 {
  margin-right: 16px !important;
}

.u-mx-2 {
  margin-left: 16px !important;
  margin-right: 16px !important;
}

.u-my-2 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.u-mt-3 {
  margin-top: 24px !important;
}

.u-mb-3 {
  margin-bottom: 24px !important;
}

.u-ml-3 {
  margin-left: 24px !important;
}

.u-mr-3 {
  margin-right: 24px !important;
}

.u-mx-3 {
  margin-left: 24px !important;
  margin-right: 24px !important;
}

.u-my-3 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.u-mt-4 {
  margin-top: 32px !important;
}

.u-mb-4 {
  margin-bottom: 32px !important;
}

.u-ml-4 {
  margin-left: 32px !important;
}

.u-mr-4 {
  margin-right: 32px !important;
}

.u-mx-4 {
  margin-left: 32px !important;
  margin-right: 32px !important;
}

.u-my-4 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

.u-mt-5 {
  margin-top: 40px !important;
}

.u-mb-5 {
  margin-bottom: 40px !important;
}

.u-ml-5 {
  margin-left: 40px !important;
}

.u-mr-5 {
  margin-right: 40px !important;
}

.u-mx-5 {
  margin-left: 40px !important;
  margin-right: 40px !important;
}

.u-my-5 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.u-mt-6 {
  margin-top: 48px !important;
}

.u-mb-6 {
  margin-bottom: 48px !important;
}

.u-ml-6 {
  margin-left: 48px !important;
}

.u-mr-6 {
  margin-right: 48px !important;
}

.u-mx-6 {
  margin-left: 48px !important;
  margin-right: 48px !important;
}

.u-my-6 {
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}

.u-mt-7 {
  margin-top: 56px !important;
}

.u-mb-7 {
  margin-bottom: 56px !important;
}

.u-ml-7 {
  margin-left: 56px !important;
}

.u-mr-7 {
  margin-right: 56px !important;
}

.u-mx-7 {
  margin-left: 56px !important;
  margin-right: 56px !important;
}

.u-my-7 {
  margin-top: 56px !important;
  margin-bottom: 56px !important;
}

.u-mt-8 {
  margin-top: 64px !important;
}

.u-mb-8 {
  margin-bottom: 64px !important;
}

.u-ml-8 {
  margin-left: 64px !important;
}

.u-mr-8 {
  margin-right: 64px !important;
}

.u-mx-8 {
  margin-left: 64px !important;
  margin-right: 64px !important;
}

.u-my-8 {
  margin-top: 64px !important;
  margin-bottom: 64px !important;
}

.u-mt-9 {
  margin-top: 72px !important;
}

.u-mb-9 {
  margin-bottom: 72px !important;
}

.u-ml-9 {
  margin-left: 72px !important;
}

.u-mr-9 {
  margin-right: 72px !important;
}

.u-mx-9 {
  margin-left: 72px !important;
  margin-right: 72px !important;
}

.u-my-9 {
  margin-top: 72px !important;
  margin-bottom: 72px !important;
}

.u-mt-10 {
  margin-top: 80px !important;
}

.u-mb-10 {
  margin-bottom: 80px !important;
}

.u-ml-10 {
  margin-left: 80px !important;
}

.u-mr-10 {
  margin-right: 80px !important;
}

.u-mx-10 {
  margin-left: 80px !important;
  margin-right: 80px !important;
}

.u-my-10 {
  margin-top: 80px !important;
  margin-bottom: 80px !important;
}

/* パディング系
/* 例）.u-pt-3 → 上に24px（3 × 8px）の内側に余白
============================================ */
.u-pt-0 {
  padding-top: 0px !important;
}

.u-pb-0 {
  padding-bottom: 0px !important;
}

.u-pl-0 {
  padding-left: 0px !important;
}

.u-pr-0 {
  padding-right: 0px !important;
}

.u-px-0 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.u-py-0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.u-pt-1 {
  padding-top: 8px !important;
}

.u-pb-1 {
  padding-bottom: 8px !important;
}

.u-pl-1 {
  padding-left: 8px !important;
}

.u-pr-1 {
  padding-right: 8px !important;
}

.u-px-1 {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.u-py-1 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.u-pt-2 {
  padding-top: 16px !important;
}

.u-pb-2 {
  padding-bottom: 16px !important;
}

.u-pl-2 {
  padding-left: 16px !important;
}

.u-pr-2 {
  padding-right: 16px !important;
}

.u-px-2 {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

.u-py-2 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.u-pt-3 {
  padding-top: 24px !important;
}

.u-pb-3 {
  padding-bottom: 24px !important;
}

.u-pl-3 {
  padding-left: 24px !important;
}

.u-pr-3 {
  padding-right: 24px !important;
}

.u-px-3 {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.u-py-3 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.u-pt-4 {
  padding-top: 32px !important;
}

.u-pb-4 {
  padding-bottom: 32px !important;
}

.u-pl-4 {
  padding-left: 32px !important;
}

.u-pr-4 {
  padding-right: 32px !important;
}

.u-px-4 {
  padding-left: 32px !important;
  padding-right: 32px !important;
}

.u-py-4 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.u-pt-5 {
  padding-top: 40px !important;
}

.u-pb-5 {
  padding-bottom: 40px !important;
}

.u-pl-5 {
  padding-left: 40px !important;
}

.u-pr-5 {
  padding-right: 40px !important;
}

.u-px-5 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.u-py-5 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.u-pt-6 {
  padding-top: 48px !important;
}

.u-pb-6 {
  padding-bottom: 48px !important;
}

.u-pl-6 {
  padding-left: 48px !important;
}

.u-pr-6 {
  padding-right: 48px !important;
}

.u-px-6 {
  padding-left: 48px !important;
  padding-right: 48px !important;
}

.u-py-6 {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

.u-pt-7 {
  padding-top: 56px !important;
}

.u-pb-7 {
  padding-bottom: 56px !important;
}

.u-pl-7 {
  padding-left: 56px !important;
}

.u-pr-7 {
  padding-right: 56px !important;
}

.u-px-7 {
  padding-left: 56px !important;
  padding-right: 56px !important;
}

.u-py-7 {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}

.u-pt-8 {
  padding-top: 64px !important;
}

.u-pb-8 {
  padding-bottom: 64px !important;
}

.u-pl-8 {
  padding-left: 64px !important;
}

.u-pr-8 {
  padding-right: 64px !important;
}

.u-px-8 {
  padding-left: 64px !important;
  padding-right: 64px !important;
}

.u-py-8 {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}

.u-pt-9 {
  padding-top: 72px !important;
}

.u-pb-9 {
  padding-bottom: 72px !important;
}

.u-pl-9 {
  padding-left: 72px !important;
}

.u-pr-9 {
  padding-right: 72px !important;
}

.u-px-9 {
  padding-left: 72px !important;
  padding-right: 72px !important;
}

.u-py-9 {
  padding-top: 72px !important;
  padding-bottom: 72px !important;
}

.u-pt-10 {
  padding-top: 80px !important;
}

.u-pb-10 {
  padding-bottom: 80px !important;
}

.u-pl-10 {
  padding-left: 80px !important;
}

.u-pr-10 {
  padding-right: 80px !important;
}

.u-px-10 {
  padding-left: 80px !important;
  padding-right: 80px !important;
}

.u-py-10 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

/* ▼ テキストの位置を整えるクラス（中央・左・右寄せ）
============================================ */
.u-text-center {
  text-align: center !important;
}

.u-text-left {
  text-align: left !important;
}

.u-text-right {
  text-align: right !important;
}

/* ▼ テキストの大きさを変えるクラス（小・中・大）
============================================ */
.u-text-sm {
  font-size: 0.875rem !important;
}

.u-text-base {
  font-size: 1rem !important;
}

.u-text-lg {
  font-size: 1.25rem !important;
}

/* ▼ テキストの太さを変えるクラス（太い・普通・細い）
============================================ */
.u-font-bold {
  font-weight: bold !important;
}

.u-font-normal {
  font-weight: normal !important;
}

.u-font-light {
  font-weight: 300 !important;
}

/* ▼ float と clearfix（古いレイアウト対応など）
============================================ */
.u-float-left {
  float: left !important;
}

.u-float-right {
  float: right !important;
}

.u-clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* ▼ Flexbox 系
============================================ */
.u-flex {
  display: flex !important;
}

.u-inline-flex {
  display: inline-flex !important;
}

.u-flex-center {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.u-justify-between {
  justify-content: space-between !important;
}

.u-align-center {
  align-items: center !important;
}

/* ▼ ボーダー
============================================ */
.u-border {
  border: 1px solid !important;
}

.u-border-top {
  border-top: 1px solid !important;
}

.u-border-bottom {
  border-bottom: 1px solid !important;
}

.u-border-none {
  border: none !important;
}

/* ▼ アイコン
============================================ */
.icon, .icon-external, .icon-arrow-left, .icon-arrow-right, .icon-download, .icon-search {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.icon-search {
  -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376C296.3 401.1 253.9 416 208 416 93.1 416 0 322.9 0 208S93.1 0 208 0 416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z"/></svg>');
  mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376C296.3 401.1 253.9 416 208 416 93.1 416 0 322.9 0 208S93.1 0 208 0 416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z"/></svg>');
}

.icon-download {
  -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-download-icon lucide-download"><path d="M12 15V3"/><path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"/><path d="m7 10 5 5 5-5"/></svg>');
  mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-download-icon lucide-download"><path d="M12 15V3"/><path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"/><path d="m7 10 5 5 5-5"/></svg>');
}

.icon-arrow-right {
  -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-right-icon lucide-chevron-right"><path d="m9 18 6-6-6-6"/></svg>');
  mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-right-icon lucide-chevron-right"><path d="m9 18 6-6-6-6"/></svg>');
}

.icon-arrow-left {
  -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-left-icon lucide-chevron-left"><path d="m15 18-6-6 6-6"/></svg>');
  mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-left-icon lucide-chevron-left"><path d="m15 18-6-6 6-6"/></svg>');
}

.icon-external {
  -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-external-link-icon lucide-external-link"><path d="M15 3h6v6"/><path d="M10 14 21 3"/><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"/></svg>');
  mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-external-link-icon lucide-external-link"><path d="M15 3h6v6"/><path d="M10 14 21 3"/><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"/></svg>');
}

.icon-xs {
  width: 1.6em;
  height: 1.6em;
}

.icon-sm {
  width: 1.8em;
  height: 1.8em;
}

.icon-md {
  width: 2.4em;
  height: 2.4em;
}

.icon-lg {
  width: 3.2em;
  height: 3.2em;
}

.icon-xl {
  width: 4.8em;
  height: 4.8em;
}

.icon-primary {
  background-color: #1F8C63;
}

.icon-secondary {
  background-color: #B49982;
}

.icon-white {
  background-color: #fff;
}

.icon-black {
  background-color: #222;
}

.icon-hover {
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.icon-hover:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

/*
使用例:
<span class="icon icon-home icon-lg icon-primary"></span>
<button class="icon icon-plus icon-md icon-light icon-hover"></button>
*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 112px;
  padding: 0 2rem;
  background-color: transparent;
  z-index: 99999;
}
@media screen and (max-width: 590px) {
  .l-header {
    height: 64px;
    padding: 0 16px;
  }
}
.l-header.fv-target {
  background-color: transparent;
  transition: 0.24s;
}
.l-header.fv-target._active {
  background-color: rgba(0, 0, 0, 0.5);
}

.header-container {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.h-logo {
  display: flex;
  align-items: center;
}
.h-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 590px) {
  .h-logo img {
    height: 24px;
  }
}
.h-logo a {
  transition: 0.24s;
}
.h-logo a:hover {
  opacity: 0.72;
}

#h-nav .navList {
  list-style: none;
  display: flex;
  background-color: white;
  padding: 0 2rem;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 60px;
  align-items: center;
}
#h-nav .navList__item {
  margin-left: 2.5em;
  font-size: 14px;
  font-weight: 500;
}
#h-nav .navList__item:first-child {
  margin-left: 0;
}
#h-nav .navList a {
  color: #2c3e50;
  line-height: 1.75;
  text-decoration: none;
  transition: color 0.3s;
  white-space: nowrap;
}
#h-nav .navList a:hover {
  color: #1F8C63;
}
#h-nav .other-link {
  font-size: 11px;
  font-weight: 600;
  margin-left: 2.5em;
  padding-left: 2.5em;
  border-left: 1px solid #ececec;
}
#h-nav .other-link a {
  display: flex;
  align-items: center;
  line-height: 1.55;
}
#h-nav .other-link a::after {
  content: "";
  display: inline-block;
  -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWV4dGVybmFsLWxpbmstaWNvbiBsdWNpZGUtZXh0ZXJuYWwtbGluayI+PHBhdGggZD0iTTE1IDNoNnY2Ii8+PHBhdGggZD0iTTEwIDE0IDIxIDMiLz48cGF0aCBkPSJNMTggMTN2NmEyIDIgMCAwIDEtMiAySDVhMiAyIDAgMCAxLTItMlY4YTIgMiAwIDAgMSAyLTJoNiIvPjwvc3ZnPg==);
  mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWV4dGVybmFsLWxpbmstaWNvbiBsdWNpZGUtZXh0ZXJuYWwtbGluayI+PHBhdGggZD0iTTE1IDNoNnY2Ii8+PHBhdGggZD0iTTEwIDE0IDIxIDMiLz48cGF0aCBkPSJNMTggMTN2NmEyIDIgMCAwIDEtMiAySDVhMiAyIDAgMCAxLTItMlY4YTIgMiAwIDAgMSAyLTJoNiIvPjwvc3ZnPg==);
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  width: 1.25em;
  height: 1.25em;
  margin-left: 1em;
  transition: 0.16s ease;
  background-color: #222;
}
#h-nav .other-link:hover ::after {
  background-color: #1F8C63;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background-color: #FFF;
  margin: 4px 0;
  transition: 0.3s;
}
.hamburger.active span {
  background-color: #121214;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-6px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-8px, -8px);
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
    z-index: 1001;
  }
  #h-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 100%;
    height: 100%;
    background-color: white;
    transition: right 0.3s ease-out;
    z-index: 1000;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  }
  #h-nav.active {
    right: 0;
  }
  #h-nav .navList {
    flex-direction: column;
    gap: 0;
    padding: 5rem 2rem 2rem;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
    height: auto;
    align-items: baseline;
  }
  #h-nav .navList__item {
    padding: 1rem 0;
    border-bottom: 0px solid rgba(0, 0, 0, 0.1);
    margin: 0;
  }
  #h-nav .navList__item:last-child {
    border-bottom: none;
    border-left: 0px;
    font-size: 14px;
    font-weight: 500;
  }
  #h-nav .navList__item:last-child br {
    display: none;
  }
  #h-nav .navList a {
    display: block;
    padding: 0;
  }
}
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.overlay.active {
  display: block;
  opacity: 1;
}

.l-footer {
  padding: 4rem 0 8rem;
  text-align: center;
  background-color: #121214;
}
.l-footer small {
  display: inline-block;
  margin: 0 auto;
  text-align: center;
  font-family: "Barlow", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 1.1px;
  color: #fff;
}

.content {
  position: relative;
  width: 100%;
  height: auto;
}

.content-inner {
  --content-width: 1240px;
  --side-padding: 24px;
  max-width: var(--content-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--side-padding);
}
@media screen and (max-width: 1240px) {
  .content-inner {
    width: 92%;
  }
}
@media screen and (max-width: 768px) {
  .content-inner {
    width: 100%;
  }
}

.section-title {
  position: relative;
  margin-bottom: 2em;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  line-height: 1.75;
}
.section-title span {
  display: inline-block;
  background-color: #fff;
  padding: 0 1em;
  margin: 0 auto;
}
.section-title::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 1px;
  margin: 0 auto;
  background-color: #707070;
  z-index: -1;
}
@media screen and (max-width: 590px) {
  .section-title {
    margin-bottom: 1em;
    font-size: 22px;
  }
}

.page-header {
  position: relative;
  width: 100%;
  height: auto;
}
.page-header::before, .page-header::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.page-header::before {
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 0;
}
.page-header::after {
  background-color: #fff;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
.page-header .page-title {
  padding: 150px 0;
  color: #fff;
  font-size: 40px;
  text-align: center;
  filter: drop-shadow(0 0 5px #333);
  position: relative;
  z-index: 1;
  line-height: 1;
}
.page-header .page-title span {
  display: block;
  margin-bottom: 1em;
  font-size: 0.6em;
}
@media screen and (max-width: 590px) {
  .page-header .page-title {
    padding: 80px 0;
    font-size: 28px;
    font-weight: 600;
  }
}

#intro {
  margin-top: 6rem;
}
@media screen and (max-width: 590px) {
  #intro {
    margin-top: 3rem;
  }
}
#intro .intro-content {
  display: flex;
  align-items: center;
  gap: 56px;
}
#intro .intro-content > div {
  width: 50%;
}
@media screen and (max-width: 590px) {
  #intro .intro-content {
    flex-direction: column;
    gap: 32px;
  }
  #intro .intro-content > div {
    width: 100%;
  }
}
#intro .intro-content .image .swiper {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
}
#intro .intro-content .text h2 {
  margin-bottom: 1em;
  padding-bottom: 1em;
  position: relative;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.75;
  color: #B49982;
}
#intro .intro-content .text h2::after {
  content: "";
  width: 2em;
  height: 1px;
  background-color: #000;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
#intro .intro-content .text p {
  font-size: 14px;
  line-height: 1.75;
  color: #333;
}
#intro .swiper-wrapper {
  width: 100%;
  height: 100%;
}
#intro .swiper-slide {
  width: 100%;
  height: 100%;
}
#intro .slide-content {
  width: 100%;
  height: 100%;
}
#intro .slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
#intro .swiper-button-next,
#intro .swiper-button-prev {
  color: #fff;
  background: rgba(0, 0, 0, 0.72);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
#intro .swiper-button-next:after,
#intro .swiper-button-prev:after {
  font-size: 16px;
}
#intro .swiper-pagination {
  bottom: 24px !important;
}
#intro .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #999;
  opacity: 0.5;
  transition: 0.24s ease;
}
#intro .swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}

#p-lineup .btn {
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 100%;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  padding: 0.8em 1em;
  background-color: #121214;
  text-align: center;
  margin-top: 3.2rem;
  border: 1px solid #121214;
  transition: 0.24s ease;
}
#p-lineup .btn:hover {
  color: #121214;
  background-color: #fff;
}

.fv {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-bottom: 100px;
  background: url("/new-tech-wood/assets/img/top-fv-image.jpg") center center/cover no-repeat;
  z-index: 0;
}
@media screen and (max-width: 590px) {
  .fv {
    height: 80vh;
  }
}
.fv::before {
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
}
.fv::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 124px;
  background: linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: -1;
}
.fv .site-title {
  width: clamp(300px, 37.5vw, 720px);
  height: auto;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0 0 4% 2%;
  z-index: 1;
  filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.3333333333));
}
@media screen and (max-width: 590px) {
  .fv .site-title {
    bottom: 120px;
  }
}
.fv .product-image {
  position: absolute;
  width: clamp(320px, 41.875vw, 804px);
  height: auto;
  left: auto;
  right: 0;
  bottom: -100px;
  filter: drop-shadow(0px 14px 16px rgba(0, 0, 0, 0.3333333333));
  z-index: 1;
}
@media screen and (max-width: 590px) {
  .fv .product-image {
    bottom: -80px;
  }
}

#about {
  position: relative;
  min-height: 47.03125vw;
  display: flex;
  align-items: center;
}
#about .content-inner {
  position: relative;
  height: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 72px 0;
}
@media screen and (max-width: 590px) {
  #about .content-inner {
    padding: 4rem var(--side-padding) 6rem;
  }
}
#about .content-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(-50vw + 50%);
  width: 100vw;
  height: 100%;
  background: #F7F7F7;
  z-index: -1;
}
#about .content-inner::before {
  content: "";
  background-image: url("/new-tech-wood/assets/img/product-logo.png");
  position: absolute;
  opacity: 0.3;
  bottom: 2em;
  right: 0;
  top: auto;
  display: block;
  left: auto;
  width: 292px;
  height: 135.3333333333px;
  z-index: 1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 590px) {
  #about .content-inner::before {
    width: 182.5px;
    height: 84.5833333333px;
    right: 2em;
  }
}
#about::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("/new-tech-wood/assets/img/top-about-image-main.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 46.82292vw;
  height: 34.32292vw;
  z-index: 2;
  border-radius: 6px;
}
@media screen and (max-width: 590px) {
  #about::before {
    content: none;
  }
}
#about::after {
  content: "";
  display: block;
  position: absolute;
  top: 23.54167vw;
  left: 15.625vw;
  background: url("/new-tech-wood/assets/img/top-about-image-sub.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 35.36458vw;
  height: 23.48958vw;
  z-index: 3;
  border-radius: 6px;
}
@media screen and (max-width: 590px) {
  #about::after {
    content: none;
  }
}
#about .text-aria {
  position: relative;
  width: clamp(280px, 43%, 533px);
  margin-left: auto;
}
@media screen and (max-width: 590px) {
  #about .text-aria {
    width: 100%;
    margin-left: 0;
  }
}
#about .text-aria h2 {
  font-size: 40px;
  font-weight: 600;
  position: relative;
}
@media screen and (max-width: 590px) {
  #about .text-aria h2 {
    font-size: 28px;
  }
}
#about .text-aria h2::after {
  content: "";
  width: 50%;
  height: 0.5px;
  background-color: #333;
  position: absolute;
  z-index: 2;
  top: calc(50% + 0.5px);
  left: -24px;
  transform: translate(-100%, -50%);
}
#about .text-aria h3 {
  margin: 24px 0;
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 590px) {
  #about .text-aria h3 {
    font-size: 20px;
    font-weight: 500;
  }
}
#about .text-aria p {
  font-size: 16px;
  line-height: 2.35;
}
@media screen and (max-width: 590px) {
  #about .text-aria p {
    text-align: justify;
    font-feature-settings: "palt";
    font-size: 14px;
    line-height: 2;
    letter-spacing: 1.2px;
  }
}
#about .text-aria p .attention {
  display: block;
  margin-top: 2em;
  font-size: 12px;
}

#feature {
  padding-top: 10rem;
}
@media screen and (max-width: 590px) {
  #feature {
    padding-top: 6rem;
  }
}
#feature .featureList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  counter-reset: num;
}
@media screen and (max-width: 590px) {
  #feature .featureList {
    grid-template-columns: repeat(1, 1fr);
  }
}
#feature .featureList__item {
  position: relative;
  counter-increment: num;
  display: flex;
  align-items: center;
  flex-direction: column;
}
#feature .featureList__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -21px;
  top: 0;
  width: 1px;
  height: 100%;
  background: repeating-linear-gradient(to bottom, #ccc 0px, #ccc 1px, transparent 6px, transparent 7px);
}
@media screen and (max-width: 590px) {
  #feature .featureList__item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: auto;
    top: auto;
    bottom: -28px;
    width: 100%;
    height: 1px;
    left: 0;
  }
}
#feature .featureList__item h3 {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 1em;
  margin-top: 1em;
  line-height: 1.55;
}
#feature .featureList__item .text {
  font-size: 14px;
  font-weight: 500;
  text-align: justify;
}
#feature .featureList__item .text.top {
  margin-bottom: 1.2em;
  padding-bottom: 1.2em;
  border-bottom: 1px solid #ececec;
}
#feature .featureList__item .text.bottom {
  margin-top: 1em;
}
#feature .featureList__item::before {
  content: counter(num, decimal-leading-zero);
  width: 30px;
  height: 30px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow", sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: #B49982;
}
#feature .featureList__item .text-box {
  width: 100%;
  margin-top: 16px;
}
#feature .featureList__item .text-box h4 {
  margin-bottom: 0.6em;
  font-size: 14px;
  font-weight: 500;
}
#feature .featureList__item .text-box h4 span {
  margin-right: 0.5em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 1.6em;
  height: 1.6em;
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  color: #fff;
  border-radius: 1.2em;
  background-color: #B49982;
}
#feature .featureList__item .text-box .text {
  margin-bottom: 0.5em;
}
#feature .featureList__item .text-box .lists {
  font-size: 1.2em;
  font-weight: 400;
}

#lineup {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 8rem;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #F5F3F0;
  z-index: 0;
}
@media screen and (max-width: 590px) {
  #lineup {
    margin-top: 5rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
#lineup .section-title span {
  background-color: #F5F3F0;
}
#lineup .products {
  padding: 60px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
  counter-reset: num;
}
@media screen and (max-width: 590px) {
  #lineup .products {
    padding: 0;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    background-color: transparent;
  }
}
#lineup .products__item {
  position: relative;
  width: 100%;
  counter-increment: num;
  background-color: #fff;
  border: 6px solid #F5F3F0;
}
#lineup .products__item:not(:first-child) {
  margin-top: 6.4em;
}
@media screen and (max-width: 590px) {
  #lineup .products__item:not(:first-child) {
    margin-top: 0;
  }
}
@media screen and (max-width: 590px) {
  #lineup .products__item {
    padding: 24px;
    border-radius: 6px;
    background-color: #fff;
    border: 0px solid #F5F3F0;
  }
}
#lineup .item-head {
  position: absolute;
  transform: translateY(-50%);
  top: 0;
  left: -6px;
  background-color: #F5F3F0;
  border-radius: 0 50px 50px 0;
  font-size: 20px;
  font-weight: 500;
  padding: 0.5em;
  max-width: 640px;
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 590px) {
  #lineup .item-head {
    position: relative;
    inset: inherit;
    transform: inherit;
    border-radius: 0;
    font-size: 16px;
    background-color: inherit;
    padding: 0 0 16px;
  }
}
#lineup .item-head::before {
  content: counter(num);
  width: auto;
  height: 100%;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow", sans-serif;
  font-size: 32px;
  font-weight: 500;
  background-color: #B49982;
  color: #fff;
  position: absolute;
  aspect-ratio: 1/1;
  left: 0;
}
@media screen and (max-width: 590px) {
  #lineup .item-head::before {
    position: relative;
    font-size: 24px;
    width: 1.4em;
    height: 1.4em;
    border-radius: 8px;
    inset: inherit;
  }
}
#lineup .item-head span {
  margin-left: 3em;
}
@media screen and (max-width: 590px) {
  #lineup .item-head span {
    margin-left: 1em;
  }
}
#lineup .item-box {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 590px) {
  #lineup .item-box {
    flex-direction: column-reverse;
  }
}
#lineup .text-area {
  padding: 32px 48px;
  max-width: 340px;
  width: 100%;
  box-sizing: content-box;
}
@media screen and (max-width: 590px) {
  #lineup .text-area {
    padding: 0;
  }
}
#lineup .text-area h3 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.25;
  border-bottom: 1px solid #ccc;
  margin-bottom: 14px;
  padding-bottom: 14px;
}
#lineup .text-area h3 span {
  display: block;
  margin-bottom: 0;
  font-size: 0.6em;
  font-weight: 500;
}
@media screen and (max-width: 590px) {
  #lineup .text-area h3 {
    margin-top: 16px;
    font-size: 24px;
    text-align: center;
  }
}
#lineup .text-area p {
  text-align: justify;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.15;
}
@media screen and (max-width: 590px) {
  #lineup .text-area p {
    font-weight: 400;
    line-height: 1.75;
  }
}
#lineup .text-area .btn {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  padding: 0.8em 1em;
  background-color: #121214;
  text-align: center;
  margin-top: 2rem;
  border: 1px solid #121214;
  transition: 0.24s ease;
}
#lineup .text-area .btn:hover {
  color: #121214;
  background-color: #fff;
}
@media screen and (max-width: 590px) {
  #lineup .text-area .btn {
    margin-top: 1rem;
    border-radius: 4px;
  }
}

#case {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 590px) {
  #case {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
#case .swiper-container-wrapper, #case .swiper {
  border-radius: 8px;
}
#case .swiper-wrapper {
  height: auto;
  border-radius: 8px;
}
#case .swiper-slide {
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center center;
  overflow: hidden;
  border-radius: 8px;
}
#case .swiper-button-next,
#case .swiper-button-prev {
  color: #fff;
  background: rgba(0, 0, 0, 0.72);
  width: 50px;
  height: 50px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
#case .swiper-button-next:after,
#case .swiper-button-prev:after {
  font-size: 20px;
}
#case .swiper-pagination {
  bottom: 24px !important;
}
#case .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #999;
  opacity: 0.5;
  transition: 0.24s ease;
}
#case .swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}

#type-fence .page-header::after {
  background-image: url("/new-tech-wood/assets/img/page-header-fence.jpg");
}
#type-fence #p-feature {
  margin-top: 8rem;
}
#type-fence #p-feature .box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
#type-fence #p-feature .box__item {
  border-radius: 8px;
  overflow: hidden;
}
#type-fence #p-feature .box__item:first-child {
  grid-column: 1/-1;
  grid-row: 1/2;
}
#type-fence #p-feature .box__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 590px) {
  #type-fence #p-feature .box {
    grid-template-columns: 1fr;
  }
  #type-fence #p-feature__item:first-child {
    grid-column: 1;
  }
}
#type-fence #p-feature .pc {
  display: block;
}
#type-fence #p-feature .sp {
  display: none;
}
@media screen and (max-width: 590px) {
  #type-fence #p-feature .pc {
    display: none;
  }
  #type-fence #p-feature .sp {
    display: block;
  }
}
#type-fence #p-lineup {
  margin-top: 8rem;
}
@media screen and (max-width: 590px) {
  #type-fence #p-lineup {
    margin-top: 4rem;
  }
}
#type-fence #p-lineup img {
  height: auto;
}
#type-fence #p-lineup .box h3 {
  padding-left: 1em;
  position: relative;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 18px;
}
#type-fence #p-lineup .box h3::before {
  content: "";
  position: absolute;
  width: 0.3em;
  height: 1.5em;
  background-color: #B49982;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 590px) {
  #type-fence #p-lineup .box h3 {
    font-size: 18px;
  }
}
#type-fence #p-lineup .box:not(:first-child) {
  margin-top: 5rem;
}
@media screen and (max-width: 590px) {
  #type-fence #p-lineup .box:not(:first-child) {
    margin-top: 2rem;
  }
}
#type-fence #p-lineup .box .u-flex {
  gap: 24px;
}
@media screen and (max-width: 590px) {
  #type-fence #p-lineup .box .u-flex {
    flex-direction: column;
  }
}
#type-fence #p-lineup #p4 .u-flex {
  gap: 120px;
  border-bottom: 1px dashed #ccc;
  margin-bottom: 24px;
  padding-bottom: 24px;
}
@media screen and (max-width: 590px) {
  #type-fence #p-lineup #p4 .u-flex {
    gap: 24px;
  }
}
#type-fence #p-lineup .attention {
  font-size: 12px;
  line-height: 1.75;
}
#type-fence #p-procedure {
  margin-top: 8rem;
  margin-bottom: 8rem;
}
@media screen and (max-width: 590px) {
  #type-fence #p-procedure {
    margin-top: 4rem;
  }
}
#type-fence #p-procedure .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media screen and (max-width: 590px) {
  #type-fence #p-procedure .list {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}

#type-wall-panel .page-header::after {
  background-image: url("/new-tech-wood/assets/img/page-header-wall-panel.jpg");
}
#type-wall-panel #p-feature {
  margin-top: 8rem;
}
#type-wall-panel #p-feature .box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media screen and (max-width: 590px) {
  #type-wall-panel #p-feature .box {
    grid-template-columns: 1fr;
  }
}
#type-wall-panel #p-feature .pc {
  display: block;
}
#type-wall-panel #p-feature .sp {
  display: none;
}
@media screen and (max-width: 590px) {
  #type-wall-panel #p-feature .pc {
    display: none;
  }
  #type-wall-panel #p-feature .sp {
    display: block;
  }
}
#type-wall-panel #p-lineup {
  margin-top: 8rem;
}
#type-wall-panel #p-lineup img {
  height: auto;
}
#type-wall-panel #p-lineup .box h3 {
  padding-left: 1em;
  position: relative;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 18px;
}
#type-wall-panel #p-lineup .box h3::before {
  content: "";
  position: absolute;
  width: 0.3em;
  height: 1.5em;
  background-color: #B49982;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 590px) {
  #type-wall-panel #p-lineup .box h3 {
    font-size: 18px;
  }
}
#type-wall-panel #p-lineup .box:not(:first-child) {
  margin-top: 5rem;
}
@media screen and (max-width: 590px) {
  #type-wall-panel #p-lineup .box:not(:first-child) {
    margin-top: 2rem;
  }
}
#type-wall-panel #p-lineup .box .u-flex {
  gap: 48px;
}
@media screen and (max-width: 590px) {
  #type-wall-panel #p-lineup .box .u-flex {
    flex-direction: column;
  }
  #type-wall-panel #p-lineup .box .u-flex div:last-child {
    width: 90%;
  }
}
#type-wall-panel #p-lineup .box#p3 .u-flex {
  gap: 24px;
}
@media screen and (max-width: 590px) {
  #type-wall-panel #p-lineup .box#p3 .u-flex > div {
    width: 72%;
    margin: 0;
  }
}
#type-wall-panel #p-procedure {
  margin-top: 8rem;
  margin-bottom: 8rem;
}
#type-wall-panel #p-procedure .box .item:not(:first-child) {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #333;
}
@media screen and (max-width: 590px) {
  #type-wall-panel #p-procedure .box .item {
    max-width: 1000px;
    overflow-x: auto;
    overflow-y: hidden;
  }
  #type-wall-panel #p-procedure .box .item img {
    max-width: 1000px;
    overflow-x: auto;
    overflow-y: hidden;
  }
}

#type-deck .page-header::after {
  background-image: url("/new-tech-wood/assets/img/page-header-deck.jpg");
}
#type-deck #p-feature {
  margin-top: 8rem;
}
@media screen and (max-width: 590px) {
  #type-deck #p-feature {
    margin-top: 4rem;
  }
}
#type-deck #p-feature .box {
  display: grid;
  grid-template-columns: 1fr;
}
#type-deck #p-feature .box__item {
  border-radius: 8px;
  overflow: hidden;
}
#type-deck #p-feature .box__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#type-deck #p-feature .pc {
  display: block;
}
#type-deck #p-feature .sp {
  display: none;
}
@media screen and (max-width: 590px) {
  #type-deck #p-feature .pc {
    display: none;
  }
  #type-deck #p-feature .sp {
    display: block;
  }
}
#type-deck #p-lineup {
  margin-top: 8rem;
}
@media screen and (max-width: 590px) {
  #type-deck #p-lineup {
    margin-top: 4rem;
  }
}
#type-deck #p-lineup img {
  height: auto;
}
#type-deck #p-lineup .box h3 {
  padding-left: 1em;
  position: relative;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 18px;
}
#type-deck #p-lineup .box h3::before {
  content: "";
  position: absolute;
  width: 0.3em;
  height: 1.5em;
  background-color: #B49982;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 590px) {
  #type-deck #p-lineup .box h3 {
    font-size: 18px;
  }
}
#type-deck #p-lineup .box:not(:first-child) {
  margin-top: 5rem;
}
@media screen and (max-width: 590px) {
  #type-deck #p-lineup .box:not(:first-child) {
    margin-top: 2rem;
  }
}
#type-deck #p-lineup .box .u-flex {
  gap: 48px;
}
@media screen and (max-width: 590px) {
  #type-deck #p-lineup .box #p1 .u-flex {
    flex-direction: column;
    gap: 24px;
  }
}
#type-deck #p-lineup .pc {
  display: block;
}
#type-deck #p-lineup .sp {
  display: none;
}
@media screen and (max-width: 590px) {
  #type-deck #p-lineup .pc {
    display: none;
  }
  #type-deck #p-lineup .sp {
    display: block;
  }
}
#type-deck #p-procedure {
  margin-top: 8rem;
  margin-bottom: 8rem;
}
@media screen and (max-width: 590px) {
  #type-deck #p-procedure {
    margin-top: 4rem;
  }
}
#type-deck #p-procedure .box .item:not(:first-child) {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #333;
}
#type-deck #p-procedure .pc {
  display: block;
}
#type-deck #p-procedure .sp {
  display: none;
}
@media screen and (max-width: 590px) {
  #type-deck #p-procedure .pc {
    display: none;
  }
  #type-deck #p-procedure .sp {
    display: block;
  }
}